/* =========================================================
   ORBS Computers — styles.css REVAMP
   Built from the current uploaded styles.css.
   Goals:
   - Wider desktop view, but not stretched too far
   - Strong mobile side-scroll lock
   - Cleaner homepage flow: Hero/Scene, Ask Don/News, Recommendation/Specials
   - Keep editor/product tools working
   ========================================================= */

:root{
  --bg:#101820;
  --bg2:#0c1419;
  --bg3:#0a1116;
  --panel:rgba(255,255,255,.07);
  --panel2:rgba(255,255,255,.09);
  --stroke:rgba(255,255,255,.12);
  --text:rgba(245,248,250,.95);
  --muted:rgba(222,231,236,.78);
  --muted2:rgba(208,217,223,.64);
  --accent:#7ed957;
  --accent-dark:#5fc13e;
  --accent-light:#b7ff8a;
  --orange:#f2a33a;
  --good:#9cff8f;
  --warn:#ffd54a;
  --shadow:0 18px 60px rgba(0,0,0,.45);
  --radius:16px;
  --site-max:1260px;
}

/* ---------- Hard reset / side-scroll prevention ---------- */
*, *::before, *::after{ box-sizing:border-box; }
html, body{
  width:100%;
  max-width:100%;
  min-height:100%;
  overflow-x:hidden !important;
}
body{
  margin:0;
  position:relative;
  font-family:system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(1200px 800px at 20% 10%, rgba(143,227,106,.18), transparent 55%),
    radial-gradient(900px 700px at 90% 30%, rgba(132,170,255,.14), transparent 60%),
    linear-gradient(180deg, #0f221b, #0a1813 65%, #07120e);
}
img, video, iframe{ max-width:100%; }
a{ color:#8CFF6A; font-weight:700; }
a:visited{ color:#8CFF6A; }
a:hover{ color:#fff; }
a:active{ color:#caffb8; }
.hidden{ display:none !important; }

/* ---------- Topbar ---------- */
.topbar{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:12px 18px;
  border-bottom:1px solid rgba(255,255,255,.08);
  background:rgba(8,13,16,.92);
  backdrop-filter:blur(10px);
  overflow:visible;
  position:relative;
  z-index:100;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  min-width:0;
  max-width:100%;
}
.brand-flag{
  width:34px;
  height:24px;
  flex:0 0 auto;
  border-radius:5px;
  border:1px solid rgba(255,255,255,.18);
  object-fit:cover;
}
.brand-text{ min-width:0; }
.brand-name{
  font-weight:900;
  letter-spacing:.2px;
  overflow-wrap:anywhere;
}
.brand-sub{
  font-size:12px;
  color:var(--muted);
  overflow-wrap:anywhere;
}
.top-actions{
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:wrap;
  justify-content:flex-end;
  min-width:0;
}
.pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  max-width:100%;
  padding:10px 12px;
  border-radius:999px;
  text-decoration:none;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  color:var(--text) !important;
  font-weight:750;
  font-size:13px;
  white-space:normal;
  overflow-wrap:anywhere;
}
.pill-call{ border-color:rgba(155,232,112,.35); }
.pill-coupon{ border-color:rgba(242,163,58,.35); }

/* ---------- BBB badge (single source of truth) ---------- */
.bbb-badge{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:170px;
  max-width:100%;
  padding:0;
  border-radius:8px;
  background:transparent;
  border:0;
  box-shadow:none;
  text-decoration:none;
  overflow:visible;
}
.bbb-img{
  display:block;
  width:170px;
  height:auto;
  max-height:none;
  object-fit:contain;
  border-radius:6px;
}
.bbb-hover{
  position:absolute;
  top:100%;
  right:0;
  z-index:9999;
  margin-top:8px;
  min-width:175px;
  padding:10px 12px;
  border-radius:10px;
  background:#0787bd;
  color:#fff;
  font-size:12px;
  line-height:1.25;
  text-align:center;
  box-shadow:0 10px 25px rgba(0,0,0,.35);
  opacity:0;
  transform:translateY(-4px);
  pointer-events:none;
  transition:opacity .18s ease, transform .18s ease;
}
.bbb-hover::before{
  content:"";
  position:absolute;
  top:-7px;
  right:24px;
  width:14px;
  height:14px;
  background:#0787bd;
  transform:rotate(45deg);
}
.bbb-badge:hover .bbb-hover,
.bbb-badge:focus .bbb-hover{
  opacity:1;
  transform:translateY(0);
}

/* ---------- Main layout ---------- */
.wrap{
  width:100%;
  max-width:1400px;
  margin:0 auto;
  padding:18px;
  overflow:hidden;
}
.grid{
  width:100%;
  max-width:1400px;
  margin:0 auto;
  display:grid;
  grid-template-columns:minmax(0, 1.15fr) minmax(0, .95fr);
  gap:22px;
  align-items:start;
}
.grid > *{ min-width:0; max-width:100%; }
.grid > .hero{ grid-column:1; grid-row:1; }
.grid > .stack{ grid-column:2; grid-row:1; }
.grid > .ask-don-box{ grid-column:1; grid-row:2; }
.grid > .about{ grid-column:2; grid-row:2; }
.grid > .product-sales{ grid-column:1; grid-row:3; }
.grid > .specials{ grid-column:2; grid-row:3; }
.grid > .services,
.grid > .coupon,
.grid > .organic,
.grid > .footer{ grid-column:1 / -1; }
.stack{
  display:flex;
  flex-direction:column;
  gap:14px;
}

/* ---------- Cards ---------- */
.card{
  width:100%;
  max-width:100%;
  min-width:0;
  background: linear-gradient(180deg, #11241c 0%, #0d1f18 100%);
  border:1px solid rgba(126, 217, 87, 0.15);
  border-radius:14px;
  padding:20px;
  box-shadow:0 8px 24px rgba(0,0,0,.14);
  transition:transform .18s ease, box-shadow .18s ease;
  overflow:hidden;
}

.card p{
  color:#cfe9dd;
}

.card:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 34px rgba(0,0,0,.18);
}
.accent{ color:var(--accent); }

/* ---------- Hero ---------- */
.hero{
  display:flex;
  flex-direction:column;
}
.hero h1{
  margin:0 0 10px 0;
  font-size:clamp(30px, 2.55vw, 40px);
  line-height:1.08;
}
.hero-sub{
  margin:0 0 14px 0;
  color:rgba(255,255,255,.88);
  line-height:1.45;
  font-size:15px;
  font-weight:650;
}
.subtext{
  margin:0 0 12px 0;
  color:var(--muted);
  line-height:1.45;
  font-size:14px;
  overflow-wrap:anywhere;
}
.intro-line{
  margin:0 0 12px 0;
  color:rgba(255,255,255,.88);
  font-size:14px;
  font-weight:700;
}
.main-nav{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  padding:8px 0 10px;
}
.main-nav a{
  color:#8CFF6A;
  text-decoration:none;
  font-weight:800;
}
.main-nav a:hover{ text-decoration:underline; }
.badges{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin:10px 0 12px;
}
.badge{
  display:inline-flex;
  max-width:100%;
  padding:7px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(0,0,0,.18);
  font-size:12px;
  color:rgba(255,255,255,.82);
  overflow-wrap:anywhere;
}
.badge-veteran{
  font-size:1.02rem;
  font-weight:900;
  padding:10px 16px;
  border-color:rgba(142,234,87,.45);
  box-shadow:0 0 0 1px rgba(142,234,87,.16) inset;
}
.cta-row{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin:6px 0 12px;
  max-width:100%;
}
.address{
  color:rgba(255,255,255,.88);
  line-height:1.3;
  margin-top:4px;
}

/* ---------- Buttons ---------- */
.btn{
  appearance:none;
  border:none;
  cursor:pointer;
  max-width:100%;
  padding:10px 14px;
  border-radius:12px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:950 !important;
  letter-spacing:.2px;
  color:#07110a !important;
  text-shadow:none !important;
  text-decoration:none;
  white-space:normal;
  overflow-wrap:anywhere;
  background:linear-gradient(180deg, var(--accent-light), var(--accent)) !important;
  border:1px solid rgba(0,0,0,.28) !important;
  box-shadow:0 6px 18px rgba(0,0,0,.25), inset 0 1px 0 rgba(255,255,255,.28) !important;
  transition:transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.btn:hover{
  transform:translateY(-1px);
  filter:brightness(1.03);
  box-shadow:0 10px 24px rgba(0,0,0,.30), inset 0 1px 0 rgba(255,255,255,.30) !important;
}
.btn:active{
  transform:translateY(1px);
  box-shadow:0 3px 10px rgba(0,0,0,.25), inset 0 2px 4px rgba(0,0,0,.25) !important;
}
.btn-mini{
  padding:8px 10px !important;
  border-radius:10px;
  font-size:13px;
}
.btn-green{ width:100%; }
.btn-ghost{
  background:rgba(255,255,255,.08) !important;
  color:var(--text) !important;
  border:1px solid rgba(255,255,255,.16) !important;
  box-shadow:none !important;
}
.btn-ghost:hover{
  background:rgba(255,255,255,.13) !important;
  color:#fff !important;
}
.btn-finder{
  background:transparent !important;
  border:1px solid var(--warn) !important;
  color:var(--warn) !important;
  box-shadow:none !important;
}
.btn-finder:hover{
  background:var(--warn) !important;
  color:#1a1a1a !important;
}
.btn-orange{
  background:linear-gradient(180deg, #ffc56b, var(--orange)) !important;
  color:#1a1000 !important;
}
.btn-orange.btn-ghost{
  background:rgba(242,163,58,.14) !important;
  color:#fff !important;
  border:1px solid rgba(242,163,58,.32) !important;
}
.btn-question{
  background:linear-gradient(180deg, #7dffc2, #34d399) !important;
  color:#062016 !important;
  font-weight:900 !important;
}
.btn-question:hover{ filter:brightness(1.08); }
.btn-finder-launch{
  min-height:54px;
  padding:0 22px;
  border-radius:16px;
  font-size:1.05rem;
}
.btn *, .btn-green *, .btn-finder-launch *, .btn-orange *{ color:inherit !important; }

/* ---------- Finder ---------- */
.finder-launch-wrap{
  margin-top:8px;
  margin-bottom:6px;
}
.finder-box{
  margin-top:8px;
  margin-bottom:10px;
  padding:18px;
  border-radius:16px;
  background:rgba(10,16,24,.92);
  border:1px solid rgba(143,227,106,.28);
  box-shadow:0 0 0 1px rgba(143,227,106,.08), 0 12px 28px rgba(0,0,0,.18);
}
.finder-collapsed{ margin-top:14px; }
.finder-title{
  font-size:1.2rem;
  font-weight:950;
  margin-bottom:6px;
  line-height:1.2;
}
.finder-highlight{
  color:var(--warn);
  font-weight:900;
  letter-spacing:.3px;
}
.finder-note{
  margin-bottom:14px;
  font-size:.95rem;
  color:rgba(255,255,255,.76);
  line-height:1.35;
}
.finder-grid{
  display:grid;
  gap:12px;
}
.finder-grid label span{
  display:block;
  margin-bottom:8px;
  font-weight:850;
  color:#f3f6fb;
}
.finder-input,
#needType{
  display:block;
  width:100%;
  max-width:100%;
  min-height:48px;
  padding:10px 14px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.18);
  background:#1a2433;
  color:#fff;
  font-size:16px;
  line-height:1.2;
}
.finder-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:12px;
}
#findMatchHint{
  display:block;
  width:100%;
  margin-top:4px;
  font-size:.95rem;
  line-height:1.35;
}

/* ---------- Viewer frames ---------- */
.scene-frame,
.product-frame,
#servicesFrame{
  position:relative;
  width:100%;
  max-width:100%;
  height:clamp(390px, 34vw, 520px);
  border-radius:14px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(0,0,0,.25);
}
.scene-frame,
.product-frame{ cursor:pointer; }
.scene-frame img,
.product-frame img,
#servicesFrame img,
#sceneImg,
#productImg,
#servicesImg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  display:block;
  object-fit:contain;
  object-position:center;
  background:#000;
}
.scene-frame video,
.product-frame video,
#servicesFrame video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.scene-frame img, .scene-frame video,
.product-frame img, .product-frame video,
#servicesFrame img, #servicesFrame video,
#sceneImg, #sceneVideo{
  opacity:1;
  transition:opacity .25s ease;
}
.fade-out{ opacity:0; }
.product-frame{
  transition:transform .25s ease, opacity .25s ease;
}
.product-frame.fade-out{
  opacity:0;
  transform:scale(.98);
}
.product-frame.fade-in{
  opacity:1;
  transform:scale(1);
}
.scene-caption,
#servicesCaption{
  position:absolute;
  left:10px;
  right:10px;
  bottom:10px;
  z-index:5;
  max-width:calc(100% - 20px);
  padding:8px 10px;
  border-radius:10px;
  background:rgba(0,0,0,.42);
  backdrop-filter:blur(4px);
  color:rgba(255,255,255,.92);
  font-size:12px;
  line-height:1.25;
  max-height:24%;
  overflow:auto;
  overflow-wrap:anywhere;
  border-top:1px solid rgba(255,255,255,.14);
}
.scene-controls,
.viewer-controls{
  display:flex;
  align-items:center;
  gap:10px;
  margin-top:10px;
  flex-wrap:wrap;
  max-width:100%;
}
.hint{
  margin-left:auto;
  color:rgba(255,255,255,.55);
  font-size:12px;
  white-space:normal;
  overflow-wrap:anywhere;
}
.price-badge{
  position:absolute;
  top:10px;
  right:10px;
  z-index:5;
  padding:6px 10px;
  border-radius:999px;
  font-weight:950 !important;
  font-size:13px;
  letter-spacing:.2px;
  color:#07110a !important;
  text-shadow:none !important;
  background:linear-gradient(180deg, #d9ffb8, #7ed957) !important;
  border:1px solid rgba(0,0,0,.35) !important;
  box-shadow:0 6px 16px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.45) !important;
}
.price-badge:empty{ display:none; }
.price-badge *{ color:#07110a !important; }
#rotatingCaption,
#productRotatingCaption{
  display:block;
  margin-top:4px;
  font-size:12px;
  color:var(--good);
  font-weight:800;
  opacity:1;
  transition:opacity .25s ease;
}
.product-frame.recommended{
  outline:3px solid rgba(255,255,255,.18);
  box-shadow:0 0 0 6px rgba(255,255,255,.06);
  transition:box-shadow .25s ease, outline-color .25s ease;
}
.product-frame.recommended-pop{
  outline-color:rgba(255,255,255,.32);
  box-shadow:0 0 0 8px rgba(255,255,255,.10);
}
.pause-overlay{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%, -50%);
  padding:10px 16px;
  border-radius:8px;
  background:rgba(0,0,0,.65);
  color:#fff;
  font-size:14px;
  font-weight:700;
  pointer-events:none;
  opacity:0;
  transition:opacity .2s ease;
}
.pause-overlay.show{ opacity:1; }
.pause-overlay.hidden{ display:none; }
#servicesFrame{ background:rgba(0,0,0,.35); }
#servicesFrame img,
#servicesImg,
#servicesFrame video,
#servicesVideo{
  object-fit:contain !important;
  object-position:center center !important;
}

