:root {
    --bg: #030305;
    --panel: rgba(255, 255, 255, 0.07);
    --panel-strong: rgba(14, 14, 18, 0.82);
    --ink: #f8f8f3;
    --muted: #aeb1bc;
    --line: rgba(255, 255, 255, 0.14);
    --red: #ff274e;
    --wine: #790015;
    --chrome: #efefea;
    --silver: #a9adb4;
    --cyan: #70e6ff;
    --green: #48ff91;
    --gold: #ffd36a;
    --pad: clamp(18px, 5vw, 76px);
    --radius: 18px;
    --shadow: 0 30px 100px rgba(0, 0, 0, 0.58);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 92px;
    background: var(--bg);
}

body {
    margin: 0;
    overflow-x: hidden;
    color: var(--ink);
    background:
        radial-gradient(circle at 76% 6%, rgba(255, 39, 78, 0.22), transparent 28%),
        radial-gradient(circle at 14% 20%, rgba(112, 230, 255, 0.12), transparent 28%),
        linear-gradient(180deg, #030305, #09090d 48%, #030305);
    font-family: "Inter Tight", Inter, Arial, sans-serif;
    font-size: clamp(1rem, 0.94rem + 0.2vw, 1.14rem);
    line-height: 1.55;
    text-rendering: optimizeLegibility;
}

body.cart-open {
    overflow: hidden;
}

body.is-paused *,
body.is-paused *::before,
body.is-paused *::after {
    animation-play-state: paused !important;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

button,
.btn,
input {
    font: inherit;
}

button,
.btn {
    border: 0;
    cursor: pointer;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.65), transparent 86%);
}

.energy-fx {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
    opacity: 0.45;
}

.energy-fx span {
    position: absolute;
    left: -44vw;
    width: 42vw;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 39, 78, 0.86), rgba(239, 239, 234, 0.68), transparent);
    transform: rotate(-15deg);
    animation: streak 12s linear infinite paused;
}

.energy-fx span:nth-child(1) { top: 22%; animation-delay: 0s; }
.energy-fx span:nth-child(2) { top: 48%; animation-delay: 3.4s; }
.energy-fx span:nth-child(3) { top: 70%; animation-delay: 6.8s; }
.energy-fx span:nth-child(4) { top: 86%; animation-delay: 9.2s; }
body.is-hydrated .energy-fx span { animation-play-state: running; }

@keyframes streak {
    to {
        transform: translate3d(154vw, 0, 0) rotate(-15deg);
        opacity: 0;
    }
}

.brand-nav {
    position: fixed;
    top: 14px;
    right: var(--pad);
    left: var(--pad);
    z-index: 60;
    display: flex;
    align-items: center;
    gap: 24px;
    min-height: 68px;
    padding: 10px 12px 10px 18px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(4, 4, 7, 0.62);
    box-shadow: 0 18px 52px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(22px);
    transition: background 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.brand-nav.is-scrolled {
    background: rgba(4, 4, 7, 0.84);
    border-color: rgba(255, 255, 255, 0.2);
}

.nav-original-logo {
    display: block;
    width: clamp(120px, 17vw, 236px);
    flex: 0 0 auto;
}

.nav-original-logo img,
.footer-logo {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 24px rgba(255, 39, 78, 0.32));
}

.brand-nav nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(10px, 2vw, 24px);
    width: 100%;
    color: rgba(248, 248, 243, 0.76);
    font-size: 0.9rem;
    font-weight: 900;
    text-transform: uppercase;
}

.brand-nav nav a {
    padding: 10px 12px;
    border-radius: 999px;
    transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.brand-nav nav a:hover,
.brand-nav nav a:focus-visible {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 28px rgba(255, 39, 78, 0.22);
    outline: none;
}

.menu-btn {
    display: none;
    margin-left: auto;
    padding: 12px 16px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-weight: 900;
}

.hero {
    position: relative;
    z-index: 1;
    min-height: 100svh;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1.08fr);
    gap: clamp(24px, 4vw, 64px);
    align-items: end;
    padding: 128px var(--pad) 84px;
    overflow: hidden;
    isolation: isolate;
}

