/* ==========================================================================
   3GUYS Storefront — Theme v2
   Clean, light, modern fashion e-commerce. Brand red #9D1C20.
   Type: Montserrat (display) + Commissioner (body) — both Greek-capable.
   ========================================================================== */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700;800&family=Commissioner:wght@400;500;600;700&family=Oswald:wght@500;600;700&display=swap");

:root {
  /* brand */
  --red: #9D1C20;
  --red-dark: #7D161A;
  --red-soft: #F6E9E9;

  /* ink / neutrals */
  --ink: #1A1A1A;
  --charcoal: #2B2B2B;
  --paper: #FFFFFF;
  --gray-50: #FAFAF9;
  --gray-100: #F4F3F1;   /* product image bg */
  --gray-150: #ECEBE8;
  --line: #E7E6E2;
  --line-2: #D9D8D3;
  --muted: #6E6E6A;
  --muted-2: #97968F;

  /* semantic */
  --green: #1C8E4C;
  --accent: var(--red);   /* tweakable */
  --accent-ink: #FFFFFF;

  /* type */
  --font-display: "Montserrat", system-ui, sans-serif;
  --font-body: "Commissioner", system-ui, sans-serif;
  --font-heading: var(--font-display);

  /* radius */
  --r-xs: 4px;
  --r-sm: 8px;
  --r: 12px;
  --r-lg: 18px;
  --r-pill: 9999px;

  /* shadow */
  --sh-1: 0 1px 2px rgba(20,20,20,0.05);
  --sh-2: 0 6px 18px rgba(20,20,20,0.08);
  --sh-3: 0 18px 48px rgba(20,20,20,0.14);

  --page-x: clamp(16px, 4vw, 72px);
  --maxw: 1680px;

  --ease: cubic-bezier(0.22, 0.7, 0.2, 1);
  --dur: 200ms;
}