/* ---------- Product recommendation / pricing ---------- */
.product-head{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:10px;
  max-width:100%;
  overflow:hidden;
}
.product-icon{
  font-size:24px;
  line-height:1;
  flex:0 0 auto;
}
.product-title{
  font-size:1.15rem;
  font-weight:950;
  color:#ffffff;
  overflow-wrap:anywhere;
}
.product-sub{
  margin-top:3px;
  color:rgba(255,255,255,.72);
  font-size:.95rem;
  line-height:1.35;
  overflow-wrap:anywhere;
}
.orbs-deal-box{
  margin-top:10px;
  padding:12px 14px;
  border-radius:12px;
  background:rgba(0,0,0,.38);
  border:1px solid rgba(255,255,255,.14);
  font-size:13px;
  line-height:1.45;
  color:rgba(255,255,255,.92);
  overflow:hidden;
}
.orbs-deal-box strong{
  display:block;
  color:var(--accent);
  font-size:14px;
  font-weight:850;
  margin-bottom:8px;
  overflow-wrap:anywhere;
}
.orbs-deal-row{
  display:flex;
  justify-content:space-between;
  gap:14px;
  padding:2px 0;
}
.orbs-deal-row span{
  max-width:100%;
  overflow-wrap:anywhere;
}
.orbs-deal-row span:first-child{ color:rgba(255,255,255,.78); }
.orbs-deal-row span:last-child{
  font-weight:750;
  color:rgba(255,255,255,.95);
  text-align:right;
}
.orbs-total{
  margin-top:10px;
  padding-top:8px;
  border-top:1px solid rgba(255,255,255,.10);
  font-weight:950;
  font-size:15px;
  color:var(--good);
}
.orbs-save{
  margin-top:6px;
  font-size:12px;
  color:#ffd36a;
  font-weight:800;
}
.orbs-note{
  margin-top:6px;
  color:rgba(255,255,255,.78);
  font-size:12px;
  line-height:1.35;
  overflow-wrap:anywhere;
}
.orbs-plan{
  color:#7fdc8a;
  font-weight:600;
  border:1px solid #7cff7c;
  background:rgba(124,255,124,.08);
}
.product-review-box{
  margin-top:14px;
  padding:14px 16px;
  border-radius:12px;
  background:rgba(0,0,0,.35);
  border:1px solid rgba(255,255,255,.12);
}
.product-review-title{
  font-weight:950;
  margin-bottom:8px;
  color:var(--good);
  overflow-wrap:anywhere;
}
.product-review-text{
  font-size:14px;
  line-height:1.5;
  color:rgba(255,255,255,.88);
  overflow-wrap:anywhere;
}
.product-review-text ul{
  margin:0;
  padding-left:18px;
}
.product-review-text li{ margin:6px 0; }

