/* ============================================================
   ShoppingAds Platform — main.css v2
   All class names prefixed sa- (ShoppingAds)
   ============================================================ */

/* ── Reset & base ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --black:   #0a0a0a;
  --white:   #ffffff;
  --gray-1:  #f7f8fa;
  --gray-2:  #f0f2f5;
  --gray-3:  #e4e8ed;
  --gray-5:  #8b95a1;
  --gray-8:  #2d3748;
  --blue:    #3b82f6;
  --green:   #00a651;
  --red:     #dc3545;
  --amber:   #f59e0b;
  --radius:  12px;
  --shadow:  0 1px 4px rgba(0,0,0,.08), 0 4px 16px rgba(0,0,0,.06);
  --shadow-hover: 0 4px 12px rgba(0,0,0,.12), 0 8px 32px rgba(0,0,0,.10);
  --font-head: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}
html { font-size: 16px; scroll-behavior: smooth; }
body.sa-body { font-family: var(--font-body); color: var(--black); background: var(--white); min-height: 100vh; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
input, select, button, textarea { font-family: var(--font-body); }

/* ── Buttons ──────────────────────────────────────────── */
.sa-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 10px 20px; border-radius: var(--radius); font-weight: 600; font-size: 14px;
  cursor: pointer; border: 2px solid transparent; transition: all .15s; white-space: nowrap;
  text-decoration: none;
}
.sa-btn-black  { background: var(--black); color: var(--white); border-color: var(--black); }
.sa-btn-black:hover { background: #222; border-color: #222; }
.sa-btn-outline { background: transparent; color: var(--black); border-color: var(--black); }
.sa-btn-outline:hover { background: var(--black); color: var(--white); }
.sa-btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,.5); }
.sa-btn-outline-white:hover { background: rgba(255,255,255,.1); }
.sa-btn-white  { background: var(--white); color: var(--black); }
.sa-btn-white:hover { background: var(--gray-2); }
.sa-btn-ghost  { background: transparent; color: var(--gray-5); border-color: var(--gray-3); }
.sa-btn-ghost:hover { background: var(--gray-1); }
.sa-btn-sm  { padding: 6px 14px; font-size: 13px; }
.sa-btn-lg  { padding: 14px 28px; font-size: 16px; }
.sa-btn-full { width: 100%; }
.sa-btn:disabled { opacity: .55; cursor: not-allowed; }

/* ── Inputs ──────────────────────────────────────────── */
.sa-input {
  width: 100%; padding: 10px 14px; border: 1.5px solid var(--gray-3); border-radius: var(--radius);
  font-size: 14px; font-family: var(--font-body); transition: border-color .15s; background: var(--white);
}
.sa-input:focus { outline: none; border-color: var(--black); }
.sa-form-group { display: flex; flex-direction: column; gap: 6px; }
.sa-form-group label { font-size: 13px; font-weight: 600; color: var(--gray-8); }
.sa-form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.sa-span-2 { grid-column: 1/-1; }
@media (max-width: 600px) { .sa-form-grid { grid-template-columns: 1fr; } .sa-span-2 { grid-column: 1; } }

/* ── Nav ─────────────────────────────────────────────── */
.sa-nav { position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,.95); backdrop-filter: blur(12px); border-bottom: 1px solid var(--gray-3); }
.sa-nav-inner { max-width: 1300px; margin: 0 auto; padding: 0 20px; height: 64px; display: flex; align-items: center; gap: 16px; }
.sa-logo { font-family: var(--font-head); font-size: 20px; font-weight: 800; color: var(--black); }
.sa-logo span { color: var(--blue); }
.sa-nav-search { flex: 1; max-width: 500px; position: relative; }
.sa-nav-search input { width: 100%; padding: 8px 14px; border: 1.5px solid var(--gray-3); border-radius: 100px; font-size: 14px; }
.sa-nav-search input:focus { outline: none; border-color: var(--black); }
.sa-nav-search-drop { position: absolute; top: calc(100% + 4px); left: 0; right: 0; background: var(--white); border: 1px solid var(--gray-3); border-radius: var(--radius); box-shadow: var(--shadow-hover); display: none; max-height: 320px; overflow-y: auto; z-index: 999; }
.sa-nav-search-drop.open { display: block; }
.sa-nav-search-result { display: flex; align-items: center; gap: 10px; padding: 10px 14px; cursor: pointer; border-bottom: 1px solid var(--gray-2); }
.sa-nav-search-result:hover { background: var(--gray-1); }
.sa-nav-search-result img { width: 36px; height: 36px; object-fit: cover; border-radius: 6px; flex-shrink: 0; }
.sa-nav-search-result-name { font-weight: 600; font-size: 13px; }
.sa-nav-search-result-price { font-size: 12px; color: var(--gray-5); }
.sa-nav-links { display: flex; gap: 4px; }
.sa-nav-links a { padding: 6px 12px; border-radius: 8px; font-size: 14px; font-weight: 500; color: var(--gray-8); transition: background .15s; }
.sa-nav-links a:hover, .sa-nav-links a.active { background: var(--gray-2); color: var(--black); }
.sa-nav-auth { display: flex; gap: 8px; margin-left: auto; }
@media (max-width: 900px) { .sa-nav-links { display: none; } }
@media (max-width: 600px) { .sa-nav-search { max-width: 100%; } .sa-logo { font-size: 16px; } }

/* ── Layout helpers ──────────────────────────────────── */
.sa-page-wrap { max-width: 1300px; margin: 0 auto; padding: 48px 20px; }
.sa-section { max-width: 1300px; margin: 0 auto; padding: 48px 20px; }
.sa-section-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.sa-section-head h2 { font-family: var(--font-head); font-size: 24px; font-weight: 800; }
.sa-section-head a { font-size: 14px; font-weight: 600; color: var(--blue); }
.sa-page-title { font-family: var(--font-head); font-size: 32px; font-weight: 800; margin-bottom: 32px; }
.sa-empty { color: var(--gray-5); font-size: 15px; padding: 40px; text-align: center; }

/* ── Product grid ────────────────────────────────────── */
.sa-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }
@media (max-width: 600px) { .sa-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }

