
/* SiteBot UI - Colorful, intuitive, mobile-first (Light/Dark) */
:root{
  --bg:#070A12;
  --bg2:#0B1220;
  --panel:rgba(255,255,255,.06);
  --card:rgba(255,255,255,.08);
  --text:#ECF3FF;
  --muted:rgba(236,243,255,.68);
  --border:rgba(255,255,255,.12);
  --shadow:0 18px 45px rgba(0,0,0,.45);

  --p1:#7C3AED; /* purple */
  --p2:#2563EB; /* blue */
  --a1:#22C55E; /* green */
  --w1:#25D366; /* whatsapp */
  --danger:#FF4D6D;
  --warn:#F59E0B;
}

html[data-theme="light"]{
  --bg:#F6F7FB;
  --bg2:#EEF2FF;
  --panel:#FFFFFF;
  --card:#FFFFFF;
  --text:#0B1220;
  --muted:rgba(11,18,32,.62);
  --border:rgba(11,18,32,.12);
  --shadow:0 18px 45px rgba(11,18,32,.12);

  --p1:#6D28D9;
  --p2:#2563EB;
  --danger:#DC2626;
}

/* Base */
*{box-sizing:border-box}
body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:
    radial-gradient(1200px 600px at 20% -10%, rgba(124,58,237,.35), transparent 55%),
    radial-gradient(900px 500px at 90% 10%, rgba(37,99,235,.30), transparent 55%),
    radial-gradient(800px 420px at 55% 100%, rgba(34,197,94,.18), transparent 55%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  color:var(--text);
}
a{color:inherit}
.container{max-width:1120px;margin:16px auto 56px;padding:0 14px}

/* Topbar */
.topbar{
  position:sticky;top:0;z-index:10;
  backdrop-filter: blur(10px);
  background: rgba(5,8,15,.55);
  border-bottom:1px solid var(--border);
}
html[data-theme="light"] .topbar{ background: rgba(255,255,255,.75); }

.topbar > .brand, .topbar > .topbar-actions{
  display:flex;align-items:center;
}
.topbar{
  display:flex;align-items:center;justify-content:space-between;
  padding:12px 14px;
}
.brand{gap:10px}
.logo{
  width:42px;height:42px;border-radius:14px;
  display:grid;place-items:center;
  font-weight:800;letter-spacing:.4px;
  background: linear-gradient(135deg, var(--p1), var(--p2));
  box-shadow: 0 14px 30px rgba(37,99,235,.25);
}
.brand-title{font-weight:800;font-size:15px;line-height:1}
.brand-subtitle{font-size:12px;color:var(--muted);margin-top:2px}

.topbar-actions{gap:10px}

/* Cards / panels */
.card{
  border:1px solid var(--border);
  border-radius:18px;
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.06));
  box-shadow:var(--shadow);
  overflow:hidden;
}
html[data-theme="light"] .card{ background: var(--card); }

.card-header{
  padding:18px 18px 10px;
  display:flex;align-items:flex-start;justify-content:space-between;gap:12px;
}
.card-title{margin:0;font-size:20px}
.card-subtitle{margin:6px 0 0;color:var(--muted);font-size:13px}

.panel{
  border:1px solid var(--border);
  border-radius:16px;
  background: rgba(255,255,255,.06);
  padding:14px;
}
html[data-theme="light"] .panel{ background: #fff; }
.panel-top{display:flex;align-items:center;justify-content:space-between;gap:10px;margin-bottom:10px}
.panel-title{margin:0;font-size:14px;letter-spacing:.2px}
.muted{color:var(--muted)}
.tiny{font-size:12px}

/* Grid */
.grid-2{display:grid;grid-template-columns:1fr 1fr;gap:14px;padding:0 18px 18px}
.grid-3{display:grid;grid-template-columns:1.2fr 1fr 1fr;gap:14px;padding:0 18px 18px}
@media (max-width: 920px){
  .grid-3{grid-template-columns:1fr; }
}
@media (max-width: 820px){
  .grid-2{grid-template-columns:1fr}
}

/* Fields */
.field{display:flex;flex-direction:column;gap:6px;margin:10px 0}
label{font-size:12px;color:var(--muted)}
input, select{
  border-radius:14px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.06);
  color:var(--text);
  padding:11px 12px;
  outline:none;
}
html[data-theme="light"] input, html[data-theme="light"] select{
  background:#fff;color:var(--text);
}
input:focus, select:focus{
  border-color: rgba(37,99,235,.65);
  box-shadow: 0 0 0 4px rgba(37,99,235,.18);
}