/* ---------- Ask Don ---------- */
.ask-don-box{ scroll-margin-top:90px; }
.ask-don-box h2{ margin-top:0; }
.ask-don-box input,
.ask-don-box textarea{
  width:100%;
  max-width:100%;
  margin-top:10px;
  padding:10px;
  border-radius:8px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.12);
  color:#fff;
  font-size:15px;
}
.ask-don-box textarea{
  min-height:100px;
  resize:vertical;
}
.ask-don-box .btn{ margin-top:12px; }
.qa-box{
  margin-top:16px;
  padding:12px;
  border-radius:10px;
  background:rgba(255,255,255,.05);
  overflow-wrap:anywhere;
}
.qa-answer{
  margin-top:8px;
  padding:10px;
  border-radius:8px;
  background:rgba(0,0,0,.4);
}

/* ---------- Specials / About ---------- */
.specials-box{
  padding:16px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.15);
  min-height:360px;
}
.special-item{
  padding:10px 0;
  border-top:1px solid rgba(255,255,255,.08);
}
.special-item:first-child{
  border-top:none;
  padding-top:0;
}
.special-title{
  font-weight:850;
  color:var(--accent);
  margin-bottom:4px;
}
.special-price{
  font-weight:850;
  color:var(--good);
}
.special-note{
  font-size:12px;
  color:rgba(255,255,255,.75);
  margin-top:4px;
}
.about{ height:100%; }
.about-row{
  display:flex;
  gap:12px;
  align-items:flex-start;
}
.about-thumb{
  width:60px;
  height:60px;
  flex:0 0 auto;
  border-radius:14px;
  object-fit:cover;
  border:1px solid rgba(255,255,255,.16);
}
.about-title,
.card-title{
  letter-spacing:-.01em;
  font-weight:950;
  margin-bottom:8px;
}
.about-sub{
  font-size:12px;
  color:#7fb8ff;
  margin-bottom:10px;
  font-weight:700;
}
.about-text{
  color:rgba(255,255,255,.78);
  font-size:13px;
  line-height:1.45;
  margin-bottom:10px;
  overflow-wrap:anywhere;
}
#newsBioCard .bullets{
  margin:10px 0 16px 18px;
  padding:0;
}
#newsBioCard .bullets li{
  margin:6px 0;
  line-height:1.5;
  color:var(--text);
}
#newsBioCard hr{
  margin:18px 0;
  border:none;
  border-top:1px solid rgba(255,255,255,.08);
}
#newsWeekTitle{
  display:block;
  font-weight:700;
  margin-bottom:6px;
}

/* ---------- Services / Coupon / Organic ---------- */
.services h2{
  margin:0 0 10px 0;
  font-size:28px;
}
.service-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(170px, 1fr));
  gap:12px;
}
.service-card{
  padding:14px;
  border-radius:14px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.12);
  min-width:0;
}
.service-title{
  font-weight:850;
  margin-bottom:6px;
  overflow-wrap:anywhere;
}
.service-link{
  color:#8CFF6A;
  text-decoration:none;
  font-weight:850;
}
.service-link:hover{
  text-decoration:underline;
  color:#fff;
}
.service-text{
  color:rgba(255,255,255,.78);
  font-size:13px;
  line-height:1.35;
  overflow-wrap:anywhere;
}
.service-callout{
  margin-top:10px;
  padding:10px;
  border-radius:12px;
  background:rgba(155,232,112,.08);
  border:1px solid rgba(155,232,112,.18);
  color:rgba(255,255,255,.85);
  font-size:12.5px;
  overflow-wrap:anywhere;
}
.small-link{
  display:inline-block;
  margin-top:6px;
  color:var(--accent);
  text-decoration:none;
  font-weight:800;
}
.small-link:hover{ text-decoration:underline; }
.remote-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8px;
  margin-bottom:6px;
}
.secure-pill{
  padding:6px 10px;
  border-radius:999px;
  background:rgba(155,232,112,.16);
  border:1px solid rgba(155,232,112,.30);
  color:rgba(255,255,255,.92);
  font-size:12px;
  font-weight:850;
}
.bt-row{
  display:flex;
  align-items:center;
  gap:10px;
  margin-top:10px;
}
.bt-logo{
  width:56px;
  height:56px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.06);
  padding:6px;
  object-fit:contain;
}
.bt-text{
  font-size:12px;
  color:rgba(255,255,255,.72);
  font-weight:750;
}
.coupon{
  display:flex;
  gap:14px;
  align-items:stretch;
  justify-content:space-between;
}
.coupon-title{
  font-weight:950;
  font-size:16px;
  margin-bottom:6px;
}
.coupon-text{
  color:rgba(255,255,255,.78);
  font-size:13px;
}
.coupon-badges{
  margin-top:10px;
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}
.coupon-fine{
  margin-top:10px;
  color:var(--muted2);
  font-size:12px;
  line-height:1.3;
}
.coupon-right{
  display:flex;
  flex-direction:column;
  gap:10px;
  min-width:220px;
}
.organic h2{ margin:0 0 8px 0; }
.bullets{
  margin:10px 0 0 18px;
  color:rgba(255,255,255,.78);
}
.bullets li{ margin:8px 0; }
.footer{
  text-align:center;
  color:rgba(255,255,255,.55);
  font-size:12px;
  padding:16px 10px 4px;
  border:none;
  background:transparent;
  box-shadow:none;
}