.hero-bg,
.hero-bg img,
.hero-noise {
    position: absolute;
    inset: 0;
}

.hero-bg {
    z-index: -3;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    filter: saturate(1.08) contrast(1.1) brightness(0.58);
    transform: scale(1.04);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(circle at calc(var(--touch-x, 64) * 1%) calc(var(--touch-y, 34) * 1%), rgba(255, 39, 78, 0.34), transparent 24%),
        radial-gradient(circle at 78% 56%, rgba(239, 239, 234, 0.18), transparent 23%),
        linear-gradient(90deg, rgba(3, 3, 5, 0.96), rgba(3, 3, 5, 0.52) 58%, rgba(3, 3, 5, 0.9)),
        linear-gradient(180deg, rgba(3, 3, 5, 0.16), #030305 94%);
}

.hero-noise {
    z-index: -1;
    opacity: 0.2;
    background-image:
        linear-gradient(120deg, transparent 0 46%, rgba(255, 255, 255, 0.18) 47%, transparent 48% 100%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.4) 0 1px, transparent 1px);
    background-size: 760px 760px, 4px 4px;
    mix-blend-mode: screen;
}

.hero-copy {
    min-width: 0;
    max-width: 880px;
}

.demo-note,
.kicker {
    display: inline-flex;
    max-width: 100%;
    align-items: center;
    gap: 8px;
    padding: 8px 13px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255, 39, 78, 0.22), rgba(255, 255, 255, 0.08));
    color: var(--chrome);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    line-height: 1.15;
    text-transform: uppercase;
    backdrop-filter: blur(16px);
}

.kicker::before,
.demo-note::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 18px rgba(255, 39, 78, 0.92);
}

.hero h1,
.section h2,
.slide h2,
.campaign-scene h2,
.gallery-hero h2,
.statement-wall strong,
.contact h2,
.faq h2 {
    margin: 16px 0;
    font-family: "Bebas Neue", Anton, Impact, sans-serif;
    font-weight: 400;
    line-height: 0.78;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 8ch;
    min-height: 1.68em;
    font-size: clamp(5rem, 12vw, 13rem);
    text-shadow: 0 0 44px rgba(255, 39, 78, 0.4);
}

.typewrite {
    position: relative;
    display: block;
}

.type-line {
    background: linear-gradient(105deg, #fff 0%, #fff 48%, #d7d7d2 63%, #ff3158 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.type-caret {
    display: inline-block;
    width: 0.07em;
    height: 0.76em;
    margin-left: 0.05em;
    border-radius: 999px;
    background: var(--red);
    box-shadow: 0 0 18px rgba(255, 39, 78, 0.8);
    vertical-align: -0.04em;
    animation: caret 900ms steps(2, end) infinite;
}

@keyframes caret {
    50% { opacity: 0; }
}

.hero p,
.section p,
.slide p,
.campaign-scene p,
.gallery-hero p,
.product p,
.cart-intro,
details p {
    color: var(--muted);
    line-height: 1.65;
}

.hero p {
    max-width: 680px;
    font-size: clamp(1.08rem, 1.4vw, 1.35rem);
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 28px;
}

.btn,
.product button,
.shop-toolbar button,
.discount-box button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 13px 20px;
    border-radius: 999px;
    font-weight: 900;
    text-transform: uppercase;
    transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease, background 180ms ease;
}