/* Buttons */
.btn{
  border:1px solid var(--border);
  background: rgba(255,255,255,.07);
  color:var(--text);
  padding:10px 12px;
  border-radius:14px;
  cursor:pointer;
  font-weight:650;
  transition: transform .06s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.btn:hover{transform: translateY(-1px); background: rgba(255,255,255,.10)}
.btn:active{transform: translateY(0px)}
.btn-primary{
  border:none;
  background: linear-gradient(135deg, var(--p1), var(--p2));
  box-shadow: 0 14px 28px rgba(37,99,235,.22);
}
.btn-primary:hover{box-shadow: 0 18px 34px rgba(37,99,235,.28)}
.btn-ghost{background: transparent}
.btn-link{background: transparent;border:none;color: rgba(124,58,237,.95);padding:0 6px}
html[data-theme="light"] .btn-link{color: rgba(37,99,235,.95)}
.btn-danger{
  border:none;
  background: linear-gradient(135deg, var(--danger), #fb7185);
  box-shadow: 0 14px 28px rgba(255,77,109,.18);
}
.btn-whatsapp{
  border:none;
  background: linear-gradient(135deg, var(--w1), #16a34a);
  box-shadow: 0 14px 28px rgba(34,197,94,.20);
}
.btn-row{display:flex;gap:10px;flex-wrap:wrap}

/* Menu */
.menu{position:relative}
.menu-dropdown{
  position:absolute;right:0;top:44px;
  min-width:220px;
  padding:10px;
  border-radius:16px;
  border:1px solid var(--border);
  background: rgba(15,22,32,.88);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  display:none;
}
html[data-theme="light"] .menu-dropdown{ background: rgba(255,255,255,.92); }
.menu-dropdown.show{display:block}
.menu-item{
  width:100%;
  text-align:left;
  display:flex;align-items:center;justify-content:space-between;
  gap:10px;
  padding:10px 10px;
  border-radius:12px;
  border:1px solid transparent;
  text-decoration:none;
  background: transparent;
  color:inherit;
  cursor:pointer;
}
.menu-item:hover{background: rgba(255,255,255,.08); border-color: var(--border)}
.menu-sep{height:1px;background:var(--border);margin:8px 2px}
.menu-item.danger{color:#ffd0d9}
html[data-theme="light"] .menu-item.danger{color:#b91c1c}

/* Status pill */
.pill{
  display:inline-flex;align-items:center;gap:8px;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.06);
  font-size:12px;
}
.dot{width:8px;height:8px;border-radius:999px;background:var(--muted)}
.text-good{color: #34D399 !important}
.text-bad{color: #FB7185 !important}

/* Tables */
table{width:100%;border-collapse:collapse}
th,td{padding:10px 10px;border-bottom:1px solid var(--border);font-size:13px}
th{color:var(--muted);font-weight:650;text-align:left}
.badge{
  font-size:12px;padding:6px 10px;border-radius:999px;border:1px solid var(--border);
  background: rgba(255,255,255,.06);
}
.badge.good{border-color: rgba(34,197,94,.35); color:#34D399}
.badge.bad{border-color: rgba(255,77,109,.35); color:#FB7185}

/* Mobile list */
.mobile-list{display:none}
@media (max-width: 720px){
  table{display:none}
  .mobile-list{display:block}
  .mobile-item{
    border:1px solid var(--border);
    background: rgba(255,255,255,.06);
    border-radius:16px;
    padding:12px;
    margin:10px 0;
  }
  .mobile-item .row{display:flex;justify-content:space-between;gap:10px;flex-wrap:wrap}
}

/* FAQ */
.faq{border:1px solid var(--border);border-radius:14px;background: rgba(255,255,255,.05);padding:10px 12px;margin:10px 0}
.faq summary{cursor:pointer;font-weight:700}
.faq > div{margin-top:8px}

/* Toast */
.toast{
  position:fixed;left:50%;transform:translateX(-50%);
  bottom:18px;z-index:30;
  padding:12px 14px;border-radius:14px;
  border:1px solid var(--border);
  background: rgba(15,22,32,.92);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  display:none;
}
.toast.show{display:block}
html[data-theme="light"] .toast{ background: rgba(255,255,255,.95); }


/* ===== Grupos (app-like) ===== */
.groups-toolbar{
  display:flex;
  gap:12px;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  margin-top:12px;
  padding:10px;
  border-radius:16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
}
.input-wrap{
  position:relative;
  flex: 1 1 280px;
  min-width: 240px;
}
.input-icon{
  position:absolute;
  left:12px;
  top:50%;
  transform:translateY(-50%);
  opacity:.8;
}
.input{
  width:100%;
  padding:12px 12px 12px 40px;
  border-radius:14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.18);
  color: var(--text);
  outline:none;
}
.input:focus{
  border-color: rgba(255,255,255,.30);
  box-shadow: 0 0 0 3px rgba(255,255,255,.08);
}

.chip-row{
  display:flex;
  gap:8px;
  flex: 0 0 auto;
}
.chip{
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.16);
  color: var(--text);
  padding:10px 12px;
  border-radius:999px;
  cursor:pointer;
  font-weight:700;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
}
.chip:hover{ transform: translateY(-1px); border-color: rgba(255,255,255,.28); }
.chip.active{
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.34);
}

.pill{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:6px 10px;
  border-radius:999px;
  font-weight:800;
  font-size:12px;
  letter-spacing:.02em;
  border:1px solid rgba(255,255,255,.14);
}
.pill-good{ background: rgba(0,255,136,.12); }
.pill-bad{ background: rgba(255,72,72,.12); }

.group-avatar{
  width:34px; height:34px;
  border-radius:12px;
  display:flex; align-items:center; justify-content:center;
  font-weight:900;
  background: rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.14);
}
.t-strong{ font-weight:900; }

/* Mobile group actions */
.group-card .group-actions{
  margin-top:10px;
  display:flex;
  justify-content:flex-end;
  gap:10px;
}

/* ===== FAQ cards ===== */
.faq-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:12px;
  margin-top:12px;
}
@media (max-width: 820px){
  .faq-grid{ grid-template-columns: 1fr; }
}
.faq-card{
  display:flex;
  gap:12px;
  padding:14px;
  border-radius:18px;
  background: rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.12);
}
.faq-ico{
  width:44px;
  height:44px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(0,0,0,.18);
  border:1px solid rgba(255,255,255,.14);
  font-size:20px;
}
.faq-title{
  font-weight:900;
  margin-bottom:4px;
}
.faq-text{
  opacity:.92;
  line-height:1.35;
}
.faq-accordion{ margin-top:12px; }


/* ===== Premium Bot Card ===== */
.bot-card-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  margin-bottom:10px;
}
.bot-icon{
  width:44px;
  height:44px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}
.bot-head-meta{
  flex:1;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.bot-head-title{
  font-weight:700;
  letter-spacing:0.2px;
}
.status-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 12px;
  border-radius:999px;
  font-weight:800;
  letter-spacing:0.4px;
  font-size:12px;
  border:1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  white-space:nowrap;
}
.status-dot{
  width:10px;
  height:10px;
  border-radius:999px;
  background: #ff5a5a;
  box-shadow: 0 0 0 0 rgba(255,90,90,0.6);
}
.status-badge.online{
  color: #25d366;
}
.status-badge.online .status-dot{
  background:#25d366;
  box-shadow: 0 0 0 0 rgba(37,211,102,0.7);
  animation: pulseDot 1.4s infinite;
}
.status-badge.offline{
  color:#ff5a5a;
}
.status-badge.offline .status-dot{
  animation:none;
}
@keyframes pulseDot{
  0%{ box-shadow: 0 0 0 0 rgba(37,211,102,0.75); }
  70%{ box-shadow: 0 0 0 10px rgba(37,211,102,0); }
  100%{ box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* Make bot rows look nicer */
.kv-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  padding:10px 0;
  border-bottom:1px solid rgba(255,255,255,0.08);
}
.kv-row:last-child{ border-bottom:none; }
.kv-key{ opacity:0.85; font-weight:600; }
.kv-val{ font-weight:800; }


/* Bot meta lines */
.bot-meta{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin: 6px 0 6px 0;
}
.bot-meta-item{
  flex: 1 1 140px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:10px 12px;
  border-radius:14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
}
.bot-meta-k{
  opacity:0.85;
  font-weight:700;
  font-size:12px;
}
.bot-meta-v{
  font-weight:900;
  font-size:12px;
}


/* ===== Topbar + Menu ===== */
.topbar{
  position:sticky;
  top:0;
  z-index:50;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:14px 18px;
  margin: 14px auto 0 auto;
  width:min(1100px, calc(100% - 28px));
  border-radius: 18px;
  background: rgba(10,14,26,0.55);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
}
.brand-mark{
  width:36px;height:36px;border-radius:12px;
  display:flex;align-items:center;justify-content:center;
  font-weight:900;
  background: linear-gradient(135deg, rgba(124,58,237,0.9), rgba(59,130,246,0.85));
  border: 1px solid rgba(255,255,255,0.12);
}
.brand-name{ font-weight:900; letter-spacing:0.4px; }

.menu-btn{
  width:42px;height:42px;border-radius:14px;
  border:1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  display:flex;flex-direction:column;justify-content:center;gap:6px;
  padding:10px;
}
.menu-btn span{
  height:2px;width:100%;
  background: rgba(255,255,255,0.85);
  border-radius:999px;
}
.menu{
  position:absolute;
  right: 14px;
  top: 66px;
  display:none;
  flex-direction:column;
  gap:6px;
  min-width: 210px;
  padding:10px;
  border-radius:16px;
  background: rgba(10,14,26,0.75);
  border:1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(14px);
  box-shadow: 0 22px 70px rgba(0,0,0,0.45);
}
.menu.open{ display:flex; }
.menu a{
  padding:10px 12px;
  border-radius:12px;
  text-decoration:none;
  font-weight:800;
  color: rgba(255,255,255,0.88);
  background: rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
}
.menu a:hover{ background: rgba(124,58,237,0.18); border-color: rgba(124,58,237,0.40); }
.menu a.active{ background: rgba(59,130,246,0.18); border-color: rgba(59,130,246,0.40); }

@media (min-width: 860px){
  .menu-btn{ display:none; }
  .menu{
    position:static;
    display:flex !important;
    flex-direction:row;
    align-items:center;
    min-width:unset;
    padding:0;
    gap:10px;
    border:none;
    background: transparent;
    box-shadow:none;
  }
  .menu a{ background: rgba(255,255,255,0.05); }
}

/* ===== Dashboard polish ===== */
.page-head h1{ margin: 8px 0 6px 0; font-size: 30px; }
.page-head p{ margin:0; opacity:0.85; }

.kpi{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:12px 14px;
  border-radius:16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
}
.kpi strong{ font-size:14px; opacity:0.9; }
.kpi span{ font-weight:900; }

.action-card{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:16px;
}
.action-card-left{ display:flex; align-items:center; gap:12px; }
.action-ico{
  width:44px;height:44px;border-radius:16px;
  display:flex;align-items:center;justify-content:center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  font-size:20px;
}
.action-title{ font-weight:900; }
.action-sub{ opacity:0.85; font-size:13px; margin-top:2px; }

.grid-2{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:14px;
}
@media (max-width: 740px){
  .grid-2{ grid-template-columns: 1fr; }
}

.faq-card .faq-ico{
  width:46px;height:46px;border-radius:16px;
  display:flex;align-items:center;justify-content:center;
  background: rgba(124,58,237,0.18);
  border: 1px solid rgba(124,58,237,0.35);
  margin-bottom:10px;
  font-size:22px;
}

/* Dot-only status */
.status-dot-only{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:40px;
  height:40px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
}
.status-dot-only .status-dot{ width:12px;height:12px; border-radius:999px; }
.status-dot-only.online .status-dot{
  background:#25d366;
  box-shadow: 0 0 0 0 rgba(37,211,102,0.75);
  animation: pulseDot 1.4s infinite;
}
.status-dot-only.offline .status-dot{
  background:#ff5a5a;
  box-shadow: 0 0 0 0 rgba(255,90,90,0.75);
  animation: pulseDotRed 1.6s infinite;
}
@keyframes pulseDotRed{
  0%{ box-shadow: 0 0 0 0 rgba(255,90,90,0.75); }
  70%{ box-shadow: 0 0 0 10px rgba(255,90,90,0); }
  100%{ box-shadow: 0 0 0 0 rgba(255,90,90,0); }
}


/* Hide status text (dot only) */
#botState{display:none !important;}
#botStatusText{display:none !important;}

/* Ensure only dot shows for status */
.kv-row .kv-val.status-text{display:none !important;}

/* ===== responsive nav (mobile) ===== */
.navlinks{ display:flex; align-items:center; gap:10px; }
.navlink{
  padding:10px 12px;
  border-radius:12px;
  text-decoration:none;
  font-weight:800;
  color: rgba(255,255,255,0.88);
  background: rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.10);
}
.navlink:hover{ background: rgba(124,58,237,0.18); border-color: rgba(124,58,237,0.40); }
.nav-logout{ padding:10px 12px; }

.hamburger{
  display:none;
  width:42px; height:42px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:6px;
  padding:10px;
}
.hamburger span{
  width:100%;
  height:2px;
  background: rgba(255,255,255,0.85);
  border-radius:999px;
}

.mobile-menu{
  display:none;
  position:absolute;
  right: 14px;
  top: 70px;
  width: min(92vw, 320px);
  padding:10px;
  border-radius:16px;
  background: rgba(10,14,26,0.88);
  border:1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(14px);
  box-shadow: 0 22px 70px rgba(0,0,0,0.45);
  z-index: 60;
}
.mobile-menu.open{ display:flex; flex-direction:column; gap:8px; }

.mobile-item{
  display:flex;
  width:100%;
  align-items:center;
  justify-content:flex-start;
  gap:10px;
  padding:12px 12px;
  border-radius:12px;
  text-decoration:none;
  font-weight:900;
  color: rgba(255,255,255,0.92);
  background: rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.10);
}
.mobile-item:hover{ background: rgba(59,130,246,0.18); border-color: rgba(59,130,246,0.40); }
.mobile-item.danger{ color:#ffb3b3; background: rgba(255,90,90,0.12); border-color: rgba(255,90,90,0.35); cursor:pointer; }

.mobile-backdrop{
  display:none;
  position:fixed;
  inset:0;
  background: rgba(0,0,0,0.35);
  z-index: 55;
}
.mobile-backdrop.open{ display:block; }

.no-scroll{ overflow:hidden; }

@media (max-width: 860px){
  .navlinks{ display:none; }
  .hamburger{ display:flex; }
}


/* ===== kpi-status-dot ===== */
.kpi-label-status{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:10px;
}

.kpi-label-status #botStatusBadge{
  position:static;
  margin:0;
}