/* ── Product card ────────────────────────────────────── */
.sa-card { background: var(--white); border: 1px solid var(--gray-3); border-radius: 16px; overflow: hidden; transition: box-shadow .2s, transform .2s; }
.sa-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.sa-card-img-wrap { position: relative; display: block; height: 200px; overflow: hidden; background: var(--gray-2); }
.sa-card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.sa-card:hover .sa-card-img-wrap img { transform: scale(1.04); }
.sa-badge { position: absolute; padding: 4px 10px; border-radius: 100px; font-size: 11px; font-weight: 700; }
.sa-badge-fire { top: 10px; left: 10px; background: var(--black); color: var(--white); }
.sa-badge-deal  { top: 10px; right: 10px; background: var(--red); color: var(--white); }
.sa-card-body { padding: 14px; display: flex; flex-direction: column; gap: 8px; }
.sa-card-cat { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--blue); }
.sa-card-title { font-family: var(--font-head); font-size: 14px; font-weight: 700; line-height: 1.35; }
.sa-card-title a { color: var(--black); }
.sa-card-title a:hover { color: var(--blue); }
.sa-card-price-row { display: flex; align-items: baseline; gap: 8px; }
.sa-price { font-size: 20px; font-weight: 800; font-family: var(--font-head); }
.sa-price-orig { font-size: 13px; color: var(--gray-5); text-decoration: line-through; }
.sa-cb-pill { display: inline-flex; align-items: center; gap: 4px; background: #e6f7ee; color: var(--green); font-size: 12px; font-weight: 700; padding: 3px 10px; border-radius: 100px; }
.sa-card-stores { display: flex; flex-direction: column; gap: 4px; border-top: 1px solid var(--gray-2); padding-top: 8px; }
.sa-card-store-row { display: flex; align-items: center; gap: 6px; font-size: 12px; }
.sa-card-store-row span:first-child { flex: 1; color: var(--gray-8); }
.sa-card-store-price { font-weight: 700; }
.sa-card-store-cb { color: var(--green); font-size: 11px; }
.sa-card-actions { display: flex; gap: 6px; }
.sa-copy-btn { cursor: pointer; }

/* ── RTB Slot ────────────────────────────────────────── */
.sa-rtb-slot { max-width: 1300px; margin: 0 auto 8px; padding: 0 20px; }
.sa-rtb-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--gray-5); margin-bottom: 6px; }
.sa-rtb-inner { display: flex; align-items: center; gap: 14px; background: linear-gradient(135deg, #f8f9fe, #eef2ff); border: 1px solid #c7d2fe; border-radius: 12px; padding: 12px 16px; }
.sa-rtb-inner img { width: 56px; height: 56px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.sa-rtb-name { font-weight: 700; font-size: 14px; }
.sa-rtb-price { font-size: 13px; color: var(--gray-5); margin-top: 2px; }

/* ── Category bar ────────────────────────────────────── */
.sa-cats-bar { position: sticky; top: 64px; z-index: 99; background: rgba(255,255,255,.95); backdrop-filter: blur(8px); border-bottom: 1px solid var(--gray-3); }
.sa-cats-inner { max-width: 1300px; margin: 0 auto; padding: 0 20px; display: flex; gap: 6px; overflow-x: auto; height: 48px; align-items: center; scrollbar-width: none; }
.sa-cats-inner::-webkit-scrollbar { display: none; }
.sa-cat { padding: 6px 16px; border-radius: 100px; font-size: 13px; font-weight: 600; cursor: pointer; border: 1.5px solid #d1d5db; background: var(--white); color: #374151; white-space: nowrap; transition: all .15s; }
.sa-cat:hover { background: #f3f4f6; color: #111827; border-color: #9ca3af; }
.sa-cat.active { background: var(--black); color: var(--white); border-color: var(--black); }

/* ── Hero ────────────────────────────────────────────── */
.sa-hero { background: linear-gradient(135deg, var(--black) 0%, #1a1a3e 60%, var(--black) 100%); color: var(--white); padding: 80px 20px; text-align: center; }
.sa-hero-inner { max-width: 720px; margin: 0 auto; }
.sa-hero h1 { font-family: var(--font-head); font-size: clamp(32px, 5vw, 60px); font-weight: 800; line-height: 1.15; margin-bottom: 20px; color: #fff; }
.sa-hero p { font-size: 18px; color: rgba(255,255,255,.75); max-width: 560px; margin: 0 auto 32px; line-height: 1.6; }
.sa-hero-search { display: flex; gap: 0; max-width: 560px; margin: 0 auto 36px; background: rgba(255,255,255,.1); border: 1.5px solid rgba(255,255,255,.2); border-radius: 14px; overflow: hidden; }
.sa-hero-search input { flex: 1; background: transparent; border: none; padding: 14px 18px; font-size: 16px; color: var(--white); outline: none; }
.sa-hero-search input::placeholder { color: rgba(255,255,255,.4); }
.sa-hero-search button { padding: 14px 24px; background: var(--white); color: var(--black); font-weight: 700; border: none; cursor: pointer; font-size: 15px; }
.sa-hero-search button:hover { background: var(--gray-2); }
.sa-hero-stats { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.sa-hero-stat strong { display: block; font-size: 26px; font-weight: 800; font-family: var(--font-head); }
.sa-hero-stat span { font-size: 12px; color: rgba(255,255,255,.6); margin-top: 2px; display: block; }

/* ── Cashback banner ─────────────────────────────────── */
.sa-cashback-banner { background: linear-gradient(135deg, #00a651, #007a3d); color: var(--white); }
.sa-cashback-banner-inner { max-width: 1300px; margin: 0 auto; padding: 48px 20px; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.sa-cashback-banner h2 { font-family: var(--font-head); font-size: 26px; font-weight: 800; margin-bottom: 8px; }
.sa-cashback-banner p { color: rgba(255,255,255,.85); font-size: 15px; max-width: 500px; }

/* ── Price compare ───────────────────────────────────── */
.sa-compare-section { background: var(--gray-1); border-radius: 20px; }
.sa-compare-demo { display: grid; grid-template-columns: 240px 1fr; gap: 32px; align-items: start; }
@media (max-width: 700px) { .sa-compare-demo { grid-template-columns: 1fr; } }
.sa-compare-product img { width: 100%; border-radius: 12px; }
.sa-compare-product h3 { font-family: var(--font-head); font-size: 18px; font-weight: 700; margin: 12px 0 6px; }
.sa-compare-stores { display: flex; flex-direction: column; gap: 10px; }
.sa-compare-row { background: var(--white); border: 1px solid var(--gray-3); border-radius: 12px; padding: 14px 16px; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.sa-compare-best { border-color: var(--green); border-width: 2px; background: #f0fdf4; }
.sa-compare-best-tag { width: 100%; font-size: 11px; font-weight: 700; color: var(--green); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 4px; }
.sa-compare-store-name { flex: 1; font-weight: 700; }
.sa-compare-store-price { font-size: 20px; font-weight: 800; font-family: var(--font-head); }

/* ── Coupons ─────────────────────────────────────────── */
.sa-coupons-section { background: var(--gray-1); }
.sa-coupons-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
.sa-coupon-card { background: var(--white); border-radius: 12px; overflow: hidden; border: 1px solid var(--gray-3); display: flex; gap: 12px; padding: 12px; }
.sa-coupon-card img { width: 60px; height: 60px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.sa-coupon-body { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.sa-coupon-name { font-weight: 700; font-size: 13px; line-height: 1.3; }
.sa-coupon-store { font-size: 12px; color: var(--gray-5); }
.sa-coupon-row { display: flex; align-items: center; gap: 8px; }
.sa-coupon-code { background: var(--gray-2); border: 1px dashed var(--gray-5); border-radius: 6px; padding: 3px 8px; font-size: 12px; font-weight: 700; font-family: monospace; letter-spacing: .5px; }

/* ── Circulars strip ─────────────────────────────────── */
.sa-circulars-strip { display: flex; gap: 12px; overflow-x: auto; padding-bottom: 8px; scrollbar-width: none; }
.sa-circulars-strip::-webkit-scrollbar { display: none; }
.sa-circular-chip { flex-shrink: 0; background: var(--gray-1); border: 1px solid var(--gray-3); border-radius: 12px; padding: 12px 16px; text-align: center; transition: all .15s; min-width: 140px; max-width: 160px; overflow: hidden; }
.sa-circular-chip:hover { border-color: var(--black); background: var(--gray-2); }
.sa-circular-chip-name { font-weight: 700; font-size: 14px; }
.sa-circular-chip-until { font-size: 11px; color: var(--gray-5); margin-top: 2px; }

/* ── How it works ────────────────────────────────────── */
.sa-how-section { background: var(--gray-1); padding: 60px 20px; text-align: center; }
.sa-how-section h2 { font-family: var(--font-head); font-size: 32px; font-weight: 800; margin-bottom: 40px; }
.sa-how-grid { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 32px; }
.sa-how-step { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.sa-how-num { width: 48px; height: 48px; border-radius: 50%; background: var(--black); color: var(--white); font-weight: 800; font-size: 20px; display: flex; align-items: center; justify-content: center; }
.sa-how-step h3 { font-weight: 700; font-size: 16px; }
.sa-how-step p { font-size: 14px; color: var(--gray-5); line-height: 1.5; }

/* ── Brands CTA ──────────────────────────────────────── */
.sa-brands-cta { background: linear-gradient(135deg, var(--black), #1a1a3e); color: var(--white); padding: 80px 20px; text-align: center; }
.sa-brands-cta-inner { max-width: 700px; margin: 0 auto; }
.sa-brands-cta h2 { font-family: var(--font-head); font-size: 36px; font-weight: 800; margin-bottom: 16px; }
.sa-brands-cta p { color: rgba(255,255,255,.75); font-size: 17px; margin-bottom: 32px; line-height: 1.6; }
.sa-brands-cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── Footer ──────────────────────────────────────────── */
.sa-footer { background: #0a0a0a; color: rgba(255,255,255,.7); padding: 60px 20px 24px; }
.sa-footer-inner { max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: 1fr 2fr; gap: 48px; margin-bottom: 40px; }
@media (max-width: 700px) { .sa-footer-inner { grid-template-columns: 1fr; } }
.sa-footer-brand p { font-size: 14px; line-height: 1.6; margin-top: 12px; }
.sa-footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 500px) { .sa-footer-links { grid-template-columns: 1fr 1fr; } }
.sa-footer-links div { display: flex; flex-direction: column; gap: 10px; }
.sa-footer-links strong { color: var(--white); font-size: 13px; text-transform: uppercase; letter-spacing: .5px; }
.sa-footer-links a { font-size: 14px; transition: color .15s; }
.sa-footer-links a:hover { color: var(--white); }
.sa-footer-bottom { max-width: 1300px; margin: 0 auto; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); font-size: 13px; }

/* ── Auth pages ──────────────────────────────────────── */
.sa-auth-wrap { display: flex; justify-content: center; padding: 60px 20px; }
.sa-auth-box { background: var(--white); border: 1px solid var(--gray-3); border-radius: 20px; padding: 40px; width: 100%; max-width: 440px; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 16px; }
.sa-auth-box h1 { font-family: var(--font-head); font-size: 28px; font-weight: 800; }
.sa-auth-box p { color: var(--gray-5); font-size: 14px; }
.sa-auth-err { background: #fee2e2; border: 1px solid #fca5a5; border-radius: 10px; padding: 10px 14px; color: #991b1b; font-size: 14px; font-weight: 600; }
.sa-auth-alt { font-size: 14px; text-align: center; color: var(--gray-5); }
.sa-auth-alt a { color: var(--blue); font-weight: 600; }

/* ── Brand portal ────────────────────────────────────── */
.sa-portal { display: flex; min-height: calc(100vh - 64px); }
.sa-portal-sidebar { width: 260px; flex-shrink: 0; background: var(--white); border-right: 1px solid var(--gray-3); padding: 24px 12px; display: flex; flex-direction: column; gap: 0; position: sticky; top: 64px; height: calc(100vh - 64px); overflow-y: auto; }
.sa-portal-brand { display: flex; align-items: center; gap: 12px; padding: 0 8px 20px; border-bottom: 1px solid var(--gray-3); margin-bottom: 12px; }
.sa-portal-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--black); color: var(--white); font-size: 18px; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-family: var(--font-head); }
.sa-portal-brand-name { font-weight: 700; font-size: 14px; }
.sa-portal-handle { font-size: 12px; color: var(--gray-5); }
.sa-portal-nav { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.sa-portal-link { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 10px; font-size: 14px; font-weight: 500; color: var(--gray-8); cursor: pointer; transition: background .15s; }
.sa-portal-link:hover, .sa-portal-link.active { background: var(--gray-2); color: var(--black); font-weight: 600; }
.sa-portal-balance { margin-top: 16px; background: var(--gray-1); border-radius: 12px; padding: 16px; }
.sa-portal-balance-lbl { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--gray-5); margin-bottom: 4px; }
.sa-portal-balance-val { font-family: var(--font-head); font-size: 30px; font-weight: 800; }
.sa-portal-main { flex: 1; padding: 32px; overflow-y: auto; min-width: 0; }
.sa-portal-sec h1 { font-family: var(--font-head); font-size: 28px; font-weight: 800; margin-bottom: 24px; }
.sa-metrics { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 16px; }
.sa-metric { background: var(--white); border: 1px solid var(--gray-3); border-radius: 14px; padding: 18px; }
.sa-metric-val { font-family: var(--font-head); font-size: 26px; font-weight: 800; margin-bottom: 4px; }
.sa-metric-lbl { font-size: 12px; color: var(--gray-5); text-transform: uppercase; letter-spacing: .3px; }
.sa-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.sa-table th { text-align: left; padding: 10px 12px; border-bottom: 2px solid var(--gray-3); font-size: 12px; font-weight: 700; color: var(--gray-5); text-transform: uppercase; letter-spacing: .3px; }
.sa-table td { padding: 12px; border-bottom: 1px solid var(--gray-2); }
.sa-status-badge { display: inline-block; padding: 2px 10px; border-radius: 100px; font-size: 11px; font-weight: 700; }
.sa-status-active  { background: #d4edda; color: #155724; }
.sa-status-paused  { background: #fff3cd; color: #856404; }
.sa-status-draft   { background: var(--gray-2); color: var(--gray-8); }
.sa-empty-state    { text-align: center; padding: 60px; border: 2px dashed var(--gray-3); border-radius: 16px; }
.sa-billing-grid   { display: grid; grid-template-columns: 300px 1fr; gap: 24px; align-items: start; }
@media (max-width: 800px) { .sa-billing-grid { grid-template-columns: 1fr; } }
.sa-billing-card, .sa-billing-history, .sa-settings-card { background: var(--white); border: 1px solid var(--gray-3); border-radius: 16px; padding: 24px; }
.sa-billing-card h3, .sa-billing-history h3, .sa-settings-card h3 { font-family: var(--font-head); font-size: 16px; font-weight: 700; margin-bottom: 16px; }
.sa-balance-big { font-family: var(--font-head); font-size: 42px; font-weight: 800; margin: 8px 0 4px; }
.sa-amount-btns { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }
.sa-amount-btn { padding: 8px 16px; border: 1.5px solid var(--gray-3); border-radius: 8px; background: var(--white); font-weight: 700; cursor: pointer; transition: all .15s; }
.sa-amount-btn:hover, .sa-amount-btn.selected { background: var(--black); color: var(--white); border-color: var(--black); }
@media (max-width: 768px) { .sa-portal { flex-direction: column; } .sa-portal-sidebar { width: 100%; position: static; height: auto; } }

/* ── Campaign builder ────────────────────────────────── */
.sa-builder-wrap { max-width: 860px; margin: 0 auto; padding: 48px 20px; }
.sa-builder-header { text-align: center; margin-bottom: 32px; }
.sa-builder-header h1 { font-family: var(--font-head); font-size: 34px; font-weight: 800; }
.sa-builder-header p { color: var(--gray-5); margin-top: 8px; }
.sa-steps { display: flex; align-items: center; justify-content: center; margin-bottom: 32px; }
.sa-step { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.sa-step-n { width: 36px; height: 36px; border-radius: 50%; background: var(--gray-3); color: var(--gray-5); font-weight: 800; font-size: 15px; display: flex; align-items: center; justify-content: center; }
.sa-step.active .sa-step-n { background: var(--black); color: var(--white); }
.sa-step.done .sa-step-n { background: var(--green); color: var(--white); }
.sa-step-lbl { font-size: 12px; color: var(--gray-5); font-weight: 600; }
.sa-step.active .sa-step-lbl { color: var(--black); }
.sa-step-line { flex: 1; height: 2px; background: var(--gray-3); margin: 0 8px 18px; min-width: 32px; }
.sa-builder-card { background: var(--white); border: 1px solid var(--gray-3); border-radius: 20px; padding: 36px; }
.sa-builder-step h2 { font-family: var(--font-head); font-size: 22px; font-weight: 800; margin-bottom: 20px; }
.sa-type-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; }
.sa-type-card input { position: absolute; opacity: 0; width: 0; }
.sa-type-inner { border: 2px solid var(--gray-3); border-radius: 14px; padding: 20px; cursor: pointer; transition: all .15s; }
.sa-type-inner:hover, .sa-type-inner.selected { border-color: var(--black); background: var(--gray-1); }
.sa-type-icon { font-size: 28px; margin-bottom: 10px; }
.sa-type-name { font-weight: 700; font-size: 15px; margin-bottom: 6px; }
.sa-type-desc { font-size: 13px; color: var(--gray-5); line-height: 1.5; }
.sa-budget-est { background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: 10px; padding: 14px; margin-top: 12px; font-size: 14px; color: var(--green); font-weight: 600; }
.sa-review { background: var(--gray-1); border-radius: 14px; padding: 20px; display: flex; flex-direction: column; gap: 12px; }
.sa-review-row { display: flex; justify-content: space-between; align-items: center; font-size: 14px; }
.sa-review-row span { color: var(--gray-5); }
.sa-launch-note { background: #fffbeb; border: 1px solid #fde68a; border-radius: 10px; padding: 12px 16px; font-size: 13px; color: #92400e; margin-top: 16px; }
.sa-builder-nav { display: flex; gap: 10px; margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--gray-3); }

/* ── Handles page ────────────────────────────────────── */
.sa-handles-hero { background: linear-gradient(135deg, var(--black), #1a1a3e); color: var(--white); padding: 80px 20px; text-align: center; }
.sa-handles-hero h1 { font-family: var(--font-head); font-size: 44px; font-weight: 800; margin-bottom: 12px; }
.sa-handles-hero p { color: rgba(255,255,255,.75); font-size: 17px; margin-bottom: 32px; }
.sa-handle-search { display: flex; align-items: center; max-width: 500px; margin: 0 auto; background: rgba(255,255,255,.1); border: 1.5px solid rgba(255,255,255,.25); border-radius: 14px; overflow: hidden; }
.sa-handle-at-prefix { padding: 0 12px; font-size: 22px; font-weight: 800; color: rgba(255,255,255,.5); }
.sa-handle-search input { flex: 1; background: transparent; border: none; padding: 14px 0; font-size: 20px; font-weight: 700; color: var(--white); outline: none; }
.sa-handle-search input::placeholder { color: rgba(255,255,255,.3); }
.sa-handle-avail { background: #d4edda; border: 1px solid #c3e6cb; border-radius: 12px; padding: 16px 20px; color: #155724; font-size: 15px; font-weight: 600; max-width: 540px; margin: 0 auto; }
.sa-tier-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; max-width: 860px; margin: 0 auto; }
.sa-tier-card { border: 2px solid var(--gray-3); border-radius: 18px; padding: 28px; position: relative; }
.sa-tier-featured { border-color: var(--black); }
.sa-tier-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--black); color: var(--white); padding: 3px 14px; border-radius: 100px; font-size: 11px; font-weight: 700; white-space: nowrap; }
.sa-tier-name { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--gray-5); margin-bottom: 6px; }
.sa-tier-ex { font-family: var(--font-head); font-size: 22px; font-weight: 800; margin-bottom: 4px; }
.sa-tier-price { font-size: 36px; font-weight: 800; font-family: var(--font-head); margin-bottom: 16px; }
.sa-tier-price span { font-size: 14px; font-weight: 400; color: var(--gray-5); }
.sa-tier-card ul { list-style: none; display: flex; flex-direction: column; gap: 8px; font-size: 14px; margin-bottom: 20px; }
.sa-modal { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: center; justify-content: center; }
.sa-modal-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.5); }
.sa-modal-box { position: relative; background: var(--white); border-radius: 20px; padding: 36px; max-width: 460px; width: 90%; box-shadow: 0 20px 60px rgba(0,0,0,.2); }
.sa-modal-close { position: absolute; top: 16px; right: 16px; background: none; border: none; font-size: 18px; cursor: pointer; color: var(--gray-5); }

/* ── Product detail ──────────────────────────────────── */
.sa-product-hero { display: grid; grid-template-columns: 380px 1fr; gap: 48px; align-items: start; margin-bottom: 48px; }
@media (max-width: 768px) { .sa-product-hero { grid-template-columns: 1fr; } }
.sa-product-img-wrap img { width: 100%; border-radius: 16px; border: 1px solid var(--gray-3); }
.sa-product-info { display: flex; flex-direction: column; gap: 12px; }
.sa-product-info h1 { font-family: var(--font-head); font-size: 28px; font-weight: 800; line-height: 1.2; }
.sa-price-hero { font-family: var(--font-head); font-size: 36px; font-weight: 800; display: flex; align-items: baseline; gap: 12px; }
.sa-product-desc { color: var(--gray-5); font-size: 15px; line-height: 1.6; }
.sa-store-table { display: flex; flex-direction: column; gap: 10px; }
.sa-store-row { background: var(--white); border: 1px solid var(--gray-3); border-radius: 14px; padding: 16px 20px; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.sa-store-best { border-color: var(--green); border-width: 2px; background: #f0fdf4; }
.sa-store-best-tag { width: 100%; font-size: 11px; font-weight: 700; color: var(--green); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 4px; }
.sa-store-name { flex: 1; font-weight: 700; font-size: 16px; }
.sa-store-price { font-family: var(--font-head); font-size: 22px; font-weight: 800; }
.sa-store-net { font-size: 14px; font-weight: 600; color: var(--green); }
.sa-store-ship { font-size: 12px; color: var(--gray-5); }

/* ── OneLink page ────────────────────────────────────── */
.sa-onelink-hero { display: grid; grid-template-columns: 260px 1fr; gap: 48px; align-items: start; background: var(--gray-1); padding: 48px; border-radius: 0; }
@media (max-width: 700px) { .sa-onelink-hero { grid-template-columns: 1fr; padding: 24px; } }
.sa-onelink-img { width: 100%; border-radius: 14px; }
.sa-onelink-info { display: flex; flex-direction: column; gap: 12px; }
.sa-onelink-share { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; padding-top: 16px; border-top: 1px solid var(--gray-3); }
.sa-onelink-share strong { font-size: 13px; }

/* ── @Handle profile ─────────────────────────────────── */
.sa-handle-hero { background: linear-gradient(135deg, var(--black), #1a1a3e); color: var(--white); padding: 60px 20px; display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.sa-handle-avatar { width: 80px; height: 80px; border-radius: 50%; background: rgba(255,255,255,.15); font-size: 32px; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-family: var(--font-head); }
.sa-handle-at { font-size: 14px; color: rgba(255,255,255,.6); margin-bottom: 4px; }
.sa-handle-hero h1 { font-family: var(--font-head); font-size: 32px; font-weight: 800; margin-bottom: 8px; }

/* ── Cashback page ───────────────────────────────────── */
.sa-cashback-hero { background: linear-gradient(135deg, #00a651, #007a3d); color: var(--white); padding: 80px 20px; text-align: center; }
.sa-cashback-hero h1 { font-family: var(--font-head); font-size: 42px; font-weight: 800; margin-bottom: 12px; }
.sa-cashback-hero p { font-size: 17px; color: rgba(255,255,255,.85); max-width: 560px; margin: 0 auto 36px; }
.sa-cashback-how { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; max-width: 800px; margin: 0 auto; }
.sa-cashback-how > div { display: flex; flex-direction: column; align-items: center; gap: 10px; flex: 1; min-width: 160px; }
.sa-cashback-how > div span { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 16px; }
.sa-cashback-how h3 { font-weight: 700; font-size: 15px; }
.sa-cashback-how p { font-size: 13px; color: rgba(255,255,255,.75); text-align: center; }

/* ── Search bar ──────────────────────────────────────── */
.sa-search-bar { display: flex; gap: 10px; margin-bottom: 24px; }
.sa-search-input { flex: 1; padding: 12px 16px; border: 1.5px solid var(--gray-3); border-radius: var(--radius); font-size: 16px; }
.sa-search-meta { color: var(--gray-5); font-size: 15px; margin-bottom: 24px; }

/* ── Brands page ─────────────────────────────────────── */
.sa-brands-hero { background: linear-gradient(135deg, var(--black), #1a1a3e); color: var(--white); padding: 100px 20px; text-align: center; }
.sa-brands-hero h1 { font-family: var(--font-head); font-size: 48px; font-weight: 800; margin-bottom: 16px; }
.sa-brands-hero p { font-size: 18px; color: rgba(255,255,255,.75); max-width: 560px; margin: 0 auto 32px; }
.sa-brands-stats { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; margin-bottom: 36px; }
.sa-brands-stats > div { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.sa-brands-stats strong { font-family: var(--font-head); font-size: 28px; font-weight: 800; }
.sa-brands-stats span { font-size: 12px; color: rgba(255,255,255,.6); }
.sa-features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; margin-top: 32px; }
.sa-feature-card { border: 1px solid var(--gray-3); border-radius: 14px; padding: 24px; }
.sa-feature-icon { font-size: 32px; margin-bottom: 12px; }
.sa-feature-card h3 { font-weight: 700; font-size: 16px; margin-bottom: 8px; }
.sa-feature-card p { font-size: 14px; color: var(--gray-5); line-height: 1.5; }
.sa-pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; max-width: 900px; margin: 0 auto; }
.sa-price-card { border: 2px solid var(--gray-3); border-radius: 18px; padding: 28px; position: relative; display: flex; flex-direction: column; gap: 14px; }
.sa-price-featured { border-color: var(--black); }
.sa-price-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--black); color: var(--white); padding: 3px 14px; border-radius: 100px; font-size: 11px; font-weight: 700; white-space: nowrap; }
.sa-price-name { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--gray-5); }
.sa-price-amount { font-family: var(--font-head); font-size: 30px; font-weight: 800; }
.sa-price-card ul { list-style: none; display: flex; flex-direction: column; gap: 8px; font-size: 14px; flex: 1; }

/* ── Circulars page ──────────────────────────────────── */
.sa-circular-block { margin-bottom: 40px; }
.sa-circular-hdr { display: flex; align-items: center; justify-content: space-between; padding-bottom: 12px; border-bottom: 2px solid var(--black); margin-bottom: 16px; }
.sa-circular-hdr strong { font-family: var(--font-head); font-size: 20px; font-weight: 800; }
.sa-circular-deals { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 14px; }
.sa-circular-deal { border: 1px solid var(--gray-3); border-radius: 12px; overflow: hidden; }
.sa-circular-deal img { width: 100%; height: 110px; object-fit: cover; }
.sa-circular-deal-body { padding: 10px; display: flex; flex-direction: column; gap: 4px; }
.sa-circular-deal-title { font-weight: 700; font-size: 13px; line-height: 1.3; }
.sa-circular-deal-price { display: flex; align-items: baseline; gap: 6px; }

/* ── Admin ───────────────────────────────────────────── */
.sa-admin .sa-admin-metrics { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 14px; }
.sa-admin .sa-metric { background: #fff; border: 1px solid #e5e7eb; border-radius: 10px; padding: 18px; text-align: center; }
.sa-admin .sa-metric-val { font-size: 26px; font-weight: 800; }
.sa-admin .sa-metric-lbl { font-size: 12px; color: #6b7280; margin-top: 4px; }

/* ── Utilities ───────────────────────────────────────── */
.sa-coupon-row { display: flex; align-items: center; gap: 8px; }
.sa-price-hero .sa-price-orig { font-size: 18px; }
@media (max-width: 480px) {
  .sa-hero h1 { font-size: 26px; }
  .sa-hero-stats { gap: 20px; }
  .sa-builder-card { padding: 20px; }
  .sa-portal-main { padding: 16px; }
}

/* ── RTB body/brand ──────────────────────────────────── */
.sa-rtb-brand { font-size: 11px; color: var(--gray-5); margin-top: 2px; }
.sa-rtb-cta   { margin-left: auto; background: var(--black); color: var(--white); padding: 6px 14px; border-radius: 8px; font-size: 13px; font-weight: 700; white-space: nowrap; }

/* ── Portal extras ───────────────────────────────────── */
.sa-settings-card { background: var(--white); border: 1px solid var(--gray-3); border-radius: 16px; padding: 24px; }
.sa-settings-card h3 { font-family: var(--font-head); font-size: 16px; font-weight: 700; margin-bottom: 14px; }

.sa-price-tagline { font-size: 13px; color: var(--gray-5); margin-bottom: 8px; }

/* ═══════════════════════════════════════════════════════════
   AD SLOT FORMATS
═══════════════════════════════════════════════════════════ */

/* Shared label */
.sa-ad-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .6px; color: var(--gray-5); margin-bottom: 6px; }
.sa-ad-label-white { color: rgba(255,255,255,.7); }

/* ── Banner (horizontal) ─────────────────────── */
.sa-ad-banner { max-width: 1300px; margin: 0 auto; padding: 0 20px 12px; }
.sa-ad-banner-inner { display: flex; align-items: center; gap: 14px; background: linear-gradient(135deg,#f8f9fe,#eef2ff); border: 1px solid #c7d2fe; border-radius: 14px; padding: 14px 18px; text-decoration: none; transition: box-shadow .15s; }
.sa-ad-banner-inner:hover { box-shadow: 0 4px 16px rgba(99,102,241,.15); }
.sa-ad-banner-inner img { width: 60px; height: 60px; object-fit: cover; border-radius: 10px; flex-shrink: 0; }
.sa-ad-banner-body { flex: 1; }
.sa-ad-banner-name { font-weight: 700; font-size: 15px; color: var(--black); }
.sa-ad-banner-price { font-size: 13px; color: var(--gray-5); margin-top: 2px; }
.sa-ad-banner-brand { font-size: 12px; color: var(--blue); margin-top: 2px; }
.sa-ad-banner-cta { background: var(--black); color: var(--white); padding: 10px 20px; border-radius: 10px; font-weight: 700; font-size: 14px; white-space: nowrap; }

/* ── Native (editorial style) ────────────────── */
.sa-ad-native { max-width: 1300px; margin: 0 auto; padding: 0 20px 16px; }
.sa-ad-native-inner { display: flex; align-items: center; gap: 16px; background: var(--white); border: 1px solid var(--gray-3); border-radius: 14px; padding: 16px 20px; text-decoration: none; }
.sa-ad-native-inner:hover { border-color: var(--black); }
.sa-ad-native-img { width: 72px; height: 72px; object-fit: cover; border-radius: 10px; flex-shrink: 0; }
.sa-ad-native-body { flex: 1; }
.sa-ad-native-brand { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .4px; color: var(--blue); margin-bottom: 3px; }
.sa-ad-native-name { font-weight: 700; font-size: 16px; color: var(--black); }
.sa-ad-native-desc { font-size: 13px; color: var(--gray-5); margin-top: 4px; line-height: 1.5; }
.sa-ad-native-price { font-size: 18px; font-weight: 800; color: var(--black); margin-top: 6px; }
.sa-ad-native-cta { background: var(--black); color: var(--white); padding: 10px 18px; border-radius: 10px; font-weight: 700; font-size: 13px; white-space: nowrap; margin-left: auto; }

/* ── Card (fits in product grid) ─────────────── */
.sa-ad-card { background: var(--white); border: 2px dashed var(--gray-3); border-radius: 16px; overflow: hidden; position: relative; }
.sa-ad-card .sa-ad-label { position: absolute; top: 8px; left: 8px; background: rgba(0,0,0,.6); color: #fff; padding: 2px 8px; border-radius: 6px; }
.sa-ad-card-img { width: 100%; height: 200px; object-fit: cover; display: block; }
.sa-ad-card-body { padding: 14px; }
.sa-ad-card-name { font-weight: 700; font-size: 14px; line-height: 1.3; margin-bottom: 4px; }
.sa-ad-card-price { font-size: 20px; font-weight: 800; }

/* ── Strip (slim full-width) ─────────────────── */
.sa-ad-strip { max-width: 1300px; margin: 0 auto; padding: 0 20px 12px; display: flex; align-items: center; gap: 12px; background: #fffbeb; border: 1px solid #fde68a; border-radius: 12px; padding: 12px 20px; }
.sa-ad-strip .sa-ad-label { background: #f59e0b; color: #fff; padding: 2px 8px; border-radius: 6px; font-size: 10px; flex-shrink: 0; }
.sa-ad-strip-img { width: 40px; height: 40px; object-fit: cover; border-radius: 6px; flex-shrink: 0; }
.sa-ad-strip-text { flex: 1; display: flex; gap: 10px; align-items: center; }
.sa-ad-strip-text strong { font-weight: 700; font-size: 14px; }
.sa-ad-strip-text span { font-size: 13px; color: var(--gray-5); }

/* ── Full-width hero ad ───────────────────────── */
.sa-ad-fullwidth { position: relative; min-height: 240px; border-radius: 20px; overflow: hidden; margin: 0 20px; max-width: calc(1300px - 40px); margin: 0 auto; background: linear-gradient(135deg, var(--black), #1a1a3e); }
.sa-ad-fw-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .4; }
.sa-ad-fw-inner { position: relative; z-index: 1; padding: 48px 40px; color: #fff; }
.sa-ad-fw-brand { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: rgba(255,255,255,.6); margin-bottom: 8px; }
.sa-ad-fw-name { font-family: var(--font-head); font-size: 28px; font-weight: 800; margin-bottom: 8px; }
.sa-ad-fw-desc { font-size: 15px; color: rgba(255,255,255,.75); margin-bottom: 20px; max-width: 500px; line-height: 1.5; }

/* ── Section wrapper for ad slots ────────────── */
.sa-ad-slot { margin: 16px 0; }

/* ── Custom banner ───────────────────────────── */
.sa-custom-banner { max-width: 1300px; margin: 12px auto; padding: 0 20px; }
.sa-custom-banner-link { display: block; border-radius: 14px; overflow: hidden; }
.sa-custom-banner-link img { width: 100%; max-height: 200px; object-fit: cover; display: block; }
.sa-custom-banner-text { background: var(--gray-1); padding: 20px; text-align: center; font-weight: 700; font-size: 18px; }

/* ── Nav light/dark fix ──────────────────────── */
.sa-nav { background: var(--white) !important; }
.sa-nav-links a { color: #374151 !important; font-weight: 500; }
.sa-nav-links a:hover, .sa-nav-links a.active { background: #f0f2f5 !important; color: var(--black) !important; }
.sa-logo { color: var(--black) !important; }

/* ── Compare section fix ────────────────────── */
.sa-compare-section { background: var(--gray-1); border-radius: 20px; }
/* Nav style variants */
.sa-nav-light  { background: #ffffff !important; }
.sa-nav-dark   { background: #0a0a0a !important; border-bottom-color: rgba(255,255,255,.1) !important; }
.sa-nav-dark .sa-nav-links a, .sa-nav-dark .sa-logo, .sa-nav-dark .sa-nav-auth a { color: #fff !important; }
.sa-nav-dark .sa-nav-links a:hover { background: rgba(255,255,255,.1) !important; }
.sa-nav-dark .sa-nav-search input { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.2); }
.sa-nav-transparent { background: transparent !important; border-bottom: none !important; position: absolute; width: 100%; }
.sa-nav-transparent .sa-nav-links a, .sa-nav-transparent .sa-logo { color: #fff !important; }

/* ═══════════════════════════════════════════════════════
   POLISHED COMMERCIAL AD FORMATS — v2
═══════════════════════════════════════════════════════ */

/* Shared */
.sa-ad-slot { margin: 8px 0; }
.sa-ad-label {
  display: inline-block;
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .8px; color: #9ca3af;
  background: #f3f4f6; border: 1px solid #e5e7eb;
  padding: 2px 8px; border-radius: 4px; margin-bottom: 8px;
}
.sa-ad-label-white { background: rgba(255,255,255,.15); color: rgba(255,255,255,.8); border-color: rgba(255,255,255,.2); }

/* ── Banner — horizontal polished ──────────────────── */
.sa-ad-banner { max-width: 1300px; margin: 0 auto; padding: 0 20px 4px; }
.sa-ad-banner-inner {
  display: flex; align-items: center; gap: 0;
  background: #fff; border: 1px solid #e5e7eb; border-radius: 16px;
  overflow: hidden; text-decoration: none;
  box-shadow: 0 1px 3px rgba(0,0,0,.06), 0 4px 12px rgba(0,0,0,.04);
  transition: box-shadow .2s, transform .15s;
}
.sa-ad-banner-inner:hover { box-shadow: 0 4px 16px rgba(0,0,0,.12); transform: translateY(-1px); }
.sa-ad-banner-inner img {
  width: 160px; height: 100px; object-fit: cover; flex-shrink: 0;
  border-radius: 0;
}
.sa-ad-banner-body { flex: 1; padding: 0 20px; }
.sa-ad-banner-name { font-weight: 800; font-size: 16px; color: #111827; margin-bottom: 3px; font-family: var(--font-head); }
.sa-ad-banner-price { font-size: 13px; color: #6b7280; margin-bottom: 2px; }
.sa-ad-banner-brand { font-size: 12px; color: var(--blue); font-weight: 600; }
.sa-ad-banner-cta {
  background: #111827 !important; color: #fff !important;
  padding: 12px 22px !important; height: auto !important;
  display: inline-flex !important; align-items: center !important;
  font-weight: 800 !important; font-size: 14px !important;
  white-space: nowrap !important; border-radius: 10px !important;
  text-decoration: none !important; margin-top: 12px !important;
  transition: background .15s !important;
}
.sa-ad-banner-inner:hover .sa-ad-banner-cta { background: #1f2937; }

/* ── Native — editorial clean ───────────────────────── */
.sa-ad-native { max-width: 1300px; margin: 0 auto; padding: 0 20px 4px; }
.sa-ad-native-inner {
  display: flex; align-items: center; gap: 16px;
  background: #fff; border: 1px solid #f0f0f0;
  border-left: 4px solid var(--blue);
  border-radius: 12px; padding: 16px 20px;
  text-decoration: none; transition: border-color .15s, box-shadow .15s;
}
.sa-ad-native-inner:hover { box-shadow: 0 4px 16px rgba(59,130,246,.08); border-left-color: #1d4ed8; }
.sa-ad-native-img { width: 80px; height: 80px; object-fit: cover; border-radius: 10px; flex-shrink: 0; }
.sa-ad-native-body { flex: 1; }
.sa-ad-native-brand { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--blue); margin-bottom: 4px; }
.sa-ad-native-name { font-weight: 700; font-size: 16px; color: #111827; font-family: var(--font-head); }
.sa-ad-native-desc { font-size: 13px; color: #6b7280; margin-top: 3px; line-height: 1.5; }
.sa-ad-native-price { font-size: 20px; font-weight: 800; color: #111827; margin-top: 6px; font-family: var(--font-head); }
.sa-ad-native-cta {
  background: #111827; color: #fff;
  padding: 12px 22px; border-radius: 10px;
  font-weight: 700; font-size: 13px; white-space: nowrap;
  margin-left: 16px; transition: background .15s;
}
.sa-ad-native-inner:hover .sa-ad-native-cta { background: #374151; }

/* ── Card — product grid style ──────────────────────── */
.sa-ad-card {
  background: #fff; border: 1px solid #e5e7eb;
  border-radius: 16px; overflow: hidden; position: relative;
  transition: box-shadow .2s;
}
.sa-ad-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,.1); }
.sa-ad-card .sa-ad-label {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  background: rgba(0,0,0,.75); color: #fff; border: none;
}
.sa-ad-card-img { width: 100%; height: 200px; object-fit: cover; display: block; }
.sa-ad-card-body { padding: 14px; }
.sa-ad-card-name { font-weight: 700; font-size: 14px; color: #111827; line-height: 1.3; margin-bottom: 6px; font-family: var(--font-head); }
.sa-ad-card-price { font-size: 20px; font-weight: 800; color: #111827; font-family: var(--font-head); }

/* ── Strip — slim announcement bar ──────────────────── */
.sa-ad-strip {
  max-width: 1300px; margin: 0 auto; padding: 10px 20px;
  display: flex; align-items: center; gap: 12px;
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  border: 1px solid #f59e0b; border-radius: 10px;
}
.sa-ad-strip .sa-ad-label { background: #f59e0b; color: #fff; border: none; }
.sa-ad-strip-img { width: 44px; height: 44px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.sa-ad-strip-text { flex: 1; display: flex; align-items: center; gap: 10px; }
.sa-ad-strip-text strong { font-weight: 700; font-size: 14px; color: #92400e; }
.sa-ad-strip-text span { font-size: 13px; color: #b45309; }

/* ── Full-width cinematic ────────────────────────────── */
.sa-ad-fullwidth {
  position: relative; min-height: 260px; border-radius: 20px;
  overflow: hidden; max-width: 1260px; margin: 0 auto;
  background: linear-gradient(135deg, #1e1b4b, #312e81);
}
.sa-ad-fw-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: .35; transition: opacity .3s;
}
.sa-ad-fullwidth:hover .sa-ad-fw-bg { opacity: .45; }
.sa-ad-fw-inner { position: relative; z-index: 1; padding: 52px 48px; color: #fff; max-width: 620px; }
.sa-ad-fw-brand { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .6px; color: rgba(255,255,255,.65); margin-bottom: 10px; }
.sa-ad-fw-name { font-family: var(--font-head); font-size: 30px; font-weight: 800; line-height: 1.15; margin-bottom: 10px; }
.sa-ad-fw-desc { font-size: 15px; color: rgba(255,255,255,.8); margin-bottom: 24px; line-height: 1.6; }

/* ═══════════════════════════════════════════════════════
   MEMBERSHIP PAGE
═══════════════════════════════════════════════════════ */
.sa-mem-hero { background: linear-gradient(135deg,#1e1b4b 0%,#312e81 50%,#1e1b4b 100%); color: #fff; padding: 96px 20px; text-align: center; }
.sa-mem-hero-inner { max-width: 680px; margin: 0 auto; }
.sa-mem-badge { display: inline-block; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25); border-radius: 100px; padding: 6px 18px; font-size: 13px; font-weight: 700; margin-bottom: 20px; }
.sa-mem-hero h1 { font-family: var(--font-head); font-size: clamp(32px,5vw,54px); font-weight: 800; line-height: 1.12; margin-bottom: 16px; }
.sa-mem-hero p { color: rgba(255,255,255,.8); font-size: 18px; max-width: 520px; margin: 0 auto 32px; line-height: 1.6; }
.sa-mem-benefits { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 20px; }
.sa-mem-benefit { border: 1px solid var(--gray-3); border-radius: 16px; padding: 24px; background: #fff; }
.sa-mem-benefit-icon { font-size: 32px; margin-bottom: 12px; }
.sa-mem-benefit h3 { font-family: var(--font-head); font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.sa-mem-benefit p { font-size: 14px; color: #6b7280; line-height: 1.6; }
.sa-mem-plans { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 20px; max-width: 960px; margin: 0 auto; }
.sa-mem-plan { border: 2px solid var(--gray-3); border-radius: 20px; padding: 32px 28px; background: #fff; position: relative; display: flex; flex-direction: column; gap: 6px; }
.sa-mem-plan-featured { border-color: #4f46e5; box-shadow: 0 8px 32px rgba(79,70,229,.15); }
.sa-mem-plan-premium { border-color: #f59e0b; background: linear-gradient(135deg,#fffbeb,#fff); }
.sa-mem-plan-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: #4f46e5; color: #fff; padding: 3px 16px; border-radius: 100px; font-size: 11px; font-weight: 700; white-space: nowrap; }
.sa-mem-plan-name { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: #6b7280; }
.sa-mem-plan-price { font-family: var(--font-head); font-size: 40px; font-weight: 800; color: #111827; }
.sa-mem-plan-price span { font-size: 16px; font-weight: 400; color: #9ca3af; }
.sa-mem-plan-tagline { font-size: 13px; color: #6b7280; margin-bottom: 8px; }
.sa-mem-plan-features { list-style: none; display: flex; flex-direction: column; gap: 9px; font-size: 14px; flex: 1; padding: 0; margin: 0 0 20px; }
.sa-mem-plan-features li { line-height: 1.4; }
.sa-mem-dim { color: #d1d5db; }
.sa-faq-item { border: 1px solid var(--gray-3); border-radius: 12px; margin-bottom: 10px; overflow: hidden; }
.sa-faq-item summary { padding: 18px 20px; font-weight: 600; font-size: 15px; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.sa-faq-item summary::after { content: '+'; font-size: 20px; font-weight: 300; color: #9ca3af; transition: transform .2s; }
.sa-faq-item[open] summary::after { transform: rotate(45deg); }
.sa-faq-item p { padding: 0 20px 18px; font-size: 14px; color: #6b7280; line-height: 1.7; margin: 0; }

/* Fix nav contrast on light bg pages */
.sa-cats-bar { border-bottom: 1px solid #e5e7eb; }

/* Portal funds result */
.sa-funds-ok{background:#d4edda;color:#155724;border-radius:10px;padding:12px 16px;font-weight:600;font-size:14px;}
.sa-funds-err{background:#fee2e2;color:#991b1b;border-radius:10px;padding:12px 16px;font-weight:600;font-size:14px;}

/* Cashback tiers */
.sa-cb-tiers{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin:32px 0;max-width:680px;margin-left:auto;margin-right:auto;}
.sa-cb-tier{border:2px solid var(--gray-3);border-radius:14px;padding:20px;text-align:center;position:relative;}
.sa-cb-tier-featured{border-color:#00a651;}
.sa-cb-tier-badge{position:absolute;top:-11px;left:50%;transform:translateX(-50%);background:#00a651;color:#fff;padding:2px 12px;border-radius:100px;font-size:10px;font-weight:700;white-space:nowrap;}
.sa-cb-tier-rate{font-family:var(--font-head);font-size:26px;font-weight:800;color:#00a651;margin-bottom:4px;}
.sa-cb-tier-plan{font-size:12px;color:#6b7280;margin-bottom:14px;}
@media(max-width:500px){.sa-cb-tiers{grid-template-columns:1fr;}}

/* ═══════════════════════════════════════════════════════
   BRAND PROFILE PAGE
═══════════════════════════════════════════════════════ */
.sa-brand-hero { background: linear-gradient(135deg,#0a0a0a 0%,#1a1a2e 60%,#0a0a0a 100%); color:#fff; padding:60px 20px; }
.sa-brand-hero-inner { max-width:1300px; margin:0 auto; display:flex; justify-content:space-between; align-items:flex-start; gap:32px; flex-wrap:wrap; }
.sa-brand-hero-left { display:flex; align-items:flex-start; gap:24px; flex:1; min-width:280px; }
.sa-brand-logo-wrap { flex-shrink:0; }
.sa-brand-logo { width:100px; height:100px; border-radius:16px; object-fit:cover; border:3px solid rgba(255,255,255,.15); }
.sa-brand-avatar-lg { width:100px; height:100px; border-radius:16px; background:linear-gradient(135deg,#3b82f6,#8b5cf6); display:flex; align-items:center; justify-content:center; font-family:var(--font-head); font-size:44px; font-weight:800; color:#fff; flex-shrink:0; }
.sa-brand-hero-info { flex:1; }
.sa-brand-handle-row { display:flex; align-items:center; gap:8px; margin-bottom:8px; flex-wrap:wrap; }
.sa-brand-at { font-size:14px; color:rgba(255,255,255,.6); font-weight:600; }
.sa-brand-verified { background:#3b82f6; color:#fff; border-radius:100px; padding:2px 10px; font-size:11px; font-weight:700; }
.sa-brand-plan-badge { background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.2); color:rgba(255,255,255,.7); border-radius:100px; padding:2px 10px; font-size:11px; font-weight:600; }
.sa-brand-name { font-family:var(--font-head); font-size:clamp(26px,4vw,44px); font-weight:800; line-height:1.1; margin-bottom:10px; }
.sa-brand-desc { color:rgba(255,255,255,.75); font-size:15px; line-height:1.6; max-width:540px; margin-bottom:14px; }
.sa-brand-meta { display:flex; gap:16px; flex-wrap:wrap; font-size:13px; color:rgba(255,255,255,.6); margin-bottom:16px; }
.sa-brand-meta span { display:flex; align-items:center; gap:4px; }
.sa-brand-actions { display:flex; gap:8px; flex-wrap:wrap; }
.sa-brand-actions .sa-btn-outline { border-color:rgba(255,255,255,.3); color:rgba(255,255,255,.85); }
.sa-brand-actions .sa-btn-outline:hover { background:rgba(255,255,255,.1); }

/* Stats card */
.sa-brand-stats-card { display:grid; grid-template-columns:repeat(2,1fr); gap:1px; background:rgba(255,255,255,.1); border-radius:16px; overflow:hidden; flex-shrink:0; min-width:220px; }
.sa-brand-stat { background:rgba(255,255,255,.05); padding:20px; text-align:center; }
.sa-brand-stat-val { font-family:var(--font-head); font-size:28px; font-weight:800; color:#fff; }
.sa-brand-stat-lbl { font-size:11px; color:rgba(255,255,255,.5); text-transform:uppercase; letter-spacing:.4px; margin-top:2px; }

/* Campaigns / promotions */
.sa-brand-campaigns { margin-top:40px; }
.sa-brand-campaigns-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(280px,1fr)); gap:16px; margin-top:14px; }
.sa-brand-camp-card { border-radius:14px; overflow:hidden; border:1px solid var(--gray-3); text-decoration:none; color:inherit; display:flex; flex-direction:column; transition:box-shadow .2s,transform .15s; }
.sa-brand-camp-card:hover { box-shadow:var(--shadow-hover); transform:translateY(-2px); }
.sa-brand-camp-img { height:160px; background-size:cover; background-position:center; }
.sa-brand-camp-body { padding:16px; flex:1; }
.sa-brand-camp-type { font-size:10px; font-weight:700; text-transform:uppercase; letter-spacing:.6px; color:var(--blue); margin-bottom:4px; }
.sa-brand-camp-name { font-family:var(--font-head); font-size:17px; font-weight:700; margin-bottom:6px; }
.sa-brand-camp-desc { font-size:13px; color:var(--gray-5); line-height:1.5; }

/* Share bar */
.sa-brand-share-bar { display:flex; justify-content:space-between; align-items:center; gap:16px; background:var(--gray-1); border:1px solid var(--gray-3); border-radius:14px; padding:16px 20px; margin-top:48px; flex-wrap:wrap; }

@media(max-width:700px){
  .sa-brand-hero-left{flex-direction:column;}
  .sa-brand-stats-card{grid-template-columns:repeat(4,1fr);min-width:unset;width:100%;}
}

/* ═══════════════════════════════════════════════════════
   CAMPAIGN LANDING PAGE
═══════════════════════════════════════════════════════ */
.sa-camp-page-hero{min-height:480px;background:linear-gradient(135deg,#0a0a0a,#1a1a3e);background-size:cover;background-position:center;display:flex;align-items:center;color:#fff;padding:80px 20px;}
.sa-camp-page-hero-inner{max-width:760px;margin:0 auto;text-align:center;}
.sa-camp-page-tag{display:flex;align-items:center;gap:10px;justify-content:center;margin-bottom:20px;}
.sa-camp-page-tag span{font-size:14px;font-weight:600;color:rgba(255,255,255,.8);}
.sa-camp-type-badge{background:rgba(255,255,255,.15);border:1px solid rgba(255,255,255,.2);border-radius:100px;padding:2px 10px;font-size:11px;font-weight:700;}
.sa-camp-page-headline{font-family:var(--font-head);font-size:clamp(28px,5vw,56px);font-weight:800;line-height:1.1;margin-bottom:16px;}
.sa-camp-page-copy{font-size:17px;color:rgba(255,255,255,.8);line-height:1.7;max-width:560px;margin:0 auto 28px;}
.sa-camp-page-actions{display:flex;gap:12px;justify-content:center;flex-wrap:wrap;margin-bottom:20px;}
.sa-camp-page-meta{display:flex;gap:16px;justify-content:center;font-size:13px;color:rgba(255,255,255,.55);flex-wrap:wrap;}

/* ── Footer logo fix & social icons ─────────────────── */
.sa-footer-logo { display:inline-block; }
.sa-footer-logo-img { display:block; }
.sa-footer-socials { display:flex; gap:10px; margin-top:14px; flex-wrap:wrap; }
.sa-footer-social-btn {
  width:36px; height:36px; border-radius:50%;
  background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.15);
  display:flex; align-items:center; justify-content:center;
  font-size:14px; font-weight:700; color:#fff; text-decoration:none;
  transition:background .15s;
}
.sa-footer-social-btn:hover { background:rgba(255,255,255,.2); }
/* Ensure footer links column grid responds to number of columns */
.sa-footer-links { display:grid; gap:24px; }

/* ═══════════════════════════════════════════════════════
   HERO VIDEO BACKGROUND
═══════════════════════════════════════════════════════ */
.sa-hero { position: relative; overflow: hidden; }

.sa-hero-bg-video-wrap {
  position: absolute; inset: 0; z-index: 0;
}
.sa-hero-bg-video {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}
.sa-hero-bg-overlay {
  position: absolute; inset: 0;
}
.sa-hero-inner { position: relative; z-index: 1; }

/* Stats fix — always number on top, label below */
.sa-hero-stats { margin-top: 36px; }
.sa-hero-stat { text-align: center; }
.sa-hero-stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  line-height: 1;
  color: #fff;
  margin-bottom: 4px;
}
.sa-hero-stat span {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .5px;
}

/* ═══════════════════════════════════════════════════════
   HERO SPLIT LAYOUT (for side video ad)
═══════════════════════════════════════════════════════ */
.sa-hero-split {
  display: grid;
  grid-template-columns: 1fr 420px;
  align-items: center;
  gap: 0;
  max-width: 100%;
}
.sa-hero-split .sa-hero-inner { padding-right: 40px; }
.sa-hero-split-left  { order: -1; }
.sa-hero-split-right { order: 1; }

@media (max-width: 900px) {
  .sa-hero-split { grid-template-columns: 1fr; }
  .sa-hero-split .sa-hero-inner { padding-right: 0; }
  .sa-hero-split-left,.sa-hero-split-right { order: 2; margin-top: 24px; }
}

/* ═══════════════════════════════════════════════════════
   HERO VIDEO AD UNIT
═══════════════════════════════════════════════════════ */
.sa-hero-video-ad {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.sa-hero-video-ad-label {
  position: absolute;
  top: 10px; left: 10px;
  background: rgba(0,0,0,.65);
  color: rgba(255,255,255,.8);
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .6px;
  padding: 3px 9px; border-radius: 4px;
  z-index: 10;
}

/* Video player */
.sa-hero-vid-player-wrap {
  position: relative;
  background: #000;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.sa-hero-vid-player {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.sa-hero-vid-overlay-link {
  position: absolute; inset: 0; z-index: 3;
}
.sa-hero-vid-controls {
  position: absolute; bottom: 10px; right: 10px;
  display: flex; gap: 6px; z-index: 4;
}
.sa-vid-mute-btn, .sa-vid-play-btn {
  background: rgba(0,0,0,.6); color: #fff;
  border: none; border-radius: 6px;
  width: 32px; height: 32px;
  font-size: 14px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s;
}
.sa-vid-mute-btn:hover, .sa-vid-play-btn:hover { background: rgba(0,0,0,.85); }

/* Image fallback */
.sa-hero-vid-img {
  width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block;
}

/* Info panel */
.sa-hero-vid-info { padding: 16px 18px 18px; }
.sa-hero-vid-brand {
  display: flex; align-items: center; gap: 8px; margin-bottom: 8px;
}
.sa-hero-vid-brand-logo {
  height: 24px; width: auto; border-radius: 4px; object-fit: contain;
}
.sa-hero-vid-brand-name {
  font-size: 12px; font-weight: 700;
  color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .4px;
}
.sa-hero-vid-headline {
  font-family: var(--font-head);
  font-size: 18px; font-weight: 800;
  color: #fff; line-height: 1.25; margin-bottom: 6px;
}
.sa-hero-vid-copy {
  font-size: 13px; color: rgba(255,255,255,.7);
  line-height: 1.5; margin-bottom: 4px;
}
.sa-hero-vid-price {
  font-family: var(--font-head);
  font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 4px;
}
.sa-hero-vid-brand-link {
  display: block; font-size: 12px; color: rgba(255,255,255,.5);
  margin-top: 8px; text-decoration: none;
  transition: color .15s;
}
.sa-hero-vid-brand-link:hover { color: rgba(255,255,255,.8); }

/* Below-hero video ad */
.sa-hero-vid-ad-below .sa-hero-video-ad {
  max-width: 560px; margin: 0 auto;
  display: flex; flex-direction: row; align-items: stretch;
}
.sa-hero-vid-ad-below .sa-hero-vid-player-wrap { width: 220px; flex-shrink: 0; aspect-ratio: auto; }
.sa-hero-vid-ad-below .sa-hero-vid-player { height: 100%; }
.sa-hero-vid-ad-below .sa-hero-vid-info { flex: 1; }

/* Overlay corner video ad */
.sa-hero-vid-ad-overlay {
  position: absolute; bottom: 24px; right: 24px; width: 320px; z-index: 3;
}
.sa-hero-vid-ad-overlay .sa-hero-video-ad {
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
}

/* ═══════════════════════════════════════════════════════
   SMART BUY SCORE WIDGET
═══════════════════════════════════════════════════════ */
.sa-score-widget {
  background:#fff; border:1px solid #e5e7eb; border-radius:20px;
  padding:24px; margin-bottom:32px;
}
/* HEADER */
.sa-score-header { display:flex; gap:20px; align-items:flex-start; flex-wrap:wrap; }
.sa-score-ring-wrap { flex-shrink:0; }
.sa-score-ring { width:100px; height:100px; }
.sa-score-ring-progress { transition:stroke-dashoffset 1s ease; }
.sa-score-summary { flex:1; min-width:220px; }
.sa-score-badge {
  display:inline-block; padding:6px 14px; border-radius:100px;
  font-size:14px; font-weight:800; margin-bottom:8px;
}
.sa-score-ai-summary { font-size:14px; color:#374151; line-height:1.6; margin:0 0 8px; }
.sa-score-best-retailer {
  font-size:13px; color:#374151; background:#f0fdf4;
  border:1px solid #bbf7d0; border-radius:8px; padding:7px 12px;
  display:inline-block; margin-top:4px;
}

/* FACTORS */
.sa-score-factors { margin-top:24px; padding-top:20px; border-top:1px solid #f0f2f5; }
.sa-score-factors-title {
  font-size:12px; font-weight:700; text-transform:uppercase;
  letter-spacing:.5px; color:#6b7280; margin-bottom:12px;
}
.sa-score-factor { margin-bottom:10px; }
.sa-score-factor-label {
  display:flex; align-items:center; gap:8px;
  font-size:13px; font-weight:600; color:#374151; margin-bottom:4px;
}
.sa-score-factor-icon { font-size:14px; flex-shrink:0; }
.sa-score-factor-label span:nth-child(2) { flex:1; }
.sa-score-factor-val { font-weight:800; font-size:13px; }
.sa-score-factor-bar-wrap {
  background:#f0f2f5; border-radius:100px; height:6px; overflow:hidden;
}
.sa-score-factor-bar {
  height:100%; border-radius:100px; transition:width .8s ease;
}

/* PROS / CONS */
.sa-score-proscons {
  display:grid; grid-template-columns:1fr 1fr; gap:16px;
  margin-top:20px; padding-top:16px; border-top:1px solid #f0f2f5;
}
@media(max-width:600px){ .sa-score-proscons { grid-template-columns:1fr; } }
.sa-score-pc-title { font-size:12px; font-weight:700; text-transform:uppercase; letter-spacing:.4px; color:#6b7280; margin-bottom:8px; }
.sa-score-pc-item { font-size:13px; color:#374151; padding:3px 0; }
.sa-score-con-item { color:#dc3545; }

/* RETAILER SIGNALS */
.sa-score-retailers { margin-top:20px; padding-top:16px; border-top:1px solid #f0f2f5; }
.sa-score-retailer-grid { display:flex; flex-direction:column; gap:8px; }
.sa-score-retailer-row {
  border:1px solid #e5e7eb; border-radius:10px; padding:10px 14px;
  position:relative;
}
.sa-score-ret-best { border-color:#00a651; background:#f0fdf4; }
.sa-score-ret-best-tag {
  font-size:10px; font-weight:700; color:#00a651;
  text-transform:uppercase; letter-spacing:.4px; margin-bottom:4px;
}
.sa-score-ret-name { font-weight:700; font-size:14px; margin-bottom:6px; }
.sa-score-ret-signals { display:flex; gap:10px; flex-wrap:wrap; }
.sa-score-ret-signals span { font-size:12px; color:#6b7280; white-space:nowrap; }

/* REVIEW STATS */
.sa-score-review-stats { margin-top:20px; padding-top:16px; border-top:1px solid #f0f2f5; }
.sa-score-rating-summary { display:flex; align-items:center; gap:14px; }
.sa-score-avg-rating { font-family:var(--font-head); font-size:42px; font-weight:800; color:#111827; }
.sa-score-stars { font-size:20px; color:#f59e0b; letter-spacing:2px; }
.sa-star-full  { color:#f59e0b; }
.sa-star-half  { color:#f59e0b; }
.sa-star-empty { color:#d1d5db; }

/* COMPACT (card badge) */
.sa-card-score-badge {
  display:inline-flex; align-items:center; gap:4px;
  padding:3px 10px; border-radius:100px;
  font-size:11px; font-weight:700; margin-bottom:4px;
}
.sa-score-compact { padding:16px; }
.sa-score-compact .sa-score-header { gap:12px; }
.sa-score-compact .sa-score-ring { width:72px; height:72px; }

/* ═══════════════════════════════════════════════════════
   PROGRESSIVE DISCLOSURE — CONSUMER TOGGLES
═══════════════════════════════════════════════════════ */
.sa-score-section { margin-bottom: 16px; }
.sa-score-section-title {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .6px; color: #6b7280; margin-bottom: 10px;
}
.sa-score-body { margin-top: 20px; border-top: 1px solid #f0f2f5; padding-top: 16px; }

/* Collapsible intelligence panels */
.sa-disclosure { border: 1px solid #e5e7eb; border-radius: 12px; margin-bottom: 10px; overflow: hidden; }
.sa-disclosure-trigger {
  display: flex; justify-content: space-between; align-items: center;
  padding: 13px 16px; cursor: pointer; user-select: none;
  font-weight: 600; font-size: 14px; background: #fafafa;
  transition: background .15s;
}
.sa-disclosure-trigger:hover { background: #f3f4f6; }
.sa-disclosure-trigger .sa-disc-icon { font-size: 11px; color: #9ca3af; transition: transform .2s; }
.sa-disclosure.open .sa-disc-icon { transform: rotate(180deg); }
.sa-disclosure-body { display: none; padding: 14px 16px; border-top: 1px solid #f0f2f5; background: #fff; }
.sa-disclosure.open .sa-disclosure-body { display: block; }

/* Why won */
.sa-score-why-won { background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: 12px; padding: 14px 16px; }
.sa-score-why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin-top: 8px; }
@media(max-width:500px){ .sa-score-why-grid{ grid-template-columns:1fr; } }
.sa-score-why-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #15803d; }
.sa-score-check { font-weight: 700; flex-shrink: 0; }

/* Confidence */
.sa-score-confidence-badge { border: 1.5px solid; border-radius: 12px; padding: 14px 16px; }
.sa-score-conf-level { font-weight: 800; font-size: 16px; margin-bottom: 8px; }
.sa-score-conf-reasons { font-size: 13px; color: #374151; display: flex; flex-wrap: wrap; gap: 6px; margin-top: 6px; }
.sa-score-conf-reason { background: rgba(0,0,0,.05); border-radius: 6px; padding: 2px 10px; }

/* Best For */
.sa-score-bestfor-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.sa-score-bestfor-tag {
  background: #eff6ff; color: #1d4ed8; border: 1px solid #bfdbfe;
  border-radius: 100px; padding: 5px 14px; font-size: 13px; font-weight: 600;
}

/* Cashback section (separated) */
.sa-score-cashback-section { background: #fffbeb; border: 1px solid #fde68a; border-radius: 12px; padding: 14px 16px; }
.sa-score-cashback-box { display: flex; gap: 16px; align-items: flex-start; flex-wrap: wrap; }
.sa-score-cb-main { flex-shrink: 0; }
.sa-score-cb-pct { font-family: var(--font-head); font-size: 28px; font-weight: 800; color: #92400e; }
.sa-score-cb-pct span { font-size: 14px; font-weight: 600; }
.sa-score-cb-store { font-size: 13px; color: #92400e; }
.sa-score-cb-note { font-size: 13px; color: #78350f; line-height: 1.5; flex: 1; }
.sa-score-cb-stores { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 6px; }
.sa-score-cb-stores span { background: rgba(0,0,0,.07); border-radius: 6px; padding: 2px 8px; font-size: 12px; font-weight: 600; }

/* Price history */
.sa-score-price-history { }
.sa-score-ph-track { background: #e5e7eb; border-radius: 100px; height: 10px; position: relative; overflow: visible; margin: 12px 0 4px; }
.sa-score-ph-fill { height: 100%; background: linear-gradient(90deg,#3b82f6,#1d4ed8); border-radius: 100px; position: relative; }
.sa-score-ph-fill::after { content: ''; position: absolute; right: -6px; top: -3px; width: 16px; height: 16px; background: #1d4ed8; border: 3px solid #fff; border-radius: 50%; box-shadow: 0 1px 4px rgba(0,0,0,.2); }
.sa-score-ph-avg-line { position: absolute; top: -4px; width: 2px; height: 18px; background: #f59e0b; border-radius: 1px; transform: translateX(-50%); }
.sa-score-ph-labels { display: flex; justify-content: space-between; font-size: 11px; color: #9ca3af; margin-top: 6px; }
.sa-score-ph-current { display: flex; justify-content: space-between; align-items: center; margin-top: 10px; flex-wrap: wrap; gap: 6px; }
.sa-score-ph-now { font-size: 14px; font-weight: 600; }
.sa-score-ph-trend { font-size: 12px; font-weight: 600; }
.sa-score-ph-alert { font-size: 13px; margin-top: 8px; padding: 8px 12px; border-radius: 8px; background: #d4edda; color: #155724; }
.sa-score-ph-alert-warn { background: #fff3cd; color: #856404; }

/* Retailer signals */
.sa-score-retailer-row { border: 1px solid #e5e7eb; border-radius: 10px; padding: 10px 14px; margin-bottom: 8px; }
.sa-score-ret-best { border-color: #00a651; background: #f0fdf4; }
.sa-score-ret-best-tag { font-size: 10px; font-weight: 700; color: #00a651; text-transform: uppercase; letter-spacing: .4px; margin-bottom: 4px; }
.sa-score-ret-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.sa-score-ret-name { font-weight: 700; font-size: 14px; }
.sa-score-ret-price { font-weight: 800; font-size: 16px; font-family: var(--font-head); }
.sa-score-ret-signals { display: flex; gap: 10px; flex-wrap: wrap; }
.sa-score-ret-signals span { font-size: 12px; color: #6b7280; white-space: nowrap; }
.sa-coupon-chip { background: #eff6ff; color: #1d4ed8; border-radius: 4px; padding: 1px 7px; font-size: 11px; font-weight: 700; }

/* Best retailer row in header */
.sa-score-best-ret-row { display: flex; align-items: center; gap: 8px; background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: 8px; padding: 7px 12px; font-size: 13px; margin-top: 6px; }
.sa-score-best-ret-label { color: #6b7280; }
.sa-score-ring-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .4px; color: #9ca3af; text-align: center; margin-top: 4px; }

/* Reviews */
.sa-score-rating-summary { display: flex; align-items: center; gap: 14px; }
.sa-score-avg-rating { font-family: var(--font-head); font-size: 40px; font-weight: 800; }
.sa-score-stars { font-size: 18px; letter-spacing: 2px; }
.sa-star-full, .sa-star-half { color: #f59e0b; }
.sa-star-empty { color: #d1d5db; }

/* Pros/Cons */
.sa-score-proscons { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media(max-width:560px){ .sa-score-proscons{ grid-template-columns:1fr; } }
.sa-score-pc-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .4px; color: #6b7280; margin-bottom: 8px; }
.sa-score-pc-item { font-size: 13px; padding: 3px 0; color: #374151; }
.sa-score-con-item { color: #dc3545; }

/* Mobile: collapse retailer table by default */
@media(max-width:640px) {
  .sa-score-retailer-row .sa-score-ret-signals { display: none; }
  .sa-score-retailer-row.expanded .sa-score-ret-signals { display: flex; }
  .sa-score-retailer-row { cursor: pointer; }
  .sa-score-retailer-row::after { content: '▸ Details'; font-size: 11px; color: #9ca3af; display: block; margin-top: 4px; }
  .sa-score-retailer-row.expanded::after { content: '▾ Hide'; }
}

/* Card badge */
.sa-card-score-badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 10px; border-radius: 100px;
  font-size: 11px; font-weight: 700; margin-bottom: 4px;
}

/* Onboarding checklist in portal */
.sa-onboard-checklist { background: #fff; border: 1px solid #e5e7eb; border-radius: 14px; padding: 20px; margin-bottom: 20px; }
.sa-onboard-step { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid #f0f2f5; }
.sa-onboard-step:last-child { border: none; }
.sa-onboard-check { width: 24px; height: 24px; border-radius: 50%; border: 2px solid #e5e7eb; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 12px; }
.sa-onboard-check.done { background: #00a651; border-color: #00a651; color: #fff; }
.sa-onboard-step-body { flex: 1; }
.sa-onboard-step-label { font-weight: 600; font-size: 14px; }
.sa-onboard-step a { font-size: 12px; color: var(--blue); }

/* ═══════════════════════════════════════════════════════
   AUTH PAGES
═══════════════════════════════════════════════════════ */
.sa-auth-page { min-height: 80vh; display: flex; flex-direction: column; background: #f7f8fa; }
.sa-auth-layout { display: flex; align-items: center; justify-content: center; flex: 1; padding: 40px 20px; gap: 32px; max-width: 1100px; margin: 0 auto; width: 100%; }
.sa-auth-split { justify-content: center; align-items: stretch; }
.sa-auth-split-rev { flex-direction: row-reverse; }
.sa-auth-center { display: flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.sa-auth-box {
  background: #fff; border: 1px solid #e5e7eb; border-radius: 20px;
  padding: 40px; width: 420px; max-width: 100%;
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
}
.sa-auth-logo { display: block; text-align: center; margin-bottom: 24px; }
.sa-auth-title { font-family: var(--font-head); font-size: 26px; font-weight: 800; text-align: center; margin-bottom: 4px; }
.sa-auth-sub { color: #6b7280; text-align: center; font-size: 14px; margin-bottom: 24px; }
.sa-auth-form { display: flex; flex-direction: column; gap: 14px; }
.sa-auth-field { display: flex; flex-direction: column; gap: 4px; }
.sa-auth-field label { font-size: 13px; font-weight: 600; color: #374151; display: flex; justify-content: space-between; }
.sa-auth-forgot { font-size: 12px; color: var(--blue); font-weight: 500; text-decoration: none; }
.sa-auth-forgot:hover { text-decoration: underline; }
.sa-input-pw-wrap { position: relative; }
.sa-input-pw-wrap .sa-input { padding-right: 40px; width: 100%; }
.sa-pw-toggle { position: absolute; right: 10px; top: 50%; transform: translateY(-50%); background: none; border: none; cursor: pointer; font-size: 16px; padding: 0; line-height: 1; }
.sa-pw-strength { margin-top: 4px; }
.sa-auth-msg { padding: 10px 14px; border-radius: 10px; font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.sa-auth-ok { background: #d4edda; color: #155724; }
.sa-auth-err-msg { background: #fee2e2; color: #991b1b; }
.sa-auth-divider { text-align: center; position: relative; margin: 16px 0; }
.sa-auth-divider::before { content: ''; position: absolute; top: 50%; left: 0; right: 0; height: 1px; background: #e5e7eb; }
.sa-auth-divider span { background: #fff; padding: 0 12px; position: relative; font-size: 12px; color: #9ca3af; font-weight: 600; text-transform: uppercase; letter-spacing: .4px; }
.sa-oauth-btn { display: flex; align-items: center; justify-content: center; gap: 10px; font-weight: 600; font-size: 14px; }
.sa-auth-alt { text-align: center; font-size: 14px; color: #6b7280; margin-top: 16px; }
.sa-auth-alt a { color: var(--blue); font-weight: 600; text-decoration: none; }
.sa-auth-legal { text-align: center; font-size: 12px; color: #9ca3af; margin-top: 12px; line-height: 1.5; }
.sa-auth-legal a { color: var(--blue); text-decoration: none; }
.sa-auth-agree { margin-top: 4px; }
.sa-auth-checkbox { display: flex; gap: 10px; align-items: flex-start; cursor: pointer; font-size: 13px; color: #374151; line-height: 1.5; }
.sa-auth-checkbox input { margin-top: 2px; flex-shrink: 0; }
.sa-auth-checkbox a { color: var(--blue); font-weight: 600; text-decoration: none; }
.sa-auth-notice { background: #eff6ff; color: #1d4ed8; border-radius: 8px; padding: 8px 12px; font-size: 12px; }
.sa-auth-ad-panel { flex: 0 0 380px; display: flex; align-items: center; }
.sa-auth-ad-panel .sa-ad-card { width: 100%; }

/* Account type tabs */
.sa-auth-type-tabs { display: flex; gap: 6px; margin-bottom: 20px; background: #f3f4f6; border-radius: 12px; padding: 4px; }
.sa-auth-type { flex: 1; padding: 8px; border: none; background: none; border-radius: 9px; font-size: 13px; font-weight: 600; cursor: pointer; transition: all .15s; color: #6b7280; }
.sa-auth-type.active { background: #fff; color: #111827; box-shadow: 0 1px 4px rgba(0,0,0,.08); }

@media (max-width: 800px) {
  .sa-auth-split { flex-direction: column; }
  .sa-auth-ad-panel { display: none; }
  .sa-auth-box { width: 100%; padding: 28px 20px; }
}

/* ═══════════════════════════════════════════════════════
   LEGAL PAGES
═══════════════════════════════════════════════════════ */
.sa-legal-hero { background: linear-gradient(135deg,#0a0a0a,#1a1a3e); color: #fff; padding: 60px 20px; text-align: center; }
.sa-legal-hero-inner { max-width: 640px; margin: 0 auto; }
.sa-legal-hero h1 { font-family: var(--font-head); font-size: 42px; font-weight: 800; margin-bottom: 8px; }
.sa-legal-hero p { color: rgba(255,255,255,.65); font-size: 14px; }
.sa-legal-wrap { max-width: 1000px; margin: 0 auto; padding: 48px 20px; display: grid; grid-template-columns: 220px 1fr; gap: 48px; align-items: start; }
@media(max-width:700px){ .sa-legal-wrap{ grid-template-columns:1fr; } }
.sa-legal-toc { position: sticky; top: 80px; background: #f7f8fa; border-radius: 14px; padding: 20px; display: flex; flex-direction: column; gap: 8px; }
.sa-legal-toc strong { font-size: 11px; text-transform: uppercase; letter-spacing: .5px; color: #9ca3af; margin-bottom: 4px; }
.sa-legal-toc a { font-size: 13px; color: #374151; text-decoration: none; padding: 3px 0; }
.sa-legal-toc a:hover { color: var(--blue); }
.sa-legal-body h2 { font-family: var(--font-head); font-size: 22px; font-weight: 700; margin: 36px 0 12px; border-bottom: 2px solid #f0f2f5; padding-bottom: 8px; }
.sa-legal-body h3 { font-size: 16px; font-weight: 700; margin: 20px 0 8px; }
.sa-legal-body p { font-size: 14px; line-height: 1.8; color: #374151; margin-bottom: 14px; }
.sa-legal-body ul { font-size: 14px; line-height: 1.8; color: #374151; padding-left: 20px; margin-bottom: 14px; }
.sa-legal-body ul li { margin-bottom: 8px; }
.sa-legal-body address { font-style: normal; font-size: 14px; line-height: 1.8; background: #f7f8fa; border-radius: 10px; padding: 16px; }
.sa-legal-summary { background: #eff6ff; border: 1px solid #bfdbfe; border-radius: 12px; padding: 16px 20px; font-size: 14px; color: #1d4ed8; line-height: 1.6; margin-bottom: 24px; }

/* ═══════════════════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════════════════ */
.sa-contact-wrap { max-width: 1100px; margin: 0 auto; padding: 48px 20px; }
.sa-contact-grid { display: grid; grid-template-columns: 1fr 380px; gap: 48px; }
@media(max-width:800px){ .sa-contact-grid{ grid-template-columns:1fr; } }
.sa-contact-form-col h2, .sa-contact-info-col h2 { font-family: var(--font-head); font-size: 24px; font-weight: 800; margin-bottom: 20px; }
.sa-contact-form { display: flex; flex-direction: column; gap: 16px; }
.sa-contact-card { background: #f7f8fa; border-radius: 16px; padding: 20px; display: flex; flex-direction: column; gap: 16px; margin-bottom: 20px; }
.sa-contact-item { display: flex; gap: 14px; align-items: flex-start; }
.sa-contact-icon { font-size: 22px; flex-shrink: 0; width: 36px; text-align: center; }
.sa-contact-item strong { display: block; font-size: 13px; font-weight: 700; margin-bottom: 2px; }
.sa-contact-item a, .sa-contact-item span { font-size: 14px; color: #374151; text-decoration: none; }
.sa-contact-quick-links { display: flex; flex-direction: column; gap: 6px; }
.sa-contact-quick-links a { font-size: 14px; color: var(--blue); text-decoration: none; padding: 6px 0; border-bottom: 1px solid #f0f2f5; }
.sa-contact-notice { background: #fef3c7; border: 1px solid #fde68a; border-radius: 10px; padding: 14px; font-size: 13px; color: #92400e; margin-top: 20px; line-height: 1.6; }

/* ═══════════════════════════════════════════════════════
   LEGAL PAGES
═══════════════════════════════════════════════════════ */
.sa-legal-hero { background:linear-gradient(135deg,#0a0a0a,#1e1b4b); color:#fff; padding:64px 20px; text-align:center; }
.sa-legal-hero-inner { max-width:680px; margin:0 auto; }
.sa-legal-hero h1 { font-family:var(--font-head); font-size:clamp(28px,4vw,48px); font-weight:800; margin-bottom:10px; }
.sa-legal-hero p { color:rgba(255,255,255,.7); font-size:15px; }
.sa-legal-badge { display:inline-block; background:rgba(255,255,255,.12); border:1px solid rgba(255,255,255,.2); border-radius:100px; padding:4px 14px; font-size:12px; font-weight:700; text-transform:uppercase; letter-spacing:.5px; margin-bottom:14px; }
.sa-legal-wrap { max-width:820px; margin:0 auto; padding:40px 20px 80px; color:#1f2937; line-height:1.75; }
.sa-legal-wrap h2 { font-family:var(--font-head); font-size:22px; font-weight:800; margin:36px 0 10px; padding-top:8px; border-top:2px solid #f0f2f5; }
.sa-legal-wrap h3 { font-size:16px; font-weight:700; margin:20px 0 8px; }
.sa-legal-wrap p { margin-bottom:14px; }
.sa-legal-wrap ul,.sa-legal-wrap ol { padding-left:22px; margin-bottom:14px; }
.sa-legal-wrap li { margin-bottom:6px; }
.sa-legal-wrap a { color:var(--blue); }
.sa-legal-toc { background:#f7f8fa; border:1px solid #e5e7eb; border-radius:12px; padding:20px 24px; margin-bottom:32px; }
.sa-legal-toc strong { font-size:13px; text-transform:uppercase; letter-spacing:.4px; color:#6b7280; display:block; margin-bottom:10px; }
.sa-legal-toc ol { column-count:2; column-gap:20px; margin:0; padding-left:18px; font-size:13px; }
.sa-legal-toc li { margin-bottom:4px; }
@media(max-width:600px){ .sa-legal-toc ol{ column-count:1; } }
.sa-legal-table { width:100%; border-collapse:collapse; font-size:13px; margin-bottom:16px; }
.sa-legal-table th { background:#f7f8fa; padding:10px 14px; text-align:left; font-weight:700; border-bottom:2px solid #e5e7eb; }
.sa-legal-table td { padding:10px 14px; border-bottom:1px solid #f0f2f5; vertical-align:top; }
.sa-legal-notice { background:#fef3c7; border:1px solid #fde68a; border-radius:10px; padding:14px 18px; font-size:14px; color:#92400e; font-weight:600; margin-bottom:24px; }
.sa-legal-contact-box { background:#f7f8fa; border:1px solid #e5e7eb; border-radius:12px; padding:20px 24px; font-size:14px; line-height:1.8; }

/* ═══════════════════════════════════════════════════════
   AUTH PAGES — LOGIN / SIGNUP / LOGOUT
═══════════════════════════════════════════════════════ */
.sa-auth-page { min-height:100vh; background:#f7f8fa; display:flex; flex-direction:column; }
.sa-auth-topbar { display:flex; justify-content:space-between; align-items:center; padding:14px 32px; background:#fff; border-bottom:1px solid #e5e7eb; }
.sa-auth-topbar-right { display:flex; align-items:center; gap:10px; font-size:14px; color:#6b7280; }
.sa-auth-topbar-link { color:var(--blue); font-weight:700; text-decoration:none; }
.sa-auth-split-layout { display:grid; grid-template-columns:420px 1fr; gap:0; flex:1; min-height:calc(100vh - 57px); }
.sa-auth-split-layout:not(.sa-auth-has-ad) { grid-template-columns:1fr; }
.sa-auth-form-col { padding:32px 40px; display:flex; flex-direction:column; gap:20px; border-right:1px solid #e5e7eb; background:#fff; }
.sa-auth-ad-col { padding:24px; background:#f7f8fa; display:flex; flex-direction:column; gap:16px; overflow:hidden; }
.sa-auth-box { width:100%; max-width:380px; }
.sa-auth-title { font-family:var(--font-head); font-size:26px; font-weight:800; margin-bottom:4px; }
.sa-auth-sub { font-size:14px; color:#6b7280; margin-bottom:20px; line-height:1.5; }
.sa-auth-field { display:flex; flex-direction:column; gap:5px; margin-bottom:14px; }
.sa-auth-field label { font-size:13px; font-weight:600; color:#374151; display:flex; justify-content:space-between; align-items:center; }
.sa-auth-forgot { font-size:12px; font-weight:600; color:var(--blue); text-decoration:none; }
.sa-input-pw-wrap { position:relative; }
.sa-input-pw-wrap .sa-input { padding-right:42px; width:100%; }
.sa-pw-toggle { position:absolute; right:12px; top:50%; transform:translateY(-50%); background:none; border:none; cursor:pointer; font-size:16px; }
.sa-auth-remember { display:flex; align-items:center; gap:8px; font-size:13px; color:#374151; cursor:pointer; margin-bottom:16px; }
.sa-auth-divider { text-align:center; margin:16px 0; position:relative; }
.sa-auth-divider::before { content:''; position:absolute; top:50%; left:0; right:0; height:1px; background:#e5e7eb; }
.sa-auth-divider span { background:#fff; position:relative; padding:0 12px; font-size:13px; color:#9ca3af; }
.sa-auth-oauth { display:flex; gap:8px; }
.sa-oauth-btn { flex:1; display:flex; align-items:center; justify-content:center; gap:8px; padding:10px 12px; border:1.5px solid #e5e7eb; border-radius:10px; background:#fff; font-size:13px; font-weight:600; cursor:pointer; transition:border-color .15s; }
.sa-oauth-btn:hover { border-color:#9ca3af; }
.sa-auth-security { display:flex; align-items:center; gap:10px; margin-top:16px; font-size:12px; color:#6b7280; padding:12px; background:#f7f8fa; border-radius:10px; }
.sa-auth-type-tabs { display:flex; gap:6px; margin-bottom:20px; }
.sa-auth-type { flex:1; padding:10px; border:2px solid #e5e7eb; border-radius:10px; font-weight:600; font-size:13px; background:#fff; cursor:pointer; transition:all .15s; }
.sa-auth-type.active { border-color:var(--black); background:var(--black); color:#fff; }
.sa-auth-footer-links { display:flex; gap:20px; align-items:center; justify-content:center; padding:16px 32px; font-size:12px; color:#9ca3af; border-top:1px solid #e5e7eb; background:#fff; flex-wrap:wrap; }
.sa-auth-footer-links a { color:#9ca3af; text-decoration:none; }
.sa-auth-footer-links a:hover { color:#374151; }
.sa-auth-msg { padding:10px 14px; border-radius:10px; font-size:14px; font-weight:600; margin-bottom:12px; }
.sa-auth-ok { background:#d4edda; color:#155724; }
.sa-auth-error { background:#fee2e2; color:#991b1b; }

/* ── Auth Ad Strip (Rotating Hero) ─────────────── */
.sa-auth-hero-strip { position:relative; border-radius:16px; overflow:hidden; background:#f0f2f5; }
.sa-auth-strip-header { display:flex; justify-content:space-between; align-items:center; padding:10px 14px; }
.sa-auth-strip-label { font-size:12px; font-weight:700; color:#374151; }
.sa-auth-ad-badge { background:#f0f2f5; border:1px solid #e5e7eb; border-radius:4px; padding:2px 8px; font-size:10px; font-weight:700; color:#6b7280; text-transform:uppercase; letter-spacing:.4px; }
.sa-auth-ad-badge-row { margin-bottom:6px; }
.sa-auth-strip-track { display:flex; transition:transform .4s ease; }
.sa-auth-strip-slide { flex:0 0 100%; }
.sa-strip-nav { position:absolute; top:50%; transform:translateY(-50%); background:rgba(255,255,255,.9); border:none; border-radius:50%; width:32px; height:32px; font-size:18px; cursor:pointer; display:flex; align-items:center; justify-content:center; box-shadow:0 2px 8px rgba(0,0,0,.15); z-index:2; }
.sa-strip-prev { left:8px; }
.sa-strip-next { right:8px; }
.sa-strip-dots { display:flex; gap:6px; justify-content:center; padding:10px 0 8px; }
.sa-strip-dot { width:8px; height:8px; border-radius:50%; background:#d1d5db; border:none; cursor:pointer; padding:0; transition:background .2s; }
.sa-strip-dot.active { background:var(--black); }

/* ── Campaign Cards ─────────────────────────────── */
.sa-auth-camp-card { display:flex; flex-direction:column; text-decoration:none; color:inherit; border-radius:12px; overflow:hidden; background:#fff; border:1px solid #e5e7eb; transition:box-shadow .15s,transform .15s; }
.sa-auth-camp-card:hover { box-shadow:0 4px 16px rgba(0,0,0,.1); transform:translateY(-1px); }
.sa-auth-camp-img { height:200px; background-size:cover; background-position:center; }
.sa-auth-camp-lg .sa-auth-camp-img { height:220px; }
.sa-auth-camp-sm .sa-auth-camp-img { height:120px; }
.sa-auth-camp-body { padding:14px; }
.sa-auth-camp-brand-logo { height:24px; width:auto; object-fit:contain; display:block; margin-bottom:8px; }
.sa-auth-camp-brand-name { font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:.5px; color:#6b7280; margin-bottom:6px; }
.sa-auth-camp-headline { font-family:var(--font-head); font-size:17px; font-weight:800; line-height:1.25; margin-bottom:6px; }
.sa-auth-camp-sm .sa-auth-camp-headline { font-size:13px; }
.sa-auth-camp-copy { font-size:13px; color:#6b7280; line-height:1.4; margin-bottom:8px; }
.sa-auth-camp-cb { color:#00a651; font-weight:700; font-size:13px; margin-bottom:8px; }
.sa-auth-camp-cta { display:inline-block; background:#111827; color:#fff; padding:8px 18px; border-radius:8px; font-size:13px; font-weight:700; }

/* ── 2-up card grid ─────────────────────────────── */
.sa-auth-card-grid { display:grid; grid-template-columns:1fr 1fr; gap:12px; }

/* ── Brand logo strip ───────────────────────────── */
.sa-auth-brand-strip { background:#fff; border:1px solid #e5e7eb; border-radius:12px; padding:14px 16px; }
.sa-auth-brand-logos { display:flex; gap:12px; align-items:center; justify-content:space-around; flex-wrap:wrap; margin-top:8px; }
.sa-auth-brand-logo-item img { height:28px; width:auto; object-fit:contain; filter:grayscale(30%); transition:filter .2s; }
.sa-auth-brand-logo-item:hover img { filter:none; }

/* ── Value props ────────────────────────────────── */
.sa-auth-value-props { display:grid; grid-template-columns:1fr 1fr; gap:12px; padding:16px 0; border-top:1px solid #f0f2f5; }
.sa-auth-value-prop { display:flex; flex-direction:column; gap:2px; font-size:12px; }
.sa-auth-vp-icon { font-size:20px; margin-bottom:4px; }
.sa-auth-value-prop strong { font-size:13px; font-weight:700; }
.sa-auth-value-prop span { color:#6b7280; line-height:1.4; }

/* ── LOGOUT PAGE ────────────────────────────────── */
.sa-logout-page { }
.sa-logout-layout { display:grid; grid-template-columns:1fr 340px; gap:0; flex:1; }
.sa-logout-hero-col { padding:32px 40px; background:#fff; display:flex; flex-direction:column; gap:20px; }
.sa-logout-ad-col { padding:20px; background:#f7f8fa; border-left:1px solid #e5e7eb; }
.sa-logout-hero-content { text-align:center; padding:20px 0; }
.sa-logout-bag { font-size:56px; margin-bottom:12px; }
.sa-logout-headline { font-family:var(--font-head); font-size:clamp(22px,3vw,32px); font-weight:800; margin-bottom:8px; }
.sa-logout-subtext { font-size:15px; color:#6b7280; max-width:480px; margin:0 auto; line-height:1.6; }
.sa-logout-sponsored-label { font-size:13px; font-weight:700; color:#374151; margin-bottom:8px; display:flex; align-items:center; gap:8px; }
.sa-logout-trending-label { font-size:13px; font-weight:700; color:#374151; margin-bottom:10px; display:flex; align-items:center; gap:8px; }

/* Retention cards */
.sa-logout-retention { }
.sa-logout-retention-title { font-size:13px; font-weight:700; text-transform:uppercase; letter-spacing:.4px; color:#6b7280; margin-bottom:12px; }
.sa-logout-retention-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(140px,1fr)); gap:10px; }
.sa-logout-retention-card { border:1px solid #e5e7eb; border-radius:12px; padding:14px; text-decoration:none; color:inherit; background:#fff; transition:box-shadow .15s; display:flex; flex-direction:column; gap:4px; }
.sa-logout-retention-card:hover { box-shadow:0 4px 12px rgba(0,0,0,.08); }
.sa-logout-rc-icon { font-size:24px; margin-bottom:4px; }
.sa-logout-rc-title { font-weight:700; font-size:13px; }
.sa-logout-rc-desc { font-size:12px; color:#6b7280; line-height:1.4; }
.sa-logout-rc-cta { font-size:12px; font-weight:700; margin-top:4px; }

/* Feedback */
.sa-logout-feedback { background:#f7f8fa; border:1px solid #e5e7eb; border-radius:12px; padding:16px 20px; }
.sa-logout-feedback-icon { font-size:28px; flex-shrink:0; }
.sa-logout-feedback-emojis { display:flex; gap:8px; flex-wrap:wrap; margin-left:auto; }
.sa-feedback-btn { display:flex; flex-direction:column; align-items:center; gap:3px; padding:8px 12px; border:1.5px solid #e5e7eb; border-radius:10px; background:#fff; cursor:pointer; font-size:22px; transition:all .15s; }
.sa-feedback-btn span:last-child { font-size:10px; color:#6b7280; font-weight:600; }
.sa-feedback-btn:hover { border-color:var(--black); }
.sa-feedback-btn.selected { border-color:var(--blue); background:#eff6ff; }

/* CTA row */
.sa-logout-cta-row { display:flex; justify-content:space-between; align-items:center; gap:16px; background:#f7f8fa; border:1px solid #e5e7eb; border-radius:14px; padding:16px 20px; flex-wrap:wrap; }
.sa-logout-cta-text { display:flex; align-items:center; gap:12px; }
.sa-logout-cta-icon { font-size:28px; }
.sa-logout-cta-text strong { display:block; font-weight:700; font-size:15px; }
.sa-logout-cta-text span { font-size:13px; color:#6b7280; }

/* Responsive */
@media(max-width:900px){
  .sa-auth-split-layout { grid-template-columns:1fr; }
  .sa-auth-ad-col { border-right:none; border-top:1px solid #e5e7eb; }
  .sa-logout-layout { grid-template-columns:1fr; }
  .sa-logout-ad-col { border-left:none; border-top:1px solid #e5e7eb; }
}
@media(max-width:600px){
  .sa-auth-form-col { padding:20px; }
  .sa-logout-hero-col { padding:20px; }
  .sa-auth-value-props { grid-template-columns:1fr; }
  .sa-auth-oauth { flex-direction:column; }
}

/* Cashback page ad slots */
.sa-cashback-ad-slot { position:relative; }
.sa-cashback-ad-top { margin-bottom:0; }
.sa-cashback-ad-label { font-size:10px;font-weight:700;text-transform:uppercase;letter-spacing:.6px;color:#9ca3af;margin-bottom:4px;padding:0 20px; }

/* Featured brand cards */
.sa-cb-featured-brands { display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:16px;margin-bottom:32px; }
.sa-cb-featured-brand-card { border:1px solid #e5e7eb;border-radius:16px;overflow:hidden;text-decoration:none;color:inherit;background:#fff;display:flex;flex-direction:column;padding:16px;gap:8px;transition:box-shadow .2s; }
.sa-cb-featured-brand-card:hover { box-shadow:0 4px 16px rgba(0,0,0,.1); }
.sa-cb-fb-img { height:120px;background-size:cover;background-position:center;border-radius:10px;margin:-16px -16px 8px;flex-shrink:0; }
.sa-cb-fb-logo { height:28px;width:auto;object-fit:contain; }
.sa-cb-fb-name { font-weight:700;font-size:15px; }
.sa-cb-fb-headline { font-size:13px;color:#6b7280;line-height:1.4; }

/* ═══════════════════════════════════════════════════════
   LOGIN PAGE — MOCKUP MATCH
═══════════════════════════════════════════════════════ */
.sa-login-layout { display:grid; grid-template-columns:360px 1fr; flex:1; min-height:calc(100vh - 57px); }
.sa-login-layout:not(.sa-login-has-ad) { grid-template-columns:1fr; justify-items:center; }
.sa-login-form-col { padding:36px 40px; background:#fff; border-right:1px solid #f0f2f5; display:flex; flex-direction:column; gap:0; }
.sa-login-ad-col { padding:24px; background:#f7f8fa; overflow:hidden; display:flex; flex-direction:column; gap:16px; }
.sa-login-grid-wrap { margin-top:12px; }

/* LOGOUT PAGE — 2-col layout */
.sa-logout-layout { display:grid; grid-template-columns:1fr 320px; gap:0; flex:1; }
.sa-logout-main-col { padding:28px 36px; background:#fff; border-right:1px solid #f0f2f5; display:flex; flex-direction:column; gap:20px; }
.sa-logout-sidebar { padding:20px; background:#f7f8fa; display:flex; flex-direction:column; gap:14px; }
.sa-logout-hero-content { display:flex; align-items:flex-start; gap:20px; }
.sa-logout-bag-wrap { position:relative; flex-shrink:0; }
.sa-logout-bag { font-size:52px; }
.sa-logout-bag-accent { position:absolute; bottom:-4px; right:-4px; font-size:20px; }
.sa-logout-headline { font-family:var(--font-head); font-size:clamp(20px,2.5vw,28px); font-weight:800; margin-bottom:6px; }
.sa-logout-subtext { font-size:14px; color:#6b7280; line-height:1.5; max-width:480px; }
.sa-logout-section-head { display:flex; align-items:center; justify-content:space-between; font-size:13px; font-weight:700; margin-bottom:10px; }
.sa-logout-sponsored-wrap { }
.sa-logout-cb-table { background:#fff; border:1px solid #e5e7eb; border-radius:12px; padding:14px; }
.sa-logout-cb-row { display:flex; justify-content:space-between; align-items:center; padding:8px 0; border-bottom:1px solid #f0f2f5; }
.sa-logout-cb-row:last-child { border:none; }

/* Responsive */
@media(max-width:960px){
  .sa-login-layout { grid-template-columns:1fr; }
  .sa-login-form-col { border-right:none; border-bottom:1px solid #f0f2f5; max-width:100%; }
  .sa-login-ad-col { padding:20px; }
  .sa-logout-layout { grid-template-columns:1fr; }
  .sa-logout-sidebar { border-right:none; border-top:1px solid #f0f2f5; }
}
@media(max-width:480px){
  .sa-login-form-col { padding:20px; }
  .sa-logout-main-col { padding:20px; }
  .sa-logout-hero-content { flex-direction:column; }
}

/* ═══════════════════════════════════════════════════════
   NAV FIXES — mobile search + double logo prevention
═══════════════════════════════════════════════════════ */

/* Standalone pages: hide any WordPress theme header/nav that bleeds through */
.sa-standalone .site-header,
.sa-standalone #masthead,
.sa-standalone .header-main,
.sa-standalone #header,
.sa-standalone .wp-block-template-part[data-type="header"],
.sa-standalone #wpadminbar { display: none !important; }

/* Nav search — mobile fix */
.sa-nav-inner { flex-wrap: nowrap; overflow: visible; }
.sa-nav-search { flex: 1; max-width: 500px; min-width: 0; position: relative; }
.sa-nav-search input {
  width: 100%; box-sizing: border-box;
  padding: 9px 16px; border: 1.5px solid #e5e7eb;
  border-radius: 100px; font-size: 14px; background: #f7f8fa;
}
.sa-nav-search input:focus { outline: none; border-color: #111827; background: #fff; }
.sa-nav-search-drop {
  position: absolute; top: calc(100% + 8px); left: 0; right: 0;
  background: #fff; border: 1px solid #e5e7eb; border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  display: none; max-height: 360px; overflow-y: auto; z-index: 9999;
  min-width: 280px;
}
.sa-nav-search-drop.open { display: block; }

/* Mobile nav — stack search below logo row */
@media (max-width: 640px) {
  .sa-nav-inner {
    flex-wrap: wrap;
    height: auto;
    padding: 10px 16px;
    gap: 10px;
  }
  .sa-logo, .sa-logo-img { order: 1; }
  .sa-nav-auth { order: 2; margin-left: auto; }
  .sa-nav-search { order: 3; max-width: 100%; width: 100%; flex-basis: 100%; }
  .sa-nav-links { order: 4; width: 100%; overflow-x: auto; padding-bottom: 4px; gap: 6px; }
  .sa-nav-search-drop { top: calc(100% + 4px); left: 0; right: 0; }

  /* Auth pages on mobile: full width form */
  .sa-login-layout { grid-template-columns: 1fr; }
  .sa-login-form-col { padding: 20px 16px; border-right: none; border-bottom: 1px solid #f0f2f5; }
  .sa-login-ad-col { padding: 16px; }
}

/* Login/logout pages: suppress any WP theme elements */
.sa-auth-page .site-header,
.sa-auth-page #masthead,
.sa-logout-page .site-header,
.sa-logout-page #masthead { display: none !important; }

/* Admin bar offset fix for standalone pages */
.sa-standalone { margin-top: 0 !important; padding-top: 0 !important; }

/* ═══════════════════════════════════════════════════════
   NEW PLATFORM PAGES
═══════════════════════════════════════════════════════ */
/* Profile page */
.sa-profile-page { max-width:800px; margin:0 auto; padding:40px 20px; }
.sa-profile-header { display:flex; align-items:center; gap:20px; margin-bottom:24px; flex-wrap:wrap; }
.sa-profile-avatar-lg { width:80px; height:80px; border-radius:50%; background:linear-gradient(135deg,#3b82f6,#8b5cf6); display:flex; align-items:center; justify-content:center; font-size:32px; font-weight:800; color:#fff; flex-shrink:0; }
.sa-profile-name { font-family:var(--font-head); font-size:24px; font-weight:800; margin-bottom:2px; }
.sa-profile-email { font-size:14px; color:#6b7280; }
.sa-profile-role { font-size:12px; font-weight:700; text-transform:uppercase; letter-spacing:.4px; color:#3b82f6; margin-top:4px; }
.sa-profile-stats { display:grid; grid-template-columns:repeat(auto-fit,minmax(140px,1fr)); gap:12px; }

/* Alert rows */
.sa-alert-row { display:flex; justify-content:space-between; align-items:center; gap:12px; padding:14px 16px; border:1px solid #e5e7eb; border-radius:12px; background:#fff; flex-wrap:wrap; }
.sa-alert-triggered { background:#f0fdf4; border-color:#86efac; }

/* Brand directory */
.sa-brand-dir-card { border:1px solid #e5e7eb; border-radius:16px; padding:20px; text-decoration:none; color:inherit; background:#fff; display:flex; flex-direction:column; gap:8px; transition:box-shadow .2s; }
.sa-brand-dir-card:hover { box-shadow:0 4px 16px rgba(0,0,0,.1); }
.sa-brand-dir-logo { height:40px; width:auto; object-fit:contain; }
.sa-brand-dir-avatar { width:48px; height:48px; border-radius:10px; background:linear-gradient(135deg,#3b82f6,#8b5cf6); display:flex; align-items:center; justify-content:center; font-size:22px; font-weight:800; color:#fff; }
.sa-brand-dir-name { font-weight:700; font-size:16px; }
.sa-brand-dir-desc { font-size:13px; color:#6b7280; line-height:1.4; }
.sa-brand-dir-meta { display:flex; gap:8px; align-items:center; flex-wrap:wrap; font-size:12px; color:#6b7280; }

/* Category cards */
.sa-category-card { border-radius:16px; overflow:hidden; text-decoration:none; color:inherit; background:#fff; border:1px solid #e5e7eb; transition:box-shadow .2s; }
.sa-category-card:hover { box-shadow:0 4px 16px rgba(0,0,0,.1); }
.sa-cat-card-img { height:120px; background-size:cover; background-position:center; }
.sa-cat-card-body { padding:14px; }
.sa-cat-card-name { font-weight:700; font-size:16px; margin-bottom:4px; }
.sa-cat-card-count { font-size:12px; color:#6b7280; }
.sa-cat-card-price { font-size:13px; font-weight:600; color:#374151; margin-top:4px; }

/* ═══════════════════════════════════════════════════════
   CATEGORY PAGE
═══════════════════════════════════════════════════════ */
.sa-cat-hero { background:linear-gradient(135deg,#1e1b4b,#3730a3); color:#fff; padding:48px 20px; }
.sa-cat-hero-inner { max-width:1100px; margin:0 auto; }
.sa-cat-breadcrumb { font-size:13px; color:rgba(255,255,255,.6); margin-bottom:10px; }
.sa-cat-breadcrumb a { color:rgba(255,255,255,.6); text-decoration:none; }
.sa-cat-hero h1 { font-family:var(--font-head); font-size:clamp(28px,4vw,44px); font-weight:800; margin-bottom:10px; }
.sa-cat-hero-meta { display:flex; gap:14px; flex-wrap:wrap; align-items:center; }
.sa-cat-layout { display:grid; grid-template-columns:220px 1fr; gap:28px; }
.sa-cat-sidebar { }
.sa-cat-nav-box { background:#fff; border:1px solid #e5e7eb; border-radius:14px; padding:16px; }
.sa-cat-nav-title { font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:.5px; color:#6b7280; margin-bottom:10px; }
.sa-cat-nav-link { display:block; padding:7px 10px; font-size:14px; color:#374151; text-decoration:none; border-radius:8px; transition:background .12s; }
.sa-cat-nav-link:hover,.sa-cat-nav-link.active { background:#f0f2f5; font-weight:600; }
.sa-cat-brand-link { display:flex; align-items:center; padding:6px 10px; border-radius:8px; text-decoration:none; color:#374151; font-size:13px; transition:background .12s; }
.sa-cat-brand-link:hover { background:#f0f2f5; }
.sa-cat-toolbar { display:flex; justify-content:space-between; align-items:center; margin-bottom:16px; flex-wrap:wrap; gap:10px; }
.sa-cat-count { font-size:14px; color:#6b7280; }
.sa-cat-sponsored { margin-bottom:20px; }
.sa-cat-main { }
@media(max-width:768px){ .sa-cat-layout{ grid-template-columns:1fr; } .sa-cat-sidebar{ display:none; } }

/* ═══════════════════════════════════════════════════════
   COMPARE PAGE
═══════════════════════════════════════════════════════ */
.sa-compare-hero { background:linear-gradient(135deg,#0f172a,#1e3a5f); color:#fff; padding:48px 20px; text-align:center; }
.sa-compare-hero-inner { max-width:800px; margin:0 auto; }
.sa-compare-hero h1 { font-family:var(--font-head); font-size:clamp(22px,3.5vw,36px); font-weight:800; margin:10px 0; }
.sa-compare-winner-banner { background:linear-gradient(135deg,#00a651,#007a3d); color:#fff; padding:16px 24px; border-radius:14px; margin:20px 0; display:flex; align-items:center; gap:14px; flex-wrap:wrap; }
.sa-compare-winner-label { font-size:13px; font-weight:700; text-transform:uppercase; letter-spacing:.4px; opacity:.8; }
.sa-compare-winner-name { font-size:20px; font-weight:800; }
.sa-compare-grid { display:grid; grid-template-columns:1fr 1fr; gap:20px; margin-bottom:32px; }
.sa-compare-col { border:1px solid #e5e7eb; border-radius:16px; padding:20px; position:relative; }
.sa-compare-col-winner { border-color:#00a651; background:#f0fdf4; }
.sa-compare-col-badge { font-size:11px; font-weight:700; color:#00a651; text-transform:uppercase; letter-spacing:.4px; margin-bottom:8px; }
.sa-compare-product-img { width:100%; max-height:200px; object-fit:contain; border-radius:10px; margin-bottom:12px; }
.sa-compare-product-name { font-family:var(--font-head); font-size:18px; font-weight:800; margin-bottom:4px; }
.sa-compare-product-cat { font-size:12px; color:#6b7280; margin-bottom:10px; }
.sa-compare-score-badge { display:inline-block; padding:6px 14px; border-radius:100px; font-size:13px; font-weight:700; margin-top:8px; }
.sa-compare-section-title { font-family:var(--font-head); font-size:20px; font-weight:800; margin:32px 0 14px; }
.sa-compare-stores-title { font-weight:700; font-size:14px; margin-bottom:12px; }
.sa-compare-store-row { border:1px solid #e5e7eb; border-radius:10px; padding:12px; margin-bottom:8px; }
.sa-compare-store-best { border-color:#00a651; background:#f0fdf4; }
.sa-compare-store-name { font-weight:700; font-size:14px; margin-bottom:4px; }
.sa-compare-store-price { font-size:22px; font-weight:800; font-family:var(--font-head); margin-bottom:4px; }
@media(max-width:640px){ .sa-compare-grid{ grid-template-columns:1fr; } }

/* ═══════════════════════════════════════════════════════
   BRAND PAGE
═══════════════════════════════════════════════════════ */
.sa-brand-hero { background:linear-gradient(135deg,#0a0a0a,#1a1a3e); color:#fff; padding:48px 20px; }
.sa-brand-hero-inner { max-width:1200px; margin:0 auto; display:flex; gap:32px; align-items:flex-start; flex-wrap:wrap; justify-content:space-between; }
.sa-brand-hero-left { display:flex; gap:20px; align-items:flex-start; flex:1; min-width:280px; }
.sa-brand-logo-wrap { flex-shrink:0; }
.sa-brand-logo { height:80px; width:auto; object-fit:contain; border-radius:14px; background:#fff; padding:8px; }
.sa-brand-avatar-lg { width:80px; height:80px; border-radius:16px; background:linear-gradient(135deg,#3b82f6,#8b5cf6); display:flex; align-items:center; justify-content:center; font-size:34px; font-weight:800; color:#fff; flex-shrink:0; }
.sa-brand-handle-row { display:flex; align-items:center; gap:8px; margin-bottom:6px; flex-wrap:wrap; }
.sa-brand-at { font-size:14px; color:rgba(255,255,255,.6); font-weight:600; }
.sa-brand-verified { background:#00a651; color:#fff; font-size:11px; font-weight:700; padding:3px 10px; border-radius:100px; }
.sa-brand-plan-badge { font-size:11px; font-weight:700; padding:3px 10px; border-radius:100px; }
.sa-brand-pro { background:linear-gradient(135deg,#f59e0b,#d97706); color:#fff; }
.sa-brand-growth { background:#3b82f6; color:#fff; }
.sa-brand-name { font-family:var(--font-head); font-size:clamp(24px,3vw,36px); font-weight:800; margin-bottom:8px; }
.sa-brand-desc { font-size:14px; color:rgba(255,255,255,.75); line-height:1.5; max-width:520px; margin-bottom:12px; }
.sa-brand-meta { display:flex; gap:12px; flex-wrap:wrap; margin-bottom:14px; font-size:13px; color:rgba(255,255,255,.7); align-items:center; }
.sa-brand-actions { display:flex; gap:8px; flex-wrap:wrap; }
.sa-brand-socials { display:flex; gap:12px; margin-top:10px; }
.sa-social-link { color:rgba(255,255,255,.6); font-size:13px; text-decoration:none; }
.sa-social-link:hover { color:#fff; }
.sa-brand-stats-card { background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.12); border-radius:16px; padding:20px 24px; display:grid; grid-template-columns:1fr 1fr; gap:16px; min-width:200px; }
.sa-brand-stat-val { font-family:var(--font-head); font-size:24px; font-weight:800; }
.sa-brand-stat-lbl { font-size:11px; color:rgba(255,255,255,.6); text-transform:uppercase; letter-spacing:.4px; margin-top:2px; }
.sa-brand-campaign-hero { position:relative; border-radius:16px; overflow:hidden; margin-bottom:24px; }
.sa-brand-camp-hero-img { width:100%; max-height:300px; object-fit:cover; display:block; }
.sa-brand-camp-hero-info { position:absolute; bottom:0; left:0; right:0; background:linear-gradient(transparent,rgba(0,0,0,.8)); padding:20px; display:flex; align-items:center; gap:14px; flex-wrap:wrap; color:#fff; }
.sa-brand-featured-shelf { display:grid; grid-template-columns:repeat(4,1fr); gap:14px; margin-bottom:24px; }
.sa-brand-shelf-item img { width:100%; aspect-ratio:1; object-fit:contain; border-radius:10px; background:#f7f8fa; margin-bottom:8px; }
.sa-brand-shelf-name { font-size:13px; font-weight:600; margin-bottom:4px; }
.sa-brand-shelf-price { font-size:12px; color:#6b7280; }
.sa-brand-cat-tabs { display:flex; gap:8px; flex-wrap:wrap; margin-bottom:16px; overflow-x:auto; }
.sa-brand-cat-tab { padding:7px 16px; border:1.5px solid #e5e7eb; border-radius:100px; background:#fff; font-size:13px; font-weight:600; cursor:pointer; white-space:nowrap; transition:all .15s; }
.sa-brand-cat-tab.active { background:#111827; color:#fff; border-color:#111827; }
.sa-brand-share-bar { display:flex; justify-content:space-between; align-items:center; padding:16px 20px; background:#f7f8fa; border:1px solid #e5e7eb; border-radius:14px; margin-top:32px; gap:12px; flex-wrap:wrap; }
.sa-brand-camp-card { border-radius:14px; overflow:hidden; text-decoration:none; color:inherit; background:#fff; border:1px solid #e5e7eb; transition:box-shadow .15s; }
.sa-brand-camp-card:hover { box-shadow:0 4px 16px rgba(0,0,0,.1); }
.sa-brand-camp-img { height:160px; background-size:cover; background-position:center; }
.sa-brand-camp-body { padding:14px; }
.sa-brand-camp-type { font-size:10px; font-weight:700; text-transform:uppercase; letter-spacing:.5px; color:#6b7280; margin-bottom:4px; }
.sa-brand-camp-name { font-family:var(--font-head); font-size:15px; font-weight:800; margin-bottom:4px; }
.sa-brand-campaigns-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(240px,1fr)); gap:16px; margin-bottom:32px; }
@media(max-width:640px){ .sa-brand-featured-shelf{grid-template-columns:repeat(2,1fr);} .sa-brand-hero-inner{flex-direction:column;} }

/* ═══════════════════════════════════════════════════════
   HELP CENTER
═══════════════════════════════════════════════════════ */
.sa-help-hero { background:linear-gradient(135deg,#0f172a,#1e3a5f); color:#fff; padding:56px 20px; text-align:center; }
.sa-help-hero-inner { max-width:700px; margin:0 auto; }
.sa-help-hero h1 { font-family:var(--font-head); font-size:clamp(28px,4vw,44px); font-weight:800; margin-bottom:8px; }
.sa-help-search-wrap { margin-top:20px; }
.sa-help-layout { display:grid; grid-template-columns:220px 1fr; gap:28px; }
.sa-help-sidebar { }
.sa-help-nav-title { font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:.5px; color:#6b7280; margin-bottom:10px; }
.sa-help-nav-link { display:flex; align-items:center; gap:8px; padding:9px 10px; font-size:14px; color:#374151; text-decoration:none; border-radius:8px; transition:background .12s; margin-bottom:2px; }
.sa-help-nav-link:hover,.sa-help-nav-link.active { background:#f0f2f5; font-weight:600; }
.sa-help-main { }
.sa-help-topic-card { border:1px solid #e5e7eb; border-radius:14px; padding:18px; text-decoration:none; color:inherit; background:#fff; transition:box-shadow .15s; display:block; }
.sa-help-topic-card:hover { box-shadow:0 4px 12px rgba(0,0,0,.08); }
.sa-help-topic-icon { font-size:28px; margin-bottom:8px; }
.sa-help-topic-title { font-weight:700; font-size:15px; margin-bottom:4px; }
.sa-help-topic-desc { font-size:13px; color:#6b7280; line-height:1.4; }
.sa-help-faqs { display:flex; flex-direction:column; gap:8px; margin-bottom:32px; }
.sa-help-faq { border:1px solid #e5e7eb; border-radius:12px; overflow:hidden; }
.sa-help-faq-q { padding:14px 18px; font-weight:600; font-size:14px; cursor:pointer; display:flex; justify-content:space-between; align-items:center; background:#fafafa; user-select:none; }
.sa-help-faq-q:hover { background:#f0f2f5; }
.sa-help-faq-icon { font-size:12px; color:#9ca3af; transition:transform .2s; }
.sa-help-faq.open .sa-help-faq-icon { transform:rotate(180deg); }
.sa-help-faq-a { display:none; padding:14px 18px; font-size:14px; color:#374151; line-height:1.6; border-top:1px solid #f0f2f5; }
.sa-help-faq.open .sa-help-faq-a { display:block; }
.sa-help-contact-cta { background:linear-gradient(135deg,#f7f8fa,#e5e7eb); border-radius:16px; padding:32px; text-align:center; }
@media(max-width:768px){ .sa-help-layout{grid-template-columns:1fr;} }

/* ═══════════════════════════════════════════════════════
   DEALS PAGE
═══════════════════════════════════════════════════════ */
.sa-deals-hero { background:linear-gradient(135deg,#f59e0b,#d97706,#b45309); color:#fff; padding:48px 20px; text-align:center; }
.sa-deals-hero-inner { max-width:800px; margin:0 auto; }
.sa-deals-hero-badge { display:inline-block; background:rgba(255,255,255,.2); border-radius:100px; padding:4px 14px; font-size:12px; font-weight:700; text-transform:uppercase; letter-spacing:.5px; margin-bottom:12px; }
.sa-deals-hero h1 { font-family:var(--font-head); font-size:clamp(28px,4vw,44px); font-weight:800; margin-bottom:8px; }
.sa-deals-tabs-nav { display:flex; gap:8px; justify-content:center; flex-wrap:wrap; margin-top:20px; }
.sa-deals-tab { padding:8px 18px; border-radius:100px; border:2px solid rgba(255,255,255,.4); color:#fff; font-weight:700; font-size:13px; text-decoration:none; background:transparent; transition:all .15s; }
.sa-deals-tab:hover,.sa-deals-tab.active { background:#fff; color:#d97706; }
.sa-deals-section { margin-bottom:48px; }
.sa-deals-ad-break { margin:0 0 32px; }

/* ═══════════════════════════════════════════════════════
   SEARCH PAGE
═══════════════════════════════════════════════════════ */
.sa-search-page { }
.sa-search-header { background:#fff; border-bottom:1px solid #e5e7eb; }
.sa-search-form-hero .sa-search-input-wrap { display:flex; gap:10px; align-items:center; }
.sa-search-icon { font-size:18px; flex-shrink:0; }
.sa-search-input-lg { font-size:16px; padding:12px 18px; flex:1; }
.sa-search-meta-row { display:flex; justify-content:space-between; align-items:center; margin-top:12px; flex-wrap:wrap; gap:8px; }
.sa-search-meta { font-size:14px; color:#374151; }
.sa-search-sort { }
.sa-search-layout { display:grid; grid-template-columns:200px 1fr; gap:24px; }
.sa-search-sidebar { }
.sa-search-results { }
.sa-search-suggestions { margin:24px 0; }
.sa-search-chips { display:flex; flex-wrap:wrap; gap:8px; margin-top:12px; }
.sa-search-chip { padding:8px 18px; background:#f0f2f5; border-radius:100px; text-decoration:none; color:#374151; font-size:14px; font-weight:600; transition:background .15s; }
.sa-search-chip:hover { background:#e5e7eb; }
.sa-search-sponsored { margin-bottom:20px; }
.sa-search-sponsored-card { display:flex; gap:14px; padding:16px; border:2px solid #fde68a; background:#fffbeb; border-radius:14px; flex-wrap:wrap; }
.sa-search-spon-img { width:100px; height:100px; object-fit:contain; border-radius:10px; background:#fff; flex-shrink:0; }
.sa-search-spon-body { flex:1; }
@media(max-width:768px){ .sa-search-layout{grid-template-columns:1fr;} .sa-search-sidebar{display:none;} }

/* ═══════════════════════════════════════════════════════
   CAMPAIGN PAGE
═══════════════════════════════════════════════════════ */
.sa-campaign-hero { min-height:360px; display:flex; align-items:center; color:#fff; padding:60px 20px; background:linear-gradient(135deg,#0a0a0a,#1a1a3e); }
.sa-campaign-hero-inner { max-width:760px; margin:0 auto; text-align:center; }
.sa-campaign-brand-logo { height:48px; object-fit:contain; margin-bottom:16px; border-radius:8px; background:rgba(255,255,255,.1); padding:6px 12px; }
.sa-campaign-type-badge { display:inline-block; background:rgba(255,255,255,.15); border:1px solid rgba(255,255,255,.25); border-radius:100px; padding:4px 14px; font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:.5px; margin-bottom:12px; }
.sa-campaign-headline { font-family:var(--font-head); font-size:clamp(26px,4vw,48px); font-weight:800; margin-bottom:12px; line-height:1.1; }
.sa-campaign-copy { font-size:16px; color:rgba(255,255,255,.8); max-width:560px; margin:0 auto 20px; line-height:1.6; }
.sa-campaign-cta-row { display:flex; gap:12px; justify-content:center; flex-wrap:wrap; }
.sa-campaign-expiry { margin-top:14px; font-size:13px; color:rgba(255,255,255,.7); }
.sa-campaign-layout { display:grid; grid-template-columns:1fr 280px; gap:28px; }
.sa-campaign-main { }
.sa-campaign-sidebar { }
.sa-campaign-video-wrap { border-radius:16px; overflow:hidden; margin-bottom:24px; }
.sa-campaign-product-section { margin-bottom:28px; }
.sa-campaign-qr-box { background:#fff; border:1px solid #e5e7eb; border-radius:16px; padding:20px; text-align:center; }
@media(max-width:768px){ .sa-campaign-layout{grid-template-columns:1fr;} }

.sa-ad-label { font-size:10px; font-weight:700; text-transform:uppercase; letter-spacing:.6px; color:#9ca3af; margin-bottom:4px; }

/* ═══ BRAND PAGE ADDITIONS ═══════════════════════════════ */
.sa-brand-analytics-bar { background:#f7f8fa; border:1px solid #e5e7eb; border-radius:14px; padding:20px 24px; margin-bottom:24px; }
.sa-brand-analytics-title { font-size:13px; font-weight:700; text-transform:uppercase; letter-spacing:.4px; color:#6b7280; margin-bottom:12px; }
.sa-brand-analytics-stats { display:flex; gap:24px; flex-wrap:wrap; margin-bottom:12px; }
.sa-brand-analytics-stats > div span { display:block; font-family:var(--font-head); font-size:22px; font-weight:800; }
.sa-brand-analytics-stats > div label { font-size:12px; color:#9ca3af; }

/* ═══ DEALS PAGE ADDITIONS ════════════════════════════════ */
.sa-deals-urgency-bar { background:linear-gradient(90deg,#dc3545,#c0392b); color:#fff; padding:10px 20px; text-align:center; font-size:14px; font-weight:600; display:flex; gap:16px; align-items:center; justify-content:center; flex-wrap:wrap; }
#sa-deals-timer { background:rgba(255,255,255,.2); padding:4px 12px; border-radius:6px; font-variant-numeric:tabular-nums; font-weight:800; letter-spacing:1px; }

/* ═══ CATEGORY PAGE ADDITIONS ════════════════════════════ */
.sa-cat-display-campaign { background:#fffbeb; border:1px solid #fde68a; border-radius:12px; padding:14px 16px; margin-bottom:16px; }
.sa-cat-sponsor-inner { display:flex; align-items:center; gap:12px; flex-wrap:wrap; margin-top:8px; }
.sa-cat-sponsor-inner strong { flex:1; font-size:15px; }
.sa-cat-sponsor-inner span { font-size:13px; }

/* ═══ CREATOR PAGE ADDITIONS ═════════════════════════════ */
.sa-creator-video-embed { margin-bottom:24px; }
.sa-creator-collection { margin-bottom:24px; }
.sa-creator-collection-name { font-weight:700; font-size:14px; margin-bottom:10px; padding: 6px 12px; background:#f7f8fa; border-radius:8px; }
.sa-creator-collection-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(160px,1fr)); gap:12px; }
.sa-creator-coll-item { border:1px solid #e5e7eb; border-radius:12px; overflow:hidden; text-decoration:none; color:inherit; background:#fff; display:flex; flex-direction:column; transition:box-shadow .15s; }
.sa-creator-coll-item:hover { box-shadow:0 4px 12px rgba(0,0,0,.1); }
.sa-creator-coll-item img { width:100%; height:120px; object-fit:cover; }
.sa-creator-coll-name { font-size:13px; font-weight:600; padding:8px 10px 2px; }
.sa-creator-coll-price { font-family:var(--font-head); font-size:16px; font-weight:800; padding:0 10px; }
.sa-creator-coll-item .sa-cb-pill { margin:4px 10px 10px; }
.sa-creator-intelligence-bar { background:linear-gradient(135deg,#f0fdf4,#eff6ff); border:1px solid #d1d5db; border-radius:12px; padding:16px 20px; display:flex; align-items:center; gap:16px; flex-wrap:wrap; margin-top:24px; }
.sa-creator-brand-partner { padding:12px; }

/* ═══════════════════════════════════════════════════════
   CREATOR PAGE — FULL DESIGN
═══════════════════════════════════════════════════════ */
.sa-creator-hero { background:linear-gradient(135deg,#0a0a0a 0%,#1a0a2e 50%,#0a1a0a 100%); color:#fff; padding:48px 0 40px; }
.sa-creator-hero-inner { display:flex; align-items:flex-start; gap:32px; flex-wrap:wrap; }
.sa-creator-hero-left { flex:1; min-width:280px; display:flex; gap:24px; align-items:flex-start; flex-wrap:wrap; }

/* Avatar */
.sa-creator-avatar-wrap { position:relative; flex-shrink:0; }
.sa-creator-avatar { width:90px; height:90px; border-radius:50%; object-fit:cover; border:3px solid rgba(255,255,255,.3); }
.sa-creator-avatar-fallback { width:90px; height:90px; border-radius:50%; background:linear-gradient(135deg,#f59e0b,#ef4444); display:flex; align-items:center; justify-content:center; font-size:36px; font-weight:800; color:#fff; border:3px solid rgba(255,255,255,.3); }
.sa-creator-verified-ring { position:absolute; inset:-4px; border-radius:50%; border:2px solid #f59e0b; pointer-events:none; }

/* Info */
.sa-creator-hero-info { flex:1; }
.sa-creator-meta-row { display:flex; align-items:center; gap:8px; flex-wrap:wrap; margin-bottom:8px; }
.sa-creator-handle-tag { font-size:14px; color:rgba(255,255,255,.6); font-weight:600; }
.sa-creator-badge { background:#f59e0b; color:#000; font-size:11px; font-weight:800; padding:3px 10px; border-radius:100px; text-transform:uppercase; letter-spacing:.4px; }
.sa-creator-niche { background:rgba(255,255,255,.1); color:rgba(255,255,255,.8); font-size:12px; padding:3px 10px; border-radius:100px; }
.sa-creator-name { font-family:var(--font-head); font-size:clamp(22px,3vw,36px); font-weight:800; margin-bottom:10px; }
.sa-creator-bio { font-size:14px; color:rgba(255,255,255,.75); line-height:1.6; max-width:520px; margin-bottom:16px; }

/* Stats row */
.sa-creator-stats-row { display:flex; gap:20px; margin-bottom:16px; flex-wrap:wrap; }
.sa-creator-stat strong { display:block; font-family:var(--font-head); font-size:20px; font-weight:800; }
.sa-creator-stat span { font-size:12px; color:rgba(255,255,255,.55); text-transform:uppercase; letter-spacing:.3px; }

/* Social links */
.sa-creator-social-links { display:flex; gap:8px; flex-wrap:wrap; margin-bottom:16px; }
.sa-creator-social-btn { display:inline-flex; align-items:center; gap:6px; padding:7px 14px; border-radius:8px; font-size:13px; font-weight:600; text-decoration:none; transition:opacity .15s; }
.sa-creator-social-btn:hover { opacity:.85; }
.sa-creator-yt { background:#ff0000; color:#fff; }
.sa-creator-ig { background:linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color:#fff; }
.sa-creator-tt { background:#000; color:#fff; border:1px solid #333; }

/* CTAs */
.sa-creator-hero-ctas { display:flex; gap:10px; flex-wrap:wrap; }

/* QR */
.sa-creator-hero-right { flex-shrink:0; }
.sa-creator-qr-box { background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.12); border-radius:16px; padding:16px; text-align:center; }
.sa-creator-qr { width:120px; height:120px; border-radius:8px; display:block; margin:0 auto; }
.sa-creator-qr-label { font-size:11px; color:rgba(255,255,255,.5); margin-top:8px; line-height:1.4; }

/* How it works */
.sa-creator-how-box { background:#f7f8fa; border:1px solid #e5e7eb; border-radius:14px; padding:20px 24px; display:flex; align-items:center; gap:24px; flex-wrap:wrap; margin-top:24px; }
.sa-creator-how-items { display:flex; gap:20px; flex:1; flex-wrap:wrap; }
.sa-creator-how-item { display:flex; align-items:flex-start; gap:10px; }
.sa-creator-how-item > span { width:24px; height:24px; border-radius:50%; background:#111827; color:#fff; font-size:12px; font-weight:800; display:flex; align-items:center; justify-content:center; flex-shrink:0; margin-top:2px; }
.sa-creator-how-item strong { display:block; font-size:14px; font-weight:700; margin-bottom:2px; }
.sa-creator-how-item p { font-size:13px; color:#6b7280; margin:0; }

/* Video */
.sa-creator-video-wrap { border-radius:16px; overflow:hidden; background:#000; }
.sa-creator-embed { display:block; border-radius:12px; }
.sa-creator-video-cta { padding:12px 0; }

/* Campaigns */
.sa-creator-campaigns-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(260px,1fr)); gap:16px; margin-bottom:8px; }
.sa-creator-camp-card { border:1px solid #e5e7eb; border-radius:16px; overflow:hidden; background:#fff; text-decoration:none; color:inherit; display:flex; flex-direction:column; transition:box-shadow .2s,transform .2s; }
.sa-creator-camp-card:hover { box-shadow:0 8px 24px rgba(0,0,0,.1); transform:translateY(-2px); }
.sa-creator-camp-img { height:160px; background-size:cover; background-position:center; }
.sa-creator-camp-body { padding:14px; display:flex; flex-direction:column; flex:1; gap:4px; }
.sa-creator-camp-brand-row { display:flex; align-items:center; gap:6px; margin-bottom:4px; }
.sa-creator-camp-brand { font-size:12px; font-weight:700; color:#6b7280; text-transform:uppercase; letter-spacing:.3px; }
.sa-creator-camp-title { font-family:var(--font-head); font-size:16px; font-weight:800; line-height:1.25; }
.sa-creator-camp-desc { font-size:13px; color:#6b7280; line-height:1.4; }

/* Collection blocks */
.sa-creator-collection-block { margin-bottom:32px; }
.sa-creator-collection-header { display:flex; justify-content:space-between; align-items:center; margin-bottom:12px; }
.sa-creator-collection-header h3 { font-family:var(--font-head); font-size:18px; font-weight:800; margin:0; }
.sa-creator-see-all { font-size:13px; color:var(--blue); text-decoration:none; font-weight:600; }
.sa-creator-see-all:hover { text-decoration:underline; }
.sa-creator-collection-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(200px,1fr)); gap:14px; }
.sa-creator-prod-card { border:1px solid #e5e7eb; border-radius:14px; overflow:hidden; background:#fff; text-decoration:none; color:inherit; display:flex; flex-direction:column; transition:box-shadow .15s,transform .15s; }
.sa-creator-prod-card:hover { box-shadow:0 4px 16px rgba(0,0,0,.1); transform:translateY(-1px); }
.sa-creator-prod-img { height:140px; background-size:cover; background-position:center; }
.sa-creator-prod-img-placeholder { display:flex; align-items:center; justify-content:center; font-size:36px; background:#f7f8fa; }
.sa-creator-prod-body { padding:12px; display:flex; flex-direction:column; gap:3px; }
.sa-creator-prod-name { font-weight:700; font-size:14px; line-height:1.25; }
.sa-creator-prod-store { font-size:11px; color:#9ca3af; }
.sa-creator-prod-price { font-family:var(--font-head); font-size:18px; font-weight:800; }
.sa-creator-prod-cb { display:flex; align-items:center; gap:6px; }
.sa-creator-prod-net { font-size:12px; color:#00a651; font-weight:700; }
.sa-creator-prod-badge { font-size:11px; font-weight:700; color:#f59e0b; margin-top:2px; }

@media(max-width:768px){
  .sa-creator-hero-inner { flex-direction:column; }
  .sa-creator-hero-right { display:none; }
  .sa-creator-collection-grid { grid-template-columns:repeat(2,1fr); }
}

/* YouTube/Vimeo iframe background */
.sa-hero-bg-iframe {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 56.25vw; /* 16:9 ratio */
  min-height: 100%;
  min-width: 177.78vh; /* 16:9 ratio */
  pointer-events: none;
  border: none;
}
/* Video mute button pulse hint */
@keyframes sa-pulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.2)} }
.sa-vid-mute-pulse { animation: sa-pulse 1s ease 3; background: rgba(0,166,81,.8) !important; }

/* ═══════════════════════════════════════════════════════
   CREATOR APPLY PAGE
═══════════════════════════════════════════════════════ */
.sa-creator-apply-wrap { display:grid; grid-template-columns:1fr 1fr; min-height:100vh; }
.sa-creator-apply-left { background:linear-gradient(135deg,#0a0a0a,#1a0a2e,#0d1f0d); color:#fff; padding:40px; display:flex; flex-direction:column; gap:24px; }
.sa-creator-apply-left h1 { font-family:var(--font-head); font-size:clamp(28px,3vw,40px); font-weight:800; line-height:1.15; }
.sa-creator-apply-left p { font-size:15px; color:rgba(255,255,255,.7); line-height:1.6; }
.sa-creator-apply-badge { background:linear-gradient(90deg,#f59e0b,#ef4444); color:#fff; font-size:12px; font-weight:800; text-transform:uppercase; letter-spacing:.6px; padding:6px 14px; border-radius:100px; display:inline-block; }
.sa-creator-apply-perks { display:flex; flex-direction:column; gap:14px; }
.sa-creator-apply-perk { display:flex; gap:12px; align-items:flex-start; }
.sa-creator-apply-perk-icon { font-size:20px; flex-shrink:0; }
.sa-creator-apply-perk strong { display:block; font-size:14px; margin-bottom:2px; }
.sa-creator-apply-perk p { font-size:13px; color:rgba(255,255,255,.55); margin:0; }
.sa-creator-apply-stats { display:flex; gap:24px; padding-top:16px; border-top:1px solid rgba(255,255,255,.1); }
.sa-creator-apply-stats > div strong { display:block; font-family:var(--font-head); font-size:24px; font-weight:800; }
.sa-creator-apply-stats > div span { font-size:12px; color:rgba(255,255,255,.5); text-transform:uppercase; }
.sa-creator-apply-right { background:#f7f8fa; padding:40px; overflow-y:auto; }
.sa-creator-apply-form-wrap { background:#fff; border-radius:16px; padding:32px; max-width:520px; margin:0 auto; }
.sa-creator-apply-form-wrap h2 { font-family:var(--font-head); font-size:22px; font-weight:800; margin-bottom:6px; }
.sa-creator-apply-login-prompt { background:#f0fdf4; border:1px solid #86efac; border-radius:12px; padding:20px; text-align:center; }
.sa-creator-apply-success { text-align:center; padding:32px; }
.sa-apply-section { border:1px solid #e5e7eb; border-radius:12px; padding:16px; margin-bottom:16px; }
.sa-creator-apply-ftc { background:#f7f8fa; border:1px solid #e5e7eb; border-radius:8px; padding:12px; }

/* ═══════════════════════════════════════════════════════
   CREATOR DASHBOARD
═══════════════════════════════════════════════════════ */
.sa-creator-kpi-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(200px,1fr)); gap:14px; margin-bottom:20px; }
.sa-creator-kpi { background:#fff; border:1px solid #e5e7eb; border-radius:14px; padding:18px; position:relative; }
.sa-creator-kpi-alert { border-color:#f59e0b; background:#fffbeb; }
.sa-creator-kpi-pulse { animation:sa-pulse 2s ease infinite; }
.sa-creator-kpi-icon { font-size:24px; margin-bottom:8px; }
.sa-creator-kpi-val { font-family:var(--font-head); font-size:28px; font-weight:800; color:#111827; }
.sa-creator-kpi-label { font-size:12px; font-weight:700; text-transform:uppercase; letter-spacing:.4px; color:#6b7280; margin-top:4px; }
.sa-creator-kpi-sub { font-size:12px; color:#9ca3af; margin-top:4px; }
.sa-creator-quick-links { display:flex; gap:10px; flex-wrap:wrap; margin-bottom:24px; }
.sa-creator-quick-btn { background:#fff; border:1.5px solid #e5e7eb; border-radius:10px; padding:10px 16px; font-size:13px; font-weight:600; cursor:pointer; text-decoration:none; color:#111827; transition:all .15s; }
.sa-creator-quick-btn:hover { border-color:#111827; }
.sa-creator-quick-btn-alert { border-color:#f59e0b; background:#fffbeb; color:#92400e; }
.sa-creator-section { background:#fff; border:1px solid #e5e7eb; border-radius:14px; padding:20px; margin-bottom:16px; }
.sa-creator-section h3 { font-family:var(--font-head); font-size:16px; font-weight:800; margin:0 0 14px; }
.sa-creator-camp-list { display:flex; flex-direction:column; gap:12px; }
.sa-creator-camp-invite { display:flex; align-items:center; gap:14px; background:#f7f8fa; border:1px solid #e5e7eb; border-radius:12px; padding:14px; flex-wrap:wrap; }
.sa-creator-table { width:100%; border-collapse:collapse; font-size:13px; }
.sa-creator-table th { text-align:left; padding:8px 12px; font-size:11px; text-transform:uppercase; letter-spacing:.4px; color:#6b7280; border-bottom:2px solid #e5e7eb; }
.sa-creator-table td { padding:10px 12px; border-bottom:1px solid #f0f2f5; }
.sa-creator-table tr:last-child td { border-bottom:none; }
.sa-creator-earnings-summary { display:grid; grid-template-columns:repeat(auto-fill,minmax(160px,1fr)); gap:12px; margin-bottom:16px; background:#f7f8fa; border-radius:12px; padding:16px; }
.sa-creator-earnings-summary > div span { display:block; font-family:var(--font-head); font-size:24px; font-weight:800; }
.sa-creator-earnings-summary > div label { font-size:12px; color:#6b7280; text-transform:uppercase; letter-spacing:.3px; }
.sa-creator-chart-wrap { display:flex; align-items:flex-end; gap:6px; height:140px; padding-top:20px; }
.sa-creator-chart-bar { flex:1; display:flex; flex-direction:column; align-items:center; gap:4px; }
.sa-creator-chart-bar-inner { width:100%; background:linear-gradient(180deg,#3b82f6,#1d4ed8); border-radius:6px 6px 0 0; min-height:4px; display:flex; align-items:flex-start; justify-content:center; transition:height .3s; }
.sa-creator-chart-bar-inner span { font-size:9px; color:#fff; font-weight:700; padding-top:2px; }
.sa-creator-chart-label { font-size:10px; color:#9ca3af; white-space:nowrap; }
.sa-creator-prod-manage { display:grid; grid-template-columns:repeat(auto-fill,minmax(260px,1fr)); gap:10px; }
.sa-creator-prod-item { display:flex; align-items:center; gap:10px; background:#f7f8fa; border:1px solid #e5e7eb; border-radius:10px; padding:10px; }
.sa-creator-prod-featured { background:#f0fdf4; border-color:#86efac; }
.sa-creator-prod-item img { width:44px; height:44px; object-fit:contain; border-radius:6px; flex-shrink:0; }
.sa-creator-prod-info { flex:1; min-width:0; }
.sa-creator-prod-info strong { display:block; font-size:13px; font-weight:700; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.sa-creator-prod-info div { font-size:12px; color:#6b7280; }
@media(max-width:768px){.sa-creator-apply-wrap{grid-template-columns:1fr}.sa-creator-apply-left{padding:24px}.sa-creator-kpi-grid{grid-template-columns:1fr 1fr}}

/* ═══════════════════════════════════════════════════════
   PRODUCT PAGE — REBUILT
═══════════════════════════════════════════════════════ */
.sa-product-hero { display:grid; grid-template-columns:420px 1fr; gap:40px; align-items:start; margin-bottom:40px; }
@media(max-width:860px){ .sa-product-hero { grid-template-columns:1fr; } }

/* Image */
.sa-product-img-wrap { position:sticky; top:80px; }
.sa-product-main-img { width:100%; aspect-ratio:1/1; object-fit:contain; border-radius:16px; background:#f7f8fa; border:1px solid #e5e7eb; display:block; }
.sa-product-img-placeholder { width:100%; aspect-ratio:1/1; background:#f7f8fa; border:1px solid #e5e7eb; border-radius:16px; display:flex; align-items:center; justify-content:center; font-size:64px; }

/* Info */
.sa-product-title { font-family:var(--font-head); font-size:clamp(20px,2.5vw,28px); font-weight:800; line-height:1.25; margin:8px 0 16px; }
.sa-product-price-row { display:flex; align-items:baseline; gap:14px; flex-wrap:wrap; margin-bottom:10px; }
.sa-price-from { font-size:14px; color:#6b7280; font-weight:400; }
.sa-price-hero { font-family:var(--font-head); font-size:clamp(28px,4vw,42px); font-weight:800; }
.sa-price-orig { font-size:18px; color:#9ca3af; text-decoration:line-through; font-weight:400; margin-left:8px; }
.sa-price-save { font-size:14px; color:#00a651; font-weight:700; background:#d4edda; border-radius:6px; padding:2px 8px; }
.sa-product-store-count { font-size:13px; color:#6b7280; }

/* Savings banner */
.sa-product-savings-banner { background:#fffbeb; border:1px solid #fde68a; border-radius:10px; padding:10px 14px; font-size:13px; color:#92400e; margin:12px 0; }

/* IDs */
.sa-product-ids { display:flex; gap:12px; flex-wrap:wrap; margin-top:14px; padding-top:14px; border-top:1px solid #f0f2f5; }
.sa-product-ids span { font-size:11px; color:#9ca3af; font-family:monospace; }

/* CTA row */
.sa-product-cta-row { display:flex; gap:10px; flex-wrap:wrap; margin:20px 0; }
.sa-product-desc { font-size:14px; color:#6b7280; line-height:1.6; margin:12px 0; }

/* Store compare section */
.sa-store-compare-section { margin-top:40px; }
.sa-section-title { font-family:var(--font-head); font-size:20px; font-weight:800; margin-bottom:16px; display:flex; align-items:baseline; gap:12px; }
.sa-section-subtitle { font-size:14px; font-weight:400; color:#00a651; }
.sa-store-table { display:flex; flex-direction:column; gap:10px; }

.sa-store-row { border:1.5px solid #e5e7eb; border-radius:14px; padding:16px 18px; position:relative; background:#fff; transition:box-shadow .15s; }
.sa-store-row:hover { box-shadow:0 4px 16px rgba(0,0,0,.08); }
.sa-store-best { border-color:#111827; background:#fafafa; }
.sa-store-best-tag { font-size:10px; font-weight:800; text-transform:uppercase; letter-spacing:.5px; color:#111827; margin-bottom:10px; }
.sa-store-low-tag { color:#00a651 !important; }

.sa-store-row-main { display:grid; grid-template-columns:160px 180px 1fr auto; gap:16px; align-items:center; }
@media(max-width:700px){ .sa-store-row-main { grid-template-columns:1fr 1fr; } .sa-store-signals,.sa-store-trust { grid-column:1/-1; } }

.sa-store-name { font-weight:800; font-size:15px; }
.sa-store-trust { font-size:11px; color:#9ca3af; margin-top:3px; }

.sa-store-price { font-family:var(--font-head); font-size:20px; font-weight:800; }
.sa-store-net-price { font-size:12px; color:#00a651; font-weight:600; margin-top:2px; }

.sa-store-signals { display:flex; flex-wrap:wrap; gap:6px; }
.sa-signal-chip { background:#f7f8fa; border:1px solid #e5e7eb; border-radius:100px; padding:3px 10px; font-size:11px; font-weight:600; color:#374151; white-space:nowrap; }
.sa-signal-cb { background:#f0fdf4; border-color:#bbf7d0; color:#15803d; }
.sa-signal-coupon { background:#eff6ff; border-color:#bfdbfe; color:#1d4ed8; }

/* ═══════════════════════════════════════════════════════
   SMARTHLS PLAYER
═══════════════════════════════════════════════════════ */
.sa-smarthls-wrap { border-radius:12px; overflow:hidden; background:#000; position:relative; }
.sa-smarthls-video { width:100%; height:100%; object-fit:cover; display:block; }

/* Controls bar */
.sa-shls-controls {
  position:absolute; bottom:0; left:0; right:0;
  background:linear-gradient(transparent,rgba(0,0,0,.75));
  display:flex; align-items:center; gap:8px; padding:28px 12px 10px;
  opacity:0; transition:opacity .2s; z-index:5;
}
.sa-smarthls-wrap:hover .sa-shls-controls { opacity:1; }
.sa-shls-btn {
  background:none; border:none; color:#fff; font-size:16px; cursor:pointer;
  padding:4px 6px; border-radius:6px; transition:background .15s; flex-shrink:0;
  line-height:1;
}
.sa-shls-btn:hover { background:rgba(255,255,255,.15); }
.sa-shls-progress-wrap { flex:1; display:flex; align-items:center; gap:8px; min-width:0; }
.sa-shls-progress { flex:1; height:4px; background:rgba(255,255,255,.3); border-radius:2px; cursor:pointer; position:relative; }
.sa-shls-fill { height:100%; background:#fff; border-radius:2px; transition:width .25s linear; }
.sa-shls-time { font-size:11px; color:rgba(255,255,255,.8); white-space:nowrap; font-family:monospace; flex-shrink:0; }

/* Quality selector */
.sa-shls-quality-wrap { position:relative; }
.sa-shls-quality-menu {
  display:none; position:absolute; bottom:32px; right:0;
  background:#1f2937; border-radius:8px; padding:4px;
  min-width:90px; box-shadow:0 4px 16px rgba(0,0,0,.4); z-index:10;
}
.sa-shls-qlevel {
  display:block; width:100%; text-align:left; padding:7px 12px;
  background:none; border:none; color:#e5e7eb; font-size:13px; cursor:pointer; border-radius:6px;
}
.sa-shls-qlevel:hover { background:rgba(255,255,255,.1); }
.sa-shls-qlevel.active { color:#fff; font-weight:700; background:rgba(255,255,255,.08); }

/* Quality badge (top-right) */
.sa-shls-quality-badge {
  position:absolute; top:8px; right:8px;
  background:rgba(0,0,0,.6); color:rgba(255,255,255,.8);
  font-size:10px; font-weight:700; padding:2px 8px; border-radius:4px;
  text-transform:uppercase; letter-spacing:.4px; z-index:4;
  pointer-events:none;
}

/* Buffer spinner */
.sa-shls-buffer {
  position:absolute; inset:0; z-index:6; display:flex;
  align-items:center; justify-content:center; background:rgba(0,0,0,.3);
}
.sa-shls-spinner {
  width:36px; height:36px; border:3px solid rgba(255,255,255,.3);
  border-top-color:#fff; border-radius:50%; animation:shls-spin .7s linear infinite;
}
@keyframes shls-spin { to { transform:rotate(360deg); } }

/* Admin fields */
.sa-smarthls-admin-fields { border:1px solid #e5e7eb; border-radius:12px; padding:16px; background:#fafbfc; }
.sa-smarthls-info-box {
  background:#eff6ff; border:1px solid #bfdbfe; border-radius:8px;
  padding:12px 14px; font-size:12px; color:#1e40af; margin-top:8px; line-height:1.7;
}
.sa-smarthls-info-box code {
  display:block; background:#1e3a5f; color:#bfdbfe; padding:8px 12px;
  border-radius:6px; font-size:11px; margin:8px 0; white-space:pre-wrap; overflow-x:auto;
}

/* ═══════════════════════════════════════════════════════
   SHOPPABLE VIDEO / LIVESTREAM COMMERCE
═══════════════════════════════════════════════════════ */

/* ── Stream embed wrapper ────────────────────────── */
.sa-stream-embed { background:#fff; border-radius:16px; overflow:hidden; box-shadow:0 4px 24px rgba(0,0,0,.08); }
.sa-stream-live { border:2px solid #ef4444; }
.sa-stream-live-badge { display:inline-flex; align-items:center; gap:6px; background:#ef4444; color:#fff; font-size:12px; font-weight:800; padding:4px 12px; border-radius:0 0 10px 0; letter-spacing:.5px; text-transform:uppercase; }
.sa-live-dot { width:8px; height:8px; border-radius:50%; background:#fff; animation:sa-pulse 1.2s infinite; }
@keyframes sa-pulse { 0%,100%{opacity:1}50%{opacity:.3} }
.sa-stream-header { padding:14px 18px; display:flex; justify-content:space-between; align-items:flex-start; border-bottom:1px solid #f0f2f5; }
.sa-stream-title { font-family:var(--font-head); font-weight:800; font-size:17px; }
.sa-stream-meta { flex:1; }
.sa-stream-brand { background:#eff6ff; color:#1d4ed8; font-size:11px; font-weight:700; padding:2px 8px; border-radius:100px; margin-right:6px; }
.sa-stream-by { font-size:13px; color:#6b7280; }
.sa-stream-viewers { font-size:13px; font-weight:700; color:#6b7280; display:flex; align-items:center; gap:4px; }
.sa-stream-body { position:relative; }
.sa-stream-player-wrap { position:relative; }

/* CTV layout: video left, companion right */
.sa-stream-body-ctv { display:grid; grid-template-columns:1fr 280px; }
@media(max-width:700px){ .sa-stream-body-ctv{ grid-template-columns:1fr; } }

/* ── Shoppable overlay ───────────────────────────── */
.sa-shoppable-layer { position:absolute; inset:0; pointer-events:none; z-index:8; }
.sa-shoppable-layer.active { pointer-events:auto; }
.sa-shop-overlay-card {
  position:absolute; display:flex; align-items:center; gap:10px;
  text-decoration:none; color:inherit;
  border-radius:12px; overflow:hidden;
  max-width:220px; transform:translate(-50%,-50%);
  box-shadow:0 4px 20px rgba(0,0,0,.3);
  animation:sa-overlay-in .25s ease;
}
@keyframes sa-overlay-in { from{opacity:0;transform:translate(-50%,-55%) scale(.95)}to{opacity:1;transform:translate(-50%,-50%) scale(1)} }
.sa-shop-style-pill { background:rgba(0,0,0,.8); backdrop-filter:blur(8px); padding:8px 14px 8px 8px; }
.sa-shop-style-card { background:#fff; padding:10px; border:1px solid #e5e7eb; flex-direction:column; min-width:160px; }
.sa-shop-style-minimal { background:rgba(0,0,0,.7); padding:6px 12px; }
.sa-shop-ov-img { width:44px; height:44px; object-fit:cover; border-radius:8px; flex-shrink:0; }
.sa-shop-ov-body { flex:1; }
.sa-shop-ov-label { font-size:12px; color:rgba(255,255,255,.7); }
.sa-shop-ov-price { font-family:var(--font-head); font-size:16px; font-weight:800; color:#fff; }
.sa-shop-ov-cb { font-size:11px; color:#4ade80; font-weight:700; }
.sa-shop-ov-cta { font-size:11px; color:#fff; font-weight:700; text-decoration:underline; margin-top:4px; }
.sa-shop-style-card .sa-shop-ov-label,.sa-shop-style-card .sa-shop-ov-price,.sa-shop-style-card .sa-shop-ov-cta { color:#111; }
.sa-shop-style-card .sa-shop-ov-img { width:100%; height:100px; border-radius:8px; margin-bottom:8px; }

/* ── Shoppable tray ──────────────────────────────── */
.sa-shoppable-tray { background:#f7f8fa; border-top:1px solid #e5e7eb; padding:12px 16px; overflow-x:auto; }
.sa-shoppable-tray-inner { display:flex; gap:10px; }
.sa-shoppable-tray-card { display:flex; flex-direction:column; text-decoration:none; color:inherit; border:1.5px solid #e5e7eb; border-radius:10px; overflow:hidden; min-width:120px; background:#fff; transition:border-color .15s,box-shadow .15s; flex-shrink:0; }
.sa-shoppable-tray-card:hover,.sa-shoppable-tray-card.active { border-color:var(--black); box-shadow:0 2px 8px rgba(0,0,0,.1); }
.sa-shoppable-tray-card img { width:100%; height:80px; object-fit:cover; }
.sa-stray-body { padding:6px 8px; }
.sa-stray-name { font-size:11px; font-weight:600; color:#111; line-height:1.3; }
.sa-stray-price { font-size:13px; font-weight:800; font-family:var(--font-head); }
.sa-stray-cb { font-size:10px; color:#00a651; font-weight:700; }

/* ── DAI Overlay ─────────────────────────────────── */
.sa-dai-overlay { position:absolute; inset:0; z-index:20; background:rgba(0,0,0,.75); display:flex; align-items:center; justify-content:center; }
.sa-dai-card { background:#fff; border-radius:16px; padding:20px; max-width:340px; width:90%; position:relative; display:flex; flex-direction:column; gap:10px; }
.sa-dai-logo { height:28px; width:auto; object-fit:contain; }
.sa-dai-brand { font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:.4px; color:#6b7280; }
.sa-dai-headline { font-family:var(--font-head); font-size:20px; font-weight:800; }
.sa-dai-img { width:100%; border-radius:10px; max-height:180px; object-fit:cover; }
.sa-dai-cta { display:block; background:#111; color:#fff; padding:12px; border-radius:10px; text-align:center; font-weight:700; text-decoration:none; }
.sa-dai-skip { position:absolute; top:10px; right:12px; background:rgba(0,0,0,.7); color:#fff; border:none; border-radius:6px; padding:6px 12px; font-size:12px; cursor:pointer; }
.sa-dai-dismiss { position:absolute; top:10px; right:10px; background:none; border:none; font-size:18px; cursor:pointer; color:#6b7280; }

/* ── CTV Companion ───────────────────────────────── */
.sa-ctv-companion { background:#0a0a12; color:#fff; padding:20px; display:flex; flex-direction:column; gap:14px; height:100%; }
.sa-ctv-comp-header { display:flex; justify-content:space-between; align-items:center; }
.sa-ctv-comp-logo { height:28px; width:auto; object-fit:contain; filter:brightness(10); }
.sa-ctv-comp-tag { font-size:10px; font-weight:700; text-transform:uppercase; letter-spacing:.5px; color:rgba(255,255,255,.5); }
.sa-ctv-comp-img { width:100%; border-radius:10px; aspect-ratio:16/9; object-fit:cover; }
.sa-ctv-comp-headline { font-family:var(--font-head); font-size:18px; font-weight:800; }
.sa-ctv-comp-price { font-size:22px; font-weight:800; color:#4ade80; }
.sa-ctv-comp-cta { background:rgba(255,255,255,.12); border:1px solid rgba(255,255,255,.2); border-radius:8px; padding:10px 16px; text-align:center; font-weight:700; font-size:14px; }
.sa-ctv-qr-wrap { text-align:center; margin-top:auto; background:rgba(255,255,255,.05); border-radius:12px; padding:14px; }
.sa-ctv-qr-label { font-size:11px; color:rgba(255,255,255,.5); margin-bottom:8px; }
.sa-ctv-qr-img { width:120px; height:120px; background:#fff; padding:6px; border-radius:8px; }
.sa-ctv-qr-url { font-size:10px; color:rgba(255,255,255,.4); margin-top:6px; font-family:monospace; }

/* ── Interactive bar ─────────────────────────────── */
.sa-interactive-bar { background:#fff; border-top:1px solid #f0f2f5; padding:12px 16px; display:flex; align-items:center; gap:12px; flex-wrap:wrap; }
.sa-ibar-reactions { display:flex; gap:4px; }
.sa-ibar-react { background:none; border:1px solid #e5e7eb; border-radius:100px; padding:6px 10px; font-size:18px; cursor:pointer; transition:transform .1s; }
.sa-ibar-react:active { transform:scale(1.3); }
.sa-ibar-quickbuy { display:flex; gap:8px; overflow-x:auto; flex:1; }
.sa-ibar-prod-btn { display:flex; align-items:center; gap:6px; border:1.5px solid #e5e7eb; border-radius:100px; padding:4px 12px 4px 4px; text-decoration:none; color:#111; font-size:12px; font-weight:600; white-space:nowrap; transition:border-color .15s; }
.sa-ibar-prod-btn:hover { border-color:var(--black); }
.sa-ibar-prod-btn img { width:24px; height:24px; border-radius:50%; object-fit:cover; }
.sa-ibar-alert-btn { background:var(--black); color:#fff; border:none; border-radius:100px; padding:8px 16px; font-size:13px; font-weight:700; cursor:pointer; margin-left:auto; white-space:nowrap; }

/* ── Stream product row ──────────────────────────── */
.sa-stream-product-row { padding:16px; border-top:1px solid #f0f2f5; }
.sa-stream-prod-label { font-size:13px; font-weight:700; margin-bottom:12px; }
.sa-stream-prod-strip { display:flex; gap:10px; overflow-x:auto; padding-bottom:4px; }
.sa-stream-prod-card { display:flex; flex-direction:column; text-decoration:none; color:inherit; border:1.5px solid #e5e7eb; border-radius:12px; overflow:hidden; min-width:130px; background:#fff; transition:border-color .15s; flex-shrink:0; }
.sa-stream-prod-card:hover { border-color:var(--black); }
.sa-stream-prod-card img { width:100%; height:90px; object-fit:cover; }
.sa-stream-prod-name { font-size:12px; font-weight:600; padding:6px 8px 2px; line-height:1.3; }
.sa-stream-prod-price { font-size:14px; font-weight:800; padding:0 8px; font-family:var(--font-head); }
.sa-stream-prod-cb { font-size:11px; color:#00a651; font-weight:700; padding:2px 8px 8px; }

/* ── Floating reaction animation ─────────────────── */
.sa-float-react { position:fixed; bottom:80px; right:24px; font-size:28px; animation:sa-float-up 1.8s ease forwards; pointer-events:none; z-index:9999; }
@keyframes sa-float-up { 0%{opacity:1;transform:translateY(0) scale(1)}100%{opacity:0;transform:translateY(-120px) scale(1.4)} }

/* ═══════════════════════════════════════════════════════
   SEARCH AUTOCOMPLETE
═══════════════════════════════════════════════════════ */
.sa-search-autocomplete {
  position: absolute; top: 100%; left: 0; right: 0; z-index: 200;
  background: #fff; border: 1px solid #e5e7eb; border-top: none;
  border-radius: 0 0 14px 14px; box-shadow: 0 8px 24px rgba(0,0,0,.1);
  max-height: 420px; overflow-y: auto;
}
.sa-auto-section { padding: 10px 0 4px; }
.sa-auto-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .6px; color: #9ca3af; padding: 0 16px 6px; }
.sa-auto-product { display: flex; align-items: center; gap: 12px; padding: 8px 16px; cursor: pointer; text-decoration: none; color: inherit; transition: background .1s; }
.sa-auto-product:hover { background: #f7f8fa; }
.sa-auto-product img { width: 36px; height: 36px; object-fit: cover; border-radius: 6px; flex-shrink: 0; }
.sa-auto-product-name { font-size: 14px; font-weight: 500; flex: 1; }
.sa-auto-product-price { font-size: 13px; color: #6b7280; }
.sa-auto-category { display: flex; align-items: center; gap: 8px; padding: 7px 16px; cursor: pointer; font-size: 13px; color: #374151; }
.sa-auto-category:hover { background: #f7f8fa; }
.sa-auto-category::before { content: '🗂'; }
.sa-auto-query { display: flex; align-items: center; gap: 8px; padding: 7px 16px; cursor: pointer; font-size: 13px; color: #374151; }
.sa-auto-query:hover { background: #f7f8fa; }
.sa-auto-query::before { content: '🔍'; }

/* Zero results */
.sa-zero-results { text-align: center; padding: 60px 20px; }
.sa-zero-icon { font-size: 48px; margin-bottom: 16px; }
.sa-zero-results h3 { font-family: var(--font-head); font-size: 22px; margin-bottom: 8px; }
.sa-zero-trending { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-top: 12px; }
.sa-trend-chip { background: #f0f2f5; border-radius: 100px; padding: 6px 14px; font-size: 13px; text-decoration: none; color: #374151; }
.sa-trend-chip:hover { background: #e5e7eb; }

/* ═══════════════════════════════════════════════════════
   WISHLIST / HEART BUTTON
═══════════════════════════════════════════════════════ */
.sa-heart-btn {
  background: none; border: 1.5px solid #e5e7eb; border-radius: 50%;
  width: 34px; height: 34px; font-size: 16px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .15s; flex-shrink: 0; color: #9ca3af;
}
.sa-heart-btn:hover { border-color: #ef4444; color: #ef4444; transform: scale(1.1); }
.sa-heart-btn.saved { background: #fee2e2; border-color: #ef4444; color: #ef4444; }
.sa-wishlist-wrap { }
.sa-wishlist-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.sa-wishlist-count { background: #f0f2f5; border-radius: 100px; padding: 4px 12px; font-size: 13px; color: #6b7280; }
.sa-wishlist-saved-date { font-size: 11px; color: #9ca3af; margin-top: 6px; }

/* ═══════════════════════════════════════════════════════
   RECOMMENDATION STRIPS
═══════════════════════════════════════════════════════ */
.sa-rec-strip { margin: 32px 0; }
.sa-rec-strip-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 14px; }
.sa-rec-strip-title { font-family: var(--font-head); font-size: 20px; font-weight: 800; }
.sa-rec-strip-sub { font-size: 13px; color: #6b7280; margin-top: 2px; }
.sa-rec-strip-scroll { display: flex; gap: 12px; overflow-x: auto; padding-bottom: 8px; scroll-snap-type: x mandatory; }
.sa-rec-strip-scroll::-webkit-scrollbar { height: 4px; }
.sa-rec-strip-scroll::-webkit-scrollbar-thumb { background: #e5e7eb; border-radius: 2px; }
.sa-rec-card {
  flex: 0 0 180px; border: 1.5px solid #e5e7eb; border-radius: 12px;
  overflow: hidden; text-decoration: none; color: inherit;
  background: #fff; transition: box-shadow .15s, border-color .15s;
  scroll-snap-align: start; position: relative;
}
.sa-rec-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.08); border-color: #d1d5db; }
.sa-rec-card-img { width: 100%; aspect-ratio: 1; overflow: hidden; }
.sa-rec-card-img img { width: 100%; height: 100%; object-fit: cover; }
.sa-rec-card-body { padding: 10px; }
.sa-rec-score-badge { display: inline-block; padding: 2px 8px; border-radius: 100px; font-size: 10px; font-weight: 700; margin-bottom: 4px; }
.sa-rec-card-name { font-size: 13px; font-weight: 600; line-height: 1.3; margin-bottom: 4px; }
.sa-rec-card-price { font-family: var(--font-head); font-size: 16px; font-weight: 800; }
.sa-rec-card-cb { font-size: 11px; color: #00a651; font-weight: 700; }
.sa-rec-sponsored { }
.sa-rec-sponsor-badge { position: absolute; top: 6px; left: 6px; background: rgba(0,0,0,.6); color: rgba(255,255,255,.8); font-size: 9px; font-weight: 700; padding: 2px 7px; border-radius: 3px; text-transform: uppercase; letter-spacing: .4px; }

/* ═══════════════════════════════════════════════════════
   A/B TEST — ADMIN BADGES
═══════════════════════════════════════════════════════ */
.sa-ab-winner-a { background: #d4edda; color: #155724; border-radius: 4px; padding: 2px 8px; font-size: 11px; font-weight: 700; }
.sa-ab-winner-b { background: #cce5ff; color: #004085; border-radius: 4px; padding: 2px 8px; font-size: 11px; font-weight: 700; }
.sa-ab-running  { background: #fff3cd; color: #856404; border-radius: 4px; padding: 2px 8px; font-size: 11px; font-weight: 700; }

/* ═══════════════════════════════════════════════════════════════════
   SHOPPINGADS COMMERCIAL THEME — shp- prefix
═══════════════════════════════════════════════════════════════════ */
:root {
  --shp-black: #0a0a0a;
  --shp-white: #ffffff;
  --shp-gray1: #f7f8fa;
  --shp-gray2: #f0f2f5;
  --shp-gray3: #e4e8ed;
  --shp-gray5: #8b95a1;
  --shp-blue:  #3b82f6;
  --shp-green: #00a651;
  --shp-purple:#0ea5e9;
  --shp-radius:14px;
  --shp-shadow:0 2px 8px rgba(0,0,0,.06),0 8px 32px rgba(0,0,0,.08);
  --shp-shadow-lg:0 4px 16px rgba(0,0,0,.10),0 16px 48px rgba(0,0,0,.12);
}

/* ── HERO ──────────────────────────────────────────────────────── */
.shp-hero {
  position:relative; overflow:hidden;
  background:linear-gradient(135deg,#0a0a0a 0%,#0f0f2e 50%,#0a0a1a 100%);
  padding:80px 20px; color:#fff;
}
.shp-hero-bg { position:absolute;inset:0;pointer-events:none; }
.shp-hero-orb {
  position:absolute;border-radius:50%;filter:blur(80px);opacity:.25;
}
.shp-orb-1 { width:500px;height:500px;background:#3b82f6;top:-100px;right:-100px; }
.shp-orb-2 { width:400px;height:400px;background:#0ea5e9;bottom:-80px;left:10%; }
.shp-orb-3 { width:300px;height:300px;background:#00d68f;top:40%;right:30%; }
.shp-hero-inner {
  max-width:1280px;margin:0 auto;position:relative;z-index:1;
  display:grid;grid-template-columns:1fr 420px;gap:60px;align-items:center;
}
@media(max-width:960px){.shp-hero-inner{grid-template-columns:1fr;}.shp-hero-right{display:none;}}
.shp-hero-trust {
  display:flex;align-items:center;gap:12px;flex-wrap:wrap;
  font-size:12px;color:rgba(255,255,255,.55);margin-bottom:20px;
}
.shp-trust-badge { display:flex;align-items:center;gap:4px; }
.shp-trust-sep { color:rgba(255,255,255,.2); }
.shp-hero-h1 {
  font-family:var(--font-head);font-weight:900;
  font-size:clamp(36px,5vw,64px);line-height:1.08;letter-spacing:-1.5px;
  margin-bottom:20px;color:#fff;
}
.shp-hero-sub {
  font-size:18px;color:rgba(255,255,255,.65);line-height:1.65;
  max-width:520px;margin-bottom:32px;font-weight:400;
}
.shp-hero-search { margin-bottom:20px; }
.shp-hero-search-inner {
  display:flex;align-items:center;gap:0;
  background:rgba(255,255,255,.08);
  border:1.5px solid rgba(255,255,255,.2);border-radius:14px;overflow:hidden;
  backdrop-filter:blur(8px);transition:border-color .2s;
}
.shp-hero-search-inner:focus-within { border-color:rgba(255,255,255,.5); }
.shp-hero-search-inner svg { margin-left:16px;flex-shrink:0;color:rgba(255,255,255,.4); }
.shp-hero-search-inner input {
  flex:1;background:transparent;border:none;padding:16px 14px;
  font-size:16px;color:#fff;outline:none;
}
.shp-hero-search-inner input::placeholder { color:rgba(255,255,255,.35); }
.shp-hero-search-inner button {
  padding:0 24px;height:54px;background:#fff;color:#0a0a0a;
  font-weight:700;font-size:15px;border:none;cursor:pointer;
  white-space:nowrap;transition:background .15s;flex-shrink:0;
}
.shp-hero-search-inner button:hover { background:#f0f2f5; }
.shp-hero-search-chips { display:flex;gap:8px;flex-wrap:wrap; }
.shp-search-chip {
  background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.15);
  color:rgba(255,255,255,.7);border-radius:100px;padding:5px 14px;
  font-size:12px;cursor:pointer;transition:all .15s;font-weight:500;
}
.shp-search-chip:hover { background:rgba(255,255,255,.15);color:#fff; }
.shp-hero-stats {
  display:flex;gap:32px;flex-wrap:wrap;margin-top:32px;
  padding-top:28px;border-top:1px solid rgba(255,255,255,.1);
}
.shp-hero-stat strong {
  display:block;font-family:var(--font-head);font-size:28px;font-weight:900;color:#fff;
}
.shp-hero-stat span { font-size:13px;color:rgba(255,255,255,.5);margin-top:2px; }

/* Hero right card */
.shp-hero-preview-card {
  background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.12);
  border-radius:20px;padding:20px;backdrop-filter:blur(12px);
}
.shp-hpc-badge {
  display:inline-flex;background:#ef4444;color:#fff;font-size:11px;
  font-weight:800;padding:4px 12px;border-radius:100px;margin-bottom:12px;
}
.shp-hpc-img { width:100%;height:180px;object-fit:cover;border-radius:12px;margin-bottom:14px; }
.shp-hpc-name { font-weight:700;font-size:15px;margin-bottom:10px; }
.shp-hpc-price-row { display:flex;align-items:center;gap:10px;margin-bottom:14px; }
.shp-hpc-price { font-family:var(--font-head);font-size:26px;font-weight:900; }
.shp-hpc-cb { background:#00a651;color:#fff;font-size:12px;font-weight:700;padding:3px 10px;border-radius:100px; }
.shp-hpc-stores { display:flex;flex-direction:column;gap:6px;margin-bottom:14px; }
.shp-hpc-store-row {
  display:flex;align-items:center;gap:8px;padding:8px 12px;
  background:rgba(255,255,255,.06);border-radius:8px;font-size:13px;
}
.shp-hpc-best { background:rgba(0,166,81,.15);border:1px solid rgba(0,166,81,.3); }
.shp-hpc-store-name { flex:1; }
.shp-hpc-store-price { font-weight:800; }
.shp-hpc-store-cb { color:#4ade80;font-size:11px;font-weight:700; }
.shp-hpc-btn {
  display:block;text-align:center;background:#fff;color:#0a0a0a;
  border-radius:10px;padding:12px;font-weight:700;text-decoration:none;
  transition:background .15s;font-size:14px;
}
.shp-hpc-btn:hover { background:#f0f2f5; }

/* ── LIVE BAR ─────────────────────────────────────────────────── */
.shp-live-bar {
  background:#0a0a0a;border-bottom:1px solid #1a1a1a;
  padding:10px 20px;
}
.shp-live-bar-inner {
  max-width:1280px;margin:0 auto;display:flex;align-items:center;gap:16px;
}
.shp-live-bar-label {
  display:flex;align-items:center;gap:6px;color:#ef4444;
  font-weight:900;font-size:11px;letter-spacing:2px;text-transform:uppercase;white-space:nowrap;
}
.shp-live-dot { width:8px;height:8px;border-radius:50%;background:#ef4444;animation:shp-pulse 1.2s infinite; }
.shp-live-bar-streams { display:flex;gap:8px;overflow-x:auto;scrollbar-width:none;flex:1; }
.shp-live-bar-streams::-webkit-scrollbar { display:none; }
.shp-live-chip {
  display:flex;align-items:center;gap:8px;background:#1a1a1a;
  border:1px solid #2a2a2a;border-radius:100px;padding:4px 14px 4px 6px;
  text-decoration:none;color:#fff;white-space:nowrap;transition:border-color .15s;flex-shrink:0;
}
.shp-live-chip:hover { border-color:#ef4444; }
.shp-live-chip-thumb { width:24px;height:24px;border-radius:50%;object-fit:cover; }
.shp-live-chip-dot { width:6px;height:6px;border-radius:50%;background:#ef4444;flex-shrink:0; }
.shp-live-chip-title { font-size:12px;font-weight:600; }
.shp-live-chip-viewers { font-size:11px;color:#6b7280; }
.shp-live-bar-all { color:#9ca3af;font-size:12px;white-space:nowrap;flex-shrink:0; }

/* ── CATEGORY BAR ─────────────────────────────────────────────── */
.shp-cats-bar {
  position:sticky;top:64px;z-index:99;
  background:rgba(255,255,255,.95);backdrop-filter:blur(10px);
  border-bottom:1px solid var(--shp-gray3);
}
.shp-cats-inner {
  max-width:1280px;margin:0 auto;padding:0 20px;
  display:flex;gap:4px;overflow-x:auto;height:52px;align-items:center;
  scrollbar-width:none;
}
.shp-cats-inner::-webkit-scrollbar { display:none; }
.shp-cat {
  padding:7px 18px;border-radius:100px;font-size:13px;font-weight:600;
  cursor:pointer;border:1.5px solid var(--shp-gray3);background:#fff;
  color:#374151;white-space:nowrap;transition:all .15s;flex-shrink:0;
}
.shp-cat:hover { background:var(--shp-gray2);border-color:#9ca3af; }
.shp-cat.active { background:#0a0a0a;color:#fff;border-color:#0a0a0a; }

/* ── SECTIONS ─────────────────────────────────────────────────── */
.shp-section { max-width:1280px;margin:0 auto;padding:60px 20px; }
.shp-section-head {
  display:flex;align-items:flex-start;justify-content:space-between;
  margin-bottom:28px;gap:16px;
}
.shp-section-label {
  font-size:11px;font-weight:800;text-transform:uppercase;letter-spacing:2px;
  color:var(--shp-blue);margin-bottom:6px;
}
.shp-section-title {
  font-family:var(--font-head);font-size:clamp(22px,3vw,30px);
  font-weight:900;letter-spacing:-.5px;color:#0a0a0a;
}
.shp-see-all {
  font-size:13px;font-weight:700;color:var(--shp-blue);white-space:nowrap;
  margin-top:6px;text-decoration:none;
}
.shp-see-all:hover { text-decoration:underline; }
.shp-sort-row { display:flex;align-items:center;gap:10px; }
.shp-sort-select {
  border:1.5px solid var(--shp-gray3);border-radius:8px;
  padding:7px 12px;font-size:13px;font-weight:600;cursor:pointer;
  background:#fff;color:#374151;outline:none;
}

/* ── PRODUCT GRID + CARDS ─────────────────────────────────────── */
.shp-product-grid {
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(220px,1fr));gap:20px;
}
@media(max-width:640px){.shp-product-grid{grid-template-columns:repeat(2,1fr);gap:12px;}}
.shp-grid-ad { grid-column:1/-1; }

.shp-product-card {
  background:#fff;border:1px solid var(--shp-gray3);border-radius:var(--shp-radius);
  overflow:hidden;transition:box-shadow .2s,transform .2s;display:flex;flex-direction:column;
}
.shp-product-card:hover { box-shadow:var(--shp-shadow-lg);transform:translateY(-3px); }
.shp-pc-featured { grid-column:span 2;display:grid;grid-template-columns:240px 1fr; }
@media(max-width:640px){.shp-pc-featured{grid-column:span 2;grid-template-columns:1fr;}}

.shp-pc-img-wrap {
  position:relative;display:block;overflow:hidden;
  height:220px;background:var(--shp-gray2);
}
.shp-pc-featured .shp-pc-img-wrap { height:100%;min-height:220px; }
.shp-pc-img { width:100%;height:100%;object-fit:cover;transition:transform .35s; }
.shp-product-card:hover .shp-pc-img { transform:scale(1.06); }
.shp-pc-img-placeholder { width:100%;height:100%;background:var(--shp-gray2);display:flex;align-items:center;justify-content:center;color:var(--shp-gray5);font-size:36px; }

.shp-pc-badge {
  position:absolute;top:10px;left:10px;padding:4px 10px;border-radius:100px;
  font-size:11px;font-weight:800;color:#fff;
}
.shp-badge-fire { background:#ef4444; }
.shp-badge-score { right:10px;left:auto; }
.shp-pc-cb-tag {
  position:absolute;bottom:10px;right:10px;background:#00a651;color:#fff;
  font-size:11px;font-weight:800;padding:3px 10px;border-radius:100px;
}
.shp-pc-hover-overlay {
  position:absolute;inset:0;background:rgba(10,10,10,.5);
  display:flex;align-items:center;justify-content:center;
  opacity:0;transition:opacity .2s;color:#fff;font-weight:700;font-size:14px;
}
.shp-product-card:hover .shp-pc-hover-overlay { opacity:1; }

.shp-pc-body { padding:16px;display:flex;flex-direction:column;gap:8px;flex:1; }
.shp-pc-cat { font-size:11px;font-weight:800;text-transform:uppercase;letter-spacing:.6px;color:var(--shp-blue); }
.shp-pc-name { font-family:var(--font-head);font-size:14px;font-weight:700;line-height:1.4; }
.shp-pc-name a { color:#0a0a0a;text-decoration:none; }
.shp-pc-name a:hover { color:var(--shp-blue); }
.shp-pc-price-row { display:flex;align-items:center;gap:8px;flex-wrap:wrap; }
.shp-pc-price { font-family:var(--font-head);font-size:22px;font-weight:900; }
.shp-pc-score { font-size:11px;font-weight:800;padding:2px 8px;border-radius:100px; }
.shp-pc-cb { font-size:12px;color:#00a651;font-weight:700; }
.shp-pc-actions { display:flex;gap:8px;margin-top:auto;padding-top:4px; }
.shp-pc-heart {
  background:none;border:1.5px solid var(--shp-gray3);border-radius:50%;
  width:36px;height:36px;font-size:16px;cursor:pointer;display:flex;
  align-items:center;justify-content:center;transition:all .15s;flex-shrink:0;color:#9ca3af;
}
.shp-pc-heart:hover,.shp-pc-heart.saved { border-color:#ef4444;color:#ef4444;background:#fee2e2; }

/* ── BUTTONS ──────────────────────────────────────────────────── */
.shp-btn {
  display:inline-flex;align-items:center;justify-content:center;gap:6px;
  padding:11px 22px;border-radius:10px;font-weight:700;font-size:14px;
  cursor:pointer;border:2px solid transparent;transition:all .15s;
  text-decoration:none;white-space:nowrap;
}
.shp-btn-primary { background:#0a0a0a;color:#fff;border-color:#0a0a0a; }
.shp-btn-primary:hover { background:#222;border-color:#222; }
.shp-btn-ghost { background:transparent;color:#0a0a0a;border-color:var(--shp-gray3); }
.shp-btn-ghost:hover { background:var(--shp-gray2); }
.shp-btn-shop { background:#3b82f6;color:#fff;border-color:#3b82f6;padding:8px 16px;font-size:13px;border-radius:8px; }
.shp-btn-shop:hover { background:#2563eb; }
.shp-btn-white-solid { background:#fff;color:#0a0a0a;border-color:#fff; }
.shp-btn-white-solid:hover { background:#f0f2f5; }
.shp-btn-ghost-white { background:transparent;color:#fff;border-color:rgba(255,255,255,.3); }
.shp-btn-ghost-white:hover { background:rgba(255,255,255,.1); }
.shp-btn-sm { padding:8px 16px;font-size:13px;border-radius:8px; }
.shp-btn-full { width:100%; }

/* ── VALUE STRIP ──────────────────────────────────────────────── */
.shp-value-strip { background:#f7f8fa;border-top:1px solid var(--shp-gray3);border-bottom:1px solid var(--shp-gray3); }
.shp-value-inner {
  max-width:1280px;margin:0 auto;padding:32px 20px;
  display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:24px;
}
.shp-value-item { display:flex;align-items:flex-start;gap:14px; }
.shp-value-icon { font-size:28px;flex-shrink:0;margin-top:2px; }
.shp-value-text h3 { font-weight:800;font-size:14px;margin-bottom:4px; }
.shp-value-text p { font-size:13px;color:var(--shp-gray5);line-height:1.55; }

/* ── COMPARE SECTION ──────────────────────────────────────────── */
.shp-compare-section { background:var(--shp-gray1); }
.shp-compare-layout {
  display:grid;grid-template-columns:280px 1fr;gap:32px;align-items:start;
}
@media(max-width:768px){.shp-compare-layout{grid-template-columns:1fr;}}
.shp-compare-product-card {
  background:#fff;border:1px solid var(--shp-gray3);border-radius:16px;padding:20px;
}
.shp-cpc-img { width:100%;height:180px;object-fit:cover;border-radius:10px;margin-bottom:14px; }
.shp-cpc-cat { font-size:11px;font-weight:800;text-transform:uppercase;letter-spacing:.5px;color:var(--shp-blue);margin-bottom:4px; }
.shp-cpc-name { font-family:var(--font-head);font-size:17px;font-weight:800;margin-bottom:8px; }
.shp-cpc-desc { font-size:13px;color:var(--shp-gray5);line-height:1.55;margin-bottom:14px; }
.shp-score-badge {
  display:flex;align-items:center;gap:8px;background:#f0fdf4;
  border:1px solid #bbf7d0;border-radius:10px;padding:10px 14px;margin-bottom:14px;
}
.shp-score-num { font-family:var(--font-head);font-size:28px;font-weight:900;color:#00a651; }
.shp-score-label { font-size:12px;font-weight:700;color:#065f46; }
.shp-compare-stores { display:flex;flex-direction:column;gap:0; }
.shp-compare-stores-head {
  display:grid;grid-template-columns:1.5fr 1fr 1fr 1fr 1fr;gap:12px;
  padding:10px 16px;font-size:11px;font-weight:800;text-transform:uppercase;
  letter-spacing:.5px;color:var(--shp-gray5);border-bottom:2px solid var(--shp-gray3);
}
.shp-compare-store-row {
  display:grid;grid-template-columns:1.5fr 1fr 1fr 1fr 1fr;
  gap:12px;padding:16px;border-bottom:1px solid var(--shp-gray3);
  background:#fff;align-items:center;position:relative;
}
.shp-compare-store-row:last-of-type { border-bottom:none; }
.shp-csr-best { background:#f0fdf4;border-left:3px solid #00a651; }
.shp-csr-best-tag {
  position:absolute;top:-10px;left:16px;background:#00a651;color:#fff;
  font-size:10px;font-weight:800;padding:2px 10px;border-radius:100px;
}
.shp-csr-name { display:flex;align-items:center;gap:8px;font-weight:700;font-size:14px; }
.shp-store-logo { width:22px;height:22px;object-fit:contain;flex-shrink:0;border-radius:4px; }
.shp-csr-price { font-family:var(--font-head);font-size:18px;font-weight:900; }
.shp-cb-badge { display:inline-flex;flex-direction:column;background:#f0fdf4;color:#00a651;padding:4px 8px;border-radius:8px;font-size:11px;font-weight:800;line-height:1.3; }
.shp-cb-badge small { color:#6b7280;font-weight:500; }
.shp-csr-ship { font-size:12px;color:var(--shp-gray5); }
.shp-compare-net-cost {
  padding:14px 16px;background:#eff6ff;border-radius:0 0 12px 12px;
  font-size:13px;color:#1d4ed8;font-weight:600;
}

/* ── CASHBACK HERO ────────────────────────────────────────────── */
.shp-cashback-hero {
  background:linear-gradient(135deg,#052e16 0%,#064e3b 50%,#065f46 100%);
  color:#fff;
}
.shp-cashback-hero-inner {
  max-width:1280px;margin:0 auto;padding:80px 20px;
  display:grid;grid-template-columns:1fr 420px;gap:60px;align-items:center;
}
@media(max-width:900px){.shp-cashback-hero-inner{grid-template-columns:1fr;}}
.shp-cashback-hero-left h2 {
  font-family:var(--font-head);font-size:clamp(28px,4vw,48px);
  font-weight:900;margin-bottom:16px;letter-spacing:-.5px;color:#fff;
}
.shp-cashback-hero-left p { font-size:16px;color:rgba(255,255,255,.75);line-height:1.7;margin-bottom:24px; }
.shp-cashback-tiers { display:flex;gap:12px;flex-wrap:wrap;margin-bottom:28px; }
.shp-cashback-tier { display:flex;align-items:center;gap:8px; }
.shp-tier-name { padding:4px 12px;border-radius:100px;color:#fff;font-size:12px;font-weight:800; }
.shp-tier-rate { font-size:13px;font-weight:700;color:rgba(255,255,255,.8); }
.shp-cashback-btns { display:flex;gap:12px;flex-wrap:wrap; }

/* Cashback widget */
.shp-cashback-widget {
  background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.15);
  border-radius:20px;padding:24px;backdrop-filter:blur(12px);
}
.shp-cw-header { font-size:12px;font-weight:700;text-transform:uppercase;letter-spacing:1px;color:rgba(255,255,255,.5);margin-bottom:8px; }
.shp-cw-amount { font-family:var(--font-head);font-size:48px;font-weight:900;color:#4ade80;margin-bottom:4px; }
.shp-cw-sub { font-size:13px;color:rgba(255,255,255,.5);margin-bottom:20px; }
.shp-cw-breakdown { display:flex;flex-direction:column;gap:8px;margin-bottom:16px; }
.shp-cw-row {
  display:grid;grid-template-columns:80px 1fr auto;gap:8px;
  background:rgba(255,255,255,.06);border-radius:8px;padding:8px 12px;
  font-size:13px;align-items:center;
}
.shp-cw-store { font-weight:700;font-size:11px;color:rgba(255,255,255,.7); }
.shp-cw-product { color:rgba(255,255,255,.8);font-size:12px; }
.shp-cw-earned { color:#4ade80;font-weight:800;font-size:13px; }
.shp-cw-footer { font-size:11px;color:rgba(255,255,255,.4);text-align:center; }

/* ── LIVESTREAMS ──────────────────────────────────────────────── */
.shp-streams-grid {
  display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:20px;
}
@media(max-width:640px){.shp-streams-grid{grid-template-columns:1fr 1fr;gap:12px;}}
.shp-stream-card {
  border-radius:var(--shp-radius);overflow:hidden;
  background:#fff;border:1px solid var(--shp-gray3);
  transition:box-shadow .2s,transform .2s;text-decoration:none;color:inherit;display:block;
}
.shp-stream-card:hover { box-shadow:var(--shp-shadow-lg);transform:translateY(-2px); }
.shp-stream-card.shp-stream-live { border-color:#ef4444;border-width:2px; }
.shp-stream-thumb-wrap { position:relative;aspect-ratio:16/9;overflow:hidden;background:#1a1a1a; }
.shp-stream-thumb { width:100%;height:100%;object-fit:cover;transition:transform .35s; }
.shp-stream-card:hover .shp-stream-thumb { transform:scale(1.05); }
.shp-stream-thumb-placeholder { width:100%;height:100%;background:linear-gradient(135deg,#1a1a2e,#16213e);display:flex;align-items:center;justify-content:center;font-size:36px;color:rgba(255,255,255,.3); }
.shp-stream-live-badge {
  position:absolute;top:10px;left:10px;background:#ef4444;color:#fff;
  font-size:10px;font-weight:900;padding:4px 10px;border-radius:100px;
  display:flex;align-items:center;gap:5px;text-transform:uppercase;letter-spacing:1px;
}
.shp-live-dot-sm { width:6px;height:6px;border-radius:50%;background:#fff;animation:shp-pulse 1.2s infinite; }
.shp-stream-viewers { position:absolute;bottom:10px;left:10px;background:rgba(0,0,0,.7);color:#fff;font-size:11px;font-weight:700;padding:3px 10px;border-radius:100px; }
.shp-stream-sched-badge,.shp-stream-replay-badge {
  position:absolute;top:10px;left:10px;background:rgba(0,0,0,.7);color:#fff;
  font-size:10px;font-weight:800;padding:4px 10px;border-radius:100px;
}
.shp-stream-play-overlay {
  position:absolute;inset:0;background:rgba(0,0,0,.35);
  display:flex;align-items:center;justify-content:center;
  opacity:0;transition:opacity .2s;
}
.shp-stream-card:hover .shp-stream-play-overlay { opacity:1; }
.shp-play-btn {
  width:52px;height:52px;border-radius:50%;background:rgba(255,255,255,.95);
  display:flex;align-items:center;justify-content:center;font-size:18px;color:#0a0a0a;
}
.shp-stream-body {
  padding:14px;display:flex;align-items:flex-start;gap:10px;
}
.shp-stream-avatar { width:36px;height:36px;border-radius:50%;object-fit:cover;flex-shrink:0; }
.shp-stream-meta { flex:1;min-width:0; }
.shp-stream-creator { font-weight:800;font-size:13px;display:flex;align-items:center;gap:6px;margin-bottom:3px; }
.shp-stream-followers { background:var(--shp-gray2);color:var(--shp-gray5);font-size:10px;font-weight:700;padding:1px 8px;border-radius:100px; }
.shp-stream-title { font-size:13px;color:#374151;line-height:1.4; }
.shp-stream-niche { font-size:11px;color:var(--shp-gray5);margin-top:3px; }

/* ── CREATORS ─────────────────────────────────────────────────── */
.shp-creators-grid {
  display:grid;grid-template-columns:repeat(auto-fill,minmax(160px,1fr));gap:16px;
}
.shp-creator-card {
  background:#fff;border:1px solid var(--shp-gray3);border-radius:var(--shp-radius);
  padding:20px 16px;text-align:center;transition:all .2s;text-decoration:none;color:inherit;display:block;
}
.shp-creator-card:hover { box-shadow:var(--shp-shadow);border-color:#9ca3af;transform:translateY(-2px); }
.shp-creator-avatar-wrap { position:relative;display:inline-block;margin-bottom:12px; }
.shp-creator-avatar { width:72px;height:72px;border-radius:50%;object-fit:cover;border:3px solid var(--shp-gray3); }
.shp-creator-avatar-placeholder {
  width:72px;height:72px;border-radius:50%;background:linear-gradient(135deg,#3b82f6,#7c3aed);
  display:flex;align-items:center;justify-content:center;font-size:28px;font-weight:900;color:#fff;
}
.shp-creator-verified {
  position:absolute;bottom:0;right:0;width:22px;height:22px;background:#3b82f6;
  color:#fff;border-radius:50%;font-size:11px;font-weight:800;
  display:flex;align-items:center;justify-content:center;border:2px solid #fff;
}
.shp-creator-name { font-weight:800;font-size:14px;margin-bottom:3px; }
.shp-creator-handle { font-size:12px;color:var(--shp-gray5);margin-bottom:4px; }
.shp-creator-followers { font-size:11px;font-weight:800;color:var(--shp-blue);margin-bottom:4px; }
.shp-creator-niche {
  font-size:11px;color:#6b7280;background:var(--shp-gray2);
  border-radius:100px;padding:2px 10px;display:inline-block;
}

/* ── BRANDS STRIP ─────────────────────────────────────────────── */
.shp-brands-strip { background:var(--shp-gray1);border-top:1px solid var(--shp-gray3);border-bottom:1px solid var(--shp-gray3); }
.shp-brands-strip-inner { max-width:1280px;margin:0 auto;padding:24px 20px;display:flex;align-items:center;gap:24px; }
.shp-brands-strip-label { font-size:11px;font-weight:800;text-transform:uppercase;letter-spacing:1px;color:var(--shp-gray5);white-space:nowrap; }
.shp-brands-logos { display:flex;gap:12px;overflow-x:auto;scrollbar-width:none;align-items:center;flex:1; }
.shp-brands-logos::-webkit-scrollbar { display:none; }
.shp-brand-logo-chip {
  display:flex;align-items:center;justify-content:center;
  background:#fff;border:1px solid var(--shp-gray3);border-radius:10px;
  padding:10px 16px;flex-shrink:0;transition:all .15s;text-decoration:none;
  min-width:100px;white-space:nowrap;
}
.shp-brand-logo-chip:hover { border-color:#9ca3af;box-shadow:var(--shp-shadow); }
.shp-brand-logo-chip img { height:24px;width:auto;object-fit:contain; }
.shp-brand-logo-chip span { font-size:13px;font-weight:800;color:#1a1a2e; }

/* ── BRANDS CTA ───────────────────────────────────────────────── */
.shp-brands-cta {
  background:linear-gradient(135deg,#070b14 0%,#0d1829 50%,#070b14 100%);
  color:#fff;
}
.shp-brands-cta-inner {
  max-width:1280px;margin:0 auto;padding:80px 20px;
  display:grid;grid-template-columns:1fr 440px;gap:60px;align-items:center;
}
@media(max-width:900px){.shp-brands-cta-inner{grid-template-columns:1fr;}}
.shp-brands-cta-content h2 {
  font-family:var(--font-head);font-size:clamp(28px,3.5vw,44px);
  font-weight:900;margin-bottom:16px;letter-spacing:-.5px;color:#fff;
}
.shp-brands-cta-content p { font-size:16px;color:rgba(255,255,255,.7);line-height:1.7;margin-bottom:24px; }
.shp-brands-cta-stats { display:flex;gap:28px;flex-wrap:wrap; }
.shp-bcta-stat strong { display:block;font-family:var(--font-head);font-size:28px;font-weight:900;color:#38bdf8; }
.shp-bcta-stat span { font-size:13px;color:rgba(255,255,255,.5); }

/* RTB Auction Demo */
.shp-rtb-demo {
  background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.1);
  border-radius:16px;padding:20px;backdrop-filter:blur(8px);
}
.shp-rtb-demo-header { font-size:12px;font-weight:700;color:rgba(255,255,255,.5);margin-bottom:14px;text-transform:uppercase;letter-spacing:.5px; }
.shp-rtb-row {
  display:flex;align-items:center;gap:10px;padding:10px 12px;
  border-radius:8px;margin-bottom:6px;
}
.shp-rtb-row.winning { background:rgba(59,130,246,.15);border:1px solid rgba(59,130,246,.3); }
.shp-rtb-advertiser { font-size:13px;font-weight:700;width:90px;flex-shrink:0;color:#fff; }
.shp-rtb-bar-wrap { flex:1;background:rgba(255,255,255,.08);border-radius:4px;height:8px;overflow:hidden; }
.shp-rtb-bar { height:100%;border-radius:4px;transition:width 1s ease; }
.shp-rtb-bid { font-size:12px;font-weight:800;width:70px;text-align:right;flex-shrink:0;color:#fff; }
.shp-rtb-win { font-size:10px;font-weight:900;color:#4ade80;flex-shrink:0; }
.shp-rtb-demo-footer { font-size:10px;color:rgba(255,255,255,.3);margin-top:10px;text-align:center; }

/* ── HOW IT WORKS ─────────────────────────────────────────────── */
.shp-how { background:var(--shp-gray1);border-top:1px solid var(--shp-gray3); }
.shp-how-inner { max-width:1100px;margin:0 auto;padding:80px 20px; }
.shp-how-grid {
  display:grid;grid-template-columns:repeat(4,1fr);gap:40px;
  position:relative;
}
@media(max-width:768px){.shp-how-grid{grid-template-columns:repeat(2,1fr);gap:24px;}}
.shp-how-step { display:flex;flex-direction:column;align-items:center;text-align:center;gap:12px;position:relative; }
.shp-how-num {
  width:64px;height:64px;border-radius:50%;background:#fff;
  border:2px solid var(--shp-gray3);display:flex;align-items:center;
  justify-content:center;font-size:28px;position:relative;z-index:1;box-shadow:var(--shp-shadow);
}
.shp-how-connector {
  position:absolute;top:32px;left:calc(50% + 32px);right:calc(-50% + 32px);
  height:2px;background:var(--shp-gray3);z-index:0;
}
@media(max-width:768px){.shp-how-connector{display:none;}}
.shp-no-connector { display:none; }
.shp-how-step h3 { font-weight:800;font-size:15px;color:#0a0a0a; }
.shp-how-step p { font-size:13px;color:var(--shp-gray5);line-height:1.6;max-width:200px; }

/* ── AD BREAK ─────────────────────────────────────────────────── */
.shp-ad-break { max-width:1280px;margin:0 auto;padding:0 20px 32px; }

/* ── ANIMATIONS ───────────────────────────────────────────────── */
@keyframes shp-pulse { 0%,100%{opacity:1}50%{opacity:.3} }

/* ═══════════════════════════════════════════════════════════════
   RETAIL DSP — CAMPAIGN MANAGER
═══════════════════════════════════════════════════════════════ */
.dsp-wrap { background:#f7f8fa; min-height:100vh; }
.dsp-header { background:#fff; border-bottom:1px solid #e4e8ed; padding:20px; }
.dsp-header-inner { max-width:1100px;margin:0 auto;display:flex;align-items:center;justify-content:space-between;gap:16px; }
.dsp-title { font-family:var(--font-head);font-size:24px;font-weight:900;margin-bottom:4px; }
.dsp-sub { font-size:14px;color:#6b7280; }
.dsp-balance-chip { background:#f0fdf4;border:1px solid #bbf7d0;border-radius:100px;padding:8px 16px;font-size:13px;color:#065f46;font-weight:600;display:flex;align-items:center;gap:8px; }
.dsp-add-funds { color:#00a651;font-weight:800;font-size:12px; }

.dsp-steps-bar { background:#fff;border-bottom:1px solid #e4e8ed;padding:16px 20px; }
.dsp-steps-inner { max-width:1100px;margin:0 auto;display:flex;align-items:center; }
.dsp-step { display:flex;align-items:center;gap:8px;flex-shrink:0; }
.dsp-step-circle { width:28px;height:28px;border-radius:50%;background:#e4e8ed;color:#9ca3af;font-size:12px;font-weight:800;display:flex;align-items:center;justify-content:center;transition:all .2s; }
.dsp-step-active .dsp-step-circle { background:#0a0a0a;color:#fff; }
.dsp-step-done .dsp-step-circle { background:#00a651;color:#fff; }
.dsp-step-label { font-size:12px;font-weight:600;color:#9ca3af; }
.dsp-step-active .dsp-step-label { color:#0a0a0a; }
.dsp-step-done .dsp-step-label { color:#00a651; }
.dsp-step-line { flex:1;height:2px;background:#e4e8ed;margin:0 8px; }
.dsp-line-done { background:#00a651; }

.dsp-builder { max-width:1100px;margin:0 auto;padding:32px 20px; }
.dsp-panel { background:#fff;border:1px solid #e4e8ed;border-radius:16px;padding:32px; }
.dsp-panel-head { margin-bottom:28px; }
.dsp-panel-head h2 { font-family:var(--font-head);font-size:22px;font-weight:900;margin-bottom:6px; }
.dsp-panel-head p { font-size:14px;color:#6b7280; }
.dsp-panel-foot { display:flex;align-items:center;justify-content:space-between;margin-top:28px;padding-top:20px;border-top:1px solid #f0f2f5; }

/* Objective chips */
.dsp-objective-row { margin-bottom:24px; }
.dsp-objective-label { font-size:11px;font-weight:800;text-transform:uppercase;letter-spacing:.5px;color:#6b7280;margin-bottom:8px; }
.dsp-objective-chips { display:flex;gap:8px;flex-wrap:wrap; }
.dsp-obj-chip { display:flex;align-items:center;gap:0;cursor:pointer; }
.dsp-obj-chip input { display:none; }
.dsp-obj-chip span { background:#f7f8fa;border:1.5px solid #e4e8ed;border-radius:100px;padding:6px 16px;font-size:13px;font-weight:600;transition:all .15s; }
.dsp-obj-chip input:checked + span { background:#0a0a0a;color:#fff;border-color:#0a0a0a; }

/* Campaign type grid */
.dsp-type-grid { display:grid;grid-template-columns:repeat(auto-fill,minmax(260px,1fr));gap:14px;margin-bottom:8px; }
.dsp-type-card { position:relative;cursor:pointer;border-radius:12px;overflow:hidden; }
.dsp-type-card input { position:absolute;opacity:0;pointer-events:none; }
.dsp-type-inner { border:2px solid #e4e8ed;border-radius:12px;padding:18px;transition:all .15s;background:#fff;height:100%; }
.dsp-type-card.selected .dsp-type-inner { border-color:#0a0a0a !important;background:#fafafa !important;box-shadow:0 4px 16px rgba(0,0,0,.1) !important; }
.dsp-type-check { position:absolute;top:12px;right:12px;width:20px;height:20px;background:#0a0a0a;color:#fff;border-radius:50%;font-size:11px;font-weight:900;display:flex;align-items:center;justify-content:center;opacity:0;transition:opacity .15s; }
.dsp-type-card.selected .dsp-type-check { opacity:1 !important; }
.dsp-type-icon { font-size:24px;margin-bottom:8px; }
.dsp-type-name { font-weight:800;font-size:14px;margin-bottom:4px; }
.dsp-type-desc { font-size:12px;color:#6b7280;line-height:1.5;margin-bottom:8px; }
.dsp-type-meta { font-size:11px;font-weight:700;color:#3b82f6;margin-bottom:4px; }
.dsp-type-placement { font-size:11px;color:#9ca3af; }

/* Targeting layout */
.dsp-targeting-layout { display:grid;grid-template-columns:1fr 1fr;gap:24px; }
@media(max-width:768px){.dsp-targeting-layout{grid-template-columns:1fr;}}
.dsp-target-section-title { font-size:12px;font-weight:800;text-transform:uppercase;letter-spacing:.5px;color:#374151;margin-bottom:16px;padding-bottom:8px;border-bottom:2px solid #f0f2f5; }

/* Form elements */
.dsp-field { margin-bottom:18px; }
.dsp-field label { display:block;font-size:13px;font-weight:700;color:#374151;margin-bottom:6px; }
.dsp-input,.dsp-select,.dsp-textarea { width:100%;padding:10px 14px;border:1.5px solid #e4e8ed;border-radius:10px;font-size:14px;font-family:var(--font-body);transition:border-color .15s;background:#fff; }
.dsp-input:focus,.dsp-select:focus,.dsp-textarea:focus { outline:none;border-color:#0a0a0a; }
.dsp-textarea { resize:vertical;min-height:80px; }
.dsp-field-hint { font-size:12px;color:#9ca3af;margin-top:4px; }
.dsp-badge-new { background:#eff6ff;color:#1d4ed8;font-size:10px;font-weight:800;padding:2px 8px;border-radius:100px;margin-left:6px;text-transform:uppercase;letter-spacing:.3px; }
.dsp-char-count { font-size:11px;color:#9ca3af;text-align:right;margin-top:2px; }

/* Checkbox / radio grids */
.dsp-checkbox-grid { display:grid;grid-template-columns:repeat(auto-fill,minmax(180px,1fr));gap:8px; }
.dsp-checkbox-item { display:flex;align-items:center;gap:8px;padding:8px 12px;border:1.5px solid #e4e8ed;border-radius:8px;cursor:pointer;transition:all .15s;font-size:13px;font-weight:500; }
.dsp-checkbox-item:has(input:checked) { border-color:#0a0a0a;background:#fafafa; }
.dsp-checkbox-item input { width:15px;height:15px;flex-shrink:0; }
.dsp-radio-row { display:flex;gap:8px;flex-wrap:wrap; }
.dsp-radio-chip { display:flex;align-items:center;gap:0;cursor:pointer; }
.dsp-radio-chip input { display:none; }
.dsp-radio-chip span { background:#f7f8fa;border:1.5px solid #e4e8ed;border-radius:8px;padding:7px 14px;font-size:13px;font-weight:600;transition:all .15s; }
.dsp-radio-chip input:checked + span { background:#0a0a0a;color:#fff;border-color:#0a0a0a; }
.dsp-daypart-grid { display:flex;gap:6px;flex-wrap:wrap; }
.dsp-daypart-chip { display:flex;align-items:center;gap:0;cursor:pointer; }
.dsp-daypart-chip input { display:none; }
.dsp-daypart-chip span { background:#f7f8fa;border:1.5px solid #e4e8ed;border-radius:6px;padding:5px 10px;font-size:12px;font-weight:700;transition:all .15s; }
.dsp-daypart-chip input:checked + span { background:#3b82f6;color:#fff;border-color:#3b82f6; }

/* Creator targeting */
.dsp-creator-select-grid { display:flex;flex-direction:column;gap:6px; }
.dsp-creator-select-item { display:flex;align-items:center;gap:10px;padding:8px 12px;border:1.5px solid #e4e8ed;border-radius:8px;cursor:pointer;transition:all .15s; }
.dsp-creator-select-item:has(input:checked) { border-color:#0a0a0a;background:#fafafa; }
.dsp-creator-select-item input { flex-shrink:0; }
.dsp-creator-mini-avatar { width:28px;height:28px;border-radius:50%;object-fit:cover; }
.dsp-creator-mini-info strong { display:block;font-size:12px;font-weight:800; }
.dsp-creator-mini-info span { font-size:11px;color:#9ca3af; }

/* Creative layout */
.dsp-creative-layout { display:grid;grid-template-columns:1fr 360px;gap:32px; }
@media(max-width:900px){.dsp-creative-layout{grid-template-columns:1fr;}}
.dsp-creative-row { display:grid;grid-template-columns:1fr 1fr;gap:14px; }
.dsp-coupon-row { display:flex;gap:8px; }

/* Creative preview */
.dsp-creative-preview { position:sticky;top:80px; }
.dsp-preview-label { font-size:11px;font-weight:800;text-transform:uppercase;letter-spacing:.5px;color:#6b7280;margin-bottom:12px; }
.dsp-preview-device { background:#f7f8fa;border-radius:16px;padding:20px; }
.dsp-preview-frame { background:#fff;border:1px solid #e4e8ed;border-radius:12px;overflow:hidden;margin-bottom:12px; }
.dsp-preview-sponsored-tag { font-size:10px;color:#9ca3af;padding:6px 12px;border-bottom:1px solid #f0f2f5;font-weight:600; }
.dsp-preview-img-wrap { height:140px;background:#f7f8fa;overflow:hidden; }
.dsp-preview-img-wrap img { width:100%;height:100%;object-fit:cover; }
.dsp-preview-img-placeholder { height:100%;display:flex;align-items:center;justify-content:center;font-size:32px;color:#d1d5db; }
.dsp-preview-body { padding:14px; }
.dsp-preview-headline { font-weight:800;font-size:15px;margin-bottom:6px;line-height:1.3; }
.dsp-preview-copy { font-size:12px;color:#6b7280;margin-bottom:12px;line-height:1.5; }
.dsp-preview-cta { background:#0a0a0a;color:#fff;border:none;border-radius:8px;padding:9px 18px;font-size:13px;font-weight:700;cursor:pointer; }
.dsp-preview-format-tabs { display:flex;gap:4px;justify-content:center; }
.dsp-preview-tab { background:none;border:1px solid #e4e8ed;border-radius:6px;padding:4px 12px;font-size:11px;font-weight:600;cursor:pointer; }
.dsp-preview-tab.active { background:#0a0a0a;color:#fff;border-color:#0a0a0a; }

/* Quality score */
.dsp-quality-score { background:#fff;border:1px solid #e4e8ed;border-radius:12px;padding:16px;margin-top:12px; }
.dsp-qs-label { font-size:11px;font-weight:800;text-transform:uppercase;letter-spacing:.5px;color:#6b7280;margin-bottom:10px; }
.dsp-qs-bar-wrap { background:#f0f2f5;border-radius:100px;height:8px;margin-bottom:6px;overflow:hidden; }
.dsp-qs-bar { height:100%;border-radius:100px;background:#ef4444;transition:width .3s,background .3s; }
.dsp-qs-val { font-size:13px;font-weight:800;margin-bottom:10px; }
.dsp-qs-tips { display:flex;flex-direction:column;gap:4px; }
.dsp-qs-tip { font-size:11px;color:#9ca3af; }

/* Budget layout */
.dsp-budget-layout { display:grid;grid-template-columns:1fr 320px;gap:32px; }
@media(max-width:900px){.dsp-budget-layout{grid-template-columns:1fr;}}
.dsp-budget-row { display:grid;grid-template-columns:1fr 1fr;gap:14px; }
.dsp-bid-input-wrap { display:flex;align-items:center;border:1.5px solid #e4e8ed;border-radius:10px;overflow:hidden;transition:border-color .15s; }
.dsp-bid-input-wrap:focus-within { border-color:#0a0a0a; }
.dsp-currency { padding:10px 12px;background:#f7f8fa;font-weight:700;font-size:14px;color:#374151;border-right:1px solid #e4e8ed;flex-shrink:0; }
.dsp-bid-input { border:none;border-radius:0;font-size:18px;font-weight:800;width:100%;padding:10px 14px; }
.dsp-bid-input:focus { outline:none; }
.dsp-bid-suggestion { display:flex;gap:16px;margin-top:8px;font-size:12px; }
.dsp-bid-comp span { color:#9ca3af; }
.dsp-bid-comp strong { color:#0a0a0a; }

/* Bid model cards */
.dsp-bid-cards { display:flex;flex-direction:column;gap:8px;margin-bottom:8px; }
.dsp-bid-card { position:relative;cursor:pointer; }
.dsp-bid-card input { position:absolute;opacity:0;pointer-events:none; }
.dsp-bid-card-inner { border:2px solid #e4e8ed;border-radius:10px;padding:14px 16px;transition:all .15s;display:flex;flex-direction:column;gap:2px; }
.dsp-bid-card.selected .dsp-bid-card-inner,
.dsp-bid-card:has(input:checked) .dsp-bid-card-inner { border-color:#0a0a0a;background:#fafafa; }
.dsp-bid-name { font-weight:800;font-size:14px; }
.dsp-bid-desc { font-size:12px;color:#6b7280; }
.dsp-bid-range { font-size:11px;color:#3b82f6;font-weight:700; }
.dsp-bid-check { position:absolute;top:50%;right:16px;transform:translateY(-50%);width:20px;height:20px;background:#0a0a0a;color:#fff;border-radius:50%;font-size:11px;display:flex;align-items:center;justify-content:center;opacity:0;transition:.15s; }
.dsp-bid-card.selected .dsp-bid-check,
.dsp-bid-card:has(input:checked) .dsp-bid-check { opacity:1; }

/* Toggle */
.dsp-toggle-label { display:flex;align-items:center;gap:12px;cursor:pointer;font-size:14px;font-weight:600; }
.dsp-toggle-input { display:none; }
.dsp-toggle-switch { width:44px;height:24px;background:#e4e8ed;border-radius:100px;position:relative;flex-shrink:0;transition:background .2s; }
.dsp-toggle-switch::after { content:'';position:absolute;top:2px;left:2px;width:20px;height:20px;background:#fff;border-radius:50%;transition:transform .2s;box-shadow:0 1px 3px rgba(0,0,0,.2); }
.dsp-toggle-input:checked + .dsp-toggle-switch { background:#00a651; }
.dsp-toggle-input:checked + .dsp-toggle-switch::after { transform:translateX(20px); }

/* Budget sidebar */
.dsp-budget-sidebar { position:sticky;top:80px;display:flex;flex-direction:column;gap:16px; }
.dsp-budget-calc,.dsp-smart-buy-boost { background:#fff;border:1px solid #e4e8ed;border-radius:12px;padding:20px; }
.dsp-calc-title { font-size:12px;font-weight:800;text-transform:uppercase;letter-spacing:.5px;color:#374151;margin-bottom:14px; }
.dsp-calc-rows { display:flex;flex-direction:column;gap:8px;margin-bottom:12px; }
.dsp-calc-row { display:flex;justify-content:space-between;font-size:13px;padding:6px 0;border-bottom:1px solid #f0f2f5; }
.dsp-calc-row strong { font-weight:800; }
.shp-calc-highlight strong { color:#00a651; }
.dsp-calc-note { font-size:11px;color:#9ca3af; }
.dsp-boost-meter { background:#f0f2f5;height:8px;border-radius:100px;overflow:hidden;margin:10px 0 6px; }
.dsp-boost-fill { height:100%;background:linear-gradient(90deg,#3b82f6,#00a651);border-radius:100px;transition:width .3s; }
.dsp-boost-label { font-size:12px;font-weight:700;color:#374151; }
.dsp-smart-buy-boost p { font-size:12px;color:#6b7280;line-height:1.5;margin-top:6px; }

/* Review */
.dsp-review-grid { display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:16px;margin-bottom:28px; }
.dsp-review-section { background:#f7f8fa;border-radius:12px;padding:20px; }
.dsp-review-section-title { font-size:11px;font-weight:800;text-transform:uppercase;letter-spacing:.5px;color:#9ca3af;margin-bottom:12px; }
.dsp-review-rows { display:flex;flex-direction:column;gap:8px; }
.dsp-review-row { display:flex;justify-content:space-between;font-size:13px; }
.dsp-review-row span { color:#6b7280; }
.dsp-review-row strong { font-weight:700;text-align:right;max-width:160px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap; }
.dsp-review-quality { display:flex;flex-direction:column;align-items:center;text-align:center;gap:8px; }
.dsp-quality-ring { position:relative;width:80px;height:80px; }
.dsp-quality-svg { width:100%;height:100%;transform:rotate(-90deg); }
.dsp-quality-bg { fill:none;stroke:#f0f2f5;stroke-width:3; }
.dsp-quality-fill { fill:none;stroke:#00a651;stroke-width:3;stroke-linecap:round;transition:stroke-dasharray .5s; }
.dsp-quality-num { position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);font-family:var(--font-head);font-size:22px;font-weight:900; }
.dsp-quality-label { font-weight:800;font-size:14px; }
.dsp-quality-note { font-size:12px;color:#9ca3af; }

/* Launch box */
.dsp-launch-box { background:#f7f8fa;border:1px solid #e4e8ed;border-radius:12px;padding:24px; }
.dsp-checkbox-label { display:flex;align-items:center;gap:10px;font-size:13px;cursor:pointer;margin-bottom:20px; }
.dsp-launch-btns { display:flex;gap:12px;justify-content:flex-end; }

/* Buttons */
.dsp-btn { display:inline-flex;align-items:center;gap:6px;padding:12px 24px;border-radius:10px;font-weight:700;font-size:14px;cursor:pointer;border:2px solid transparent;transition:all .15s; }
.dsp-btn-primary { background:#0a0a0a;color:#fff;border-color:#0a0a0a; }
.dsp-btn-primary:hover { background:#222; }
.dsp-btn-ghost { background:transparent;color:#374151;border-color:#e4e8ed; }
.dsp-btn-ghost:hover { background:#f7f8fa; }
.dsp-btn-launch { background:linear-gradient(135deg,#00a651,#007a3d);color:#fff;border-color:transparent;font-size:16px;padding:14px 32px;border-radius:12px; }
.dsp-btn-launch:hover { background:linear-gradient(135deg,#007a3d,#00a651); }
.dsp-btn-launch:disabled { opacity:.6;cursor:not-allowed; }
.dsp-btn-lg { font-size:16px;padding:14px 28px; }

/* Alerts */
.dsp-alert { padding:14px 18px;border-radius:10px;font-size:14px;font-weight:600;margin-bottom:20px; }
.dsp-alert-error { background:#fee2e2;color:#991b1b;border:1px solid #fca5a5; }
.dsp-alert-success { background:#d4edda;color:#155724;border:1px solid #c3e6cb; }

/* ── FOR-BRANDS PAGE ─────────────────────────────────────────────── */

.shp-brands-hero{background:linear-gradient(135deg,#070b14 0%,#0d1829 60%,#070b14 100%);color:#fff;padding:80px 20px;text-align:center;}
.shp-brands-hero-inner{max-width:800px;margin:0 auto;}
.shp-brands-hero h1{font-family:var(--font-head);font-size:clamp(32px,5vw,58px);font-weight:900;letter-spacing:-1px;margin:12px 0 16px;}
.shp-brands-hero p{font-size:18px;color:rgba(255,255,255,.65);max-width:600px;margin:0 auto 28px;line-height:1.6;}
.shp-brands-hero-btns{display:flex;gap:12px;justify-content:center;flex-wrap:wrap;margin-bottom:48px;}
.shp-brands-hero-stats{display:flex;gap:40px;justify-content:center;flex-wrap:wrap;padding-top:32px;border-top:1px solid rgba(255,255,255,.1);}
.shp-bh-stat strong{display:block;font-family:var(--font-head);font-size:30px;font-weight:900;color:#38bdf8;}
.shp-bh-stat span{font-size:13px;color:rgba(255,255,255,.5);}
.shp-formats-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(260px,1fr));gap:20px;}
.shp-format-card{background:#fff;border:1px solid var(--shp-gray3,#e4e8ed);border-radius:14px;padding:24px;transition:box-shadow .2s,transform .2s;}
.shp-format-card:hover{box-shadow:0 8px 32px rgba(0,0,0,.1);transform:translateY(-2px);}
.shp-format-icon{font-size:32px;margin-bottom:12px;}
.shp-format-card h3{font-weight:800;font-size:15px;margin-bottom:6px;}
.shp-format-card p{font-size:13px;color:#6b7280;line-height:1.6;margin-bottom:14px;}
.shp-format-meta{display:flex;gap:8px;flex-wrap:wrap;}
.shp-format-pricing{background:#eff6ff;color:#1d4ed8;font-size:11px;font-weight:700;padding:3px 10px;border-radius:100px;}
.shp-format-placement{background:#f0fdf4;color:#065f46;font-size:11px;font-weight:700;padding:3px 10px;border-radius:100px;}
.shp-brands-how{background:var(--shp-gray1,#f7f8fa);border-top:1px solid var(--shp-gray3,#e4e8ed);}
.shp-plans-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:20px;max-width:900px;margin:0 auto;}
.shp-plan-card{background:#fff;border:1px solid var(--shp-gray3,#e4e8ed);border-radius:16px;padding:28px;position:relative;}
.shp-plan-featured{border-color:#3b82f6;border-width:2px;box-shadow:0 8px 32px rgba(59,130,246,.15);}
.shp-plan-badge{position:absolute;top:-12px;left:50%;transform:translateX(-50%);background:#3b82f6;color:#fff;font-size:11px;font-weight:800;padding:4px 14px;border-radius:100px;white-space:nowrap;}
.shp-plan-name{font-size:13px;font-weight:800;text-transform:uppercase;letter-spacing:.5px;color:#6b7280;margin-bottom:8px;}
.shp-plan-price{font-family:var(--font-head);font-size:40px;font-weight:900;margin-bottom:8px;}
.shp-plan-price span{font-size:16px;font-weight:500;color:#6b7280;}
.shp-plan-desc{font-size:13px;color:#6b7280;margin-bottom:20px;line-height:1.5;}
.shp-plan-features{list-style:none;margin-bottom:24px;display:flex;flex-direction:column;gap:8px;}
.shp-plan-features li{font-size:13px;font-weight:500;color:#374151;}
.shp-brands-bottom-cta{background:linear-gradient(135deg,#00a651,#007a3d);color:#fff;padding:80px 20px;text-align:center;}
.shp-brands-bottom-cta-inner{max-width:600px;margin:0 auto;}
.shp-brands-bottom-cta h2{font-family:var(--font-head);font-size:40px;font-weight:900;margin-bottom:12px;}
.shp-brands-bottom-cta p{font-size:16px;color:rgba(255,255,255,.8);margin-bottom:28px;}

/* ── CRITICAL TEXT VISIBILITY FIXES ───────────────────────────────── */
/* Any section with dark background must have white text */
.shp-cashback-hero { color:#fff; }
.shp-cashback-hero h2,.shp-cashback-hero h3,.shp-cashback-hero p,
.shp-cashback-hero strong,.shp-cashback-hero span { color:inherit; }
.shp-cashback-hero-left h2 { color:#fff !important; }
.shp-cashback-hero-left p { color:rgba(255,255,255,.75) !important; }
.shp-brands-cta { color:#fff; }
.shp-brands-cta h2,.shp-brands-cta h3,.shp-brands-cta p { color:#fff; }
.shp-brands-cta-content h2 { color:#fff !important; }
.shp-rtb-demo * { color:#fff; }
.shp-rtb-advertiser,.shp-rtb-bid { color:#fff !important; }
.shp-hero,.shp-hero * { color:#fff; }
.shp-hero p,.shp-hero-sub { color:rgba(255,255,255,.7) !important; }
.shp-live-bar,.shp-live-bar * { color:#fff; }

/* ── BRAND LOGO CHIPS — clear visible text ─────────────────────────── */
.shp-brand-logo-chip {
  min-width:80px;padding:8px 16px;
  background:#fff;border:1.5px solid #d1d5db;border-radius:10px;
  display:inline-flex;align-items:center;justify-content:center;
  text-decoration:none;transition:all .15s;flex-shrink:0;
}
.shp-brand-logo-chip:hover { border-color:#374151;background:#f9fafb; }
.shp-brand-logo-chip span {
  font-size:13px;font-weight:800;color:#1f2937;
  white-space:nowrap;text-align:center;
}

/* ── CATEGORIES BAR — always visible ──────────────────────────────── */
.shp-cats-bar { background:#fff;border-bottom:2px solid #e5e7eb; }
.shp-cat {
  padding:8px 18px;border-radius:100px;font-size:13px;font-weight:700;
  cursor:pointer;border:1.5px solid #d1d5db;background:#fff;
  color:#374151 !important;white-space:nowrap;transition:all .15s;flex-shrink:0;
}
.shp-cat:hover { background:#f3f4f6;border-color:#9ca3af;color:#111 !important; }
.shp-cat.active { background:#111;color:#fff !important;border-color:#111; }

/* ── PRODUCT CARDS — always readable ─────────────────────────────── */
.shp-product-card { color:#0a0a0a; }
.shp-pc-cat { color:#3b82f6 !important; }
.shp-pc-name,.shp-pc-name a { color:#0a0a0a !important; }
.shp-pc-price { color:#0a0a0a !important; }
.shp-pc-cb { color:#00a651 !important; }

/* ── SECTION LABELS visible in all contexts ─────────────────────────── */
.shp-section-label { color:#3b82f6; }
.shp-brands-cta .shp-section-label { color:#38bdf8; }
.shp-cashback-hero .shp-section-label { color:#4ade80; }

/* ── HOW IT WORKS text ─────────────────────────────────────────────── */
.shp-how-step h3 { color:#0a0a0a; }
.shp-how-step p { color:#6b7280; }

/* ── COMPARE SECTION ─────────────────────────────────────────────── */
.shp-compare-store-row { color:#0a0a0a; }
.shp-csr-name { color:#0a0a0a !important; }
.shp-csr-price { color:#0a0a0a !important; }

/* ── VALUE STRIP ─────────────────────────────────────────────────── */
.shp-value-item { color:#0a0a0a; }
.shp-value-text h3 { color:#0a0a0a; }

/* ── STREAMS & CREATORS ──────────────────────────────────────────── */
.shp-stream-card { color:#0a0a0a; }
.shp-stream-title { color:#374151; }
.shp-stream-creator { color:#0a0a0a; }
.shp-creator-card { color:#0a0a0a; }
.shp-creator-name { color:#0a0a0a; }
.shp-creator-handle { color:#6b7280; }

/* ── HERO PREVIEW CARD ───────────────────────────────────────────── */
.shp-hero-preview-card { color:#fff; }
.shp-hpc-name { color:#fff !important; }
.shp-hpc-store-name { color:rgba(255,255,255,.8) !important; }
.shp-hpc-price { color:#fff !important; }

/* ── SECTION TITLES ─────────────────────────────────────────────── */
.shp-section-title { color:#0a0a0a; }
.shp-brands-cta .shp-section-title { color:#fff !important; }

/* ═══════════════════════════════════════════════════════════════
   PERMANENT DARK SECTION TEXT FIX — prevents any theme override
═══════════════════════════════════════════════════════════════ */
.shp-brands-cta,
.shp-brands-cta *:not(.shp-btn-white-solid):not(.shp-btn-white-solid *) {
  color: #fff !important;
}
.shp-brands-cta .shp-btn-white-solid,
.shp-brands-cta .shp-btn-white-solid * {
  color: #0a0a0a !important;
}
.shp-brands-cta .shp-btn-ghost-white {
  color: #fff !important;
  border-color: rgba(255,255,255,.4) !important;
}
.shp-rtb-demo,
.shp-rtb-demo * {
  color: #fff !important;
}
.shp-cashback-hero,
.shp-cashback-hero *:not(.shp-btn-white-solid):not(.shp-btn-white-solid *) {
  color: #fff !important;
}
.shp-hero,
.shp-hero *:not(.shp-hero-search-inner):not(.shp-hero-search-inner *):not(.shp-search-chip) {
  color: #fff !important;
}
.shp-hero-search-inner input,
.shp-hero-search-inner svg {
  color: rgba(255,255,255,.7) !important;
}
.shp-hero-search-inner button {
  color: #0a0a0a !important;
  background: #fff !important;
}

/* Dark brand CTA section stat numbers */
.shp-bcta-stat strong { color: #38bdf8 !important; }
.shp-bcta-stat span { color: rgba(255,255,255,.6) !important; }

/* Cashback widget text */
.shp-cw-amount { color: #4ade80 !important; }
.shp-cw-sub { color: rgba(255,255,255,.6) !important; }
.shp-cw-store { color: rgba(255,255,255,.7) !important; }
.shp-cw-product { color: rgba(255,255,255,.8) !important; }
.shp-cw-earned { color: #4ade80 !important; }
.shp-cw-footer { color: rgba(255,255,255,.4) !important; }
.shp-cw-header { color: rgba(255,255,255,.5) !important; }

/* Hero preview card */
.shp-hero-preview-card,
.shp-hero-preview-card * { color: #fff !important; }
.shp-hpc-btn { color: #0a0a0a !important; background: #fff !important; }
.shp-hpc-price { color: #fff !important; }
.shp-hpc-best { background: rgba(0,166,81,.15) !important; }

/* Live bar */
.shp-live-bar, .shp-live-bar * { color: #fff !important; }
.shp-live-chip-title { color: #fff !important; }
.shp-live-chip-viewers { color: rgba(255,255,255,.6) !important; }

/* Section labels in dark sections */
.shp-brands-cta .shp-section-label { color: #38bdf8 !important; }
.shp-cashback-hero .shp-section-label { color: #4ade80 !important; }

/* ═══════════════════════════════════════════════════════════════
   GLOBAL TEXT VISIBILITY FIX — Birthday Build 🎂
   Covers every page and every dark section permanently
═══════════════════════════════════════════════════════════════ */

/* Circulars hero - dark bg needs white text */
.shp-circ-hero { color:#fff !important; }
.shp-circ-hero h1,.shp-circ-hero h2,.shp-circ-hero p,.shp-circ-hero * { color:#fff !important; }

/* For-brands DSP strip button text invisible fix */
.fb-dsp-strip .fb-btn-white { color:#0a0a0a !important; background:#fff !important; }
.fb-btn-white { color:#0a0a0a !important; }

/* All hero sections */
[class*="-hero"] h1,[class*="-hero"] h2 { color:#fff !important; }
.shp-hero h1,.shp-hero p,.shp-hero strong { color:#fff !important; }

/* Trending page */
.sa-page-title { color:#0a0a0a; font-family:var(--font-head);font-size:32px;font-weight:900;margin-bottom:24px; }
.sa-page-wrap { max-width:1280px;margin:0 auto;padding:40px 20px; }

/* Creator page */
.sa-creator-hero { background:linear-gradient(135deg,#0a0a0a,#0d1829);color:#fff !important;padding:60px 20px; }
.sa-creator-hero *:not(button):not(.sa-btn) { color:#fff !important; }
.sa-creator-hero-inner { max-width:1100px;margin:0 auto;display:grid;grid-template-columns:280px 1fr;gap:40px;align-items:start; }
@media(max-width:768px){ .sa-creator-hero-inner{grid-template-columns:1fr;} }

/* Livestream page dark overlay text */
.sa-stream-hero,.sa-live-hero { color:#fff !important; }
.sa-stream-hero *,.sa-live-hero * { color:#fff !important; }

/* Deals page */
.sa-deals-hero h1,.sa-deals-hero p { color:#fff !important; }

/* ── BARCODE SCANNER NAV BUTTON ─────────────────────────────────────── */
.sa-nav-scan {
  background:linear-gradient(135deg,#0a0a0a,#1a1a2e) !important;
  color:#fff !important;
  border-radius:100px !important;
  padding:6px 14px !important;
  font-weight:800 !important;
  font-size:13px !important;
  border:1.5px solid rgba(255,255,255,.2) !important;
  transition:all .15s !important;
}
.sa-nav-scan:hover { background:#222 !important; transform:scale(1.03); }

/* ── SCAN PAGE CRITICAL STYLES ───────────────────────────────── */
.scan-hero{background:linear-gradient(135deg,#0a0a0a,#0d1829)!important;color:#fff!important;}
.scan-hero *{color:#fff!important;}
.scan-box{background:#fff!important;color:#0a0a0a!important;}
.scan-tab{color:#9ca3af!important;background:#fff!important;}
.scan-tab.active{color:#0a0a0a!important;}
.scan-panel{background:#fff!important;color:#0a0a0a!important;}
.scan-barcode-input,.scan-manual-input-wrap{color:#0a0a0a!important;background:#fff!important;}

/* ── PRODUCT PAGE TOGGLE STYLES ─────────────────────────────── */
.sa-toggle-section{border:1px solid #e4e8ed;border-radius:14px;overflow:hidden;margin-bottom:20px;}
.sa-toggle-header{width:100%;display:flex;align-items:center;justify-content:space-between;padding:18px 20px;background:#f7f8fa;border:none;cursor:pointer;font-weight:800;font-size:16px;text-align:left;transition:background .15s;color:#0a0a0a;}
.sa-toggle-header:hover{background:#f0f2f5;}
.sa-toggle-icon{font-size:14px;color:#6b7280;}
.sa-toggle-body{padding:0;}

/* ── FLIPP CIRCULARS ─────────────────────────────────────────── */
.flipp-wrap{background:#f0f2f5;}
.flipp-sidebar{background:#fff;color:#0a0a0a;}
.flipp-store-name{color:#0a0a0a!important;}
.flipp-deal-sale{color:#0a0a0a!important;}
.flipp-deal-title{color:#0a0a0a!important;}
.flipp-main-title{color:#0a0a0a!important;}
.flipp-main-sub{color:#6b7280!important;}

/* Vine campaign counter */
@keyframes dsp-pop{0%{transform:scale(0)}60%{transform:scale(1.2)}100%{transform:scale(1)}}

/* ── AD SLOT COMMERCIAL STYLING ───────────────────────────────── */
.shp-hero-ad-wrap { position:relative; }
.shp-hero-ad-wrap .sa-ad-slot { margin:0; }
.shp-hero-ad-wrap .sa-ad-banner { padding:0; max-width:100%; }
.shp-hero-ad-wrap .sa-ad-banner-inner {
  background:rgba(255,255,255,.95) !important;
  border-color:rgba(255,255,255,.3) !important;
  border-radius:14px !important;
  flex-direction:column;
  align-items:flex-start;
  gap:8px;
  padding:14px !important;
  max-width:360px !important;
}
.shp-hero-ad-wrap .sa-ad-banner-inner img {
  width:100% !important;
  height:120px !important;
  border-radius:8px !important;
  object-fit:cover !important;
}
.shp-hero-ad-wrap .sa-ad-banner-body { width:100%; }
.shp-hero-ad-wrap .sa-ad-banner-name { color:#0a0a0a !important;font-size:17px !important;font-weight:900 !important; }
.shp-hero-ad-wrap .sa-ad-banner-price { color:#00a651 !important;font-size:14px !important;font-weight:700 !important; }
.shp-hero-ad-wrap .sa-ad-banner-brand { color:#3b82f6 !important;font-size:12px !important; }
.shp-hero-ad-wrap .sa-ad-banner-cta {
  width:100%;text-align:center;background:#0a0a0a !important;
  color:#fff !important;border-radius:10px !important;
  padding:12px !important;font-weight:800 !important;font-size:15px !important;
}
.shp-hero-ad-wrap .sa-ad-label {
  position:absolute;top:-10px;left:12px;
  background:rgba(0,0,0,.7);color:#fff;
  font-size:10px;font-weight:800;padding:3px 10px;
  border-radius:100px;letter-spacing:.5px;z-index:1;
}

/* ── BRANDS STRIP — explicit override ─────────────────────────── */
.shp-brands-logos .shp-brand-logo-chip {
  background:#fff !important;
  border:1.5px solid #d1d5db !important;
  border-radius:100px !important;
  padding:8px 18px !important;
  display:inline-flex !important;
  align-items:center !important;
  text-decoration:none !important;
  min-width:90px !important;
  justify-content:center !important;
}
.shp-brands-logos .shp-brand-logo-chip span {
  color:#1f2937 !important;
  font-size:13px !important;
  font-weight:800 !important;
  white-space:nowrap !important;
}
.shp-brands-logos .shp-brand-logo-chip:hover {
  border-color:#374151 !important;
  box-shadow:0 2px 8px rgba(0,0,0,.1) !important;
}

/* ── SCAN WRAP ────────────────────────────────────────── */
.scan-wrap{max-width:900px;margin:0 auto;padding:32px 20px;}

/* ── ONBOARDING PAGE FORCE WHITE TEXT ─────────────────── */
.ob-hero,.ob-hero *,.ob-proof,.ob-proof *,.ob-bottom,.ob-bottom * {
  color:#fff !important;
}
.ob-btn-white,.ob-btn-white *,.ob-plan-btn-ghost,.ob-plan-btn-ghost * {
  color:#0a0a0a !important;
}
.ob-format-card h3,.ob-format-card p,.ob-plan,.ob-plan h3,.ob-plan p,
.ob-step h3,.ob-step p { color:#0a0a0a !important; }

/* ── AD BANNER EXPLICIT COLOR FIX ─────────────────────────── */
.sa-ad-banner,.sa-ad-banner *,
.sa-ad-native,.sa-ad-native *,
.sa-ad-card,.sa-ad-card * {
  color: #0a0a0a !important;
}
.sa-ad-banner-name { color:#0a0a0a !important; font-weight:900 !important; font-size:15px !important; }
.sa-ad-banner-price { color:#00a651 !important; font-weight:700 !important; }
.sa-ad-banner-brand { color:#3b82f6 !important; font-size:12px !important; }
.sa-ad-banner-cta { 
  background:#0a0a0a !important; color:#fff !important; 
  padding:10px 16px !important; border-radius:8px !important; 
  font-weight:800 !important; font-size:14px !important;
  display:block !important; text-align:center !important;
  margin-top:10px !important;
}
.sa-ad-label { 
  background:rgba(0,0,0,.6) !important; color:#fff !important; 
  font-size:10px !important; font-weight:800 !important;
  padding:3px 10px !important; border-radius:100px !important;
  display:inline-flex !important;
}
/* Override hero dark section bleeding into ad */
.shp-hero .sa-ad-banner,
.shp-hero .sa-ad-banner *:not(.sa-ad-banner-cta):not(.sa-ad-label) {
  color:#0a0a0a !important;
}
.shp-hero .sa-ad-banner-cta { color:#fff !important; }

/* ── BRAND DIRECTORY CARD TEXT FIX ───────────────────────── */
.sa-brand-dir-card { background:#fff !important; color:#0a0a0a !important; }
.sa-brand-dir-card h3,
.sa-brand-dir-card div[style*="font-weight:900"],
.sa-brand-dir-name { color:#0a0a0a !important; }
.sa-brand-dir-desc { color:#6b7280 !important; }
.sa-brand-dir-meta span { color:#374151 !important; }
/* The Browse All Brands dark header */
.sa-brand-dir-wrap > h2,
.sa-brand-dir-header h2 { color:#0a0a0a !important; }

/* ── MISSING CSS CLASSES — LAUNCH FIX ──────────────────────────── */
/* Livestreams */
.ls-wrap{max-width:1280px;margin:0 auto;padding:48px 20px;}

/* Rewards */
.rw-wrap{max-width:1280px;margin:0 auto;padding:0 0 60px;}

/* Scanner results */
.sc-wrap{font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;}

/* For brands */
.fb-wrap{font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;color:#0a0a0a;}

/* Onboarding */
.ob-wrap{font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;color:#0a0a0a;}

/* Campaign Manager (standalone page) */
.cm-wrap { font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif; }