.btn.primary,
.primary,
.product button {
    color: #fff;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.22), transparent 34%),
        linear-gradient(135deg, var(--red), var(--wine) 70%, #210207);
    box-shadow: 0 22px 54px rgba(255, 39, 78, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.btn.ghost {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.065);
    color: #fff;
    backdrop-filter: blur(16px);
}

.btn:hover,
.product button:hover,
.shop-toolbar button:hover,
.discount-box button:hover {
    transform: translate3d(0, -2px, 0);
    filter: saturate(1.12);
}

.hero-claim {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.hero-claim li {
    padding: 9px 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-size: 0.86rem;
    font-weight: 900;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
}

.hero-product {
    position: relative;
    margin: 0;
    min-height: 610px;
    align-self: center;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius);
    background:
        radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.16), transparent 28%),
        radial-gradient(circle at 68% 78%, rgba(255, 39, 78, 0.24), transparent 36%),
        rgba(9, 9, 13, 0.72);
    box-shadow: var(--shadow);
    transform: rotate(1.2deg);
    backdrop-filter: blur(16px);
}

.hero-product__halo {
    position: absolute;
    inset: 8% 3% 2%;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(255, 255, 255, 0.22), transparent 32%),
        radial-gradient(circle at 68% 38%, rgba(255, 39, 78, 0.38), transparent 42%),
        radial-gradient(circle at 28% 70%, rgba(112, 230, 255, 0.18), transparent 34%);
    filter: blur(6px);
}

.hero-product > img {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 610px;
    object-fit: cover;
    animation: floatCan 6s ease-in-out infinite;
}

@keyframes floatCan {
    50% { transform: translate3d(0, -10px, 0) scale(1.01); }
}

.hero-product__tag {
    position: absolute;
    z-index: 4;
    padding: 9px 11px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
}

.hero-product__tag--top { top: 28px; right: 28px; }
.hero-product__tag--bottom { bottom: 116px; left: 28px; }

.hero-product figcaption {
    position: absolute;
    right: 22px;
    bottom: 22px;
    left: 22px;
    z-index: 4;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 14px;
    background: rgba(4, 4, 7, 0.72);
    backdrop-filter: blur(16px);
}

.hero-product figcaption strong {
    color: #fff;
}

.hero-product figcaption span {
    color: var(--muted);
}

.hero-metrics {
    position: absolute;
    right: var(--pad);
    bottom: 22px;
    left: var(--pad);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    max-width: 760px;
}

.hero-metrics span {
    display: grid;
    gap: 4px;
    padding: 13px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.055);
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    backdrop-filter: blur(14px);
}

.hero-metrics strong {
    color: #fff;
    font-family: "Bebas Neue", Anton, sans-serif;
    font-size: 2rem;
    line-height: 0.9;
}

.ticker {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 34px;
    overflow: hidden;
    padding: 14px var(--pad);
    border-block: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(3, 3, 5, 0.92);
}

.ticker span {
    flex: 0 0 auto;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.42);
    font-family: "Bebas Neue", Anton, sans-serif;
    font-size: clamp(2rem, 5vw, 5rem);
    line-height: 0.9;
    white-space: nowrap;
    animation: rail 26s linear infinite paused;
}

.ticker.is-inview span {
    animation-play-state: running;
}

@keyframes rail {
    to { transform: translate3d(-520px, 0, 0); }
}

.section,
.campaign-stack,
.energy-gallery {
    position: relative;
    z-index: 1;
    content-visibility: auto;
    contain-intrinsic-size: 800px;
}

.section {
    padding: clamp(72px, 10vw, 130px) var(--pad);
}

.section-head {
    max-width: 920px;
    margin-bottom: 30px;
}

.section h2,
.slide h2,
.campaign-scene h2,
.gallery-hero h2,
.contact h2,
.faq h2 {
    font-size: clamp(4rem, 8.2vw, 9.8rem);
}

.split,
.shop-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 28px;
    align-items: center;
}

.wide-image {
    width: 100%;
    min-height: 560px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.mini-grid,
.mode-grid,
.flavor-cinema,
.product-grid,
.gallery-strip {
    display: grid;
    gap: 16px;
}

.mini-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 26px;
}

.mini-grid article,
.mode-grid article,
.product,
.shop-cart,
.flavor-scene,
details,
.cart-panel {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.026)),
        rgba(7, 7, 10, 0.7);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.mini-grid article {
    padding: 20px;
}