/* ---------- Admin editor overlay ---------- */
.editor{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.75);
  z-index:9999;
  display:flex;
  align-items:flex-start;
  justify-content:center;
  padding:18px;
  overflow-y:auto;
  -webkit-overflow-scrolling:touch;
}
.editor.hidden{ display:none !important; }
.editor-card{
  width:min(1500px, 96vw);
  max-width:96vw;
  background:rgb(11,15,18);
  border:1px solid rgba(255,255,255,.14);
  border-radius:18px;
  box-shadow:0 40px 120px rgba(0,0,0,.65);
  padding:16px;
  max-height:calc(100vh - 36px);
  overflow-y:auto;
}
.editor-flex{ display:block; }
.editor-left{
  min-width:0;
  overflow-y:auto;
  padding-right:8px;
}
.editor-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:10px;
}
.editor-title{ font-weight:950; font-size:18px; }
.editor-sub{
  color:rgba(255,255,255,.65);
  font-size:12.5px;
  margin-top:2px;
}
.editor-label{
  display:block;
  margin:10px 0 6px;
  color:rgba(255,255,255,.80);
  font-weight:850;
  font-size:12px;
}
.editor-input{
  width:100%;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  color:var(--text);
}
.editor-note{
  margin-top:6px;
  font-size:12px;
  color:rgba(255,255,255,.58);
}
.editor-note code{ color:rgba(155,232,112,.95); }
.editor-textarea{
  width:100%;
  height:50vh;
  min-height:320px;
  padding:12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.04);
  color:rgba(155,232,112,.95);
  font-family:ui-monospace, Menlo, Consolas, monospace;
  font-size:13px;
  line-height:1.35;
}
.editor-textarea.collapsed-json{
  height:90px !important;
  min-height:90px !important;
}
.editor-buttons{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:12px;
}
.editor-buttons.compact{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}
.status{
  margin-top:10px;
  color:rgba(255,255,255,.78);
  font-size:13px;
}
.thumb-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:8px;
  margin-top:12px;
  max-height:260px;
  overflow-y:auto;
}
.thumb-grid img{
  width:100%;
  border-radius:6px;
  cursor:pointer;
  border:2px solid transparent;
  transition:.2s ease;
}
.thumb-grid img:hover{ border-color:#4caf50; }
.thumb-grid img.active-thumb{ border-color:#00ff88; }
.scene-label{
  margin-top:10px;
  font-weight:bold;
}
.link-preview{
  margin-top:16px;
  display:flex;
  flex-direction:column;
  position:sticky;
  top:12px;
  align-self:start;
  height:calc(100vh - 80px);
  border:1px solid rgba(255,255,255,.14);
  border-radius:14px;
  background:#111;
  overflow:hidden;
}
.link-preview.hidden{ display:none !important; }
.link-preview-header{
  padding:8px 10px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:12px;
  border-bottom:1px solid rgba(255,255,255,.10);
}
#linkPreviewFrame{
  width:100%;
  height:75vh;
  border:none;
  display:block;
}
#productFields{ margin-top:10px; }
.product-editor-layout{
  display:grid;
  grid-template-columns:280px minmax(0, 1fr);
  gap:18px;
  align-items:start;
}
.product-editor-preview{
  position:sticky;
  top:12px;
  align-self:start;
}
.product-editor-preview-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
  margin-bottom:10px;
}
.product-editor-frame{
  position:relative;
  border:1px solid rgba(255,255,255,.12);
  border-radius:14px;
  overflow:hidden;
  background:#0e131a;
  max-height:180px;
}
.product-editor-frame img{
  display:block;
  width:100%;
  height:180px;
  object-fit:cover;
}
#editorProductPricing{ min-height:140px; }
.product-editor-fields{ min-width:0; }
.product-editor-fields .editor-row{
  display:grid;
  grid-template-columns:minmax(0, 1fr) minmax(0, 1fr);
  gap:14px;
  margin-top:0;
}
#pCaption{
  min-height:110px !important;
  height:110px !important;
}
#pReviewSummary{
  min-height:180px !important;
  height:180px !important;
}
.btn-save-json{
  background:#89f35b !important;
  color:#08110a !important;
  font-weight:900 !important;
  border:1px solid rgba(137,243,91,.45) !important;
  box-shadow:0 0 0 2px rgba(137,243,91,.12) !important;
}
.btn-save-json:hover{ filter:brightness(1.03); }
.btn-save-image{ border-color:rgba(255,255,255,.18) !important; }
.btn-save-image:hover{ border-color:rgba(255,255,255,.3) !important; }
.gpt-helper{
  margin-top:16px;
  padding:14px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:14px;
  background:rgba(255,255,255,.03);
}
.gpt-helper-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:8px;
}
#gptPrompt,
#gptNotes{
  color:rgba(245,248,250,.95);
  font-family:ui-monospace, Menlo, Consolas, monospace;
}
.image-drop-zone{
  border:2px dashed #3a3a3a;
  padding:18px;
  border-radius:10px;
  text-align:center;
  color:#aaa;
  margin-bottom:10px;
  cursor:pointer;
  transition:.2s;
}
.image-drop-zone:hover{
  border-color:#6be675;
  color:#6be675;
}
.image-drop-zone.drag-over{
  outline:2px dashed #4caf50;
  background:rgba(76,175,80,.08);
}
.image-preview{
  width:100%;
  max-height:220px;
  object-fit:contain;
  border-radius:10px;
  margin-bottom:10px;
  background:#111;
}
.image-actions{
  display:flex;
  gap:10px;
  margin-bottom:6px;
}
.image-note{
  font-size:12px;
  color:#888;
}

/* ---------- Tablet ---------- */
@media (max-width:700px){
  .grid{
    grid-template-columns:1fr;
    max-width:840px;
  }
  .grid > .hero,
  .grid > .stack,
  .grid > .ask-don-box,
  .grid > .about,
  .grid > .product-sales,
  .grid > .services-viewer,
  .grid > .specials-box,
  .grid > .services,
  .grid > .coupon,
  .grid > .organic,
  .grid > .footer{
    grid-column:1 / -1;
    grid-row:auto;
  }
}
@media (max-width:940px){
  .service-grid{ grid-template-columns:1fr 1fr; }
  .coupon{ flex-direction:column; }
  .link-preview{
    min-width:0;
    min-height:420px;
    border-left:none;
    border-top:1px solid #333;
  }
}

/* ---------- Mobile final lock ---------- */
@media (max-width:700px){
  html, body{
    width:100%;
    max-width:100%;
    overflow-x:hidden !important;
  }
  .topbar{
    flex-direction:column;
    align-items:flex-start;
    padding:10px;
    overflow:hidden;
  }
  .brand,
  .brand-text,
  .top-actions,
  .cta-row,
  .badges,
  .scene-controls,
  .viewer-controls,
  .finder-actions{
    width:100%;
    max-width:100%;
    overflow:hidden;
  }
  .top-actions{ justify-content:flex-start; }
  .bbb-badge{ width:130px; }
  .bbb-img{ width:130px; }
  .bbb-hover{
    right:auto;
    left:0;
    min-width:150px;
    max-width:calc(100vw - 30px);
  }
  .wrap{
    width:100%;
    max-width:100%;
    padding:10px;
    overflow:hidden;
  }
  .grid{
    display:block !important;
    width:100% !important;
    max-width:100% !important;
    overflow:hidden !important;
  }
  .grid > *{
    margin-bottom:14px;
  }
  .card{
    width:100% !important;
    max-width:100% !important;
    margin-left:0 !important;
    margin-right:0 !important;
    padding:14px;
    overflow:hidden !important;
  }
  .hero h1{ font-size:28px; }
  .main-nav{ gap:10px; }
  .finder-box{ padding:16px; }
  .finder-actions{
    flex-direction:column;
    align-items:stretch;
  }
  .finder-actions .btn{ width:100%; }
  .scene-frame,
  .product-frame,
  #servicesFrame{
    width:100% !important;
    max-width:100% !important;
    height:360px;
    overflow:hidden !important;
  }
  .orbs-deal-box{
    margin-top:8px;
    padding:10px 12px;
    font-size:12px;
    line-height:1.3;
  }
  .orbs-deal-box strong{
    font-size:13px;
    margin-bottom:6px;
  }
  .orbs-deal-row{
    flex-wrap:wrap;
    gap:4px 10px;
  }
  .orbs-deal-row span:last-child{
    text-align:left;
  }
  .orbs-total{
    font-size:13px;
    margin-top:8px;
    padding-top:6px;
  }
  .orbs-save{
    font-size:11px;
    margin-top:5px;
  }
  .price-badge{
    top:8px;
    right:8px;
    padding:5px 9px;
    font-size:12px;
  }
  .product-review-box{
    margin-top:12px;
    padding:12px 14px;
  }
  .product-review-title{
    font-size:20px;
    line-height:1.2;
  }
  .product-review-text{
    font-size:16px;
    line-height:1.45;
  }
  .btn,
  .btn-green,
  .btn-finder-launch{
    font-size:17px !important;
    line-height:1.15 !important;
    padding:12px 16px !important;
    border:2px solid rgba(0,0,0,.45) !important;
  }
  .btn-mini{
    font-size:16px !important;
    padding:10px 14px !important;
    min-height:44px !important;
  }
  .btn-ghost{
  background:rgba(255,255,255,.10) !important;
  color:#eaffea !important;
  border:1px solid rgba(255,255,255,.25) !important;
}

