/* ═══════════════════════════════════════════════
   ProductMeta — Global Stylesheet
   Version: 1.0 | Updated: June 2026
   ═══════════════════════════════════════════════ */

/* ── RESET & ROOT ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red: #e62e04;
  --red-dark: #c0250f;
  --red-light: #fff1f0;
  --red-border: #fca5a5;
  --orange: #ff6a00;
  --green: #16a34a;
  --green-bg: #f0fdf4;
  --purple: #7c3aed;
  --purple-bg: #faf5ff;
  --purple-border: #c4b5fd;
  --amber: #d97706;
  --amber-bg: #fffbeb;
  --muted: #6b7280;
  --border: #e5e7eb;
  --bg: #f3f4f6;
  --white: #ffffff;
  --text: #111827;
  --text-2: #374151;
  --radius: 13px;
  --shadow: 0 2px 12px rgba(0,0,0,0.07);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.13);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--bg); color: var(--text); font-size: 15px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ── HEADER ── */
.site-header { background: var(--white); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 300; box-shadow: 0 1px 8px rgba(0,0,0,0.06); }
.header-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; height: 60px; display: flex; align-items: center; gap: 14px; }
.logo { display: flex; align-items: center; gap: 9px; text-decoration: none; color: var(--text); flex-shrink: 0; }
.logo-icon { width: 34px; height: 34px; background: var(--red); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 900; color: #fff; flex-shrink: 0; }
.logo-text { font-size: 16px; font-weight: 800; }
.logo-text em { color: var(--red); font-style: normal; }
.site-nav { display: flex; gap: 2px; list-style: none; margin-left: auto; }
.site-nav a { text-decoration: none; color: var(--muted); font-size: 13px; font-weight: 500; padding: 6px 11px; border-radius: 7px; transition: all .15s; white-space: nowrap; }
.site-nav a:hover, .site-nav a.active { color: var(--red); background: var(--red-light); font-weight: 600; }
.nav-badge { background: var(--red); color: #fff; font-size: 9px; font-weight: 800; padding: 1px 5px; border-radius: 8px; margin-left: 3px; vertical-align: middle; }
.header-cta { background: var(--red); color: #fff; padding: 8px 16px; border-radius: 8px; font-size: 13px; font-weight: 700; text-decoration: none; white-space: nowrap; flex-shrink: 0; transition: background .15s; display: flex; align-items: center; gap: 6px; }
.header-cta:hover { background: var(--red-dark); }






/* ── BREADCRUMB ── */
.breadcrumb { max-width: 1200px; margin: 0 auto; padding: 13px 20px; font-size: 12.5px; color: var(--muted); display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.breadcrumb a { color: var(--muted); text-decoration: none; transition: color .15s; }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb span { color: var(--text); font-weight: 600; }
.breadcrumb .sep { opacity: .4; }

/* ── HERO BASE ── */
.hero { padding: 52px 20px 44px; text-align: center; position: relative; overflow: hidden; color: #fff; }
.hero-inner { position: relative; max-width: 760px; margin: 0 auto; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.13); border: 1px solid rgba(255,255,255,0.22); padding: 5px 16px; border-radius: 20px; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 18px; }
.hero h1 { font-size: clamp(24px, 5vw, 46px); font-weight: 900; line-height: 1.12; margin-bottom: 14px; letter-spacing: -.5px; }
.hero h1 span { color: #ffe08a; }
.hero-sub { font-size: 15px; opacity: .88; margin-bottom: 24px; line-height: 1.65; max-width: 620px; margin-left: auto; margin-right: auto; }
.hero-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-bottom: 20px; }
.hero-badge { background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.28); padding: 6px 14px; border-radius: 20px; font-size: 12px; font-weight: 600; }
.live-pill { display: inline-flex; align-items: center; gap: 7px; background: rgba(0,0,0,0.22); border: 1px solid rgba(255,255,255,0.15); padding: 6px 16px; border-radius: 20px; font-size: 12px; }
.live-dot { width: 7px; height: 7px; background: #4ade80; border-radius: 50%; flex-shrink: 0; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.4)} }
.hero-btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 24px; }
.btn-white { background: #fff; color: var(--red); padding: 13px 26px; border-radius: 10px; font-size: 14px; font-weight: 800; text-decoration: none; transition: all .15s; display: inline-flex; align-items: center; gap: 8px; }
.btn-white:hover { background: #ffe4e1; transform: translateY(-2px); }
.btn-ghost { background: rgba(255,255,255,.13); border: 2px solid rgba(255,255,255,.38); color: #fff; padding: 12px 24px; border-radius: 10px; font-size: 14px; font-weight: 700; text-decoration: none; transition: all .15s; display: inline-flex; align-items: center; gap: 8px; }
.btn-ghost:hover { background: rgba(255,255,255,.22); }

/* ── HERO VARIANTS ── */
.hero-coupon { background: linear-gradient(135deg, #1a0400 0%, #7c1702 35%, #e62e04 68%, #ff6a00 100%); }
.hero-coupon::before { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(45deg, rgba(255,255,255,.02) 0, rgba(255,255,255,.02) 1px, transparent 0, transparent 50%); background-size: 20px 20px; }
.hero-products { background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 35%, #4c1d95 65%, #7c3aed 85%, #a855f7 100%); }
.hero-products::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,.03) 1px, transparent 1px), radial-gradient(circle at 80% 20%, rgba(255,255,255,.03) 1px, transparent 1px); background-size: 40px 40px; }
.hero-deals { background: linear-gradient(135deg, #0c1a06 0%, #14532d 35%, #16a34a 68%, #4ade80 100%); }
.hero-deals::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23fff' fill-opacity='0.03'%3E%3Cpath d='M20 0L0 20L20 40L40 20z'/%3E%3C/g%3E%3C/svg%3E"); }
.hero-home { background: linear-gradient(135deg, #1a0400 0%, #6b1300 30%, #e62e04 60%, #ff8c00 100%); }
.hero-home::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(ellipse at top, rgba(255,255,255,.05) 0%, transparent 60%); }

/* ── STICKY COUNTRY NAV ── */
.country-nav { background: var(--white); border-bottom: 1px solid var(--border); position: sticky; top: 60px; z-index: 200; box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
.country-nav-inner { max-width: 1200px; margin: 0 auto; padding: 10px 20px; display: flex; gap: 6px; overflow-x: auto; scrollbar-width: none; align-items: center; }
.country-nav-inner::-webkit-scrollbar { display: none; }
.country-btn { display: flex; align-items: center; gap: 5px; padding: 6px 14px; border-radius: 20px; border: 1.5px solid var(--border); background: var(--white); font-size: 12.5px; font-weight: 500; cursor: pointer; white-space: nowrap; transition: all .15s; flex-shrink: 0; text-decoration: none; color: var(--text); }
.country-btn:hover { border-color: var(--red); color: var(--red); background: var(--red-light); }
.country-btn.active { background: var(--red); color: #fff; border-color: var(--red); }
.country-btn .flag { font-size: 15px; }

/* ── CATEGORY NAV ── */
.cat-nav { background: var(--white); border-bottom: 1px solid var(--border); position: sticky; top: 60px; z-index: 200; box-shadow: 0 2px 6px rgba(0,0,0,0.04); }
.cat-inner { max-width: 1200px; margin: 0 auto; padding: 10px 20px; display: flex; align-items: center; gap: 6px; overflow-x: auto; scrollbar-width: none; }
.cat-inner::-webkit-scrollbar { display: none; }
.cat-btn { display: flex; align-items: center; gap: 5px; padding: 7px 14px; border-radius: 20px; border: 1.5px solid var(--border); background: var(--white); font-size: 12.5px; font-weight: 500; cursor: pointer; white-space: nowrap; transition: all .15s; flex-shrink: 0; color: var(--text); }
.cat-btn:hover { border-color: var(--purple); color: var(--purple); background: var(--purple-bg); }
.cat-btn.active { background: var(--purple); color: #fff; border-color: var(--purple); }
.cat-count { background: rgba(0,0,0,0.08); color: var(--muted); font-size: 10px; font-weight: 700; padding: 1px 6px; border-radius: 10px; margin-left: 2px; }
.cat-btn.active .cat-count { background: rgba(255,255,255,0.25); color: #fff; }

/* ── MAIN CONTAINER ── */
.main { max-width: 1200px; margin: 0 auto; padding: 24px 20px 64px; }

/* ── INFO BARS ── */
.alert-bar { background: var(--amber-bg); border: 1px solid #fde68a; border-left: 4px solid var(--amber); border-radius: 10px; padding: 11px 16px; font-size: 13px; color: #78350f; display: flex; align-items: center; gap: 10px; margin-bottom: 20px; flex-wrap: wrap; }
.alert-bar strong { color: #92400e; }
.info-note { background: var(--red-light); border: 1px solid var(--red-border); border-left: 4px solid var(--red); border-radius: 10px; padding: 12px 16px; margin-bottom: 20px; font-size: 13px; color: #7f1d1d; display: flex; align-items: flex-start; gap: 10px; }
.info-note a { color: var(--red); font-weight: 700; text-decoration: none; }
.coupon-tip { background: var(--purple-bg); border: 1px solid var(--purple-border); border-left: 4px solid var(--purple); border-radius: 10px; padding: 12px 16px; margin-bottom: 20px; font-size: 13px; color: #4c1d95; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.coupon-tip a { color: var(--purple); font-weight: 700; text-decoration: none; }

/* ── STATS ROW ── */
.stats-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-bottom: 22px; }
.stat-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 16px; text-align: center; box-shadow: var(--shadow); }
.stat-card .num { font-size: 26px; font-weight: 900; color: var(--red); line-height: 1; }
.stat-card .lbl { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; margin-top: 4px; font-weight: 600; }

/* ── HOWTO STRIP ── */
.howto-strip { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-bottom: 22px; }
.howto-step { background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 16px 12px; text-align: center; }
.howto-num { width: 30px; height: 30px; background: var(--red); color: #fff; border-radius: 50%; font-size: 13px; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 10px; }
.howto-step strong { display: block; font-size: 13px; color: var(--text); margin-bottom: 4px; }
.howto-step p { font-size: 12px; color: var(--muted); line-height: 1.55; }

/* ── COUPON REGION ── */
.region { margin-bottom: 28px; scroll-margin-top: 130px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border); }
.region-head { background: var(--white); border-bottom: 3px solid var(--red); padding: 16px 20px; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.region-flag { font-size: 28px; line-height: 1; }
.region-title { flex: 1; min-width: 120px; }
.region-name { font-size: 17px; font-weight: 800; }
.region-meta { font-size: 11.5px; color: var(--muted); margin-top: 2px; }
.region-badge { background: var(--red-light); color: var(--red); border: 1px solid var(--red-border); padding: 5px 12px; border-radius: 20px; font-size: 12px; font-weight: 700; white-space: nowrap; }
.region-link { font-size: 12px; color: var(--red); text-decoration: none; font-weight: 700; white-space: nowrap; display: flex; align-items: center; gap: 4px; }
.region-link:hover { text-decoration: underline; }
.coupon-grid { background: #fafafa; padding: 18px 20px; display: grid; grid-template-columns: repeat(auto-fill, minmax(162px,1fr)); gap: 11px; }
.coupon-card { background: var(--white); border: 2px dashed var(--red-border); border-radius: 12px; padding: 15px 11px; text-align: center; cursor: pointer; transition: all .18s; user-select: none; }
.coupon-card:hover { border-color: var(--red); border-style: solid; background: var(--red-light); transform: translateY(-3px); box-shadow: 0 6px 20px rgba(230,46,4,.14); }
.coupon-card.copied { border-color: var(--green); border-style: solid; background: var(--green-bg); }
.coupon-save { font-size: 22px; font-weight: 900; color: var(--red); line-height: 1; }
.coupon-off { font-size: 10px; color: var(--muted); margin-bottom: 5px; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.coupon-spend { font-size: 12px; color: var(--muted); margin-bottom: 9px; }
.coupon-code { background: #fff1f0; border: 1px solid var(--red-border); border-radius: 7px; padding: 7px 9px; font-family: 'Courier New', monospace; font-size: 12.5px; font-weight: 900; color: var(--red); letter-spacing: .04em; }
.coupon-valid { font-size: 10px; color: var(--muted); margin-top: 4px; }
.coupon-hint { font-size: 10px; color: var(--muted); margin-top: 6px; font-weight: 600; }
.coupon-card.copied .coupon-hint { color: var(--green); }
.coupon-card.copied .coupon-code { background: #dcfce7; border-color: #86efac; color: var(--green); }
.coupon-card.copied .coupon-save { color: var(--green); }
.new-user-section { background: #fdfaff; border-top: 1px dashed var(--border); padding: 14px 20px; }
.new-user-label { font-size: 11px; font-weight: 800; color: var(--purple); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 11px; display: flex; align-items: center; gap: 6px; }
.new-user-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px,1fr)); gap: 9px; }
.new-user-section .coupon-card { border-color: #c084fc; background: #faf5ff; }
.new-user-section .coupon-card:hover { border-color: var(--purple); background: #ede9fe; }
.new-user-section .coupon-save { color: var(--purple); }
.new-user-section .coupon-code { background: #f3e8ff; border-color: #c084fc; color: var(--purple); }
.new-user-section .coupon-card.copied .coupon-save { color: var(--green); }
.new-user-section .coupon-card.copied .coupon-code { background: #dcfce7; border-color: #86efac; color: var(--green); }
.store-btn { display: flex; align-items: center; justify-content: center; gap: 8px; background: var(--red); color: #fff; border-radius: 10px; padding: 13px 20px; font-size: 14px; font-weight: 700; text-decoration: none; transition: background .15s; margin: 14px 20px 18px; }
.store-btn:hover { background: var(--red-dark); }

/* ── PRODUCT CARDS ── */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px,1fr)); gap: 16px; margin-bottom: 8px; }
.product-card { background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; box-shadow: var(--shadow); transition: all .22s; display: flex; flex-direction: column; }
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--purple-border); }
.p-img-wrap { position: relative; aspect-ratio: 1/1; overflow: hidden; background: #f9f9f9; flex-shrink: 0; }
.p-img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.product-card:hover .p-img { transform: scale(1.06); }
.disc-badge { position: absolute; top: 8px; left: 8px; background: var(--red); color: #fff; font-size: 11px; font-weight: 900; padding: 3px 8px; border-radius: 6px; box-shadow: 0 2px 6px rgba(230,46,4,.3); }
.hot-badge { position: absolute; top: 8px; right: 8px; background: #f59e0b; color: #fff; font-size: 9px; font-weight: 800; padding: 2px 7px; border-radius: 12px; }
.deal-badge { position: absolute; top: 8px; right: 8px; background: var(--red); color: #fff; font-size: 9px; font-weight: 800; padding: 2px 7px; border-radius: 12px; }
.new-badge { position: absolute; top: 8px; right: 8px; background: var(--green); color: #fff; font-size: 9px; font-weight: 800; padding: 2px 7px; border-radius: 12px; }
.p-body { padding: 12px; flex: 1; display: flex; flex-direction: column; }
.p-cat-tag { font-size: 10px; font-weight: 700; color: var(--purple); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 6px; }
.p-title { font-size: 12.5px; font-weight: 700; line-height: 1.4; margin-bottom: 8px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; color: var(--text); }
.p-meta { display: flex; align-items: center; gap: 6px; margin-bottom: 8px; flex-wrap: wrap; }
.stars { color: #f59e0b; font-size: 11px; letter-spacing: -1px; }
.p-fb { font-size: 11px; color: var(--muted); }
.sales-tag { font-size: 10px; color: var(--green); font-weight: 700; background: var(--green-bg); padding: 1px 6px; border-radius: 8px; }
.price-row { display: flex; align-items: baseline; gap: 6px; margin-bottom: 10px; flex-wrap: wrap; }
.price-now { font-size: 18px; font-weight: 900; color: var(--red); }
.price-was { font-size: 12px; color: var(--muted); text-decoration: line-through; }
.price-save { font-size: 10px; color: var(--green); font-weight: 700; }
.cta-btn { display: flex; align-items: center; justify-content: center; gap: 6px; background: var(--red); color: #fff; border-radius: 9px; padding: 10px 14px; font-size: 13px; font-weight: 800; text-decoration: none; transition: background .15s; margin-top: auto; }
.cta-btn:hover { background: var(--red-dark); }
.aff-note { font-size: 9px; color: var(--muted); text-align: center; margin-top: 5px; }
.section-title { font-size: 16px; font-weight: 800; margin: 24px 0 14px; display: flex; align-items: center; gap: 8px; padding-bottom: 10px; border-bottom: 2px solid var(--border); }
.section-title::before { content: ''; display: block; width: 4px; height: 20px; background: var(--purple); border-radius: 2px; }
.no-results { grid-column: 1/-1; text-align: center; padding: 40px 20px; color: var(--muted); font-size: 15px; }
.results-bar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; flex-wrap: wrap; gap: 8px; }
.results-text { font-size: 13px; color: var(--muted); }
.results-text strong { color: var(--text); }
.search-wrap { display: flex; align-items: center; gap: 6px; background: var(--white); border: 1.5px solid var(--border); border-radius: 8px; padding: 6px 12px; }
.search-wrap input { border: none; outline: none; font-family: inherit; font-size: 13px; width: 160px; background: transparent; color: var(--text); }

/* ── SEO CONTENT BLOCK ── */
.seo-block { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 32px; margin-top: 36px; }
.seo-block h2 { font-size: 20px; font-weight: 800; margin-bottom: 12px; color: var(--text); }
.seo-block h3 { font-size: 15px; font-weight: 700; margin: 18px 0 8px; color: var(--text); }
.seo-block p { font-size: 14px; color: var(--text-2); line-height: 1.75; margin-bottom: 10px; }
.seo-block ul, .seo-block ol { padding-left: 20px; margin-bottom: 10px; }
.seo-block li { font-size: 14px; color: var(--text-2); line-height: 1.7; margin-bottom: 5px; }
.seo-block a { color: var(--red); text-decoration: none; }
.seo-block a:hover { text-decoration: underline; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { font-size: 14px; font-weight: 700; color: var(--text); cursor: pointer; padding: 14px 0; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.faq-q::after { content: '+'; font-size: 20px; color: var(--red); font-weight: 300; flex-shrink: 0; }
.faq-item.open .faq-q::after { content: '−'; }
.faq-a { font-size: 14px; color: var(--text-2); line-height: 1.75; padding-bottom: 14px; display: none; }
.faq-item.open .faq-a { display: block; }

/* ── MODAL ── */
.modal-overlay { display: none; position: fixed; inset: 0; z-index: 500; background: rgba(0,0,0,0.52); backdrop-filter: blur(3px); }
.modal-overlay.open { display: flex; align-items: flex-start; justify-content: center; padding: 20px; overflow-y: auto; animation: fadeIn .2s ease; }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }
.modal-box { background: var(--white); border-radius: 16px; max-width: 740px; width: 100%; margin: auto; box-shadow: var(--shadow-lg); animation: slideUp .25s ease; }
@keyframes slideUp { from{transform:translateY(30px);opacity:0} to{transform:none;opacity:1} }
.modal-hdr { padding: 22px 26px 18px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.modal-hdr h2 { font-size: 20px; font-weight: 800; }
.modal-close { background: #f3f4f6; border: none; border-radius: 50%; width: 32px; height: 32px; font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--muted); transition: background .15s; }
.modal-close:hover { background: var(--border); }
.modal-body { padding: 22px 26px; }
.modal-body h3 { font-size: 14px; font-weight: 700; margin: 16px 0 7px; }
.modal-body h3:first-child { margin-top: 0; }
.modal-body p, .modal-body li { font-size: 14px; color: var(--text-2); line-height: 1.75; margin-bottom: 8px; }
.modal-body ul { padding-left: 18px; }
.modal-body a { color: var(--red); text-decoration: none; }
.form-label { font-size: 13px; font-weight: 600; display: block; margin-bottom: 5px; color: var(--text); }
.form-input { width: 100%; padding: 10px 14px; border: 1.5px solid var(--border); border-radius: 8px; font-size: 14px; font-family: inherit; outline: none; transition: border-color .15s; margin-bottom: 13px; color: var(--text); }
.form-input:focus { border-color: var(--red); }
.form-btn { background: var(--red); color: #fff; padding: 11px 24px; border: none; border-radius: 8px; font-size: 14px; font-weight: 700; cursor: pointer; font-family: inherit; transition: background .15s; }
.form-btn:hover { background: var(--red-dark); }

/* ── FOOTER ── */
.site-footer { background: #111827; color: #d1d5db; padding: 48px 20px 0; margin-top: 56px; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid #374151; }
.footer-brand p { font-size: 13px; line-height: 1.7; margin-top: 10px; color: #9ca3af; }
.site-footer h4 { font-size: 12px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: .07em; margin-bottom: 14px; }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 8px; }
.site-footer a { color: #9ca3af; text-decoration: none; font-size: 13px; transition: color .15s; }
.site-footer a:hover { color: #fff; }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding: 16px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; font-size: 12px; color: #6b7280; }
.aff-badge { background: #1f2937; border: 1px solid #374151; border-radius: 6px; padding: 4px 10px; font-size: 11px; color: #9ca3af; }

/* ── UTILITIES ── */
.back-top { position: fixed; bottom: 24px; right: 24px; z-index: 150; background: var(--red); color: #fff; border: none; border-radius: 50%; width: 44px; height: 44px; font-size: 18px; cursor: pointer; box-shadow: 0 4px 16px rgba(230,46,4,.35); transition: all .2s; display: none; align-items: center; justify-content: center; }
.back-top.visible { display: flex; }
.back-top:hover { transform: translateY(-3px); background: var(--red-dark); }
.toast { position: fixed; bottom: 80px; left: 50%; transform: translateX(-50%) translateY(20px); background: #111; color: #fff; padding: 10px 20px; border-radius: 30px; font-size: 13px; font-weight: 600; opacity: 0; transition: all .3s; z-index: 400; pointer-events: none; white-space: nowrap; }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: repeat(2,1fr); }
  .howto-strip { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 640px) {
  .site-nav, .header-cta { display: none; }
  
  .coupon-grid { grid-template-columns: repeat(2,1fr); padding: 12px; gap: 8px; }
  .new-user-grid { grid-template-columns: repeat(2,1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .stats-row { grid-template-columns: repeat(2,1fr); }
  .howto-strip { grid-template-columns: repeat(2,1fr); }
  .seo-block { padding: 20px 18px; }
  .region-badge { display: none; }
  .modal-hdr, .modal-body { padding: 16px 18px; }
  .store-btn { margin: 12px 14px 16px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero { padding: 36px 16px 30px; }
  .product-grid { grid-template-columns: repeat(2,1fr); gap: 10px; }
  .p-body { padding: 10px; }
  .price-now { font-size: 15px; }
  .search-wrap input { width: 100px; }
}
@media (max-width: 380px) {
  .coupon-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
}


/* ═══ MOBILE POPUP MENU ═══ */
.mob-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 400;
  animation: fadeOverlay .2s ease;
}
.mob-overlay.open { display: block; }
@keyframes fadeOverlay { from{opacity:0} to{opacity:1} }

.mob-drawer {
  position: fixed;
  top: 0; right: 0;
  height: 100%;
  width: min(320px, 85vw);
  background: #111827;
  z-index: 401;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .28s cubic-bezier(0.32, 0, 0.15, 1);
  box-shadow: -8px 0 40px rgba(0,0,0,0.4);
  overflow-y: auto;
}
.mob-drawer.open { transform: translateX(0); }

.mob-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid #1f2937;
  flex-shrink: 0;
}
.mob-drawer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.mob-drawer-logo span {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
}
.mob-drawer-logo em { color: #4ade80; font-style: normal; }
.mob-close-btn {
  background: #1f2937;
  border: none;
  color: #9ca3af;
  width: 34px; height: 34px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
  flex-shrink: 0;
}
.mob-close-btn:hover { background: #374151; color: #fff; }

.mob-nav-list {
  flex: 1;
  padding: 12px 0;
  list-style: none;
}
.mob-nav-list li { padding: 0 12px; }
.mob-nav-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  border-radius: 10px;
  text-decoration: none;
  color: #d1d5db;
  font-size: 14px;
  font-weight: 500;
  transition: all .15s;
  margin-bottom: 2px;
}
.mob-nav-list a:hover,
.mob-nav-list a.mob-active {
  background: #1f2937;
  color: #fff;
}
.mob-nav-list a.mob-active { color: #4ade80; }
.mob-nav-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}
.mn-home .mob-nav-icon { background: #1e3a5f; }
.mn-coupon .mob-nav-icon { background: #7f1d1d; }
.mn-products .mob-nav-icon { background: #3b1d8c; }
.mn-deals .mob-nav-icon { background: #14532d; }
.mn-about .mob-nav-icon { background: #1c1917; }
.mn-privacy .mob-nav-icon { background: #1c1917; }
.mn-disclaimer .mob-nav-icon { background: #1c1917; }
.mn-contact .mob-nav-icon { background: #1c1917; }
.mn-shop .mob-nav-icon { background: #7f1d1d; }

.mob-nav-divider {
  height: 1px;
  background: #1f2937;
  margin: 8px 24px;
}
.mob-nav-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #4b5563;
  padding: 10px 26px 4px;
}

.mob-drawer-footer {
  padding: 16px 20px;
  border-top: 1px solid #1f2937;
  flex-shrink: 0;
}
.mob-shop-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #e62e04;
  color: #fff;
  padding: 13px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: background .15s;
  margin-bottom: 10px;
}
.mob-shop-btn:hover { background: #c0250f; }
.mob-drawer-footer p {
  font-size: 11px;
  color: #4b5563;
  text-align: center;
}

/* Hide old mobile-nav */
.mobile-nav { display: none !important; }

/* Hamburger animation */
.menu-toggle { 
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background .15s;
}
.menu-toggle:hover { background: var(--red-light); }
.menu-toggle .bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .25s ease;
}
.menu-toggle.open .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open .bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.open .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .site-nav, .header-cta { display: none !important; }
  .menu-toggle { display: flex !important; }
}

/* ── PERFORMANCE OPTIMIZATIONS ── */
/* Reduce LCP: preload hints handled in HTML */
.hero { contain: layout style; }
.mob-drawer { will-change: transform; }
.product-card { contain: layout; }

/* Reduce CLS: explicit dimensions */
.logo-icon img { width: 26px; height: 26px; aspect-ratio: 1; }
.mob-logo-img { width: 32px; height: 32px; aspect-ratio: 1; }
.p-img { aspect-ratio: 1 / 1; }

/* Font display */
@font-face { font-display: swap; }