.mini-grid strong {
    display: block;
    color: #fff;
    font-family: "Bebas Neue", Anton, sans-serif;
    font-size: clamp(2.8rem, 5vw, 5rem);
    line-height: 0.86;
}

.mini-grid span {
    color: var(--muted);
    font-size: 0.94rem;
}

.social-strip {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.3fr 0.82fr 0.82fr 0.92fr;
    gap: 14px;
    padding: 28px var(--pad);
    background: #030305;
}

.social-card {
    position: relative;
    min-height: 380px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #07070b;
    box-shadow: var(--shadow);
    isolation: isolate;
}

.social-card--feature {
    min-height: 500px;
}

.social-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    filter: saturate(1.12) contrast(1.08);
    transform: scale(1.02);
    transition: transform 620ms ease, filter 620ms ease;
}

.social-card:hover img {
    transform: scale(1.07);
    filter: saturate(1.28) contrast(1.1);
}

.social-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(circle at 78% 18%, rgba(255, 39, 78, 0.2), transparent 34%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.82));
}

.social-card div {
    position: absolute;
    right: 18px;
    bottom: 18px;
    left: 18px;
    z-index: 2;
    display: grid;
    gap: 8px;
}

.social-card span,
.social-card small,
.product-body span,
.product-body small {
    width: fit-content;
    max-width: 100%;
    padding: 7px 10px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--chrome);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
}

.social-card strong {
    max-width: 12ch;
    font-family: "Bebas Neue", Anton, sans-serif;
    font-size: clamp(3rem, 5vw, 6rem);
    line-height: 0.82;
    text-transform: uppercase;
}

.social-card--stat {
    display: grid;
    align-content: space-between;
    padding: 20px;
    background:
        radial-gradient(circle at 76% 18%, rgba(255, 39, 78, 0.24), transparent 38%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.028));
}

.social-card--stat::after {
    display: none;
}

.social-card--stat strong {
    max-width: 9ch;
}

.statement-wall {
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: clamp(80px, 12vw, 150px) var(--pad);
    text-align: center;
    background:
        radial-gradient(circle at 72% 24%, rgba(255, 39, 78, 0.2), transparent 34%),
        linear-gradient(90deg, rgba(255, 39, 78, 0.15), rgba(112, 230, 255, 0.08)),
        #050507;
}

.statement-wall strong {
    display: block;
    font-size: clamp(5rem, 14vw, 15rem);
}

.statement-wall span {
    display: block;
    max-width: 680px;
    margin: 10px auto 0;
    color: var(--muted);
    font-weight: 900;
    text-transform: uppercase;
}

.cinematic-slider,
.campaign-scene,
.gallery-hero {
    position: relative;
    z-index: 1;
    overflow: hidden;
    isolation: isolate;
}

.cinematic-slider {
    display: grid;
    min-height: 92svh;
    background: #030305;
    border-block: 1px solid rgba(255, 255, 255, 0.1);
}

.slide {
    position: absolute;
    inset: 0;
    display: grid;
    align-items: end;
    opacity: 0;
    pointer-events: none;
    transition: opacity 520ms ease;
}

.slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.slide img,
.campaign-scene img,
.gallery-hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.02);
}

.slide::after,
.campaign-scene::after,
.gallery-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 78% 18%, rgba(255, 39, 78, 0.18), transparent 34%),
        linear-gradient(180deg, rgba(3, 3, 5, 0.12), rgba(3, 3, 5, 0.88));
}

.slide div,
.campaign-scene div,
.gallery-hero div {
    position: relative;
    z-index: 2;
    max-width: 840px;
    margin: auto auto 9vh var(--pad);
    padding-left: 18px;
    border-left: 1px solid rgba(255, 39, 78, 0.55);
}

.slide.is-active img,
.campaign-scene.is-inview img,
.gallery-hero.is-inview img {
    animation: ken 24s ease-in-out infinite alternate;
}

@keyframes ken {
    to { transform: translate3d(-1%, var(--parallax-y, 0), 0) scale(1.06); }
}

