/* ============================================================
   DealDrop — daily deals & coupons marketplace
   Design system: electric violet + hot-coral discounts,
   coupon-ticket cards, search-led marketplace UX.
   (Intentionally NOT a landing-page skeleton.)
   ============================================================ */

:root {
  --bg:        oklch(98% 0.006 300);
  --surface:   #ffffff;
  --surface-2: oklch(96.4% 0.011 300);
  --fg:        oklch(23% 0.045 295);
  --muted:     oklch(49% 0.03 295);
  --border:    oklch(91% 0.013 300);

  /* Brand — electric violet */
  --brand:      oklch(52% 0.23 295);
  --brand-deep: oklch(44% 0.22 296);
  --brand-soft: oklch(95.5% 0.035 300);
  --brand-ring: oklch(52% 0.23 295 / 0.30);

  /* Deal red — discounts, prices, "save" energy */
  --deal:      oklch(62% 0.23 18);
  --deal-deep: oklch(55% 0.22 20);
  --deal-soft: oklch(96% 0.035 24);

  /* Support accents */
  --mint: oklch(72% 0.14 178);
  --gold: oklch(80% 0.16 78);

  /* Deep plum ink panels */
  --ink:        oklch(25% 0.075 296);
  --ink-2:      oklch(19% 0.06 296);
  --on-ink:     oklch(96% 0.02 300);
  --on-ink-dim: oklch(74% 0.04 300);
  --ink-border: oklch(100% 0 0 / 0.12);

  --font-display: 'Bricolage Grotesque', 'Segoe UI', system-ui, sans-serif;
  --font-body:    'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

  --maxw: 1200px;
  --r:    18px;
  --r-sm: 11px;
  --r-lg: 26px;
  --sh-sm: 0 1px 2px oklch(30% 0.05 295 / 0.06), 0 2px 5px oklch(30% 0.05 295 / 0.05);
  --sh:    0 8px 24px oklch(30% 0.06 295 / 0.10), 0 3px 8px oklch(30% 0.05 295 / 0.06);
  --sh-lg: 0 30px 60px oklch(30% 0.08 295 / 0.16), 0 10px 22px oklch(30% 0.06 295 / 0.08);
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg); color: var(--fg);
  line-height: 1.6; font-size: 16px;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 20px; }
.section { padding-block: clamp(46px, 6vw, 80px); }
.section--tight { padding-block: clamp(34px, 4vw, 52px); }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.04; letter-spacing: -0.02em; color: var(--fg); text-wrap: balance; }
h1 { font-size: clamp(2.3rem, 5vw, 3.7rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 1.7vw, 1.3rem); }
p { text-wrap: pretty; }
.lead { font-size: clamp(1.04rem, 1.5vw, 1.2rem); color: var(--muted); }

.kicker { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-body); font-weight: 800; font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--deal); }
.kicker svg { width: 15px; height: 15px; }

/* Marketplace row header — title left, "see all" right (NOT centered eyebrow) */
.row-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 18px; margin-bottom: 26px; flex-wrap: wrap; }
.row-head .rh-l h2 { margin-top: 6px; }
.row-head .see-all { font-weight: 800; color: var(--brand); display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }
.row-head .see-all:hover { color: var(--brand-deep); gap: 9px; }
.row-head .see-all svg { width: 17px; height: 17px; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-family: var(--font-body); font-weight: 800; font-size: 0.95rem; padding: 12px 22px; border-radius: 12px; border: 2px solid transparent; transition: transform .14s, box-shadow .2s, background .18s, color .18s, border-color .18s; white-space: nowrap; }
.btn svg { width: 18px; height: 18px; }
.btn-brand { background: var(--brand); color: #fff; box-shadow: 0 4px 14px var(--brand-ring); }
.btn-brand:hover { background: var(--brand-deep); transform: translateY(-2px); box-shadow: 0 10px 24px var(--brand-ring); }
.btn-deal { background: var(--deal); color: #fff; box-shadow: 0 4px 14px oklch(62% 0.23 18 / 0.32); }
.btn-deal:hover { background: var(--deal-deep); transform: translateY(-2px); }
.btn-ghost { background: var(--surface); color: var(--fg); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--brand); color: var(--brand); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--ink-2); transform: translateY(-2px); }
.btn-lg { padding: 15px 28px; font-size: 1.02rem; }
.btn-block { width: 100%; }
:where(a,button,input,textarea,select):focus-visible { outline: 3px solid var(--brand-ring); outline-offset: 2px; border-radius: 8px; }

