/* =========================================================
   TRIP STORE — Redesign 3.0
   Premium dark streetwear aesthetic
   ========================================================= */

/* ---------- Design tokens ---------- */
:root {
    --bg:        #0a0a0b;
    --bg-2:      #0f0f12;
    --surface:   #141418;
    --surface-2: #1b1b21;
    --line:      rgba(255,255,255,.10);
    --line-2:    rgba(255,255,255,.16);

    --text:      #f4f1ea;
    --muted:     #9a9aa2;
    --faint:     #6a6a72;

    --accent:    #ff1e56;   /* hot pink-red */
    --accent-2:  #d4ff2e;   /* acid lime */
    --accent-3:  #7a5cff;   /* violet */

    --radius:    18px;
    --radius-sm: 12px;

    --font-body:    'Space Grotesk', -apple-system, system-ui, sans-serif;
    --font-display: 'Anton', 'Space Grotesk', sans-serif;
    --font-mono:    'Courier Prime', monospace;

    --ease:      cubic-bezier(.22,1,.36,1);
    --ease-io:   cubic-bezier(.65,.05,.36,1);

    --pad:       clamp(18px, 5vw, 64px);
    --maxw:      1440px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.55;
    overflow-x: hidden;
    min-height: 100vh;
    letter-spacing: .01em;
    -webkit-font-smoothing: antialiased;
}
body.modal-open, body.no-scroll { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
::selection { background: var(--accent); color: #fff; }

/* ---------- Background canvas + grain ---------- */
#bg-canvas {
    position: fixed; inset: 0; width: 100vw; height: 100vh;
    z-index: -2; pointer-events: none;
}
.grain {
    position: fixed; inset: -50%; z-index: -1; pointer-events: none;
    opacity: .045; mix-blend-mode: screen;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    animation: grain 6s steps(6) infinite;
}

/* ---------- Cursor spotlight ---------- */
.spotlight {
    position: fixed; inset: 0; z-index: -1; pointer-events: none;
    background: radial-gradient(340px circle at var(--sx, 50%) var(--sy, 30%), rgba(255,30,86,.10), transparent 60%);
    opacity: 0; transition: opacity .6s var(--ease);
}
.spotlight.on { opacity: 1; }
@media (hover: none), (pointer: coarse) { .spotlight { display: none; } }

/* ---------- Lenis smooth scroll ---------- */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
@keyframes grain {
    0%,100%{transform:translate(0,0)} 20%{transform:translate(-4%,3%)}
    40%{transform:translate(3%,-4%)} 60%{transform:translate(-3%,2%)} 80%{transform:translate(2%,-2%)}
}

/* ---------- Preloader ---------- */
.preloader {
    position: fixed; inset: 0; z-index: 9999;
    background: var(--bg);
    display: grid; place-items: center;
    transition: opacity .6s var(--ease), visibility .6s;
}
.preloader.done { opacity: 0; visibility: hidden; }
.preloader__inner { text-align: center; }
.preloader__word {
    font-family: var(--font-display); font-size: clamp(64px, 14vw, 180px);
    line-height: .9; display: flex; gap: .02em; overflow: hidden;
}
.preloader__word span {
    display: inline-block; transform: translateY(110%);
    animation: plUp .7s var(--ease) forwards;
}
.preloader__word span:nth-child(1){animation-delay:.05s}
.preloader__word span:nth-child(2){animation-delay:.12s}
.preloader__word span:nth-child(3){animation-delay:.19s}
.preloader__word span:nth-child(4){animation-delay:.26s;color:var(--accent)}
@keyframes plUp { to { transform: translateY(0); } }
.preloader__bar {
    width: min(280px, 60vw); height: 2px; background: var(--line);
    margin: 22px auto 14px; overflow: hidden;
}
.preloader__bar i { display: block; height: 100%; width: 0%; background: var(--accent); }
.preloader__meta {
    font-family: var(--font-mono); font-size: 11px; letter-spacing: .4em;
    color: var(--muted); opacity: 0; animation: fadeIn .6s .4s forwards;
}
@keyframes fadeIn { to { opacity: 1; } }

/* ---------- Scroll progress ---------- */
.scroll-progress {
    position: fixed; top: 0; left: 0; height: 3px; width: 0%;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    z-index: 200; transition: width .1s linear;
}

/* ---------- Custom cursor ---------- */
.cursor { position: fixed; top: 0; left: 0; z-index: 9998; pointer-events: none; mix-blend-mode: difference; }
.cursor__dot {
    position: fixed; width: 6px; height: 6px; border-radius: 50%; background: #fff;
    transform: translate(-50%, -50%);
}
.cursor__ring {
    position: fixed; width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.6);
    border-radius: 50%; transform: translate(-50%, -50%);
    transition: width .25s var(--ease), height .25s var(--ease), background .25s, border-color .25s;
}
.cursor.is-hover .cursor__ring { width: 62px; height: 62px; background: rgba(255,255,255,.1); border-color: transparent; }
@media (hover: none), (pointer: coarse) { .cursor { display: none; } }