.flavor-cinema {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.flavor-scene {
    --flavor: var(--red);
    position: relative;
    min-height: 520px;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 18%, color-mix(in srgb, var(--flavor), transparent 48%), transparent 46%),
        rgba(7, 7, 10, 0.82);
}

.flavor-scene img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    transition: transform 620ms ease;
}

.flavor-scene:hover img {
    transform: scale(1.055);
}

.flavor-scene::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 32%, rgba(3, 3, 5, 0.9));
}

.flavor-scene div {
    position: absolute;
    right: 18px;
    bottom: 18px;
    left: 18px;
    z-index: 2;
}

.flavor-scene span {
    color: var(--flavor);
    font-weight: 900;
    text-transform: uppercase;
}

.flavor-scene h3 {
    margin: 8px 0 0;
    font-family: "Bebas Neue", Anton, sans-serif;
    font-size: clamp(2.4rem, 4vw, 4.6rem);
    line-height: 0.86;
    text-transform: uppercase;
}

.flavor-cherry { --flavor: #ff3a78; }
.flavor-woodruff { --flavor: #54ff8e; }
.flavor-blue { --flavor: #7368ff; }
.flavor-silver { --flavor: #f1f1ed; }

.products {
    background:
        radial-gradient(circle at 78% 10%, rgba(112, 230, 255, 0.1), transparent 28%),
        radial-gradient(circle at 16% 22%, rgba(255, 39, 78, 0.16), transparent 30%),
        linear-gradient(180deg, #030305, #0a0a0f 50%, #030305);
}

.shop-promo {
    display: inline-flex;
    width: fit-content;
    max-width: 100%;
    margin: 4px 0 0;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.07);
    color: #fff !important;
    font-weight: 900;
}

.shop-promo strong {
    color: #fff;
    text-shadow: 0 0 16px rgba(255, 39, 78, 0.7);
}

.shop-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 24px;
}

.shop-toolbar button {
    min-height: 44px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}

.shop-toolbar button.is-active {
    border-color: rgba(255, 39, 78, 0.58);
    background: rgba(255, 39, 78, 0.22);
    box-shadow: 0 0 30px rgba(255, 39, 78, 0.18);
}

.shop-layout {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
    align-items: start;
}

.product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product {
    --tone: var(--red);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.product:hover {
    border-color: color-mix(in srgb, var(--tone), white 18%);
    transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translate3d(0, -4px, 0);
    box-shadow: 0 34px 110px color-mix(in srgb, var(--tone), transparent 78%);
}

.product.is-hidden {
    display: none;
}

.product::after {
    content: attr(data-flavor);
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 4;
    max-width: 160px;
    padding: 7px 9px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
}

.product figure {
    position: relative;
    height: 340px;
    margin: 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 18%, color-mix(in srgb, var(--tone), transparent 45%), transparent 48%),
        #07070b;
}

.product figure::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 28%, rgba(3, 3, 5, 0.78));
}

.product img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 420ms ease;
}

.product:hover img {
    transform: scale(1.045);
}

.product-body {
    display: grid;
    gap: 10px;
    padding: 20px;
}

.product h3,
.shop-cart h3,
.cart-panel h2 {
    margin: 0;
    font-family: "Bebas Neue", Anton, sans-serif;
    font-size: clamp(2.4rem, 4vw, 4.6rem);
    line-height: 0.86;
    text-transform: uppercase;
}

.product p {
    margin: 0;
    font-size: 0.96rem;
}

.product-body small {
    color: color-mix(in srgb, var(--tone), white 42%);
}

.product strong {
    display: inline-flex;
    width: fit-content;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-family: "Bebas Neue", Anton, sans-serif;
    font-size: 2.1rem;
    line-height: 0.88;
}