/* Force readable text on green buttons (mobile) */
.btn,
.btn-green,
.btn-finder-launch{
  color:#07110a !important;
  opacity:1 !important;
}

  .btn-finder{
    background:rgba(255,217,77,.15) !important;
    color:#ffd94d !important;
    border:1px solid #ffd94d !important;
  }
  .hint{
    margin-left:0 !important;
    width:100%;
    white-space:normal !important;
  }
  .about-row{
    flex-direction:row;
  }
  .service-grid{ grid-template-columns:1fr; }
  .coupon-right{ min-width:0; }
  .product-editor-layout{
    grid-template-columns:1fr;
  }
  .product-editor-preview{ position:static; }
  .product-editor-fields .editor-row{ grid-template-columns:1fr; }
  .gpt-helper-head{
    flex-direction:column;
    align-items:flex-start;
  }
  .link-preview{
    position:static;
    height:70vh;
  }
}
/* Ask Don Q&A SEO Display */
.qa-box{
  margin:18px 0;
  padding:16px;
  border-radius:14px;
}

.qa-question{
  margin:0 0 10px;
  font-size:1.1rem;
  line-height:1.35;
  font-weight:800;
}

.qa-answer{
  line-height:1.55;
}

.qa-meta{
  margin-top:10px;
  font-size:.85rem;
  opacity:.75;
}

.pending{
  font-weight:700;
}
.qa-featured {
  border: 2px solid #2ecc71;
  background: #f8fff8;
}

.qa-featured-badge {
  font-size: 12px;
  font-weight: 600;
  color: #2ecc71;
  margin-bottom: 6px;
}
.ask-warning {
  font-size: 13px;
  color: #666;
  margin-bottom: 10px;
}
/* Compact Ask Don editor controls */
#questionsFieldBlock{
  max-width: 850px;
}

#questionsFieldBlock .editor-input,
#questionsFieldBlock .editor-textarea,
#questionsFieldBlock select{
  font-size: 18px;
  line-height: 1.35;
}

.q-textarea-small{
  min-height: 90px !important;
  max-height: 140px;
}

.q-textarea-answer{
  min-height: 130px !important;
  max-height: 220px;
}

#questionsFieldBlock .editor-label{
  margin-top: 10px;
  font-size: 15px;
}

#questionsFieldBlock .editor-buttons{
  position: sticky;
  bottom: 0;
  background: #071012;
  padding: 10px 0;
  z-index: 5;
}
/* Make Ask Don input boxes easier to see */
#ask-don input,
#ask-don textarea{
  background:#ffffff !important;
  color:#111 !important;
  border:3px solid #65d84f !important;
  box-shadow:0 0 0 3px rgba(101,216,79,.18), 0 8px 22px rgba(0,0,0,.35);
  font-size:18px;
  font-weight:700;
}

#ask-don input::placeholder,
#ask-don textarea::placeholder{
  color:#555 !important;
  font-weight:700;
}

#ask-don input:focus,
#ask-don textarea:focus{
  outline:none;
  border-color:#9cff7a !important;
  box-shadow:0 0 0 5px rgba(156,255,122,.28), 0 10px 26px rgba(0,0,0,.45);
}

#ask-don .ask-name-row{
  gap:10px;
  margin-bottom:12px;
}

#ask-don textarea{
  min-height:120px;
}

.btn{
  text-shadow:none !important;
  letter-spacing:.3px;
}

.btn:active{
  transform:scale(.98);
}

/* =========================
/* ===== MOBILE ONLY BUTTON READABILITY FIX ===== */
@media (max-width:700px){

  .cta-row .btn,
  .btn-call,
  .btn-text{
    background:linear-gradient(180deg,#8bff7f 0%, #35c94a 100%) !important;
    color:#041004 !important;
    font-weight:900 !important;
    text-shadow:none !important;
    opacity:1 !important;
  }

  #prevBtn,
  #nextBtn,
  #productPrev,
  #productNext{
    color:#041004 !important;
    font-weight:900 !important;
    text-shadow:none !important;
    opacity:1 !important;
  }
}/* ===== MOBILE BUTTON VISIBILITY FIX (final) ===== */
@media (max-width: 768px){

  /* Fix ALL green buttons visibility */
  .btn,
  .btn-green,
  .btn-question,
  .btn-finder-launch{
    background: linear-gradient(180deg, #4ade80, #15803d) !important;
    color: #022c22 !important;
    font-weight: 900 !important;
    text-shadow: none !important;
    border: 1px solid rgba(0,0,0,.35) !important;
    box-shadow:
      0 4px 12px rgba(0,0,0,.35),
      inset 0 1px 0 rgba(255,255,255,.25) !important;
  }

  /* Specifically fix Find Help button */
  .btn-finder-launch{
    color:#022c22 !important;
  }

  /* Fix Prev / Next buttons */
  #prevBtn,
  #nextBtn,
  #productPrev,
  #productNext{
    background: linear-gradient(180deg, #22c55e, #166534) !important;
    color: #ecfdf5 !important;
    font-weight: 900 !important;
    opacity: 1 !important;
  }

  /* Random button stays darker */
  #randomBtn{
    background: rgba(255,255,255,.08) !important;
    color: #e5e7eb !important;
  }

}
/* ===== Ask Don Peg Board Cleanup ===== */

.quick-help-box{
  margin: 18px 0 18px;
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(14, 28, 25, .92), rgba(8, 18, 17, .96));
  border: 1px solid rgba(116, 255, 92, .22);
  box-shadow: 0 18px 45px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.05);
}

.quick-help-title{
  font-size: 1.25rem;
  font-weight: 900;
  color: #f3f7f2;
  margin-bottom: 4px;
}

.quick-help-note{
  color: rgba(235,245,235,.72);
  font-weight: 700;
  margin-bottom: 14px;
}

.quick-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 12px 0 16px;
}

.quick-grid label{
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.10);
  color: #eef4ee;
  font-weight: 850;
  line-height: 1.15;
  cursor: pointer;
  user-select: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}

.quick-grid label:hover{
  border-color: rgba(116,255,92,.55);
  background: rgba(116,255,92,.10);
}

.quick-grid input[type="checkbox"]{
  appearance: none;
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 7px;
  border: 2px solid rgba(116,255,92,.65);
  background: rgba(0,0,0,.28);
  box-shadow: inset 0 1px 3px rgba(0,0,0,.45);
}

.quick-grid input[type="checkbox"]:checked{
  background: linear-gradient(180deg, #a8ff78, #26c95a);
  border-color: #b7ff8e;
}

.quick-grid input[type="checkbox"]:checked::after{
  content: "✓";
  display: block;
  text-align: center;
  color: #061006;
  font-size: 16px;
  font-weight: 1000;
  line-height: 18px;
}

#buildQuestionBtn{
  margin-top: 4px;
  width: 100%;
  font-size: 1.05rem;
}

/* Mobile: one clean column */
@media (max-width: 700px){
  .quick-help-box{
    padding: 16px;
    border-radius: 18px;
  }

  .quick-grid{
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .quick-grid label{
    min-height: 56px;
    font-size: 1rem;
  }
}

.ask-public-search-wrap{
  margin: 18px 0 10px;
}

#askPublicSearch{
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(116,255,92,.35);
  background: rgba(0,0,0,.35);
  color: #f3f7f2;
  font-weight: 800;
  font-size: 1rem;
}

.qa-answer-preview,
.qa-answer-full{
  margin-top: 10px;
}

.qa-toggle-btn{
  margin-top: 10px;
}
/* ===== Hero CTA Button Order + Fade In ===== */

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  align-items:center;
}