[data-theme="dark"] {
  --ink: #F4F3F1; --charcoal: #EDEDEA; --paper: #121211; --gray-50: #1A1A18;
  --gray-100: #1E1E1C; --gray-150: #262624; --line: #2C2C29; --line-2: #3A3A36;
  --muted: #A3A29B; --muted-2: #807F78;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
#root { min-height: 100vh; display: flex; flex-direction: column; overflow-x: clip; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
input, select, textarea { font-family: inherit; }
::selection { background: var(--red); color: #fff; }

h1, h2, h3, h4 { font-family: var(--font-display); margin: 0; font-weight: 700; letter-spacing: -0.01em; color: var(--ink); }

/* ---------- type helpers ---------- */
.eyebrow { font-family: var(--font-body); font-weight: 600; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); }
.eyebrow--muted { color: var(--muted); }
.eyebrow--light { color: rgba(255,255,255,0.75); }
.display { font-family: var(--font-display); font-weight: 800; letter-spacing: -0.025em; line-height: 1.02; }

/* ---------- layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--page-x); }
.section { padding-block: clamp(40px, 5.5vw, 84px); }
.section:has(.swiper) { padding-bottom: clamp(26px, 3.5vw, 48px); }
.section--flush-top { padding-top: 0; }
.home-sep { border: 0; border-top: 1px solid var(--line); margin: 0 0 clamp(28px, 4vw, 52px); }

/* ---------- logo ---------- */
.logo-img { height: 30px; width: auto; max-width: none; flex-shrink: 0; object-fit: contain; display: block; }
.logo-btn { background: none; border: 0; padding: 0; display: inline-flex; align-items: center; flex-shrink: 0; }
@media (max-width: 980px) { .logo-img { width: auto !important; max-width: 44vw; } }

/* ---------- buttons ---------- */
.btn {
  --bh: 50px;
  height: var(--bh);
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 0 26px;
  font-family: var(--font-body); font-weight: 600; font-size: 14px; letter-spacing: 0.01em;
  border: 1.5px solid var(--ink); background: var(--ink); color: #fff;
  border-radius: var(--r-sm);
  transition: background var(--dur) var(--ease), color var(--dur), border-color var(--dur), transform var(--dur);
  white-space: nowrap;
}
.btn:hover { background: var(--red); border-color: var(--red); color: #fff; }
.btn:active { transform: translateY(1px); }
.btn--red { background: var(--red); border-color: var(--red); }
.btn--red:hover { background: var(--red-dark); border-color: var(--red-dark); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn--ghost:hover { background: var(--ink); border-color: var(--ink); color: #fff; }
.btn--light { background: #fff; border-color: #fff; color: var(--ink); }
.btn--light:hover { background: var(--red); border-color: var(--red); color: #fff; }
.btn--sm { --bh: 40px; padding: 0 16px; font-size: 13px; }
.btn--lg { --bh: 56px; padding: 0 34px; font-size: 15px; }
.btn--block { width: 100%; }
.btn:disabled { opacity: 0.4; cursor: not-allowed; }

.textlink { color: var(--ink); font-weight: 600; display: inline-flex; align-items: center; gap: 6px; border-bottom: 1.5px solid var(--ink); padding-bottom: 2px; transition: color var(--dur), border-color var(--dur); }
.textlink:hover { color: var(--red); border-color: var(--red); }

/* icon button */
.iconbtn { width: 42px; height: 42px; display: inline-grid; place-items: center; background: none; border: 0; color: var(--ink); position: relative; border-radius: var(--r-pill); transition: color var(--dur), background var(--dur); }
.iconbtn:hover { color: var(--red); }
.iconbtn .badge { position: absolute; top: 3px; right: 3px; min-width: 18px; height: 18px; padding: 0 5px; background: var(--red); color: #fff; font-family: var(--font-body); font-size: 10px; font-weight: 700; display: grid; place-items: center; border-radius: var(--r-pill); line-height: 1; }

/* ---------- tags / badges ---------- */
.tag { display: inline-flex; align-items: center; gap: 5px; font-family: var(--font-body); font-size: 11px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; padding: 5px 9px; line-height: 1; border-radius: var(--r-xs); }
.tag--new { background: var(--ink); color: #fff; }
.tag--sale { background: var(--red); color: #fff; }
.tag--sale .pct, .pricebox__save .pct { color: rgba(255,255,255,0.65); }
.tag--soft { background: var(--gray-150); color: var(--muted); }

/* in-stock pill */
.stock { display: inline-flex; align-items: center; gap: 7px; color: var(--green); font-weight: 600; font-size: 13px; }
.stock svg { color: var(--green); }

/* ---------- forms ---------- */
.field { display: flex; flex-direction: column; gap: 7px; }
.field > label { font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
.input, .select, .textarea {
  height: 50px; padding: 0 15px; width: 100%; min-width: 0;
  border: 1.5px solid var(--line-2); background: var(--paper); color: var(--ink);
  border-radius: var(--r-sm); font-size: 15px; transition: border-color var(--dur), box-shadow var(--dur);
}
.textarea { height: auto; padding: 13px 15px; min-height: 120px; resize: vertical; }
.input:focus, .select:focus, .textarea:focus { outline: none; border-color: var(--ink); box-shadow: 0 0 0 3px rgba(157,28,32,0.08); }
.input::placeholder { color: var(--muted-2); }

/* divider */
.hr { border: 0; border-top: 1px solid var(--line); margin: 0; }

/* marquee */
.marquee { overflow: hidden; white-space: nowrap; }
.marquee__track { display: inline-flex; animation: marquee 32s linear infinite; }
.marquee__track span { padding-right: 0; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; }

/* ==========================================================================
   PRODUCT CARD
   ========================================================================== */
.card { display: flex; flex-direction: column; }
.card__media { position: relative; overflow: hidden; border-radius: var(--r); background: var(--gray-100); cursor: pointer; }
.card__img { width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block; transition: transform 600ms var(--ease), opacity var(--dur); }
.card__img--2 { position: absolute; inset: 0; opacity: 0; }
.card:hover .card__img--1 { opacity: 0; }
.card:hover .card__img--2 { opacity: 1; }
.card:hover .card__img { transform: scale(1.04); }
.card__tags { position: absolute; top: 12px; left: 12px; display: flex; flex-direction: column; gap: 6px; z-index: 2; }
.card__wish { position: absolute; top: 12px; right: 12px; z-index: 3; width: 38px; height: 38px; display: grid; place-items: center; background: rgba(255,255,255,0.92); border: 0; border-radius: var(--r-pill); color: var(--ink); opacity: 0; transform: translateY(-4px); transition: opacity var(--dur), transform var(--dur), background var(--dur); }
.card:hover .card__wish, .card__wish.is-on { opacity: 1; transform: none; }
.card__wish:hover { background: #fff; }
.card__quick { position: absolute; left: 12px; right: 12px; bottom: 12px; z-index: 2; display: flex; flex-direction: column; gap: 8px; transform: translateY(12px); opacity: 0; transition: opacity var(--dur), transform var(--dur); }
.card:hover .card__quick { opacity: 1; transform: none; }
@media (hover: none) { .card__quick { display: none; } .card__wish { opacity: 1; } }
@media (max-width: 760px) { .card__quick { display: none; } .card__wish { opacity: 1; } }
.card__sizes { display: flex; flex-wrap: wrap; gap: 5px; }
.sizechip { min-width: 36px; height: 32px; padding: 0 9px; border: 1px solid var(--line-2); background: rgba(255,255,255,0.95); color: var(--ink); font-size: 12px; font-weight: 600; border-radius: var(--r-xs); transition: all var(--dur); }
.sizechip:hover { border-color: var(--ink); }
.sizechip.is-on { background: var(--ink); color: #fff; border-color: var(--ink); }
.card__body { padding: 13px 2px 2px; cursor: pointer; }
.card__sub { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 4px; }
.card__name { font-size: 14.5px; font-weight: 500; line-height: 1.35; margin-bottom: 6px; color: var(--ink); }
.card__price { display: flex; align-items: baseline; gap: 9px; }
.price-now { font-weight: 700; font-size: 15px; }
.price-now.on-sale { color: var(--red); }
.price-was { color: var(--muted-2); text-decoration: line-through; font-size: 13px; }
.card__swatches { display: flex; gap: 5px; margin-top: 8px; }
.dot { width: 14px; height: 14px; border-radius: var(--r-pill); border: 1px solid var(--line-2); }

/* grids */
.pgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(12px,1.4vw,22px); }
@media (max-width: 1080px) { .pgrid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px)  { .pgrid { grid-template-columns: repeat(2, 1fr); } }
.rail { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(230px, 24%); gap: clamp(12px,1.4vw,22px); overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 6px; }
.rail > * { scroll-snap-align: start; }
@media (max-width: 720px) { .rail { grid-auto-columns: 62%; } }

/* section head */
.sechead { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: clamp(20px,2.4vw,34px); }
.sechead__title { font-size: clamp(22px,2.6vw,32px); font-weight: 700; }
.sechead__sub { color: var(--muted); margin-top: 6px; font-size: 14px; }
.sechead__link { background: none; border: 0; color: var(--ink); font-weight: 600; font-size: 13px; display: inline-flex; align-items: center; gap: 5px; white-space: nowrap; }
.sechead__link:hover { color: var(--red); }

/* ==========================================================================
   HEADER
   ========================================================================== */
.anno { background: #000; color: #fff; font-size: 12.5px; font-weight: 500; letter-spacing: 0.02em; height: 38px; display: flex; align-items: center; }
.anno b { color: #fff; font-weight: 700; }
.anno .sep { opacity: 0.4; padding: 0 18px; }

.util { border-bottom: 1px solid var(--line); background: var(--ink); color: rgba(255,255,255,0.78); }
.util__row { display: flex; align-items: center; justify-content: space-between; gap: 16px; height: 40px; font-size: 12.5px; }
.util__row a, .util__select { display: inline-flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.78); transition: color var(--dur); background: none; border: 0; font: inherit; cursor: pointer; }
.util__row a:hover, .util__select:hover { color: #fff; }
.util__row svg { color: var(--red-2, #ff5a4d); }
.util__group { display: flex; gap: 16px; align-items: center; }
.util__div { width: 1px; height: 14px; background: rgba(255,255,255,0.2); }
.util__center { flex: 1; display: flex; justify-content: center; }
.util__promo { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; background: var(--red); color: #fff; font-weight: 800; font-size: 11.5px; letter-spacing: 0.05em; padding: 6px 14px; border-radius: var(--r-pill); cursor: pointer; }
.util__promo svg { color: #fff; }
.util__promo:hover { background: var(--red-dark); }
@keyframes promoPulse { 0%,100% { box-shadow: 0 2px 10px rgba(157,28,32,0.4); } 50% { box-shadow: 0 2px 18px rgba(157,28,32,0.75); } }
@media (max-width: 1080px) { .util__center { display: none; } }
@media (max-width: 760px) { .util { display: none; } }

.header { position: sticky; top: 0; z-index: 70; background: var(--paper); border-bottom: 1px solid var(--line); transition: box-shadow var(--dur); }
.header.is-scrolled { box-shadow: var(--sh-2); }
.header__main { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 28px; height: 100px; transition: height var(--dur) var(--ease); }
.header.is-scrolled .header__main { height: 74px; }
.header__left { display: flex; align-items: center; gap: 10px; }
.header.is-scrolled .logo-img { height: 32px !important; }
@media (max-width: 980px) { .header__main { grid-template-columns: auto 1fr auto; gap: 12px; height: 66px; } .logo-img { height: 30px !important; } }
.header__search { position: relative; display: flex; align-items: center; gap: 12px; height: 58px; padding: 0 7px 0 22px; border: 2px solid var(--ink); border-radius: var(--r-pill); background: var(--paper); width: 100%; max-width: 600px; transition: box-shadow var(--dur); }
.header__search:focus-within { box-shadow: 0 0 0 4px rgba(157,28,32,0.12); }
.header__clear { display: grid; place-items: center; width: 30px; height: 30px; border: 0; background: none; color: var(--muted); border-radius: var(--r-pill); cursor: pointer; }
.header__clear:hover { color: var(--ink); background: var(--gray-50); }
.header__go { flex: 0 0 auto; width: 46px; height: 46px; display: grid; place-items: center; border: 0; border-radius: var(--r-pill); background: var(--red); color: #fff; cursor: pointer; transition: background var(--dur); }
.header__search input { border: 0; background: none; outline: none; width: 100%; font-size: 15px; color: var(--ink); }
.header__go:hover { background: var(--red-dark); }
.header__center { display: flex; justify-content: center; }
@media (max-width: 980px) { .header__center { justify-content: flex-start; } .header__search { display: none; } }

.search-flyout { position: absolute; left: 0; right: 0; top: calc(100% + 10px); background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--sh-3); padding: 16px; z-index: 30; }
.search-flyout__h { display: flex; align-items: center; gap: 7px; font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.search-flyout__chips { display: flex; flex-wrap: wrap; gap: 8px; }
.schip { border: 1px solid var(--line-2); background: var(--gray-50); color: var(--ink); border-radius: var(--r-pill); padding: 8px 14px; font-size: 13px; cursor: pointer; transition: all var(--dur); }
.schip:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.search-flyout__all { display: flex; align-items: center; justify-content: space-between; width: 100%; margin-top: 14px; padding: 12px 14px; border: 0; border-radius: var(--r); background: var(--red-soft); color: var(--ink); font-weight: 700; font-size: 13px; cursor: pointer; transition: background var(--dur); }
.search-flyout__all span { display: inline-flex; align-items: center; gap: 8px; }
.search-flyout__all:hover { background: #ffe2df; }

.header__actions { display: flex; align-items: center; justify-content: flex-end; gap: 6px; }
.haction { position: relative; display: flex; flex-direction: column; align-items: center; gap: 3px; background: none; border: 0; color: var(--ink); cursor: pointer; padding: 6px 10px; border-radius: var(--r); transition: color var(--dur), background var(--dur); }
.haction:hover { color: var(--red); background: var(--gray-50); }
.haction__lbl { font-size: 11px; font-weight: 600; letter-spacing: 0.01em; }
.haction__ic { position: relative; display: inline-grid; place-items: center; }
.haction .badge, .cartbtn .badge { position: absolute; top: -6px; right: -8px; min-width: 18px; height: 18px; padding: 0 5px; background: var(--red); color: #fff; font-family: var(--font-body); font-size: 10px; font-weight: 800; display: grid; place-items: center; border-radius: var(--r-pill); border: 2px solid var(--paper); }
@media (max-width: 980px) { .haction__lbl { display: none; } .haction { padding: 8px; } }

.cartbtn { display: flex; align-items: center; gap: 10px; background: var(--ink); color: #fff; border: 0; border-radius: var(--r-pill); padding: 10px 18px 10px 16px; cursor: pointer; transition: background var(--dur); }
.cartbtn:hover { background: var(--red); }
.cartbtn .haction__ic { color: #fff; }
.cartbtn__txt { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.1; }
.cartbtn__lbl { font-size: 11px; opacity: 0.8; }
.cartbtn__total { font-family: var(--font-display); font-weight: 700; font-size: 14px; }
@media (max-width: 980px) { .cartbtn__txt { display: none; } .cartbtn { padding: 9px; border-radius: var(--r-pill); } }

.acct__menu { position: absolute; top: calc(100% + 6px); right: 0; width: 248px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--sh-3); padding: 16px; z-index: 30; display: flex; flex-direction: column; gap: 8px; text-align: left; animation: flyIn 160ms var(--ease); }
@keyframes flyIn { from { opacity: 0; transform: translateY(-6px); } }
.acct__head { display: flex; flex-direction: column; gap: 2px; margin-bottom: 4px; }
.acct__head b { font-size: 15px; }
.acct__head span { font-size: 12px; color: var(--muted); }
.acct__links { display: flex; flex-direction: column; margin-top: 6px; border-top: 1px solid var(--line); padding-top: 8px; }
.acct__links a { display: flex; align-items: center; gap: 10px; padding: 9px 4px; font-size: 13.5px; color: var(--ink); cursor: pointer; border-radius: var(--r-sm); transition: background var(--dur); }
.acct__links a:hover { background: var(--gray-50); color: var(--red); }
.acct__links svg { color: var(--muted); }
.acct__links a:hover svg { color: var(--red); }

/* category nav bar */
.navbar { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--gray-50); }
.navbar__row { display: flex; align-items: center; }
.navbar__nav { display: flex; align-items: center; justify-content: flex-start; gap: 6px; margin-left: -18px; }
.nav__item { position: relative; display: inline-flex; align-items: center; gap: 7px; background: none; border: 0; color: var(--ink); font-family: var(--font-display); font-weight: 600; font-size: 13.5px; letter-spacing: 0.03em; text-transform: uppercase; padding: 17px 18px; cursor: pointer; transition: color var(--dur); }
.nav__item svg { opacity: 0.55; transition: opacity var(--dur); }
.nav__item:hover svg, .nav__item.is-active svg { opacity: 1; }
.nav__item:hover, .nav__item.is-active { color: var(--red); }
.nav__item.is-hot { color: var(--red); }
.nav__item.is-hot svg { opacity: 1; }
.nav__item::after { content: ""; position: absolute; left: 18px; right: 18px; bottom: 9px; height: 2px; background: var(--red); transform: scaleX(0); transform-origin: center; transition: transform var(--dur) var(--ease); }
.nav__item:hover::after, .nav__item.is-active::after { transform: scaleX(1); }
.navbar__ship { margin-left: auto; display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 600; color: var(--muted); padding-right: 4px; }
.navbar__ship svg { color: var(--red); }
@media (max-width: 1240px) { .navbar__ship { display: none; } }
@media (max-width: 980px) { .navbar { display: none; } }

/* mega menu — dark & rich */
.mega { position: absolute; left: 0; right: 0; top: 100%; background: #0F0F0F; color: #fff; border-top: 2px solid var(--red); box-shadow: var(--sh-3); z-index: 65; animation: megaIn 200ms var(--ease); }
@keyframes megaIn { from { opacity: 0; transform: translateY(-8px); } }
.mega__inner { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.55fr 1fr; gap: 38px; padding: 34px var(--page-x) 30px; }
.mega__main { display: flex; flex-direction: column; }
.mega__cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; flex: 1; }
.mega__col h4 { font-family: var(--font-display); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: #fff; margin-bottom: 12px; padding-bottom: 10px; border-bottom: 2px solid var(--red); display: inline-block; }
.mega__col a { display: flex; align-items: center; justify-content: space-between; padding: 7px 0; font-size: 14px; color: rgba(255,255,255,0.62); cursor: pointer; transition: color var(--dur), padding var(--dur); }
.mega__col a svg { opacity: 0; transform: translateX(-4px); transition: all var(--dur); color: var(--red-2, #ff5a4d); }
.mega__col a:hover { color: #fff; padding-left: 4px; }
.mega__col a:hover svg { opacity: 1; transform: none; }
.mega__shopall { display: inline-flex; align-items: center; gap: 10px; align-self: flex-start; margin-top: 24px; padding: 12px 18px; border: 1.5px solid rgba(255,255,255,0.2); border-radius: var(--r-pill); background: transparent; color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 12.5px; letter-spacing: 0.04em; text-transform: uppercase; cursor: pointer; transition: all var(--dur); }
.mega__shopall:hover { background: var(--red); border-color: var(--red); }
.mega__shopall svg:last-child { transition: transform var(--dur); }
.mega__shopall:hover svg:last-child { transform: translateX(3px); }
.mega__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.mega__card { position: relative; background: #0F0F0F; border-radius: var(--r); overflow: hidden; clip-path: inset(0 round var(--r)); isolation: isolate; height: 300px; display: flex; flex-direction: column; justify-content: flex-end; padding: 20px; color: #fff; border: 0; cursor: pointer; text-align: left; }
.mega__card img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transition: transform 0.5s var(--ease); }
.mega__card::after { content: ""; position: absolute; inset: 0; border-radius: inherit; background: linear-gradient(to top, rgba(0,0,0,0.82) 6%, rgba(0,0,0,0.12) 70%); z-index: 1; }
.mega__card:hover img { transform: scale(1.06); }
.mega__card > * { position: relative; z-index: 2; }
.mega__card-tag { align-self: flex-start; font-family: var(--font-display); font-size: 10px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; background: #fff; color: var(--ink); padding: 5px 9px; border-radius: var(--r-sm); margin-bottom: auto; }
.mega__card-tag.is-sale { background: var(--red); color: #fff; }
.mega__card h3 { color: #fff; font-family: var(--font-display); font-size: 26px; font-weight: 800; line-height: 1; margin-top: 12px; }
.mega__card-sub { font-size: 12.5px; color: rgba(255,255,255,0.85); margin-top: 5px; }
.mega__card-cta { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-display); font-size: 12px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; margin-top: 10px; color: #fff; }
.mega__card--feat:hover .mega__card-cta { gap: 12px; }
.mega__foot { max-width: var(--maxw); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 14px var(--page-x); border-top: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.03); }
.mega__trending { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; font-size: 13px; color: rgba(255,255,255,0.6); }
.mega__trending > span { font-weight: 700; color: #fff; }
.mega__trending svg { color: var(--red-2, #ff5a4d); }
.megachip { border: 1px solid rgba(255,255,255,0.22); background: transparent; color: #fff; border-radius: var(--r-pill); padding: 6px 13px; font-size: 12.5px; cursor: pointer; transition: all var(--dur); }
.megachip:hover { background: var(--red); color: #fff; border-color: var(--red); }
.mega__benefits { display: flex; gap: 20px; flex-shrink: 0; }
.mega__benefits span { display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 600; color: rgba(255,255,255,0.7); }
.mega__benefits svg { color: var(--red-2, #ff5a4d); }
@media (max-width: 1100px) { .mega__benefits { display: none; } }

/* mobile drawer */
.menu-toggle { display: none; }
@media (max-width: 980px) { .menu-toggle { display: inline-grid; } }
.mdrawer { position: fixed; inset: 0; z-index: 200; background: rgba(0,0,0,0.5); animation: fade 180ms; }
.mdrawer__panel { position: absolute; left: 0; top: 0; bottom: 0; width: min(86vw, 360px); background: var(--paper); overflow-y: auto; padding: 16px 20px 40px; animation: slideL 260ms var(--ease); }
@keyframes slideL { from { transform: translateX(-100%); } }
@keyframes fade { from { opacity: 0; } }
.mdrawer__top { display: flex; align-items: center; justify-content: space-between; padding-bottom: 14px; border-bottom: 1px solid var(--line); margin-bottom: 6px; }
.mdrawer__group { border-bottom: 1px solid var(--line); }
.mdrawer__head { background: none; border: 0; color: var(--ink); font-family: var(--font-display); font-size: 15px; font-weight: 700; text-transform: uppercase; padding: 14px 0; width: 100%; text-align: left; }
.mdrawer__head.is-hot { color: var(--red); }
.mdrawer__sub { display: flex; flex-wrap: wrap; gap: 4px 16px; padding: 0 0 14px; }
.mdrawer__sub span { width: 100%; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 4px; }
.mdrawer__sub a { font-size: 14px; padding: 5px 0; cursor: pointer; }
.mdrawer__sub a:hover { color: var(--red); }

/* ==========================================================================
   NEWSLETTER (impressive)
   ========================================================================== */
.news { background: var(--red); color: #fff; position: relative; overflow: hidden; }
.news__strip { background: var(--red-dark); color: rgba(255,255,255,0.85); font-family: var(--font-display); font-weight: 700; font-size: 12px; letter-spacing: 0.18em; padding: 9px 0; }
.news__strip .marquee__track { animation-duration: 26s; }
.news { background: #0E0E0E; color: #fff; position: relative; overflow: hidden; }
.news__strip { background: var(--red); color: #fff; font-family: var(--font-display); font-weight: 800; font-size: 12px; letter-spacing: 0.18em; padding: 10px 0; position: relative; z-index: 3; }
.news__strip .marquee__track { animation-duration: 26s; }
.news__glow { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.5; pointer-events: none; z-index: 0; }
.news__glow--1 { width: 460px; height: 460px; background: var(--red); top: -160px; left: -120px; }
.news__glow--2 { width: 380px; height: 380px; background: #3a0b0d; bottom: -180px; right: -80px; opacity: 0.8; }
.news__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center; padding-block: clamp(48px, 6vw, 84px); }
@media (max-width: 900px) { .news__inner { grid-template-columns: 1fr; gap: 36px; } }

.news__tagrow { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.news__pill { display: inline-flex; align-items: center; gap: 7px; background: var(--red); color: #fff; font-family: var(--font-display); font-weight: 800; font-size: 12px; letter-spacing: 0.1em; padding: 7px 14px; border-radius: var(--r-pill); }
.news__members { display: inline-flex; align-items: center; gap: 9px; font-size: 13px; color: rgba(255,255,255,0.7); }
.news__avs { display: inline-flex; }
.news__avs i { width: 24px; height: 24px; border-radius: 50%; border: 2px solid #0E0E0E; margin-left: -8px; display: inline-block; }
.news__avs i:first-child { margin-left: 0; }
.news__avs i:nth-child(1) { background: linear-gradient(135deg,#9D1C20,#d8463c); }
.news__avs i:nth-child(2) { background: linear-gradient(135deg,#444,#777); }
.news__avs i:nth-child(3) { background: linear-gradient(135deg,#c9a64a,#e0c878); }
.news__avs i:nth-child(4) { background: linear-gradient(135deg,#2a4a7a,#4a6a9a); }
.news__title { font-family: var(--font-display); color: #fff; font-weight: 800; font-size: clamp(34px, 5.2vw, 68px); line-height: 0.96; letter-spacing: -0.02em; margin-top: 20px; text-transform: uppercase; }
.news__big { display: block; }
.news__big em { font-style: normal; color: var(--red); -webkit-text-stroke: 0; position: relative; }
.news__sub { color: rgba(255,255,255,0.72); max-width: 480px; margin-top: 18px; font-size: 15.5px; line-height: 1.6; }
.news__sub b { color: #fff; }
.news__perks { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 22px; }
.news__perks li { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 600; color: rgba(255,255,255,0.88); }
.news__perks svg { color: var(--red-2, #ff5a4d); }

/* coupon ticket */
.ticket { background: #fff; color: var(--ink); border-radius: var(--r-lg); overflow: hidden; box-shadow: 0 30px 70px rgba(0,0,0,0.5); max-width: 420px; transform: rotate(-1.2deg); transition: transform var(--dur) var(--ease); }
.ticket:hover { transform: rotate(0deg) translateY(-2px); }
.ticket__top { background: var(--ink); color: #fff; padding: 26px 28px 30px; position: relative; text-align: center; }
.ticket__brand { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: 0.16em; color: rgba(255,255,255,0.6); }
.ticket__amount { display: flex; align-items: baseline; justify-content: center; gap: 6px; margin: 8px 0 4px; }
.ticket__amount b { font-family: var(--font-display); font-weight: 800; font-size: 88px; line-height: 0.85; color: var(--red-2, #ff5a4d); }
.ticket__amount span { font-family: var(--font-display); font-weight: 800; font-size: 24px; color: #fff; }
.ticket__for { font-family: var(--font-display); font-size: 12px; font-weight: 700; letter-spacing: 0.14em; color: rgba(255,255,255,0.85); }
.ticket__perf { display: flex; justify-content: space-between; background: var(--ink); padding: 0 14px; height: 0; position: relative; }
.ticket__perf::before, .ticket__perf::after { content: ""; position: absolute; top: -14px; width: 28px; height: 28px; border-radius: 50%; background: #0E0E0E; }
.ticket__perf::before { left: -14px; } .ticket__perf::after { right: -14px; }
.ticket__perf span { width: 10px; height: 10px; border-radius: 50%; background: #0E0E0E; transform: translateY(-5px); }
.ticket__bottom { padding: 24px 28px 26px; }
.ticket__lbl { display: block; font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.ticket__row { display: flex; gap: 8px; }
.ticket__input { flex: 1; height: 52px; border: 2px solid var(--ink); border-radius: var(--r-pill); padding: 0 18px; font-size: 14.5px; outline: none; transition: box-shadow var(--dur); }
.ticket__input:focus { box-shadow: 0 0 0 4px rgba(157,28,32,0.14); }
.ticket__btn { flex: 0 0 auto; width: 52px; height: 52px; display: grid; place-items: center; border: 0; border-radius: var(--r-pill); background: var(--red); color: #fff; cursor: pointer; transition: background var(--dur), transform var(--dur); }
.ticket__btn:hover { background: var(--red-dark); transform: translateX(2px); }
.ticket__code { display: flex; align-items: center; justify-content: space-between; gap: 10px; width: 100%; margin-top: 12px; padding: 12px 16px; border: 1.5px dashed var(--line-2); border-radius: var(--r); background: var(--red-soft); color: var(--ink); font-size: 13px; cursor: pointer; transition: all var(--dur); }
.ticket__code:hover { border-color: var(--red); }
.ticket__code b { font-family: var(--font-display); font-weight: 800; letter-spacing: 0.08em; }
.ticket__code.is-ready { background: var(--ink); color: #fff; font-family: var(--font-display); font-weight: 800; letter-spacing: 0.08em; justify-content: center; }
.ticket__done { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 6px; color: var(--red); }
.ticket__done b { display: block; font-size: 18px; color: var(--ink); }
.ticket__done span { font-size: 13px; color: var(--muted); }
.news__check { display: flex; align-items: center; gap: 8px; font-size: 11.5px; color: var(--muted); margin-top: 12px; }
.news__check input { accent-color: var(--red); }

/* ==========================================================================
   FOOTER (multi-tier, accent variations)
   ========================================================================== */
.footer { background: var(--ink); color: rgba(255,255,255,0.7); margin-top: auto; }
[data-theme="dark"] .footer { border-top: 1px solid var(--line); }
.footer a { color: rgba(255,255,255,0.7); transition: color var(--dur); }
.footer a:hover { color: #fff; }

.footer__usps { border-bottom: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.02); }
.footer__usps-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding-block: 26px; }
@media (max-width: 820px) { .footer__usps-row { grid-template-columns: 1fr 1fr; gap: 22px; } }
.footer__usp { display: flex; align-items: center; gap: 14px; min-width: 0; }
.footer__usp-ic { flex: 0 0 auto; width: 46px; height: 46px; border-radius: var(--r-pill); background: var(--red); color: #fff; display: grid; place-items: center; }
.footer__usp > div { min-width: 0; }
.footer__usp-t { color: #fff; font-weight: 700; font-size: 14px; white-space: nowrap; }
.footer__usp-s { font-size: 12.5px; color: rgba(255,255,255,0.55); margin-top: 2px; }

.footer__grid { display: grid; grid-template-columns: 1.6fr repeat(4, 1fr); gap: 32px; padding-block: 52px 36px; }
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px 20px; } }
.footer__brand p { color: rgba(255,255,255,0.6); max-width: 300px; margin-top: 16px; font-size: 14px; line-height: 1.7; }
.footer__contact { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }
.footer__contact a { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; }
.footer__contact svg { color: var(--red); }
.footer h4 { color: #fff; font-family: var(--font-display); font-size: 13px; letter-spacing: 0.04em; margin-bottom: 15px; position: relative; padding-bottom: 10px; }
.footer h4::after { content: ""; position: absolute; left: 0; bottom: 0; width: 24px; height: 2px; background: var(--red); }
.footer li { margin-bottom: 9px; font-size: 14px; }
.socials { display: flex; gap: 10px; margin-top: 18px; }
.socials a { width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,0.22); border-radius: var(--r-pill); color: #fff; transition: all var(--dur); }
.socials a:hover { background: var(--red); border-color: var(--red); transform: translateY(-2px); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-block: 20px; border-top: 1px solid rgba(255,255,255,0.12); font-size: 12.5px; color: rgba(255,255,255,0.5); flex-wrap: wrap; }
.payicons { display: flex; gap: 8px; align-items: center; }
.payicon { height: 26px; padding: 0 9px; display: grid; place-items: center; background: rgba(255,255,255,0.92); border-radius: 5px; font-size: 10px; font-weight: 800; color: #1A1A1A; letter-spacing: 0.02em; }
.footer__top { display: inline-flex; align-items: center; gap: 6px; background: none; border: 1px solid rgba(255,255,255,0.3); color: #fff; border-radius: var(--r-pill); padding: 9px 16px; font-size: 12px; font-weight: 700; transition: all var(--dur); }
.footer__top:hover { background: var(--red); border-color: var(--red); }

/* toast */
.toast { position: fixed; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 300; background: var(--ink); color: #fff; padding: 14px 22px; display: flex; align-items: center; gap: 12px; font-size: 14px; font-weight: 600; border-radius: var(--r); box-shadow: var(--sh-3); animation: toastIn 240ms var(--ease); }
@keyframes toastIn { from { opacity: 0; transform: translate(-50%, 14px); } }