.cherry-peach { --tone: #ff3a78; }
.cherry { --tone: #ff123d; }
.peach { --tone: #ffb45d; }
.blackberry { --tone: #8d42ff; }
.blueberry { --tone: #4e72ff; }
.woodruff { --tone: #4aff88; }
.original { --tone: #ffd36a; }
.sugarfree { --tone: #f1f1ed; }

.shop-cart {
    position: sticky;
    top: 104px;
    padding: 22px;
}

.shop-cart ul,
.cart-panel ul {
    display: grid;
    gap: 10px;
    min-height: 72px;
    margin: 16px 0;
    padding: 0;
    list-style: none;
}

.shop-cart li,
.cart-panel li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--muted);
}

.cart-item {
    display: grid;
    gap: 8px;
}

.cart-item span,
.cart-item small {
    display: grid;
    color: var(--muted);
}

.cart-qty {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-qty button,
.cart-remove {
    min-height: 34px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin: 16px 0;
    padding-top: 14px;
    border-top: 1px solid var(--line);
}

.cart-total strong {
    color: #fff;
}

.cart-discount strong {
    color: #7dffb2;
}

.cart-grand strong {
    font-size: 1.45rem;
}

.discount-box {
    display: grid;
    gap: 10px;
    margin: 16px 0;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.055);
}

.discount-box label {
    color: #fff;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.discount-box div {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
}

.discount-box input {
    min-width: 0;
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.28);
    color: #fff;
    text-transform: uppercase;
}

.discount-box button {
    min-height: 42px;
    padding: 9px 14px;
    background: #fff;
    color: #09090f;
}

.campaign-stack {
    display: grid;
}

.campaign-scene {
    min-height: 96svh;
}

.mode-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mode-grid article {
    min-height: 230px;
    padding: 22px;
}

.mode-grid article span {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red), var(--wine));
    color: #fff;
    font-size: 0.8rem;
    font-weight: 900;
}

.mode-grid h3 {
    margin: 18px 0 8px;
    font-family: "Bebas Neue", Anton, sans-serif;
    font-size: clamp(2.4rem, 4vw, 4.4rem);
    line-height: 0.86;
}

.energy-gallery {
    padding: 0 var(--pad) clamp(72px, 10vw, 130px);
    background: #030305;
}

.gallery-hero {
    min-height: 82svh;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.gallery-strip {
    grid-template-columns: 1.15fr 0.85fr 1fr;
    align-items: end;
    margin-top: 16px;
}

.gallery-strip img {
    width: 100%;
    aspect-ratio: 4 / 5;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.gallery-strip img:nth-child(2) {
    margin-top: -84px;
    aspect-ratio: 4 / 6;
}

.faq {
    max-width: 980px;
    margin: auto;
}

details {
    padding: 20px;
    margin-top: 12px;
}

summary {
    cursor: pointer;
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
}

.contact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    background:
        radial-gradient(circle at 72% 18%, rgba(255, 39, 78, 0.18), transparent 34%),
        linear-gradient(135deg, rgba(255, 39, 78, 0.16), rgba(112, 230, 255, 0.07));
}

.contact > div {
    max-width: 900px;
}

.footer {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    padding: 28px var(--pad);
    border-top: 1px solid var(--line);
    background: #030305;
    color: var(--muted);
}

.footer-logo {
    width: 180px;
}

.cart-fab {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 70;
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.22), transparent 36%),
        linear-gradient(135deg, var(--red), var(--wine));
    color: #fff;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.42), 0 0 34px rgba(255, 39, 78, 0.22);
}

.cart-fab::before {
    content: "";
    width: 22px;
    height: 22px;
    border: 2px solid currentColor;
    border-top: 0;
    border-radius: 0 0 7px 7px;
    transform: translateY(3px);
}

.cart-fab::after {
    content: "";
    position: absolute;
    top: 15px;
    width: 17px;
    height: 9px;
    border: 2px solid currentColor;
    border-bottom: 0;
    border-radius: 12px 12px 0 0;
}

.cart-fab span {
    position: absolute;
    top: -5px;
    right: -5px;
    display: grid;
    place-items: center;
    min-width: 24px;
    height: 24px;
    border-radius: 999px;
    background: #fff;
    color: #08080d;
    font-size: 0.74rem;
    font-weight: 900;
}

.cart-overlay {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: grid;
    justify-items: end;
    pointer-events: none;
    opacity: 0;
    transition: opacity 180ms ease;
}

.cart-overlay.is-open {
    pointer-events: auto;
    opacity: 1;
}

.cart-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
}

.cart-panel {
    position: relative;
    z-index: 1;
    width: min(420px, 100%);
    height: 100%;
    padding: 24px;
    overflow: auto;
    border-radius: 0;
    background: rgba(7, 7, 10, 0.94);
    transform: translateX(100%);
    transition: transform 220ms ease;
}

.cart-overlay.is-open .cart-panel {
    transform: translateX(0);
}

.cart-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.cart-panel-head button {
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-weight: 900;
}

.reveal,
.city-grid article,
.mode-grid article,
.product,
.wide-image,
.gallery-strip img {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
    transition: opacity 680ms ease, transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
}

.is-visible,
.fx-visible,
.city-grid article.is-visible,
.mode-grid article.is-visible,
.product.is-visible,
.wide-image.is-visible,
.gallery-strip img.is-visible {
    opacity: 1;
    transform: translate3d(0, var(--parallax-y, 0), 0);
}

.is-touching {
    transform: scale(0.985) !important;
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *,
    *::before,
    *::after {
        animation-duration: 1ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 1ms !important;
    }
    .reveal,
    .product,
    .wide-image,
    .gallery-strip img {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 1160px) {
    .hero,
    .split,
    .shop-layout {
        grid-template-columns: 1fr;
    }

    .hero-product {
        max-width: 860px;
        width: 100%;
        justify-self: center;
    }

    .product-grid,
    .mode-grid,
    .flavor-cinema {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .social-strip {
        grid-template-columns: 1fr 1fr;
    }

    .shop-cart {
        position: static;
    }
}

@media (max-width: 860px) {
    .brand-nav {
        top: 9px;
        right: 9px;
        left: 9px;
        min-height: 64px;
    }

    .menu-btn {
        display: inline-flex;
    }

    .brand-nav nav {
        position: absolute;
        top: calc(100% + 8px);
        right: 0;
        left: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 12px;
        border: 1px solid var(--line);
        border-radius: 18px;
        background: rgba(4, 4, 7, 0.94);
        box-shadow: var(--shadow);
    }

    .brand-nav nav.is-open {
        display: flex;
    }

    .brand-nav nav a {
        width: 100%;
    }

    .hero {
        padding-top: 112px;
        padding-bottom: 34px;
    }

    .hero h1 {
        max-width: 7.4ch;
        font-size: clamp(4.2rem, 21vw, 8rem);
    }

    .hero p {
        font-size: 1.02rem;
    }

    .hero-product {
        min-height: 430px;
        transform: none;
    }

    .hero-product > img {
        min-height: 430px;
    }

    .hero-product figcaption {
        flex-direction: column;
        gap: 5px;
    }

    .hero-metrics {
        position: relative;
        right: auto;
        bottom: auto;
        left: auto;
        grid-column: 1;
        grid-template-columns: 1fr 1fr 1fr;
        max-width: none;
        margin-top: 8px;
    }

    .hero-metrics span {
        min-height: 70px;
        padding: 10px;
        font-size: 0.62rem;
    }

    .ticker span {
        font-size: clamp(2.4rem, 13vw, 4.8rem);
    }

    .social-strip {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-right: var(--pad);
    }

    .social-card,
    .social-card--feature {
        flex: 0 0 min(84vw, 390px);
        min-height: 430px;
        scroll-snap-align: start;
    }

    .section h2,
    .slide h2,
    .campaign-scene h2,
    .gallery-hero h2,
    .contact h2,
    .faq h2 {
        font-size: clamp(3.8rem, 16vw, 7rem);
    }

    .mini-grid,
    .product-grid,
    .mode-grid,
    .flavor-cinema,
    .gallery-strip {
        grid-template-columns: 1fr;
    }

    .flavor-scene,
    .flavor-scene img {
        min-height: 440px;
    }

    .campaign-scene,
    .cinematic-slider,
    .gallery-hero {
        min-height: 78svh;
    }

    .slide div,
    .campaign-scene div,
    .gallery-hero div {
        right: var(--pad);
        margin-bottom: 8vh;
    }

    .gallery-strip {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
    }

    .gallery-strip img,
    .gallery-strip img:nth-child(2) {
        flex: 0 0 min(82vw, 380px);
        margin-top: 0;
        scroll-snap-align: start;
    }

    .contact {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .nav-original-logo {
        width: 116px;
    }

    .hero {
        padding-top: 96px;
    }

    .hero h1 {
        font-size: clamp(3.7rem, 20vw, 6.2rem);
    }

    .actions,
    .contact .btn {
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    .hero-metrics {
        grid-template-columns: 1fr;
    }

    .product figure {
        height: 360px;
    }

    .cart-fab {
        right: 16px;
        bottom: 16px;
    }
}

.drop-finder {
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(420px, 1.18fr);
    gap: clamp(28px, 6vw, 90px);
    align-items: center;
    background: radial-gradient(circle at 82% 48%, rgba(255, 39, 78, .14), transparent 32%), #07070a;
}

.drop-finder-copy > p,
.product-transparency .section-head > p,
.transparency-grid p,
.caffeine-note {
    color: var(--muted);
}

.drop-choices {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 28px;
}

.drop-choices button {
    min-height: 46px;
    padding: 10px 13px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255,255,255,.04);
    color: var(--ink);
    text-align: left;
    cursor: pointer;
}

.drop-choices button.is-active {
    border-color: var(--red);
    background: rgba(255, 39, 78, .14);
    box-shadow: 0 0 32px rgba(255,39,78,.12);
}

.drop-result {
    min-height: 600px;
    display: grid;
    grid-template-columns: 1fr .9fr;
    align-items: center;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(255,255,255,.09), rgba(255,255,255,.025));
    box-shadow: var(--shadow);
}

.drop-result > div {
    padding: clamp(24px, 4vw, 50px);
}

.drop-result small,
.drop-result strong {
    display: block;
}

.drop-result small,
.transparency-grid span {
    color: var(--red);
    font-size: .66rem;
    font-weight: 900;
    letter-spacing: .14em;
}

.drop-result strong {
    margin: 10px 0;
    font-size: clamp(2.1rem, 4vw, 4.5rem);
    line-height: .95;
    letter-spacing: -.05em;
}

.drop-result button {
    margin-top: 18px;
    padding: 12px 16px;
    border: 0;
    border-radius: 7px;
    background: var(--red);
    color: #fff;
    font-weight: 900;
    cursor: pointer;
}

.drop-result img {
    width: 100%;
    height: 600px;
    object-fit: contain;
    filter: drop-shadow(0 35px 45px rgba(0,0,0,.7));
    transition: .35s opacity, .35s transform;
}

.drop-result.is-changing img {
    opacity: .35;
    transform: translateY(12px) scale(.98);
}

.product-transparency {
    background: #0b0b0f;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.product-transparency .section-head {
    max-width: 980px;
}

.transparency-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin-top: 45px;
    background: var(--line);
}

.transparency-grid article {
    padding: clamp(24px, 4vw, 46px);
    background: #0b0b0f;
}

.transparency-grid strong {
    display: block;
    margin: 10px 0;
    font-size: 1.45rem;
}

.caffeine-note {
    max-width: 980px;
    margin-top: 28px;
    font-size: .76rem;
}

@media (max-width: 900px) {
    .drop-finder {
        grid-template-columns: 1fr;
    }

    .drop-result {
        min-height: 0;
    }

    .transparency-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .drop-choices,
    .drop-result {
        grid-template-columns: 1fr;
    }

    .drop-result img {
        height: 440px;
    }
}