.btn-lookup{
  background:linear-gradient(180deg, #17252b, #0b1418);
  border:1px solid rgba(116,255,92,.28);
  color:#f3f7f2;
}

.btn-lookup:hover{
  border-color:rgba(116,255,92,.65);
  box-shadow:0 0 18px rgba(116,255,92,.18);
}

.fade-step{
  opacity:0;
  transform:translateY(10px);
  animation:orbsFadeIn .7s ease forwards;
}

.fade-step-1{ animation-delay:.8s; }
.fade-step-2{ animation-delay:1.8s; }
.fade-step-3{ animation-delay:3.0s; }
.fade-step-4{ animation-delay:4.2s; }
.fade-step-5{ animation-delay:5.4s; }
.fade-step-6{ animation-delay:6.6s; }

@keyframes orbsFadeIn{
  to{
    opacity:1;
    transform:translateY(0);
  }
}

@media (max-width:700px){
  .hero-actions .btn{
    flex:1 1 42%;
    text-align:center;
  }

  .hero-actions .btn-lookup{
    flex-basis:100%;
  }
}
/* ===== Lookup Section Matches Button Style ===== */

.lookup-section{
  margin-top:28px;
}

.lookup-box{
  background:linear-gradient(180deg, #17252b, #0b1418);
  border:1px solid rgba(116,255,92,.28);
  border-radius:14px;
  padding:18px 16px;
  box-shadow:0 0 18px rgba(116,255,92,.12);
  transition:.25s ease;
}

.lookup-box:hover{
  border-color:rgba(116,255,92,.65);
  box-shadow:0 0 24px rgba(116,255,92,.18);
}

.lookup-title{
  font-weight:700;
  color:#9cff8a;
  margin-bottom:10px;
  letter-spacing:.3px;
}

/* Input styling to match theme */
.lookup-box input{
  width:100%;
  padding:10px 12px;
  border-radius:10px;
  border:1px solid rgba(116,255,92,.25);
  background:#0a1216;
  color:#eaf7ea;
}

.lookup-box input:focus{
  outline:none;
  border-color:rgba(116,255,92,.65);
  box-shadow:0 0 10px rgba(116,255,92,.2);
}
html{
  scroll-behavior:smooth;
}
.lookup-note{
  margin:8px 0 14px;
  font-size:14px;
  opacity:.85;
}

.lookup-closed{
  max-height:0;
  overflow:hidden;
  opacity:0;
  transition:all .4s ease;
}

.lookup-section{
  transition:all .4s ease;
}

.lookup-section.open{
  max-height:500px;
  opacity:1;
}

/* ===== Have Don Call You Now ===== */

.btn-callback{
  background:linear-gradient(180deg, #ffd36a, #f59e0b) !important;
  color:#1b1000 !important;
}

.callback-box{
  margin:22px 0;
  padding:18px;
  border-radius:18px;
  background:linear-gradient(180deg, rgba(44,31,8,.94), rgba(16,13,6,.96));
  border:1px solid rgba(255,211,106,.45);
  box-shadow:0 18px 45px rgba(0,0,0,.28);
}

.callback-box h3{
  margin:0 0 8px;
  color:#ffd36a;
  font-size:1.35rem;
}

.callback-note{
  margin:0 0 12px;
  color:rgba(255,255,255,.78);
  font-weight:700;
}

.callback-box input,
.callback-box textarea{
  width:100%;
  margin-top:10px;
  padding:12px 14px;
  border-radius:12px;
  border:2px solid rgba(255,211,106,.45);
  background:#fff !important;
  color:#111 !important;
  font-size:18px;
  font-weight:800;
}

.callback-box textarea{
  min-height:100px;
}
#askPhone{
  margin-top:10px;
}

/* Fix message text wrapping and overflow */
.call-request-message {
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-height: 1.4;
}

/* Ensure the container grows with content */
.call-request-box {
  height: auto;
  min-height: 120px; /* adjust as needed */
  overflow: hidden;
}

/* If you're using a textarea */
.call-request-box textarea {
  width: 100%;
  resize: vertical;
  min-height: 80px;
  box-sizing: border-box;
}
/* ===== FIX: Call request text overflow ===== */

.call-request-box {
  height: auto !important;
  min-height: 140px;
  overflow: hidden;
}

.call-request-message {
  white-space: normal !important;
  word-break: break-word;
  overflow-wrap: break-word;
  line-height: 1.4;
}

/* This handles the actual message preview/output */
.call-request-output {
  max-height: 160px;
  overflow-y: auto;
  padding-right: 6px;
}

/* If textarea is used */
.call-request-box textarea {
  width: 100%;
  min-height: 90px;
  resize: vertical;
  box-sizing: border-box;
}

/* ===== HYBRID OLD/NEW SERVICE CARDS ===== */

.hybrid-cards{
  grid-column:1 / -1;
  background:
    radial-gradient(circle at top left, rgba(95,255,90,.12), transparent 36%),
    linear-gradient(180deg, rgba(22,34,34,.96), rgba(12,18,20,.96));
  border:1px solid rgba(117,255,101,.22);
}

.hybrid-head{
  margin-bottom:18px;
}

.hybrid-head h2{
  margin:0;
  font-size:clamp(1.8rem, 3vw, 2.7rem);
  color:#f5f7f2;
}

.hybrid-head p{
  margin:8px 0 0;
  color:rgba(255,255,255,.76);
  font-size:1.05rem;
  font-weight:700;
}

.hybrid-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:16px;
}

.hybrid-card{
  display:block;
  padding:22px;
  min-height:190px;
  border-radius:18px;
  text-decoration:none;
  color:#f7fff2;
  background:
    linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.025));
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 16px 35px rgba(0,0,0,.22);
  transition:transform .18s ease, border-color .18s ease, background .18s ease;
}

.hybrid-card:hover{
  transform:translateY(-3px);
  border-color:rgba(117,255,101,.55);
  background:
    linear-gradient(180deg, rgba(96,255,90,.16), rgba(255,255,255,.035));
}

.hybrid-icon{
  font-size:2rem;
  margin-bottom:12px;
}

.hybrid-card h3{
  margin:0 0 8px;
  font-size:1.35rem;
  color:#7dff5f;
}

.hybrid-card p{
  margin:0;
  color:rgba(255,255,255,.8);
  line-height:1.35;
  font-size:1rem;
}

.hybrid-card-ask{
  background:
    linear-gradient(180deg, rgba(255,163,26,.22), rgba(75,42,0,.20));
  border-color:rgba(255,163,26,.45);
}

.hybrid-card-ask h3{
  color:#ffd36a;
}

@media (max-width:900px){
  .hybrid-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}

@media (max-width:620px){
  .hybrid-grid{
    grid-template-columns:1fr;
  }

  .hybrid-card{
    min-height:auto;
    padding:18px;
  }
}
section{
  padding:28px 16px;
}
#finder {
  scroll-margin-top: 100px;
}
html {
  scroll-behavior: smooth;
}
.ask-submit-status{
  margin-top:14px;
  padding:12px 14px;
  border-radius:12px;
  background:rgba(126,217,87,.12);
  border:1px solid rgba(126,217,87,.35);
  color:#eaffdf;
  font-weight:700;
}
.lookup-wait{
  font-size:12px;
  opacity:.65;
  margin-top:8px;
  text-align:center;
  color:#dfffd8;
}
.qa-recommend{
  margin-top:10px;
  text-align:center;
}

.qa-recommend-btn{
  font-size:14px;
  padding:8px 14px;
}

/* ===== FORCE NEWS TO RIGHT SIDE ===== */
body main.wrap section.grid > .ask-don-box{
  grid-column:1 !important;
  grid-row:2 !important;
}

body main.wrap section.grid > .about{
  grid-column:2 !important;
  grid-row:2 !important;
}

body main.wrap section.grid > .product-sales{
  grid-column:1 !important;
  grid-row:3 !important;
}

body main.wrap section.grid > .specials-box{
  grid-column:2 !important;
  grid-row:3 !important;
}