/* ---------- Header ---------- */
.header {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px var(--pad);
    background: rgba(10,10,11,.55);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    border-bottom: 1px solid transparent;
    transition: transform .45s var(--ease), background .4s, border-color .4s, padding .4s;
}
.header.scrolled { padding: 9px var(--pad); background: rgba(10,10,11,.82); border-bottom-color: var(--line); }
.header.hidden { transform: translateY(-105%); }

.logo-container { display: inline-flex; align-items: center; }
.logo {
    height: 34px; width: auto; transition: transform .4s var(--ease), filter .4s;
    filter: brightness(0) invert(1);
}
.header.scrolled .logo { height: 28px; }
.logo-container:hover .logo { transform: scale(1.06) rotate(-2deg); }

.header-nav { display: flex; align-items: center; gap: 14px; }

.icon-link, .icon-btn { display: inline-flex; align-items: center; justify-content: center; transition: transform .3s var(--ease), opacity .3s; }
.icon-link img, .icon-btn img { width: 20px; height: 20px; opacity: .82; transition: opacity .3s; filter: brightness(0) invert(1); }
.icon-link:hover img, .icon-btn:hover img { opacity: 1; }
.icon-link:hover, .icon-btn:hover { transform: translateY(-2px); }

.reviews-link {
    gap: 7px; font-family: var(--font-mono); font-size: 11px; font-weight: 700;
    letter-spacing: .12em; border: 1px solid var(--line-2); padding: 7px 12px; border-radius: 999px;
    transition: all .3s var(--ease);
}
.reviews-link img { width: 15px; height: 15px; }
.reviews-link span { display: none; }
.reviews-link:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-2px); }
.reviews-link:hover img { filter: none; opacity: 1; }
@media (min-width: 820px) { .reviews-link span { display: inline; } }

.contact-btn {
    position: relative; font-size: 12px; font-weight: 700; letter-spacing: .1em;
    padding: 10px 20px; border-radius: 999px; overflow: hidden;
    color: #0a0a0b; background: var(--text);
    transition: transform .3s var(--ease);
}
.contact-btn span { position: relative; z-index: 2; }
.contact-btn::before {
    content: ""; position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(90deg, var(--accent), var(--accent-3));
    transform: translateY(101%); transition: transform .4s var(--ease);
}
.contact-btn:hover { color: #fff; }
.contact-btn:hover::before { transform: translateY(0); }

/* ---------- Search overlay ---------- */
.search-overlay {
    position: fixed; inset: 0; z-index: 300; display: grid; place-items: start center;
    padding-top: 18vh; background: rgba(10,10,11,.92); backdrop-filter: blur(14px);
    opacity: 0; visibility: hidden; transition: opacity .4s var(--ease), visibility .4s;
}
.search-overlay.active { opacity: 1; visibility: visible; }
.search-overlay__close { position: absolute; top: 26px; right: 30px; font-size: 26px; color: var(--muted); transition: color .3s, transform .3s; }
.search-overlay__close:hover { color: var(--text); transform: rotate(90deg); }
.search-overlay__box { width: min(720px, 90vw); }
#search-input {
    width: 100%; background: transparent; border: none; border-bottom: 2px solid var(--line-2);
    color: var(--text); font-family: var(--font-display); font-size: clamp(28px, 6vw, 56px);
    padding: 10px 4px; outline: none; transition: border-color .3s;
}
#search-input:focus { border-color: var(--accent); }
#search-input::placeholder { color: var(--faint); }
.search-overlay__results { margin-top: 18px; max-height: 46vh; overflow-y: auto; }
.search-result {
    display: flex; align-items: center; gap: 16px; padding: 12px; border-radius: var(--radius-sm);
    cursor: pointer; transition: background .25s;
}
.search-result:hover { background: var(--surface); }
.search-result img { width: 54px; height: 54px; object-fit: cover; border-radius: 8px; }
.search-result__name { font-weight: 600; }
.search-result__price { font-family: var(--font-mono); color: var(--accent-2); font-size: 14px; }
.search-empty { color: var(--faint); font-family: var(--font-mono); padding: 14px; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
    position: relative; min-height: 100svh; display: flex; align-items: center; justify-content: center;
    overflow: hidden; text-align: center;
}
.hero-slider { position: absolute; inset: 0; z-index: 0; }
.banner-item {
    position: absolute; inset: 0; background-size: cover; background-position: center;
    opacity: 0; transform: scale(1.08); transition: opacity 1.2s var(--ease), transform 6s linear;
}
.banner-item.active { opacity: .5; transform: scale(1); }
.hero__scrim {
    position: absolute; inset: 0; z-index: 1;
    background:
        radial-gradient(120% 90% at 50% 10%, transparent 30%, rgba(10,10,11,.6) 75%, var(--bg) 100%),
        linear-gradient(to bottom, rgba(10,10,11,.5), rgba(10,10,11,.35) 40%, var(--bg));
}