/* ===== kpi-status-dot-left ===== */
.kpi-status .kpi-label-status #botStatusBadge{
  display:inline-flex;
  width:18px;
  height:18px;
  border-radius:999px;
  margin:0;
}

/* ===== kv-val-dot-style ===== */
.kv-val-dot{
  display:flex;
  justify-content:flex-end;
  align-items:center;
}
.kv-val-dot #botStatusBadge{
  width:18px;
  height:18px;
}

/* ===== Reviews (Login) ===== */
.divider{ height:1px; background:rgba(255,255,255,0.08); margin:18px 0; }
.reviews{ margin-top: 6px; }
.reviews-head{ display:flex; justify-content:space-between; align-items:center; gap:16px; flex-wrap:wrap; }
.reviews-score{ display:flex; align-items:center; gap:12px; padding:10px 12px; border-radius:16px;
  border:1px solid rgba(255,255,255,0.12); background:rgba(255,255,255,0.04);
}
.score-stars{ letter-spacing:2px; font-size:16px; opacity:0.95; }
.score-avg{ font-size:18px; font-weight:900; }
.reviews-grid{ display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap:12px; margin-top:12px; }
.review-card{ border-radius:16px; padding:12px 12px; border:1px solid rgba(255,255,255,0.12); background:rgba(255,255,255,0.04); }
.review-top{ display:flex; justify-content:space-between; align-items:center; gap:10px; }
.review-user{ font-weight:900; }
.review-stars{ letter-spacing:2px; font-size:13px; opacity:0.9; }
.review-text{ margin-top:8px; opacity:0.9; font-size:13px; line-height:1.35; }
@media (max-width: 820px){ .reviews-grid{ grid-template-columns: 1fr; } }

/* Make review textarea match theme + nice sizing */
#reviewComment{
  width:100%;
  max-width:100%;
  min-height:96px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.92);
}