body main.wrap section.grid > .services,
body main.wrap section.grid > .hybrid-cards{
  grid-column:1 / -1 !important;
  grid-row:4 !important;
}


/* =========================================================
   ORBS FINAL GUARDRAILS
   Keep this section last. Add future one-off fixes here only
   after checking that the selector is not already defined above.
   ========================================================= */
.top-actions{ overflow:visible; }
.topbar{ overflow:visible; }

/* ===== BBB WORDPRESS IMAGE EXACT FINAL ===== */

.top-actions .bbb-badge{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  width:300px !important;
  min-width:300px !important;
  height:auto !important;
  margin-left:12px !important;
  padding:0 !important;
  background:transparent !important;
  border:0 !important;
  box-shadow:none !important;
  overflow:visible !important;
  text-decoration:none !important;
}

.top-actions .bbb-img{
  display:block !important;
  width:300px !important;
  height:auto !important;
  max-height:none !important;
  object-fit:contain !important;
  border-radius:0 !important;
  filter:none !important;
  background:transparent !important;
}

.top-actions .bbb-badge:hover .bbb-img{
  transform:translateY(-1px);
}
.top-actions{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}

.bbb-badge{
  margin-left:8px;
}

@media (max-width:600px){
  .bbb-badge{
    margin-top:6px;
  }
}
.bbb-img{
  height:48px;
  width:auto;
  display:block;
  border-radius:6px;
  box-shadow:0 4px 10px rgba(0,0,0,0.4);
  transition:transform .2s ease, box-shadow .2s ease;
}

.bbb-badge:hover .bbb-img{
  transform:translateY(-2px);
  box-shadow:0 6px 14px rgba(0,0,0,0.6);
}
/* ===== ORBS FINAL BBB + MOBILE HEADER OVERRIDE ===== */

.topbar,
.top-actions{
  overflow:visible !important;
}

.top-actions .bbb-badge{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  width:300px !important;
  min-width:300px !important;
  height:auto !important;
  margin-left:12px !important;
  padding:0 !important;
  background:transparent !important;
  border:0 !important;
  box-shadow:none !important;
}

.top-actions .bbb-img{
  display:block !important;
  width:300px !important;
  height:auto !important;
  max-height:none !important;
  object-fit:contain !important;
  border-radius:8px !important;
  filter:saturate(1.18) contrast(1.08) brightness(1.04) !important;
  box-shadow:0 4px 12px rgba(0,0,0,.35) !important;
}

@media (max-width:700px){
  .topbar{
    align-items:flex-start !important;
    gap:14px !important;
  }

  .top-actions{
    display:flex !important;
    justify-content:flex-start !important;
    align-items:center !important;
    gap:12px !important;
    flex-wrap:wrap !important;
    overflow:visible !important;
  }

  .top-actions .bbb-badge{
    width:340px !important;
    min-width:0 !important;
    max-width:92vw !important;
    margin:4px 0 0 0 !important;
  }

  .top-actions .bbb-img{
    width:340px !important;
    max-width:92vw !important;
  }
}

/* ===== MOBILE STICKY CALL/TEXT BAR ===== */

.mobile-sticky-actions{
  display:none;
}

@media (max-width:700px){
  .mobile-sticky-actions{
    position:fixed;
    left:0;
    right:0;
    bottom:0;
    z-index:9998;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:8px;
    padding:10px;
    background:rgba(5,10,8,.92);
    border-top:1px solid rgba(126,217,87,.35);
    backdrop-filter:blur(10px);
  }

  .mobile-sticky-actions a{
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:48px;
    border-radius:14px;
    background:linear-gradient(180deg,#8bff7f,#22a83f);
    color:#041004 !important;
    text-decoration:none;
    font-weight:950;
    font-size:18px;
  }

  body{
    padding-bottom:76px;
  }
}
/* ===== SUBPAGE HELP CARDS ===== */

.hybrid-cards{
  margin-top:20px;
}

.hybrid-head h2{
  margin-bottom:6px;
}

.hybrid-head p{
  opacity:.85;
  margin-bottom:14px;
}

.hybrid-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:14px;
}

.hybrid-card{
  display:block;
  text-decoration:none;
  padding:16px;
  border-radius:16px;
  background:rgba(0,0,0,.35);
  border:1px solid rgba(126,217,87,.18);
  transition:.2s;
}

.hybrid-card:hover{
  transform:translateY(-2px);
  border-color:#7ed957;
  box-shadow:0 0 12px rgba(126,217,87,.25);
}

.hybrid-icon{
  font-size:26px;
  margin-bottom:6px;
}

.hybrid-card h3{
  margin:4px 0;
  color:#9cff8a;
}

.hybrid-card p{
  font-size:14px;
  opacity:.85;
}

.hybrid-card-ask{
  background:linear-gradient(135deg,rgba(255,170,0,.18),rgba(255,120,0,.18));
  border:1px solid rgba(255,170,0,.35);
}
/* ===== WEEKLY NEWS EDITOR SPLIT PREVIEW ===== */

.news-editor-split{
  display:grid;
  grid-template-columns:minmax(280px, 42%) minmax(320px, 58%);
  gap:18px;
  align-items:start;
}

.news-editor-fields{
  min-width:0;
}

.news-editor-preview{
  position:sticky;
  top:18px;
  min-width:0;
}

.news-preview-card{
  margin:0;
  max-width:620px;
}

#newsFieldBlock .editor-textarea{
  min-height:82px !important;
}

#newsFieldBlock #nP1,
#newsFieldBlock #nP2,
#newsFieldBlock #nBio1,
#newsFieldBlock #nBio2,
#newsFieldBlock #nBio3{
  min-height:70px !important;
}

@media (max-width:900px){
  .news-editor-split{
    grid-template-columns:1fr;
  }

  .news-editor-preview{
    position:relative;
    top:auto;
  }
}
/* ===== WEEKLY NEWS EDITOR COMPACT CLEANUP ===== */

#newsFieldBlock .news-editor-split{
  display:grid;
  grid-template-columns: 420px minmax(420px, 560px);
  gap:22px;
  align-items:start;
}

#newsFieldBlock .news-editor-fields{
  max-height:72vh;
  overflow-y:auto;
  padding-right:10px;
}

#newsFieldBlock .news-editor-preview{
  position:sticky;
  top:12px;
}

#newsFieldBlock .editor-textarea{
  height:90px !important;
  min-height:90px !important;
}

#newsFieldBlock #nP1,
#newsFieldBlock #nP2{
  height:120px !important;
  min-height:120px !important;
}

#newsFieldBlock #nBio1,
#newsFieldBlock #nBio2,
#newsFieldBlock #nBio3{
  height:80px !important;
  min-height:80px !important;
}

#newsFieldBlock .editor-input{
  min-height:38px;
  padding:8px 10px;
}

#newsFieldBlock .editor-label{
  margin-top:8px;
  margin-bottom:4px;
}

#newsFieldBlock .news-preview-card{
  max-height:68vh;
  overflow-y:auto;
}

@media (max-width:900px){
  #newsFieldBlock .news-editor-split{
    grid-template-columns:1fr;
  }

  #newsFieldBlock .news-editor-preview{
    position:static;
  }
}
/* ===== WEEKLY NEWS EDITOR WIDTH TUNE ===== */

#newsFieldBlock .news-editor-split{
  grid-template-columns: 520px minmax(440px, 560px) !important;
}

#newsFieldBlock .news-editor-fields{
  width:520px !important;
}

#newsFieldBlock .news-editor-fields .editor-input,
#newsFieldBlock .news-editor-fields .editor-textarea{
  width:100% !important;
  box-sizing:border-box;
}
/* ===== MATCH PREVIEW TO REAL SITE CARD ===== */

#newsFieldBlock .news-editor-preview{
  display:flex;
  justify-content:center;
}

#newsFieldBlock .news-preview-card{
  width:100%;
  max-width:480px;   /* matches your live card feel */
  margin:0 auto;
}
/* ===== WEEKLY NEWS IMAGE + MOBILE PREVIEW ===== */

.news-preview-toggle{
  margin-bottom:10px;
}

.news-preview-image{
  display:block;
  width:100%;
  max-height:180px;
  object-fit:cover;
  border-radius:14px;
  margin-bottom:14px;
}