.hero-background-text {
    position: absolute; top: 50%; font-family: var(--font-display);
    font-size: clamp(120px, 30vw, 460px); line-height: .8; color: rgba(255,255,255,.035);
    z-index: 1; user-select: none; white-space: nowrap; pointer-events: none;
}
.hero-background-text.left  { left: -3vw;  transform: translateY(-50%); }
.hero-background-text.right { right: -3vw; transform: translateY(-50%); }

.hero-content { position: relative; z-index: 3; padding: 0 var(--pad); }
.hero__eyebrow {
    display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-mono);
    font-size: 12px; letter-spacing: .28em; color: var(--muted);
    border: 1px solid var(--line-2); padding: 7px 16px; border-radius: 999px; margin-bottom: 26px;
}
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent-2); box-shadow: 0 0 0 0 var(--accent-2); animation: pulse 2s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(212,255,46,.6)} 70%{box-shadow:0 0 0 10px rgba(212,255,46,0)} 100%{box-shadow:0 0 0 0 rgba(212,255,46,0)} }

.hero__title {
    font-family: var(--font-display); font-size: clamp(96px, 23vw, 340px); line-height: .82;
    letter-spacing: -.01em; margin-bottom: 14px;
    display: flex; justify-content: center; gap: .01em;
}
.ht-mask { display: inline-block; overflow: hidden; padding: 0 .005em; }
.ht-char {
    display: inline-block; transform: translateY(112%);
    background: linear-gradient(180deg, #ffffff 12%, #d7d7de 55%, #85858e);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
    transition: transform .35s var(--ease), filter .4s var(--ease);
}
.hero.revealed .ht-char { transform: translateY(0); transition: transform 1s var(--ease); }
.hero.revealed .ht-mask:nth-child(1) .ht-char { transition-delay: .05s; }
.hero.revealed .ht-mask:nth-child(2) .ht-char { transition-delay: .13s; }
.hero.revealed .ht-mask:nth-child(3) .ht-char { transition-delay: .21s; }
.hero.revealed .ht-mask:nth-child(4) .ht-char { transition-delay: .29s; }
/* elegant per-letter hover lift (no glitch) */
.hero__title:hover .ht-char { transform: translateY(-6px); }
.hero__title .ht-mask:hover .ht-char {
    filter: drop-shadow(0 0 24px rgba(255,30,86,.5));
    background: linear-gradient(180deg, var(--accent) 10%, #ffd0dd 90%);
    -webkit-background-clip: text; background-clip: text;
}
.hero__tagline {
    display: inline-flex; align-items: center; gap: 14px; flex-wrap: wrap; justify-content: center;
    font-family: var(--font-mono); font-size: clamp(13px, 2.4vw, 18px); letter-spacing: .34em;
    color: var(--text); margin-bottom: 34px;
}
.hero__tagline i { color: var(--accent); font-style: normal; }

.hero__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.btn {
    position: relative; display: inline-flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 700; letter-spacing: .12em; padding: 15px 30px;
    border-radius: 999px; overflow: hidden; transition: transform .3s var(--ease), color .35s;
}
.btn span { position: relative; z-index: 2; }
.btn--primary { color: #0a0a0b; background: var(--accent-2); }
.btn--primary::before { content:""; position:absolute; inset:0; background: #fff; transform: scale(0); border-radius: 999px; transition: transform .45s var(--ease); z-index:1; }
.btn--primary:hover::before { transform: scale(1.6); }
.btn--ghost { color: var(--text); border: 1px solid var(--line-2); }
.btn--ghost::before { content:""; position:absolute; inset:0; background: var(--text); transform: translateY(101%); transition: transform .4s var(--ease); z-index:1; }
.btn--ghost:hover { color: #0a0a0b; }
.btn--ghost:hover::before { transform: translateY(0); }

.slider-arrow {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 4;
    width: 52px; height: 52px; border-radius: 50%; font-size: 26px; color: var(--text);
    border: 1px solid var(--line-2); background: rgba(10,10,11,.35); backdrop-filter: blur(6px);
    display: grid; place-items: center; transition: all .3s var(--ease); opacity: .6;
}
.slider-arrow:hover { opacity: 1; background: var(--accent); border-color: var(--accent); transform: translateY(-50%) scale(1.08); }
.left-arrow { left: clamp(12px, 3vw, 40px); }
.right-arrow { right: clamp(12px, 3vw, 40px); }
@media (max-width: 640px){ .slider-arrow{ width:42px; height:42px; font-size:22px } }

.slider-dots { position: absolute; bottom: 92px; left: 50%; transform: translateX(-50%); z-index: 4; display: flex; gap: 10px; }
.dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.28); cursor: pointer; transition: all .3s var(--ease); }
.dot.active { background: var(--accent-2); width: 26px; border-radius: 999px; }

.hero__scroll {
    position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 4;
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    font-family: var(--font-mono); font-size: 10px; letter-spacing: .3em; color: var(--muted);
}
.hero__scroll i { width: 1px; height: 40px; background: linear-gradient(var(--accent-2), transparent); position: relative; overflow: hidden; }
.hero__scroll i::after { content:""; position:absolute; top:-100%; left:0; width:100%; height:60%; background: var(--text); animation: scrollLine 1.8s var(--ease) infinite; }
@keyframes scrollLine { 0%{top:-60%} 100%{top:100%} }


/* =========================================================
   MARQUEE
   ========================================================= */
.marquee {
    position: relative; overflow: hidden;
    border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.marquee__row { overflow: hidden; }
.marquee__row:first-child { background: var(--accent); color: #0a0a0b; padding: 16px 0; }
.marquee__row--alt { background: var(--bg-2); padding: 14px 0; border-top: 1px solid var(--line); }
.marquee__track { display: flex; white-space: nowrap; will-change: transform; animation: marquee 28s linear infinite; }
.marquee__track[data-dir="-1"] { animation-direction: reverse; animation-duration: 34s; }
.marquee__track span { font-family: var(--font-display); font-size: clamp(20px, 4vw, 40px); letter-spacing: .04em; padding-right: 22px; }
.marquee__row--alt .marquee__track span {
    color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.32);
    font-size: clamp(18px, 3.4vw, 34px);
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Split word reveal ---------- */
.line-reveal .word { display: inline-block; overflow: hidden; vertical-align: top; }
.line-reveal .word > i { display: inline-block; font-style: normal; transform: translateY(105%); transition: transform .9s var(--ease); }
.line-reveal.in .word > i { transform: translateY(0); }
.line-reveal.in .word:nth-child(2) > i { transition-delay: .06s; }
.line-reveal.in .word:nth-child(3) > i { transition-delay: .12s; }
.line-reveal.in .word:nth-child(4) > i { transition-delay: .18s; }
.line-reveal.in .word:nth-child(5) > i { transition-delay: .24s; }

/* =========================================================
   SECTION HEADS
   ========================================================= */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }

.section-head { max-width: var(--maxw); margin: 0 auto; padding: clamp(60px,10vw,120px) var(--pad) 40px; }
.section-head__kicker { display: block; font-family: var(--font-mono); font-size: 12px; letter-spacing: .3em; color: var(--accent); margin-bottom: 14px; }
.section-head__title { font-family: var(--font-display); font-size: clamp(44px, 9vw, 130px); line-height: .9; letter-spacing: -.01em; }

/* =========================================================
   PRODUCTS
   ========================================================= */
.products { position: relative; }
.collection-section { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad) clamp(50px,8vw,100px); }
.collection-header-wrapper { margin-bottom: 34px; border-bottom: 1px solid var(--line); padding-bottom: 18px; }
.collection-title { font-family: var(--font-display); font-size: clamp(28px, 5vw, 54px); line-height: 1; }
.collection-description { color: var(--muted); margin-top: 10px; max-width: 620px; }

.product-grid {
    display: grid; gap: clamp(14px, 2vw, 28px);
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.product-card {
    position: relative; background: var(--surface); border: 1px solid var(--line);
    border-radius: var(--radius); padding: 14px; cursor: pointer;
    opacity: 0; transform: translateY(40px);
    transition: transform .5s var(--ease), border-color .4s, background .4s, box-shadow .5s;
    transform-style: preserve-3d;
}
.product-card.in { opacity: 1; transform: translateY(0); }
.product-card:hover {
    border-color: var(--line-2); background: var(--surface-2);
    box-shadow: 0 30px 60px -30px rgba(0,0,0,.8), 0 0 0 1px var(--line-2);
}
.product-image-container {
    position: relative; aspect-ratio: 3/4; overflow: hidden; border-radius: var(--radius-sm);
    background: #0c0c0e;
}
.product-image, .product-image-hover {
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
    transition: opacity .55s var(--ease), transform .7s var(--ease);
}
.product-image-hover { opacity: 0; }
.product-card:hover .product-image { opacity: 0; transform: scale(1.06); }
.product-card:hover .product-image-hover { opacity: 1; transform: scale(1.06); }

.product-image-container::after {
    content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
    background: linear-gradient(to top, rgba(10,10,11,.55), transparent 45%);
    opacity: 0; transition: opacity .4s var(--ease);
}
.product-card:hover .product-image-container::after { opacity: 1; }

.product-card__index {
    position: absolute; top: 12px; right: 14px; z-index: 3;
    font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; color: rgba(255,255,255,.7);
}
.product-view {
    position: absolute; left: 50%; bottom: 16px; transform: translate(-50%, 12px); z-index: 3;
    font-family: var(--font-mono); font-size: 11px; font-weight: 700; letter-spacing: .18em;
    padding: 9px 18px; border-radius: 999px; color: #0a0a0b; background: var(--accent-2);
    opacity: 0; transition: all .4s var(--ease); white-space: nowrap; pointer-events: none;
}
.product-card:hover .product-view { opacity: 1; transform: translate(-50%, 0); }

.preorder-badge, .out-of-stock-badge {
    position: absolute; top: 12px; left: 12px; z-index: 3;
    font-family: var(--font-mono); font-size: 10px; font-weight: 700; letter-spacing: .12em;
    padding: 6px 11px; border-radius: 999px; backdrop-filter: blur(6px);
}
.preorder-badge { background: var(--accent-2); color: #0a0a0b; }
.out-of-stock-badge { background: rgba(10,10,11,.7); color: var(--muted); border: 1px solid var(--line-2); }

.product-title { font-size: 16px; font-weight: 600; margin: 16px 4px 4px; line-height: 1.3; }
.release-date { font-family: var(--font-mono); font-size: 12px; color: var(--accent-2); margin: 0 4px 6px; }
.price-container { display: flex; align-items: baseline; gap: 8px; margin: 4px 4px 14px; }
.current-price { font-family: var(--font-mono); font-size: 18px; font-weight: 700; color: var(--text); }

.buy-btn {
    position: relative; width: 100%; font-size: 12px; font-weight: 700; letter-spacing: .12em;
    padding: 14px; border-radius: 999px; color: #0a0a0b; background: var(--text); overflow: hidden;
    transition: color .35s;
}
.buy-btn::before { content:""; position:absolute; inset:0; background: linear-gradient(90deg,var(--accent),var(--accent-3)); transform: translateY(101%); transition: transform .4s var(--ease); }
.buy-btn > * { position: relative; z-index: 2; }
.buy-btn:hover:not(:disabled) { color: #fff; }
.buy-btn:hover:not(:disabled)::before { transform: translateY(0); }
.buy-btn:disabled { background: var(--surface-2); color: var(--faint); cursor: not-allowed; border: 1px solid var(--line); }

/* skeleton */
.grid-skeleton { display: grid; gap: 28px; grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }
.skel-card { aspect-ratio: 3/4.4; border-radius: var(--radius); background: linear-gradient(100deg, var(--surface) 30%, var(--surface-2) 50%, var(--surface) 70%); background-size: 200% 100%; animation: shimmer 1.4s infinite; }
@keyframes shimmer { to { background-position: -200% 0; } }

/* =========================================================
   DELIVERY
   ========================================================= */
.delivery-info { padding-bottom: clamp(40px,8vw,90px); }
.delivery-content { display: grid; grid-template-columns: 1.3fr 1fr; gap: 24px; }
@media (max-width: 820px){ .delivery-content { grid-template-columns: 1fr; } }
.delivery-block { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(24px,4vw,40px); }
.delivery-block h3 { font-family: var(--font-display); font-size: 24px; margin-bottom: 16px; letter-spacing: .02em; }
.delivery-block p { color: var(--muted); margin-bottom: 14px; }
.delivery-params { margin: 18px 0 24px; display: grid; gap: 10px; }
.delivery-params li { padding-left: 20px; position: relative; color: var(--text); }
.delivery-params li::before { content:"→"; position:absolute; left:0; color: var(--accent); }
.delivery-params strong { color: var(--muted); font-weight: 500; }
.cdek-btn {
    display: inline-flex; align-items: center; gap: 8px; position: relative; overflow: hidden;
    font-size: 12px; font-weight: 700; letter-spacing: .12em; padding: 14px 26px; border-radius: 999px;
    color: #0a0a0b; background: var(--accent-2); transition: transform .3s var(--ease);
}
.cdek-btn span { position: relative; z-index: 2; }
.delivery-block.highlight { background: linear-gradient(150deg, var(--surface-2), var(--surface)); border-color: var(--line-2); display: flex; flex-direction: column; justify-content: center; }
.delivery-block.highlight strong { color: var(--text); }
.promo-text.free-delivery { color: var(--accent-2); font-size: 18px; }
.promo-text.free-delivery strong { color: var(--accent-2); }

/* =========================================================
   ABOUT
   ========================================================= */
.about-us { padding-bottom: clamp(60px,10vw,120px); }
.about-content { max-width: 820px; }
.about-content p { color: var(--muted); margin-bottom: 20px; font-size: clamp(15px,2vw,18px); }
.about-lead { font-family: var(--font-display); font-size: clamp(26px,5vw,44px) !important; color: var(--text) !important; line-height: 1.15; letter-spacing: .01em; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { position: relative; border-top: 1px solid var(--line); padding: clamp(50px,8vw,90px) var(--pad) 40px; overflow: hidden; }
.footer__big {
    position: absolute; left: 50%; bottom: -6vw; transform: translateX(-50%);
    font-family: var(--font-display); font-size: clamp(120px, 34vw, 520px); line-height: .8;
    color: rgba(255,255,255,.03); pointer-events: none; user-select: none; white-space: nowrap;
}
.footer-content { position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.delivery-text { font-family: var(--font-display); font-size: 22px; letter-spacing: .04em; }
.origin-text { color: var(--muted); font-size: 13px; margin-top: 4px; }
.social-icons { display: flex; gap: 12px; }
.social-icon { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line-2); display: grid; place-items: center; transition: all .3s var(--ease); }
.social-icon img { width: 18px; height: 18px; filter: brightness(0) invert(1); opacity: .8; }
.social-icon:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-3px); }
.social-icon:hover img { opacity: 1; }
.made-on { font-family: var(--font-mono); font-size: 12px; color: var(--faint); }

/* ---------- Back to top ---------- */
.to-top {
    position: fixed; right: 22px; bottom: 22px; z-index: 90; width: 50px; height: 50px; border-radius: 50%;
    background: var(--text); color: #0a0a0b; font-size: 20px; display: grid; place-items: center;
    opacity: 0; visibility: hidden; transform: translateY(20px) scale(.8); transition: all .4s var(--ease);
    box-shadow: 0 12px 30px -10px rgba(0,0,0,.6);
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.to-top:hover { background: var(--accent); color: #fff; }

/* =========================================================
   MODAL
   ========================================================= */
.modal {
    position: fixed; inset: 0; z-index: 500; display: none; place-items: center;
    background: rgba(6,6,7,.8); backdrop-filter: blur(10px); padding: clamp(12px,3vw,40px); overflow-y: auto;
}
.modal.active { display: grid; }
.modal-content { position: relative; width: min(1040px, 100%); background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--radius); overflow: hidden; }
.close-modal { position: absolute; top: 16px; right: 18px; z-index: 10; width: 40px; height: 40px; border-radius: 50%; background: rgba(10,10,11,.6); backdrop-filter: blur(6px); display: grid; place-items: center; font-size: 18px; color: var(--text); transition: all .3s var(--ease); }
.close-modal:hover { background: var(--accent); transform: rotate(90deg); }

.product-modal-body { display: grid; grid-template-columns: 1.05fr 1fr; }
@media (max-width: 860px){ .product-modal-body { grid-template-columns: 1fr; } }

.product-gallery { position: relative; background: #0c0c0e; padding: 20px; display: flex; flex-direction: column; gap: 12px; }
.product-modal-img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: var(--radius-sm); }
.gallery-arrow { position: absolute; top: 45%; z-index: 4; width: 44px; height: 44px; border-radius: 50%; background: rgba(10,10,11,.55); border: 1px solid var(--line-2); backdrop-filter: blur(6px); font-size: 22px; color: var(--text); display: grid; place-items: center; transition: all .3s var(--ease); }
.gallery-arrow:hover { background: var(--accent); border-color: var(--accent); }
.gallery-arrow.left { left: 30px; } .gallery-arrow.right { right: 30px; }
.gallery-thumbs { display: flex; gap: 8px; flex-wrap: wrap; }
.gallery-thumbs img { width: 58px; height: 58px; object-fit: cover; border-radius: 8px; cursor: pointer; opacity: .5; border: 2px solid transparent; transition: all .25s; }
.gallery-thumbs img:hover { opacity: .85; }
.gallery-thumbs img.active { opacity: 1; border-color: var(--accent-2); }

.product-info { padding: clamp(24px,4vw,44px); display: flex; flex-direction: column; }
.modal-header h2 { font-family: var(--font-display); font-size: clamp(26px,4vw,42px); line-height: 1; letter-spacing: .01em; }
.product-modal-price { font-family: var(--font-mono); font-size: 26px; font-weight: 700; color: var(--accent-2); margin: 18px 0; }
.product-modal-status { margin-bottom: 12px; }
.preorder-text { display:inline-block; font-family: var(--font-mono); font-size: 13px; color: var(--accent-2); border:1px solid var(--line-2); padding: 6px 12px; border-radius: 999px; }
.out-of-stock-text { display:inline-block; font-family: var(--font-mono); font-size: 13px; color: var(--muted); border:1px solid var(--line-2); padding: 6px 12px; border-radius: 999px; }
.product-modal-description { color: var(--muted); line-height: 1.7; margin-bottom: 16px; }
.product-modal-description strong { color: var(--text); }
.product-modal-quantity { font-family: var(--font-mono); font-size: 14px; color: var(--muted); margin-bottom: 16px; }
.delivery-link { font-family: var(--font-mono); font-size: 13px; color: var(--accent); margin-bottom: 22px; transition: opacity .3s; align-self: flex-start; }
.delivery-link:hover { opacity: .7; }
.product-info .buy-btn { margin-top: auto; }

/* =========================================================
   Reveal utility
   ========================================================= */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 640px) {
    .header-nav { gap: 10px; }
    .contact-btn { padding: 9px 14px; font-size: 11px; }
    .icon-link.reviews-link { padding: 6px 9px; }
    .slider-dots { bottom: 74px; }
    .hero__tagline { gap: 10px; }
    .footer-content { flex-direction: column; align-items: flex-start; text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
    .banner-item.active { transform: none; }
}