/* ---------- Search ---------- */
.search { display: flex; align-items: stretch; background: var(--surface); border: 2px solid var(--border); border-radius: 14px; overflow: hidden; transition: border-color .15s, box-shadow .15s; }
.search:focus-within { border-color: var(--brand); box-shadow: 0 0 0 4px var(--brand-ring); }
.search .ico { display: grid; place-items: center; padding-left: 14px; color: var(--muted); }
.search .ico svg { width: 19px; height: 19px; }
.search input { flex: 1; border: none; outline: none; background: transparent; padding: 13px 12px; font: inherit; color: var(--fg); min-width: 0; }
.search button { border: none; background: var(--brand); color: #fff; font-weight: 800; padding: 0 22px; }
.search button:hover { background: var(--brand-deep); }

/* ============================================================
   HEADER — two-tier: utility strip + search bar + category nav
   ============================================================ */
.site-header { position: sticky; top: 0; z-index: 70; background: var(--surface); box-shadow: var(--sh-sm); }
.topbar { background: var(--ink); color: var(--on-ink-dim); font-size: 0.8rem; }
.topbar .wrap { display: flex; align-items: center; gap: 18px; height: 36px; }
.topbar a { color: var(--on-ink-dim); display: inline-flex; align-items: center; gap: 6px; }
.topbar a:hover { color: #fff; }
.topbar svg { width: 14px; height: 14px; }
.topbar .tb-right { margin-left: auto; display: flex; gap: 18px; }
@media (max-width: 720px){ .topbar .tb-hide { display: none; } }

.mainbar .wrap { display: flex; align-items: center; gap: 20px; height: 68px; }
.brand { display: flex; align-items: center; gap: 9px; font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; letter-spacing: -0.03em; color: var(--fg); flex: none; }
.brand .logo { width: 34px; height: 34px; }
.brand b { color: var(--brand); }
.mainbar .search { flex: 1; max-width: 520px; }
.mainbar .mb-actions { margin-left: auto; display: flex; align-items: center; gap: 10px; flex: none; }
.icon-btn { width: 44px; height: 44px; border-radius: 12px; border: 2px solid var(--border); background: var(--surface); color: var(--fg); display: grid; place-items: center; position: relative; }
.icon-btn:hover { border-color: var(--brand); color: var(--brand); }
.icon-btn svg { width: 20px; height: 20px; }
.icon-btn .dot { position: absolute; top: -5px; right: -5px; background: var(--deal); color: #fff; font-size: 0.64rem; font-weight: 800; min-width: 17px; height: 17px; border-radius: 9px; display: grid; place-items: center; padding: 0 4px; }

.catbar { background: var(--surface); border-top: 1px solid var(--border); }
.catbar .wrap { display: flex; align-items: center; gap: 4px; height: 48px; overflow-x: auto; scrollbar-width: none; }
.catbar .wrap::-webkit-scrollbar { display: none; }
.catbar a { font-weight: 700; font-size: 0.92rem; color: var(--muted); padding: 8px 14px; border-radius: 10px; white-space: nowrap; display: inline-flex; align-items: center; gap: 7px; }
.catbar a svg { width: 16px; height: 16px; }
.catbar a:hover { background: var(--brand-soft); color: var(--brand); }
.catbar a.active { color: var(--brand); background: var(--brand-soft); }
.catbar a.all { color: var(--deal); }

.nav-toggle { display: none; }
.mobile-menu { display: none; }
@media (max-width: 760px){
  .mainbar .search { display: none; }
  .nav-toggle { display: grid; }
  .mobile-search { display: block; padding: 10px 0 2px; }
  .mobile-search .search { max-width: none; }
  .mobile-menu { display: grid; padding: 8px 20px 16px; gap: 2px; background: var(--surface); border-top: 1px solid var(--border); box-shadow: var(--sh); }
  .mobile-menu[hidden] { display: none; }
  .mobile-menu a { display: flex; align-items: center; gap: 10px; padding: 12px 10px; font-weight: 700; color: var(--fg); border-radius: 10px; }
  .mobile-menu a:hover { background: var(--brand-soft); color: var(--brand); }
  .mobile-menu a svg { width: 18px; height: 18px; color: var(--brand); }
}
@media (min-width: 761px){ .mobile-search { display: none; } }
.fav.on { background: #fff !important; }
.icon-btn[data-saved-link]:hover { border-color: var(--deal); color: var(--deal); }

/* ============================================================
   DEAL CARD — coupon/ticket with perforated divider
   ============================================================ */
.deal-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 1040px){ .deal-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px){ .deal-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
@media (max-width: 460px){ .deal-grid { grid-template-columns: 1fr; } }

.deal { position: relative; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); box-shadow: var(--sh-sm); display: flex; flex-direction: column; transition: transform .16s, box-shadow .16s; }
.deal:hover { transform: translateY(-4px); box-shadow: var(--sh); }
.deal .thumb { position: relative; border-radius: var(--r) var(--r) 0 0; overflow: hidden; }
.deal .thumb img { width: 100%; aspect-ratio: 16 / 11; object-fit: cover; }
.deal .disc { position: absolute; top: 12px; left: 12px; background: var(--deal); color: #fff; font-family: var(--font-display); font-weight: 800; font-size: 1.02rem; padding: 8px 10px; border-radius: 12px; transform: rotate(-5deg); box-shadow: 0 6px 14px oklch(62% 0.23 18 / 0.4); line-height: 1; }
.deal .cat-chip { position: absolute; top: 12px; right: 12px; background: oklch(100% 0 0 / 0.92); backdrop-filter: blur(4px); color: var(--brand); font-weight: 800; font-size: 0.7rem; letter-spacing: 0.04em; text-transform: uppercase; padding: 5px 10px; border-radius: 999px; }
.deal .fav { position: absolute; bottom: 12px; right: 12px; width: 36px; height: 36px; border-radius: 50%; background: oklch(100% 0 0 / 0.92); display: grid; place-items: center; color: var(--deal); border: none; }
.deal .fav svg { width: 18px; height: 18px; }
.deal .fav:hover { background: #fff; transform: scale(1.08); }

/* perforated ticket divider */
.deal .body { position: relative; padding: 20px 18px 18px; display: flex; flex-direction: column; gap: 7px; flex: 1; border-top: 2px dashed var(--border); }
.deal .body::before, .deal .body::after { content: ""; position: absolute; top: -10px; width: 18px; height: 18px; border-radius: 50%; background: var(--bg); }
.deal .body::before { left: -10px; } .deal .body::after { right: -10px; }
.deal .merchant { font-size: 0.78rem; font-weight: 700; color: var(--muted); display: flex; align-items: center; gap: 5px; }
.deal .merchant svg { width: 13px; height: 13px; color: var(--mint); }
.deal h3 { font-size: 1.04rem; line-height: 1.25; }
.deal h3 a:hover { color: var(--brand); }
.deal .rating { display: flex; align-items: center; gap: 6px; font-size: 0.78rem; color: var(--muted); }
.deal .rating .stars { color: var(--gold); display: inline-flex; }
.deal .rating .stars svg { width: 13px; height: 13px; }
.deal .price { display: flex; align-items: baseline; gap: 8px; margin-top: auto; padding-top: 10px; }
.deal .price .now { font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; color: var(--deal); }
.deal .price .was { font-size: 0.85rem; color: var(--muted); text-decoration: line-through; }
.deal .price .save { margin-left: auto; font-size: 0.72rem; font-weight: 800; color: var(--brand); background: var(--brand-soft); padding: 3px 8px; border-radius: 6px; }
.deal .bought { font-size: 0.74rem; color: var(--muted); }
.deal .bought b { color: var(--fg); }

/* ============================================================
   DEAL OF THE DAY (hero feature)
   ============================================================ */
.hero { padding-block: clamp(28px, 4vw, 44px); }
.hero-banner { background: linear-gradient(120deg, var(--brand) 0%, var(--brand-deep) 60%, oklch(40% 0.2 320) 100%); border-radius: var(--r-lg); padding: clamp(22px, 3vw, 40px); color: #fff; position: relative; overflow: hidden; }
.hero-banner::after { content: ""; position: absolute; right: -90px; top: -90px; width: 320px; height: 320px; border-radius: 50%; background: oklch(100% 0 0 / 0.08); }
.dod { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(22px, 3vw, 44px); align-items: center; position: relative; }
@media (max-width: 880px){ .dod { grid-template-columns: 1fr; } }
.dod-media { position: relative; border-radius: var(--r); overflow: hidden; box-shadow: var(--sh-lg); }
.dod-media img { width: 100%; aspect-ratio: 16 / 11; object-fit: cover; }
.dod-media .disc { position: absolute; top: 16px; left: 16px; background: var(--deal); color: #fff; font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; width: 72px; height: 72px; border-radius: 50%; display: grid; place-items: center; transform: rotate(-8deg); box-shadow: 0 8px 20px oklch(0% 0 0 / 0.25); }
.dod .tag { display: inline-flex; align-items: center; gap: 7px; background: oklch(100% 0 0 / 0.16); color: #fff; font-weight: 800; font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 6px 13px; border-radius: 999px; }
.dod .tag svg { width: 14px; height: 14px; }
.dod h1 { color: #fff; margin: 16px 0 6px; }
.dod .merch { color: oklch(100% 0 0 / 0.82); font-weight: 600; }
.dod .price { display: flex; align-items: baseline; gap: 12px; margin: 18px 0; }
.dod .price .now { font-family: var(--font-display); font-weight: 800; font-size: 2.6rem; color: #fff; }
.dod .price .was { font-size: 1.1rem; color: oklch(100% 0 0 / 0.7); text-decoration: line-through; }
.dod .price .save { background: var(--deal); color: #fff; font-weight: 800; font-size: 0.85rem; padding: 5px 11px; border-radius: 8px; }
.dod-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }
.dod-actions .btn-deal { background: #fff; color: var(--deal-deep); }
.dod-actions .btn-deal:hover { background: oklch(97% 0.02 24); }
.dod-actions .btn-ghost { background: transparent; border-color: oklch(100% 0 0 / 0.35); color: #fff; }
.dod-actions .btn-ghost:hover { background: oklch(100% 0 0 / 0.1); border-color: #fff; color: #fff; }

/* Countdown */
.countdown { display: inline-flex; gap: 8px; margin-top: 6px; }
.countdown .seg { background: oklch(100% 0 0 / 0.14); border-radius: 10px; padding: 8px 11px; text-align: center; min-width: 52px; }
.countdown .seg b { display: block; font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; line-height: 1; color: #fff; }
.countdown .seg span { font-size: 0.62rem; letter-spacing: 0.08em; text-transform: uppercase; color: oklch(100% 0 0 / 0.7); }
.countdown.dark .seg { background: var(--brand-soft); }
.countdown.dark .seg b { color: var(--brand-deep); }
.countdown.dark .seg span { color: var(--muted); }

/* ============================================================
   CATEGORY TILES
   ============================================================ */
.cat-tiles { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
@media (max-width: 980px){ .cat-tiles { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px){ .cat-tiles { grid-template-columns: repeat(2, 1fr); } }
.cat-tile { position: relative; border-radius: var(--r); overflow: hidden; aspect-ratio: 3 / 4; box-shadow: var(--sh-sm); display: flex; align-items: flex-end; color: #fff; transition: transform .16s, box-shadow .16s; }
.cat-tile:hover { transform: translateY(-4px); box-shadow: var(--sh); }
.cat-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cat-tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, oklch(20% 0.08 296 / 0.9), oklch(20% 0.08 296 / 0.15) 60%, transparent); }
.cat-tile .ct-body { position: relative; padding: 16px; z-index: 1; }
.cat-tile .ct-ico { position: absolute; top: 14px; left: 14px; z-index: 1; width: 40px; height: 40px; border-radius: 12px; background: oklch(100% 0 0 / 0.92); color: var(--brand); display: grid; place-items: center; }
.cat-tile .ct-ico svg { width: 21px; height: 21px; }
.cat-tile h3 { color: #fff; font-size: 1.15rem; }
.cat-tile span { font-size: 0.8rem; color: oklch(100% 0 0 / 0.85); font-weight: 600; }

/* big category blocks (categories page) */
.cat-block { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(20px, 3vw, 40px); align-items: center; padding: clamp(22px, 3vw, 36px); background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); box-shadow: var(--sh-sm); }
.cat-block:nth-child(even){ grid-template-columns: 1.1fr 0.9fr; }
.cat-block:nth-child(even) .cb-media { order: -1; }
@media (max-width: 760px){ .cat-block, .cat-block:nth-child(even){ grid-template-columns: 1fr; } .cat-block:nth-child(even) .cb-media { order: 0; } }
.cb-media { border-radius: var(--r); overflow: hidden; box-shadow: var(--sh); }
.cb-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.cb-body .ico { width: 50px; height: 50px; border-radius: 14px; background: var(--brand-soft); color: var(--brand); display: grid; place-items: center; margin-bottom: 14px; }
.cb-body .ico svg { width: 26px; height: 26px; }
.cb-body h2 { font-size: clamp(1.5rem, 2.4vw, 2rem); }
.cb-body p { color: var(--muted); margin: 10px 0 16px; }
.cb-body .examples { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.cb-body .examples li { font-size: 0.82rem; font-weight: 700; color: var(--brand); background: var(--brand-soft); padding: 5px 12px; border-radius: 999px; }

/* ============================================================
   FILTER / SORT BAR (All Deals)
   ============================================================ */
.filterbar { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; padding: 16px 0 26px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { font-weight: 700; font-size: 0.88rem; color: var(--muted); background: var(--surface); border: 1.5px solid var(--border); padding: 8px 15px; border-radius: 999px; display: inline-flex; align-items: center; gap: 7px; transition: all .14s; }
.chip svg { width: 15px; height: 15px; }
.chip:hover { border-color: var(--brand); color: var(--brand); }
.chip.active { background: var(--brand); border-color: var(--brand); color: #fff; }
.chip .count { font-size: 0.74rem; opacity: 0.8; }
.sortwrap { margin-left: auto; display: flex; align-items: center; gap: 9px; font-size: 0.85rem; color: var(--muted); }
.sortwrap select { font: inherit; font-weight: 700; color: var(--fg); border: 1.5px solid var(--border); border-radius: 10px; padding: 9px 12px; background: var(--surface); }
.results-note { color: var(--muted); font-size: 0.88rem; margin-bottom: 16px; }
.deal.is-hidden { display: none; }

/* ============================================================
   STEPS — vertical numbered timeline (How it works)
   ============================================================ */
.timeline { max-width: 760px; margin-inline: auto; display: grid; gap: 8px; }
.tl-item { display: grid; grid-template-columns: 64px 1fr; gap: 22px; }
.tl-num { display: flex; flex-direction: column; align-items: center; }
.tl-num b { font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; width: 56px; height: 56px; border-radius: 16px; background: var(--brand); color: #fff; display: grid; place-items: center; flex: none; }
.tl-num .line { flex: 1; width: 2px; background: var(--border); margin: 8px 0; }
.tl-item:last-child .line { display: none; }
.tl-body { padding-bottom: 30px; }
.tl-body h3 { font-size: 1.25rem; margin-bottom: 7px; }
.tl-body p { color: var(--muted); }

/* ============================================================
   BLOG
   ============================================================ */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 880px){ .post-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px){ .post-grid { grid-template-columns: 1fr; } }
.post { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; box-shadow: var(--sh-sm); display: flex; flex-direction: column; transition: transform .16s, box-shadow .16s; }
.post:hover { transform: translateY(-4px); box-shadow: var(--sh); }
.post img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.post .body { padding: 20px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.post .pmeta { display: flex; gap: 10px; font-size: 0.74rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }
.post .pmeta .pcat { color: var(--deal); }
.post .pmeta .ptime { color: var(--muted); }
.post h3 { font-size: 1.2rem; line-height: 1.22; }
.post p { color: var(--muted); font-size: 0.92rem; }
.post .more { margin-top: auto; padding-top: 6px; font-weight: 800; color: var(--brand); }

/* feature post (blog hero) */
.post-feature { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(20px, 3vw, 40px); background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-sm); margin-bottom: 36px; }
@media (max-width: 760px){ .post-feature { grid-template-columns: 1fr; } }
.post-feature img { width: 100%; height: 100%; min-height: 240px; object-fit: cover; }
.post-feature .body { padding: clamp(24px, 3vw, 40px); display: flex; flex-direction: column; justify-content: center; gap: 12px; }
.post-feature h2 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); }

/* ============================================================
   DEAL DETAIL PAGE
   ============================================================ */
.deal-detail { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: clamp(24px, 3.5vw, 48px); align-items: start; }
@media (max-width: 880px){ .deal-detail { grid-template-columns: 1fr; } }
.dd-gallery { border-radius: var(--r); overflow: hidden; box-shadow: var(--sh); position: relative; }
.dd-gallery img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.dd-gallery .disc { position: absolute; top: 16px; left: 16px; background: var(--deal); color: #fff; font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; padding: 10px 14px; border-radius: 14px; transform: rotate(-5deg); }
.dd-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 10px; }
.dd-thumbs img { border-radius: 10px; aspect-ratio: 4/3; object-fit: cover; cursor: pointer; border: 2px solid transparent; }
.dd-thumbs img:hover { border-color: var(--brand); }
.dd-head .crumbs { font-size: 0.82rem; color: var(--muted); margin-bottom: 12px; }
.dd-head .crumbs a:hover { color: var(--brand); }
.dd-head h1 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
.dd-head .merch { color: var(--muted); margin-top: 8px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.dd-head .rating .stars { color: var(--gold); display: inline-flex; }
.dd-head .rating .stars svg { width: 15px; height: 15px; }

/* sticky buy box (ticket) */
.buybox { position: sticky; top: 168px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); box-shadow: var(--sh); overflow: hidden; }
.buybox .bb-top { background: var(--brand-soft); padding: 22px; border-bottom: 2px dashed var(--border); position: relative; }
.buybox .bb-top::before, .buybox .bb-top::after { content: ""; position: absolute; bottom: -10px; width: 18px; height: 18px; border-radius: 50%; background: var(--surface); }
.buybox .bb-top::before { left: -10px; } .buybox .bb-top::after { right: -10px; }
.buybox .price { display: flex; align-items: baseline; gap: 10px; }
.buybox .price .now { font-family: var(--font-display); font-weight: 800; font-size: 2.4rem; color: var(--deal); }
.buybox .price .was { color: var(--muted); text-decoration: line-through; }
.buybox .save-line { color: var(--brand); font-weight: 800; margin-top: 4px; }
.buybox .bb-body { padding: 22px; display: grid; gap: 14px; }
.buybox .bb-row { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--muted); }
.buybox .bb-row svg { width: 18px; height: 18px; color: var(--brand); flex: none; }
.buybox .bb-row b { color: var(--fg); }
.dd-section { margin-top: 40px; }
.dd-section h2 { font-size: 1.4rem; margin-bottom: 14px; }
.dd-list { display: grid; gap: 10px; }
.dd-list li { display: flex; gap: 11px; align-items: flex-start; color: var(--fg); }
.dd-list li svg { width: 19px; height: 19px; color: var(--brand); flex: none; margin-top: 3px; }
.fine { background: var(--surface-2); border-radius: var(--r-sm); padding: 18px 20px; font-size: 0.88rem; color: var(--muted); }
.fine h3 { font-size: 1rem; margin-bottom: 8px; }
.fine ul { display: grid; gap: 6px; list-style: disc; padding-left: 20px; }

/* ============================================================
   STAT STRIP / TRUST (compact, NOT tile cards)
   ============================================================ */
.trust-strip { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 40px; padding: 22px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); }
.trust-strip .ts { display: flex; align-items: center; gap: 11px; }
.trust-strip .ts b { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; color: var(--brand); }
.trust-strip .ts span { font-size: 0.88rem; color: var(--muted); max-width: 16ch; }

/* ---------- Info cards + team (About) ---------- */
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 760px){ .info-grid { grid-template-columns: 1fr; } }
.info-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); padding: 26px; box-shadow: var(--sh-sm); }
.info-card .ico { width: 48px; height: 48px; border-radius: 14px; background: var(--brand-soft); color: var(--brand); display: grid; place-items: center; margin-bottom: 14px; }
.info-card .ico svg { width: 24px; height: 24px; }
.info-card h3 { font-size: 1.15rem; margin-bottom: 7px; }
.info-card p { color: var(--muted); font-size: 0.95rem; }
.team-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 760px){ .team-row { grid-template-columns: 1fr; } }
.member { text-align: center; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); padding: 30px 22px; box-shadow: var(--sh-sm); }
.member .av { width: 86px; height: 86px; border-radius: 24px; margin: 0 auto 14px; display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 1.7rem; color: #fff; }
.member h3 { font-size: 1.1rem; }
.member .role { color: var(--deal); font-weight: 700; font-size: 0.85rem; margin: 3px 0 9px; }
.member p { color: var(--muted); font-size: 0.9rem; }

/* ============================================================
   FORMS / FAQ / PROSE
   ============================================================ */
form .field { margin-bottom: 16px; }
form label { display: block; font-size: 0.86rem; font-weight: 700; margin-bottom: 6px; }
form input, form textarea, form select { width: 100%; font: inherit; font-size: 0.95rem; color: var(--fg); padding: 12px 14px; border: 1.5px solid var(--border); border-radius: var(--r-sm); background: var(--surface); }
form input:focus, form textarea:focus { border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-ring); outline: none; }
form textarea { resize: vertical; min-height: 130px; }
.field.error input, .field.error textarea { border-color: var(--deal); }
.field .err-msg { display: none; color: var(--deal); font-size: 0.8rem; margin-top: 5px; }
.field.error .err-msg { display: block; }
.form-ok { display: none; align-items: center; gap: 10px; background: var(--brand-soft); color: var(--brand-deep); border-radius: var(--r-sm); padding: 14px 16px; font-weight: 700; margin-bottom: 16px; }
.form-ok.show { display: flex; }
.form-ok svg { width: 20px; height: 20px; }

.faq-list { max-width: 800px; margin-inline: auto; display: grid; gap: 10px; }
.faq-list details { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-sm); padding: 2px 20px; box-shadow: var(--sh-sm); }
.faq-list summary { list-style: none; cursor: pointer; padding: 17px 0; font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; display: flex; justify-content: space-between; gap: 14px; align-items: center; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary .pl { width: 22px; height: 22px; flex: none; position: relative; }
.faq-list summary .pl::before, .faq-list summary .pl::after { content: ""; position: absolute; background: var(--brand); border-radius: 2px; transition: transform .2s; }
.faq-list summary .pl::before { top: 10px; left: 3px; right: 3px; height: 2px; }
.faq-list summary .pl::after { left: 10px; top: 3px; bottom: 3px; width: 2px; }
.faq-list details[open] summary .pl::after { transform: scaleY(0); }
.faq-list details > p { padding: 0 0 18px; color: var(--muted); }

.page-head { background: var(--ink); color: var(--on-ink); position: relative; overflow: hidden; padding-block: clamp(40px, 6vw, 68px); }
.page-head::after { content: ""; position: absolute; right: -100px; top: -100px; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle, var(--brand) , transparent 70%); opacity: 0.4; }
.page-head .kicker { color: var(--gold); position: relative; z-index: 1; }
.page-head h1 { color: #fff; margin-top: 10px; position: relative; z-index: 1; }
.page-head p { color: var(--on-ink-dim); margin-top: 12px; max-width: 60ch; position: relative; z-index: 1; }

.prose { max-width: 760px; margin-inline: auto; }
.prose .updated { font-size: 0.82rem; color: var(--muted); margin-bottom: 30px; }
.prose h2 { font-size: 1.45rem; margin: 36px 0 12px; }
.prose h3 { font-size: 1.1rem; margin: 22px 0 8px; }
.prose p { margin-bottom: 13px; }
.prose ul.bullets { list-style: disc; padding-left: 22px; margin-bottom: 15px; display: grid; gap: 7px; }
.prose a { color: var(--brand); text-decoration: underline; text-underline-offset: 2px; }
.callout { background: var(--brand-soft); border-left: 3px solid var(--brand); border-radius: var(--r-sm); padding: 16px 18px; margin: 22px 0; }
.callout p { margin: 0; color: var(--brand-deep); font-size: 0.92rem; }

/* ============================================================
   NEWSLETTER BAND + FOOTER
   ============================================================ */
.foot-news { background: linear-gradient(120deg, var(--deal) 0%, oklch(58% 0.2 8) 100%); color: #fff; }
.foot-news .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-block: clamp(28px, 4vw, 44px); flex-wrap: wrap; }
.foot-news h2 { color: #fff; font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
.foot-news p { color: oklch(100% 0 0 / 0.85); margin-top: 4px; }
.foot-news form { display: flex; gap: 10px; flex: 1; min-width: 280px; max-width: 460px; }
.foot-news input { flex: 1; border: none; border-radius: 12px; padding: 14px 16px; font: inherit; }
.foot-news .btn-dark { background: var(--ink); }
.foot-news .ok { font-weight: 700; }

.site-footer { background: var(--ink); color: var(--on-ink-dim); }
.foot-cols { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 34px; padding-block: 52px 32px; }
@media (max-width: 820px){ .foot-cols { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width: 480px){ .foot-cols { grid-template-columns: 1fr; } }
.foot-brand .brand { color: #fff; margin-bottom: 12px; }
.foot-brand .brand b { color: var(--gold); }
.foot-brand p { font-size: 0.9rem; max-width: 34ch; }
.foot-brand .socials { display: flex; gap: 10px; margin-top: 16px; }
.foot-brand .socials a { width: 38px; height: 38px; border-radius: 11px; border: 1px solid var(--ink-border); display: grid; place-items: center; color: var(--on-ink-dim); }
.foot-brand .socials a:hover { background: var(--brand); border-color: var(--brand); color: #fff; }
.foot-brand .socials svg { width: 18px; height: 18px; }
.foot-col h4 { color: #fff; font-size: 0.78rem; letter-spacing: 0.07em; text-transform: uppercase; margin-bottom: 14px; }
.foot-col ul { display: grid; gap: 10px; }
.foot-col a { font-size: 0.9rem; }
.foot-col a:hover { color: #fff; }
.foot-bottom { border-top: 1px solid var(--ink-border); padding-block: 22px; display: flex; flex-wrap: wrap; gap: 10px 22px; justify-content: space-between; align-items: center; font-size: 0.82rem; }
.foot-bottom nav { display: flex; flex-wrap: wrap; gap: 8px 18px; }
.foot-bottom a:hover { color: #fff; }
.foot-disclaimer { font-size: 0.78rem; color: var(--on-ink-dim); line-height: 1.6; padding-bottom: 22px; max-width: 90ch; }
.foot-disclaimer b { color: var(--on-ink); }

/* ============================================================
   COOKIE — slim full-width bottom bar (NOT a floating card)
   ============================================================ */
.cookie-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 95; background: var(--ink-2); color: var(--on-ink); border-top: 3px solid var(--brand); transform: translateY(100%); transition: transform .35s cubic-bezier(.2,.7,.3,1); }
.cookie-bar.show { transform: translateY(0); }
.cookie-bar .wrap { display: flex; align-items: center; gap: 16px 24px; padding-block: 14px; flex-wrap: wrap; }
.cookie-bar p { font-size: 0.85rem; flex: 1; min-width: 220px; color: var(--on-ink-dim); }
.cookie-bar p a { color: #fff; text-decoration: underline; }
.cookie-bar .cb-btns { display: flex; gap: 10px; }
.cookie-bar .btn { padding: 10px 18px; font-size: 0.86rem; }
.cookie-bar .btn-ghost { background: transparent; border-color: var(--ink-border); color: var(--on-ink); }
.cookie-bar .btn-ghost:hover { border-color: #fff; color: #fff; }

.skip-link { position: absolute; left: -999px; top: 8px; background: var(--brand); color: #fff; padding: 10px 16px; border-radius: 8px; z-index: 100; }
.skip-link:focus { left: 16px; }
.center { text-align: center; }
.mt-row { margin-top: 36px; display: flex; justify-content: center; }
@media (prefers-reduced-motion: reduce){ * { scroll-behavior: auto !important; transition: none !important; } }