.news-preview-card.news-preview-mobile{
  max-width:390px !important;
}

.news-preview-card.news-preview-mobile .about-row{
  display:block;
}

.news-preview-card.news-preview-mobile .about-thumb{
  float:left;
  margin:0 14px 8px 0;
}

.news-preview-card.news-preview-mobile .about-text,
.news-preview-card.news-preview-mobile .bullets{
  font-size:15px;
  line-height:1.45;
}
/* ===== NEWS PREVIEW TOGGLE FIX ===== */

#newsFieldBlock .news-editor-preview{
  display:grid;
  grid-template-columns:1fr;
  gap:8px;
}

#newsFieldBlock .news-preview-toggle{
  display:flex;
  gap:8px;
  margin:0 0 8px 0;
}

#newsFieldBlock .news-toggle-btn{
  border:1px solid rgba(126,217,87,.35);
  background:rgba(0,0,0,.35);
  color:#e9f4ea;
  border-radius:10px;
  padding:7px 12px;
  font-weight:800;
  font-size:13px;
  cursor:pointer;
}

#newsFieldBlock .news-toggle-btn.active{
  background:linear-gradient(180deg,#74d94d,#279a2b);
  color:#fff;
}

#newsFieldBlock .news-preview-card{
  max-width:480px !important;
}
/* ===== WEEKLY NEWS EDITOR FINAL BREATHING ROOM ===== */

#newsFieldBlock .news-editor-split{
  grid-template-columns: 500px 1fr !important;
  column-gap:32px !important;
}

#newsFieldBlock .news-editor-preview{
  padding-left:10px;
}

#newsFieldBlock .news-preview-card{
  max-width:520px !important;
}
/* ===== EDITOR OVERLAY SCROLL FIX ===== */

.editor{
  overflow-y:auto !important;
  align-items:flex-start !important;
  padding:24px 16px 80px !important;
}

.editor-card{
  max-height:none !important;
  overflow:visible !important;
  margin-bottom:80px !important;
}

.editor-left{
  max-height:none !important;
  overflow:visible !important;
}

#newsFieldBlock .news-editor-fields{
  max-height:none !important;
  overflow:visible !important;
}
/* ===== NEWS IMAGE PREVIEW POLISH ===== */

.news-preview-image{
  width:100%;
  max-height:220px;
  object-fit:cover;
  border-radius:12px;
  margin:10px 0 14px 0;
  display:block;
}

/* tighter mobile preview */
.news-preview-mobile .news-preview-image{
  max-height:140px;
  border-radius:10px;
}

/* spacing so text flows nicely under image */
.news-preview-card p{
  margin-top:8px;
}
/* hide helper */
.hidden{
  display:none !important;
}

/* news image styling */
.news-preview-image{
  width:100%;
  max-height:220px;
  object-fit:cover;
  border-radius:12px;
  margin:10px 0 14px 0;
  display:block;
}

/* ===== NEWS DROP ZONE ===== */

.drop-zone{
  border:2px dashed rgba(126,217,87,.4);
  border-radius:12px;
  padding:16px;
  text-align:center;
  cursor:pointer;
  margin-bottom:10px;
  background:rgba(0,0,0,.25);
}

.drop-zone.dragover{
  background:rgba(126,217,87,.2);
}

.drop-text{
  font-size:14px;
  color:#cfe9cf;
}
/* ===== NEWS DROP ZONE ===== */

.drop-zone{
  border:2px dashed rgba(126,217,87,.4);
  border-radius:12px;
  padding:16px;
  text-align:center;
  cursor:pointer;
  margin-bottom:10px;
  background:rgba(0,0,0,.25);
}

.drop-zone.dragover{
  background:rgba(126,217,87,.2);
}

.drop-text{
  font-size:14px;
  color:#cfe9cf;
}

#askDonBox {
  scroll-margin-top: 120px;
}

@media (max-width: 650px) {
  header .bbb-badge {
    max-width: 88%;
    transform: scale(0.82);
    transform-origin: center top;
    margin: 4px auto 0;
  }
}

.mobile-sticky-actions .sticky-reset{
  background:#111;
  border:2px solid rgba(120,255,90,.75);
  color:#fff;
}

html{
  scroll-behavior:smooth;
}

.section-bottom-action{
  display:flex;
  justify-content:flex-end;
  margin-top:18px;
}

.section-bottom-action .btn{
  width:auto;
  max-width:max-content;
}
/* FIX Ask Don checkbox layout */
.quick-grid label,
.quick-submenus label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
}

.quick-grid input[type="checkbox"],
.quick-submenus input[type="checkbox"] {
  width: 22px !important;
  height: 22px !important;
  min-width: 22px;
  flex: 0 0 22px;
  margin: 0;
  padding: 0;
  accent-color: #58d84f;
}

.quick-help-title {
  margin-bottom: 6px;
}

.quick-help-note {
  margin: 6px 0 14px;
  line-height: 1.35;
}

.quick-help-box .section-top-link {
  text-align: right;
  margin: 4px 0 10px;
}

/* ===== ORBS HOMEPAGE GRID FINAL RESTORE ===== */
@media (min-width: 701px){

  main.wrap > section.grid{
    display:grid !important;
    grid-template-columns:minmax(0, 1.15fr) minmax(0, .95fr) !important;
    gap:22px !important;
    align-items:start !important;
  }

  main.wrap > section.grid > .hero{
    grid-column:1 !important;
    grid-row:1 !important;
  }

  main.wrap > section.grid > .stack{
    grid-column:2 !important;
    grid-row:1 !important;
  }

  main.wrap > section.grid > #ask-don{
    grid-column:1 !important;
    grid-row:2 !important;
  }

  main.wrap > section.grid > #newsBioCard{
    grid-column:2 !important;
    grid-row:2 !important;
  }

  main.wrap > section.grid > #product-viewer{
    grid-column:1 !important;
    grid-row:3 !important;
  }

  main.wrap > section.grid > #specialsBox{
    grid-column:2 !important;
    grid-row:3 !important;
  }

  main.wrap > section.grid > #service-cards{
    grid-column:1 / -1 !important;
    grid-row:4 !important;
  }

  main.wrap > section.grid > #coupon{
    grid-column:1 / -1 !important;
    grid-row:5 !important;
  }

  main.wrap > section.grid > #organic{
    grid-column:1 / -1 !important;
    grid-row:6 !important;
  }

  main.wrap > section.grid > .footer{
    grid-column:1 / -1 !important;
    grid-row:7 !important;
  }
}
/* ===== ORBS ABSOLUTE HOMEPAGE PLACEMENT FIX ===== */
@media (min-width: 701px){

  body main.wrap section.grid{
    display:grid !important;
    grid-template-columns:minmax(0, 1.15fr) minmax(0, .95fr) !important;
    grid-auto-flow:row !important;
    gap:22px !important;
    align-items:start !important;
  }

  body main.wrap section.grid > .hero{
    grid-column:1 !important;
    grid-row:1 !important;
  }

  body main.wrap section.grid > .stack{
    grid-column:2 !important;
    grid-row:1 !important;
  }

  body main.wrap section.grid > #service-cards{
  grid-column:1 / -1 !important;
  grid-row:4 !important;
  }

  body main.wrap section.grid > #ask-don{
  grid-column:1 !important;
  grid-row:2 !important;
}

body main.wrap section.grid > #newsBioCard{
  grid-column:2 !important;
  grid-row:2 !important;
  align-self:start !important;
}

body main.wrap section.grid > #product-viewer{
  grid-column:1 !important;
  grid-row:3 !important;
}

body main.wrap section.grid > #specialsBox{
  grid-column:2 !important;
  grid-row:3 !important;
  align-self:start !important;
}

  body main.wrap section.grid > #coupon{
    grid-column:1 / -1 !important;
    grid-row:5 !important;
  }

  body main.wrap section.grid > #organic{
    grid-column:1 / -1 !important;
    grid-row:6 !important;
  }

  body main.wrap section.grid > .footer{
    grid-column:1 / -1 !important;
    grid-row:7 !important;
  }
}
