* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #050505;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
}

.nav {
    position: sticky;
    top: 0;
    z-index: 10;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 42px;
    background: rgba(5, 5, 5, .90);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.brand {
    display: flex;
    align-items: center;
    color: #fff;
    text-decoration: none;
    font-weight: 900;
    letter-spacing: 4px;
    font-size: 22px;
}

.brand img {
    height: 95px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 16px rgba(0, 255, 100, 0.95));
    transition: 0.3s;
}

.brand img:hover {
    transform: scale(1.06);
}

.nav a {
    color: #fff;
    text-decoration: none;
    margin-left: 20px;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
}

.hero {
    min-height: 78vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}



.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(5,5,5,0.95) 0%, rgba(5,5,5,0.6) 40%, rgba(5,5,5,0.2) 100%),
        url('uploads/products/hero.webp') center top / cover no-repeat;
    transform: scale(1.05);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    padding: 80px 7vw;
}

.eyebrow,
.section-head span {
    color: #aaa;
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: clamp(44px, 7vw, 96px);
    line-height: .9;
    margin: 18px 0;
    text-transform: uppercase;
}

.hero p {
    color: #c9c9c9;
    font-size: 18px;
    max-width: 520px;
}

.cta,
.order,
.whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 22px;
    padding: 15px 24px;
    background: #fff;
    color: #000;
    text-decoration: none;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 999px;
    box-shadow: 0 0 30px rgba(255, 255, 255, .18);
}

.wrap {
    max-width: 1280px;
    margin: auto;
    padding: 55px 24px;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 28px;
}

.section-head h2 {
    font-size: 42px;
    margin: 0;
    text-transform: uppercase;
}

.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
    gap: 24px;
}

.card {
    position: relative;
    background: #101010;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .35);
    transition: .25s;
}

.card:hover {
    transform: translateY(-7px);
    border-color: rgba(255, 255, 255, .22);
}

.photo {
    display: block;
    background: #151515;
    height: 340px;
    overflow: hidden;
}

.photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #0b0b0b;
    transition: .35s;
}

.card:hover img {
    transform: scale(1.06);
}

.badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    background: #fff;
    color: #000;
    border-radius: 999px;
    padding: 8px 11px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
}

.badge.sold {
    background: #2a2a2a;
    color: #aaa;
}

.info {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    align-items: start;
    padding: 18px;
}

.info h3 {
    margin: 0 0 6px;
    font-size: 18px;
}

.info p {
    margin: 0;
    color: #888;
}

.info strong {
    white-space: nowrap;
}

.order {
    margin: 0 18px 18px;
    width: calc(100% - 36px);
    box-shadow: none;
}

.empty {
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 24px;
    padding: 30px;
    background: #111;
}

.product-wrap {
    max-width: 1200px;
    margin: 50px auto;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 45px;
    padding: 0 24px;
}

.product-img {
    background: #101010;
    border-radius: 30px;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 720px;
    object-fit: cover;
    display: block;
}

.product-meta {
    padding: 35px 0;
}

.product-meta h1 {
    font-size: 56px;
    line-height: .95;
    margin: 15px 0;
    text-transform: uppercase;
}

.big-price {
    font-size: 32px;
    font-weight: 900;
    margin: 20px 0;
}

.product-meta p {
    color: #cfcfcf;
    line-height: 1.7;
}

.sizes {
    display: flex;
    gap: 10px;
    margin: 25px 0;
}

.sizes button {
    background: #111;
    color: #fff;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 13px 16px;
    cursor: pointer;
}

.sizes button.active,
.sizes button:hover {
    background: #fff;
    color: #000;
}

.whatsapp {
    background: #25d366;
    color: #07160c;
}

.sold-box {
    display: inline-block;
    background: #222;
    color: #888;
    border-radius: 999px;
    padding: 15px 24px;
    font-weight: 900;
}

footer {
    text-align: center;
    color: #777;
    padding: 45px 20px;
    border-top: 1px solid rgba(255, 255, 255, .07);
}

@media (max-width: 760px) {
    .nav {
        height: 90px;
        padding: 0 18px;
    }

    .brand img {
        height: 70px;
    }

    .hero-content {
        padding: 55px 24px;
    }

    .section-head {
        display: block;
    }

    .products {
        grid-template-columns: 1fr;
    }

    .product-wrap {
        grid-template-columns: 1fr;
        margin-top: 25px;
    }

    .product-img img {
        height: 430px;
    }

    .product-meta h1 {
        font-size: 38px;
    }

    .photo {
        height: 390px;
    }
}


.nav {
    transition: all 0.3s ease;
}

.nav.shrink {
    height: 75px;
    padding: 0 28px;
    background: rgba(5, 5, 5, 0.95);
}

.nav.shrink .brand img {
    height: 60px;
}


.music-toggle {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 99;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(5,5,5,.78);
    color: #fff;
    backdrop-filter: blur(14px);
    border-radius: 999px;
    padding: 12px 18px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
}

.music-toggle.active {
    background: #25d366;
    color: #041008;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 40%, rgba(0,0,0,0.8));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.nav {
    position: relative;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* LOGO CENTER */
.center-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.center-logo img {
    height: 85px;
}

/* HAMBURGER */
.hamburger {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
    cursor: pointer;
    z-index: 10;
}

.hamburger span {
    display: block;
    height: 3px;
    background: #fff;
    margin: 5px 0;
}

/* MENU */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    height: 100vh;
    background: #050505;
    padding: 120px 30px;
    transition: 0.3s;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu a {
    display: block;
    color: #fff;
    margin-bottom: 20px;
    text-decoration: none;
}

/* ===== HEADER FIX ===== */

.nav {
    position: sticky !important;
    top: 0;
    z-index: 9999;
    height: 125px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(5, 5, 5, .90);
    backdrop-filter: blur(14px);
    transition: all .30s ease;
}

.nav.shrink {
    height: 78px;
}

.center-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.center-logo img {
    height: 105px;
    transition: .3s;
}

.nav.shrink .center-logo img {
    height: 62px;
}

/* HAMBURGER */
.hamburger {
    position: absolute;
    right: 34px;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    cursor: pointer;
    z-index: 10001;
}

.hamburger span {
    display: block;
    height: 3px;
    background: #fff;
    margin: 6px 0;
}

/* MENU */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 260px;
    height: 100vh;
    background: #050505;
    padding: 120px 30px;
    transition: .3s;
    z-index: 10000;
}

.mobile-menu.active {
    right: 0;
}

/* ===== HAMBURGER CLEAN GREEN ===== */

.hamburger {
    background: transparent !important;
    border: none !important;
    width: 34px;
    height: 28px;
    padding: 0;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    margin: 6px 0;
    background: #39ff14 !important;
    border-radius: 999px;
    box-shadow: 0 0 10px rgba(57, 255, 20, 0.9);
    transition: 0.25s;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* ===== BREATH TAKING PRODUCT PAGE ===== */

.premium-product-page {
    min-height: calc(100vh - 120px);
    padding: 70px 24px 90px;
    background:
        radial-gradient(circle at top left, rgba(57,255,20,.08), transparent 30%),
        radial-gradient(circle at bottom right, rgba(255,255,255,.06), transparent 35%),
        #050505;
}

.premium-product-card {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 46px;
    align-items: start;
}

.premium-gallery {
    display: grid;
    gap: 18px;
}

.premium-main-image {
    height: 680px;
    background:
        linear-gradient(145deg, #101010, #050505);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 34px;
    overflow: hidden;
    box-shadow:
        0 30px 90px rgba(0,0,0,.55),
        inset 0 0 80px rgba(255,255,255,.03);
    display: flex;
    align-items: center;
    justify-content: center;
}

.premium-main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 28px;
    display: block;
}

.premium-thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(82px, 1fr));
    gap: 12px;
}

.thumb-btn {
    height: 110px;
    border: 1px solid rgba(255,255,255,.12);
    background: #0b0b0b;
    border-radius: 18px;
    cursor: pointer;
    overflow: hidden;
    padding: 8px;
}

.thumb-btn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.premium-product-info {
    position: sticky;
    top: 120px;
    background:
        linear-gradient(145deg, rgba(18,18,18,.92), rgba(6,6,6,.95));
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 34px;
    padding: 42px;
    box-shadow: 0 30px 90px rgba(0,0,0,.45);
}

.product-eyebrow {
    color: #39ff14;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.premium-product-info h1 {
    margin: 18px 0 10px;
    font-size: clamp(38px, 5vw, 72px);
    line-height: .9;
    text-transform: uppercase;
}

.product-brand {
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 12px;
    margin-bottom: 22px;
}

.premium-price {
    font-size: 34px;
    font-weight: 900;
    margin: 24px 0;
}

.product-divider {
    height: 1px;
    background: linear-gradient(90deg, rgba(57,255,20,.6), transparent);
    margin: 28px 0;
}

.premium-description {
    color: #cfcfcf;
    line-height: 1.8;
    font-size: 16px;
}

.premium-size-block {
    margin-top: 32px;
}

.premium-size-block > span {
    display: block;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    margin-bottom: 14px;
}

.premium-sizes {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.premium-sizes button {
    min-width: 58px;
    height: 48px;
    background: #080808;
    color: #fff;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 16px;
    cursor: pointer;
    font-weight: 900;
    transition: .2s;
}

.premium-sizes button:hover,
.premium-sizes button.active {
    background: #39ff14;
    color: #031006;
    border-color: #39ff14;
    box-shadow: 0 0 24px rgba(57,255,20,.30);
}

.premium-whatsapp {
    margin-top: 34px;
    width: 100%;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #25d366;
    color: #041008;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 34px rgba(37,211,102,.22);
}

.stock-note {
    color: #888;
    text-align: center;
    margin-top: 16px;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.premium-sold-out {
    margin-top: 34px;
    background: #202020;
    color: #888;
    border-radius: 999px;
    padding: 18px 24px;
    text-align: center;
    font-weight: 900;
    letter-spacing: 2px;
}

@media (max-width: 900px) {
    .premium-product-card {
        grid-template-columns: 1fr;
    }

    .premium-main-image {
        height: 520px;
    }

    .premium-product-info {
        position: relative;
        top: auto;
        padding: 30px;
    }
}

@media (max-width: 600px) {
    .premium-product-page {
        padding: 34px 14px 70px;
    }

    .premium-main-image {
        height: 430px;
        border-radius: 24px;
    }

    .premium-main-image img {
        padding: 18px;
    }

    .premium-product-info {
        border-radius: 24px;
    }

    .premium-thumbs {
        grid-template-columns: repeat(4, 1fr);
    }

    .thumb-btn {
        height: 82px;
    }
}

.product-back-btn {
    display: inline-flex;
    align-items: center;
    margin: 0 auto 24px;
    max-width: 1280px;
    color: #39ff14;
    text-decoration: none;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.product-extra-links {
    max-width: 1280px;
    margin: 34px auto 0;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.product-extra-links a {
    color: #fff;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 999px;
    padding: 12px 18px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.product-extra-links a:hover {
    background: #39ff14;
    color: #041008;
    border-color: #39ff14;
}

.nav {
    will-change: height;
    transform: translateZ(0);
}

.center-logo img,
.brand img {
    will-change: height;
    transform: translateZ(0);
}

.nav.shrink .center-logo img,
.nav.shrink .brand img {
    transform: translateZ(0);
}
/* ================================
   V7 UK PREMIUM OVERRIDES
================================ */
body {
    background:
        radial-gradient(circle at 12% 10%, rgba(57,255,20,.06), transparent 28%),
        linear-gradient(180deg, #050505 0%, #090909 45%, #050505 100%);
}

.ny-hero .hero-content h1 {
    letter-spacing: -3px;
    text-shadow: 0 20px 80px rgba(0,0,0,.65);
}

.featured-showcase {
    max-width: 1320px;
    margin: 70px auto 20px;
    padding: 24px;
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 28px;
    align-items: stretch;
}

.featured-copy,
.featured-image {
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 36px;
    background: linear-gradient(145deg, rgba(18,18,18,.96), rgba(5,5,5,.98));
    box-shadow: 0 35px 120px rgba(0,0,0,.52);
    overflow: hidden;
}

.featured-copy {
    padding: clamp(28px, 5vw, 58px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.featured-copy::before {
    content: "FEATURED";
    position: absolute;
    right: 24px;
    top: 24px;
    color: rgba(57,255,20,.12);
    font-size: clamp(40px, 8vw, 118px);
    font-weight: 900;
    letter-spacing: -6px;
    line-height: .8;
    pointer-events: none;
}

.featured-copy h2 {
    position: relative;
    margin: 16px 0 12px;
    font-size: clamp(42px, 6vw, 84px);
    line-height: .86;
    text-transform: uppercase;
    letter-spacing: -3px;
}

.featured-brand {
    color: #39ff14 !important;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.featured-copy p {
    color: #bbb;
    line-height: 1.7;
    max-width: 520px;
}

.featured-price {
    margin-top: 20px;
    font-size: 32px;
    font-weight: 900;
}

.featured-cta,
.featured-sold {
    width: fit-content;
    margin-top: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 16px 24px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    text-decoration: none;
}

.featured-cta {
    background: #39ff14;
    color: #031006;
    box-shadow: 0 0 44px rgba(57,255,20,.28);
}

.featured-sold {
    background: #202020;
    color: #888;
}

.featured-image {
    min-height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at center, rgba(57,255,20,.12), transparent 45%),
        #0b0b0b;
}

.featured-image img {
    width: 100%;
    height: 100%;
    max-height: 680px;
    object-fit: contain;
    padding: 34px;
    transition: .45s;
}

.featured-image:hover img {
    transform: scale(1.035);
}

.featured-product {
    border-color: rgba(57,255,20,.55) !important;
    box-shadow:
        0 0 0 1px rgba(57,255,20,.16),
        0 30px 90px rgba(57,255,20,.10),
        0 20px 60px rgba(0,0,0,.45) !important;
}

.featured-product::before {
    content: "FEATURED DROP";
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 3;
    background: #39ff14;
    color: #031006;
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.5px;
}

.ig-order-link,
.premium-instagram {
    background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888) !important;
    color: #fff !important;
    box-shadow: 0 0 34px rgba(220,39,67,.30) !important;
}

.ny-product-page {
    background:
        radial-gradient(circle at 10% 0%, rgba(57,255,20,.08), transparent 34%),
        radial-gradient(circle at 90% 30%, rgba(255,255,255,.07), transparent 28%),
        #050505;
}

.ny-product-card {
    align-items: start;
}

.ny-main-image {
    height: min(72vh, 720px);
}

.ny-product-info h1 {
    letter-spacing: -3px;
}

.ny-sizes button {
    position: relative;
    min-width: 72px;
    height: 56px;
}

.ny-sizes button small {
    display: block;
    margin-top: 3px;
    font-size: 9px;
    opacity: .74;
    text-transform: uppercase;
}

.size-muted {
    color: #aaa;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 16px;
    padding: 14px 16px;
    background: rgba(255,255,255,.03);
}

.ig-order-box {
    position: relative;
    margin-top: 34px;
}

.secondary-ig {
    width: 100%;
    justify-content: center;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: .3s;
    margin-top: 12px;
    background: #111 !important;
    color: #fff !important;
    border: 1px solid rgba(255,255,255,.14);
    box-shadow: none !important;
}

.secondary-ig.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.premium-instagram.copied {
    animation: copiedPulse .65s ease;
}

.copied-animation {
    position: absolute;
    left: 50%;
    top: -18px;
    transform: translate(-50%, 10px) scale(.96);
    background: #39ff14;
    color: #031006;
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
    opacity: 0;
    pointer-events: none;
    box-shadow: 0 0 30px rgba(57,255,20,.45);
}

.copied-animation.show {
    animation: copiedFloat 1.3s ease forwards;
}

.ig-subtext {
    text-align: center;
    margin-top: 12px;
    color: #888;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: .2s;
}

.ig-subtext.warn {
    color: #39ff14;
}

@keyframes copiedPulse {
    0% { transform: scale(1); }
    45% { transform: scale(1.025); }
    100% { transform: scale(1); }
}

@keyframes copiedFloat {
    0% { opacity: 0; transform: translate(-50%, 10px) scale(.96); }
    18% { opacity: 1; transform: translate(-50%, -2px) scale(1); }
    80% { opacity: 1; transform: translate(-50%, -14px) scale(1); }
    100% { opacity: 0; transform: translate(-50%, -24px) scale(.98); }
}

@media (max-width: 900px) {
    .featured-showcase {
        grid-template-columns: 1fr;
        margin-top: 40px;
    }

    .featured-image {
        min-height: 460px;
    }
}

@media (max-width: 600px) {
    .featured-showcase {
        padding: 14px;
    }

    .featured-copy,
    .featured-image {
        border-radius: 26px;
    }

    .featured-image {
        min-height: 420px;
    }

    .featured-image img {
        padding: 22px;
    }
}

/* ===== V8 UK PREMIUM / FEATURED HERO / QUICK VIEW ===== */
.v8-featured-hero{position:relative;min-height:100vh;display:grid;grid-template-columns:1fr minmax(320px,46vw);align-items:center;overflow:hidden;background:#050505;border-bottom:1px solid rgba(255,255,255,.08)}
.v8-hero-bg{position:absolute;inset:0;background-size:cover;background-position:center;filter:saturate(.9);transform:scale(1.05);animation:v8HeroDrift 14s ease-in-out infinite alternate}.v8-hero-bg:after{content:"";position:absolute;inset:0;background:linear-gradient(0deg,#050505 0%,transparent 24%,rgba(0,0,0,.2) 100%)}
@keyframes v8HeroDrift{from{transform:scale(1.04) translateX(0)}to{transform:scale(1.1) translateX(-18px)}}
.v8-cinematic-lines{position:absolute;inset:0;background:repeating-linear-gradient(0deg,rgba(255,255,255,.028) 0,rgba(255,255,255,.028) 1px,transparent 1px,transparent 6px);mix-blend-mode:screen;opacity:.28;pointer-events:none}
.v8-hero-copy{position:relative;z-index:2;padding:12vh 7vw;max-width:780px}.v8-kicker{display:inline-flex;color:#39ff14;text-transform:uppercase;letter-spacing:4px;font-size:11px;font-weight:900}.v8-hero-copy h1{font-size:clamp(56px,9vw,128px);line-height:.84;margin:18px 0 12px;text-transform:uppercase;letter-spacing:-6px}.v8-brandline{color:#aaa;text-transform:uppercase;letter-spacing:3px}.v8-hero-desc{color:#d7d7d7;font-size:18px;line-height:1.7;max-width:560px}.v8-hero-price{font-size:38px;font-weight:900;margin:24px 0}.v8-hero-actions{display:flex;gap:14px;flex-wrap:wrap}.v8-primary,.v8-secondary{border:0;border-radius:999px;padding:16px 24px;font-weight:900;text-transform:uppercase;letter-spacing:1px;text-decoration:none;cursor:pointer}.v8-primary{background:#39ff14;color:#031006;box-shadow:0 0 42px rgba(57,255,20,.25)}.v8-secondary{background:rgba(255,255,255,.08);color:#fff;border:1px solid rgba(255,255,255,.14)}
.v8-hero-product{position:relative;z-index:2;align-self:stretch;display:flex;align-items:center;justify-content:center;background:radial-gradient(circle at center,rgba(57,255,20,.13),transparent 45%)}.v8-hero-product img{width:100%;height:100%;max-height:92vh;object-fit:contain;padding:50px;filter:drop-shadow(0 30px 80px rgba(0,0,0,.75))}.v8-locked-pill,.v8-lowstock-pulse{display:inline-flex;margin:12px 0 20px;border-radius:999px;padding:12px 16px;font-weight:900;text-transform:uppercase;letter-spacing:1px}.v8-locked-pill{background:#191919;color:#999;border:1px solid rgba(255,255,255,.12)}.v8-lowstock-pulse{background:#39ff14;color:#031006;animation:v8Pulse 1.5s infinite}@keyframes v8Pulse{50%{box-shadow:0 0 32px rgba(57,255,20,.38)}}
.v8-next-drop{max-width:1280px;margin:34px auto 0;padding:22px 24px;display:flex;align-items:center;gap:18px;justify-content:space-between;border:1px solid rgba(255,255,255,.1);border-radius:28px;background:linear-gradient(135deg,#101010,#070707)}.v8-next-drop span{color:#39ff14;text-transform:uppercase;letter-spacing:3px;font-size:12px;font-weight:900}.v8-next-drop strong{color:#ddd}.v8-next-drop a{color:#fff;text-decoration:none;border:1px solid rgba(255,255,255,.15);border-radius:999px;padding:12px 16px;text-transform:uppercase;font-size:12px;font-weight:900}.v8-section-head h2{letter-spacing:-2px}.locked-product{opacity:.82}.locked-product .photo img{filter:grayscale(1) brightness(.72)}.badge.locked{background:#151515;color:#39ff14;border:1px solid rgba(57,255,20,.28)}.locked-order{background:#141414!important;color:#888!important;text-align:center}.no-click{pointer-events:none}.ig-seen-badge{position:absolute;right:16px;bottom:108px;z-index:3;background:linear-gradient(45deg,#f09433,#dc2743,#bc1888);color:#fff;border-radius:999px;padding:8px 11px;font-size:10px;font-weight:900;text-transform:uppercase;letter-spacing:1px}.v8-instagram-proof{max-width:1280px;margin:25px auto 70px;padding:34px 28px;border-radius:32px;background:radial-gradient(circle at right,rgba(188,24,136,.18),transparent 35%),#0c0c0c;border:1px solid rgba(255,255,255,.1);display:flex;justify-content:space-between;gap:20px;align-items:center}.v8-instagram-proof span{color:#39ff14;text-transform:uppercase;letter-spacing:3px;font-size:12px;font-weight:900}.v8-instagram-proof strong{display:block;font-size:34px;margin:8px 0}.v8-instagram-proof p{color:#aaa;margin:0}.v8-instagram-proof a{background:#fff;color:#000;border-radius:999px;padding:14px 20px;text-decoration:none;text-transform:uppercase;font-weight:900;font-size:12px}.quick-view-modal{position:fixed;inset:0;z-index:20000;opacity:0;pointer-events:none;transition:.25s}.quick-view-modal.active{opacity:1;pointer-events:auto}.quick-view-backdrop{position:absolute;inset:0;background:rgba(0,0,0,.72);backdrop-filter:blur(8px)}.quick-view-panel{position:absolute;left:50%;top:50%;transform:translate(-50%,-46%) scale(.96);width:min(980px,92vw);max-height:88vh;overflow:auto;display:grid;grid-template-columns:1fr 1fr;background:#080808;border:1px solid rgba(255,255,255,.12);border-radius:34px;box-shadow:0 40px 140px rgba(0,0,0,.8);transition:.25s}.quick-view-modal.active .quick-view-panel{transform:translate(-50%,-50%) scale(1)}.quick-view-close{position:absolute;right:18px;top:14px;z-index:2;background:#fff;color:#000;border:0;border-radius:999px;width:36px;height:36px;font-size:24px;cursor:pointer}.quick-view-image{background:radial-gradient(circle at center,rgba(57,255,20,.1),#0b0b0b 60%);display:flex;align-items:center;justify-content:center}.quick-view-image img{width:100%;height:100%;max-height:640px;object-fit:contain;padding:28px}.quick-view-content{padding:44px}.quick-view-content h3{font-size:44px;line-height:.95;text-transform:uppercase;margin:12px 0}.quick-view-content p{color:#aaa;line-height:1.7}.qv-sizes{display:flex;flex-wrap:wrap;gap:10px;margin:22px 0}.qv-sizes span{border:1px solid rgba(255,255,255,.14);border-radius:999px;padding:10px 14px;color:#ddd}.qv-actions{margin-top:24px}.qv-open{overflow:hidden}
@media(max-width:900px){.v8-featured-hero{grid-template-columns:1fr;min-height:auto}.v8-hero-copy{padding:90px 24px 40px}.v8-hero-copy h1{letter-spacing:-3px}.v8-hero-product{min-height:420px}.v8-hero-product img{padding:24px}.v8-next-drop,.v8-instagram-proof{margin-left:14px;margin-right:14px;display:block}.v8-next-drop a,.v8-instagram-proof a{display:inline-flex;margin-top:16px}.quick-view-panel{grid-template-columns:1fr}.quick-view-image{min-height:360px}.quick-view-content{padding:28px}.quick-view-content h3{font-size:34px}}


/* ===== V9 UK PREMIUM FIXES ===== */
.logo-secret-active img { filter: drop-shadow(0 0 28px rgba(57,255,20,1)) !important; transform: translateZ(0) scale(1.06); }
.ny-legacy-hero { min-height: 78vh; }
.ny-legacy-hero .hero-bg {
    background:
        linear-gradient(90deg, rgba(5,5,5,.95) 0%, rgba(5,5,5,.62) 44%, rgba(5,5,5,.18) 100%),
        url('uploads/products/hero.webp') center top / cover no-repeat !important;
}
.v9-featured-strip {
    max-width: 1280px;
    margin: 42px auto 26px;
    padding: 24px;
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(260px, 420px);
    gap: 24px;
    align-items: center;
    border-radius: 34px;
    background:
        linear-gradient(135deg, rgba(16,16,16,.96), rgba(5,5,5,.96)),
        radial-gradient(circle at 15% 20%, rgba(57,255,20,.10), transparent 34%);
    border: 1px solid rgba(255,255,255,.10);
    box-shadow: 0 30px 90px rgba(0,0,0,.45);
    overflow: hidden;
}
.v9-featured-copy { padding: 18px 18px 18px 22px; }
.v9-featured-copy h2 { font-size: clamp(34px, 5vw, 66px); line-height: .88; letter-spacing: -3px; text-transform: uppercase; margin: 14px 0; }
.v9-featured-copy p { color:#bdbdbd; max-width: 640px; line-height: 1.65; }
.v9-brandline { color:#39ff14!important; text-transform:uppercase; letter-spacing:3px; font-size:12px; font-weight:900; }
.v9-featured-meta { display:flex; gap:14px; align-items:center; flex-wrap:wrap; margin:20px 0 24px; }
.v9-featured-meta strong { font-size: 28px; }
.v9-featured-meta span { color:#39ff14; border:1px solid rgba(57,255,20,.22); border-radius:999px; padding:9px 13px; font-size:12px; text-transform:uppercase; letter-spacing:1px; }
.v9-featured-actions { display:flex; gap:12px; flex-wrap:wrap; }
.v9-featured-image { min-height: 330px; max-height: 420px; display:flex; align-items:center; justify-content:center; background: radial-gradient(circle at center, rgba(57,255,20,.12), #0a0a0a 62%); border-radius: 26px; border:1px solid rgba(255,255,255,.08); overflow:hidden; }
.v9-featured-image img { width:100%; height:100%; max-height:420px; object-fit:contain; padding:24px; transition:.35s; }
.v9-featured-image:hover img { transform: scale(1.035); }
.v9-next-drop { margin-top: 24px!important; }
.v9-instagram-proof { margin-bottom: 80px!important; }

@media(max-width:900px){
    .v9-featured-strip { margin:26px 14px 18px; grid-template-columns:1fr; padding:18px; border-radius:26px; }
    .v9-featured-copy { padding: 12px; }
    .v9-featured-copy h2 { font-size: clamp(34px, 12vw, 56px); letter-spacing:-2px; }
    .v9-featured-image { min-height: 300px; max-height: 360px; }
    .v9-featured-image img { max-height: 360px; padding:18px; }
    .hero { min-height: 68vh; }
    .hero-content { padding: 64px 22px; }
    .hero h1 { font-size: clamp(42px, 13vw, 76px); }
    .quick-view-panel { width: min(94vw, 560px); max-height: 84vh; border-radius:26px; }
    .v8-instagram-proof { border-radius: 24px; padding: 26px 20px; }
    .v8-instagram-proof strong { font-size: 28px; }
}
@media(max-width:600px){
    .photo { height: 340px; }
    .info { display:block; }
    .info strong { display:block; margin-top:8px; }
    .v9-featured-actions .v8-primary, .v9-featured-actions .v8-secondary { width:100%; justify-content:center; }
    .v8-next-drop { padding: 24px 18px; }
}

/* ===== V10 FEATURED SLIDER / SHARE / LOCKED DROP POLISH ===== */
.v10-featured-shell {
    max-width: 1280px;
    margin: 42px auto 26px;
    padding: 0 0 18px;
}

.v10-featured-topline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    padding: 0 4px 12px;
}

.v10-featured-topline span {
    color: #39ff14;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.v10-featured-topline strong {
    color: #aaa;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.v10-featured-slider {
    position: relative;
    min-height: 420px;
}

.v10-featured-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px) scale(.985);
    transition: opacity .45s ease, transform .45s ease;
    margin: 0 !important;
}

.v10-featured-slide.active {
    position: relative;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.v10-featured-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 18px;
}

.v10-featured-arrow {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.14);
    background: #0b0b0b;
    color: #fff;
    cursor: pointer;
    font-weight: 900;
    transition: .22s;
}

.v10-featured-arrow:hover {
    background: #39ff14;
    color: #041008;
    box-shadow: 0 0 28px rgba(57,255,20,.22);
}

.v10-featured-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.v10-featured-dots button {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    border: 0;
    background: rgba(255,255,255,.22);
    cursor: pointer;
    transition: .22s;
}

.v10-featured-dots button.active {
    width: 28px;
    background: #39ff14;
    box-shadow: 0 0 18px rgba(57,255,20,.42);
}

.card-actions-v10 {
    padding: 0 18px 18px;
    display: grid;
    gap: 10px;
}

.card-actions-v10 .order {
    margin: 0;
    width: 100%;
}

.share-friend-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.06);
    color: #fff;
    border-radius: 999px;
    padding: 13px 18px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: .22s;
}

.share-friend-btn:hover {
    border-color: rgba(57,255,20,.55);
    color: #39ff14;
    box-shadow: 0 0 24px rgba(57,255,20,.14);
}

.share-friend-card {
    width: 100%;
}

.product-extra-links button.share-friend-btn {
    font-family: inherit;
}

.qv-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.qv-actions .share-friend-btn {
    min-height: 49px;
}

.share-toast {
    position: fixed;
    left: 50%;
    bottom: 28px;
    z-index: 25000;
    transform: translate(-50%, 20px);
    opacity: 0;
    pointer-events: none;
    background: #39ff14;
    color: #041008;
    border-radius: 999px;
    padding: 13px 20px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 0 34px rgba(57,255,20,.28);
    transition: .25s;
}

.share-toast.show {
    opacity: 1;
    transform: translate(-50%, 0);
}

.v10-next-drop {
    position: relative;
    overflow: hidden;
}

.v10-next-drop:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0%, rgba(57,255,20,.09) 48%, transparent 100%);
    transform: translateX(-110%);
    animation: v10DropSweep 4.2s ease-in-out infinite;
    pointer-events: none;
}

@keyframes v10DropSweep {
    55%, 100% { transform: translateX(110%); }
}

@media(max-width:900px){
    .v10-featured-shell { margin: 28px 14px 18px; }
    .v10-featured-slider { min-height: 650px; }
    .v10-featured-topline { display:block; padding-left: 4px; }
    .v10-featured-topline strong { display:block; margin-top: 8px; }
}

@media(max-width:600px){
    .v10-featured-slider { min-height: 690px; }
    .v10-featured-controls { gap: 12px; }
    .share-toast { width: calc(100% - 36px); text-align: center; }
    .qv-actions .v8-primary, .qv-actions .share-friend-btn { width: 100%; }
}

/* ===== V10.2 MODERN NEXT DROP COUNTDOWN ===== */
.drop-countdown-modern {
    max-width: 1280px;
    margin: 34px auto 8px;
    padding: 26px;
    display: grid;
    grid-template-columns: minmax(260px, .85fr) 1.15fr;
    gap: 24px;
    align-items: center;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 34px;
    background:
        radial-gradient(circle at 15% 20%, rgba(57,255,20,.16), transparent 30%),
        linear-gradient(135deg, rgba(18,18,18,.96), rgba(5,5,5,.98));
    box-shadow: 0 30px 100px rgba(0,0,0,.38), inset 0 0 80px rgba(255,255,255,.02);
    position: relative;
    overflow: hidden;
}
.drop-countdown-modern::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.06) 45%, transparent 70%);
    transform: translateX(-120%);
    animation: cdSweep 5.8s ease-in-out infinite;
    pointer-events: none;
}
@keyframes cdSweep { 0%, 55% { transform: translateX(-120%); } 100% { transform: translateX(120%); } }
.drop-countdown-copy { position: relative; z-index: 1; }
.drop-countdown-copy span {
    color: #39ff14;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
}
.drop-countdown-copy h2 {
    margin: 12px 0 8px;
    font-size: clamp(34px, 5vw, 64px);
    line-height: .86;
    letter-spacing: -3px;
    text-transform: uppercase;
}
.drop-countdown-copy p { margin: 0; color: #aaa; line-height: 1.55; max-width: 520px; }
.drop-countdown-timer {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.drop-countdown-timer div {
    min-height: 118px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 26px;
    background: rgba(0,0,0,.42);
    border: 1px solid rgba(57,255,20,.18);
    box-shadow: 0 0 34px rgba(57,255,20,.055);
    backdrop-filter: blur(14px);
}
.drop-countdown-timer strong {
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', Arial, sans-serif;
    color: #fff;
    font-size: clamp(34px, 6vw, 72px);
    line-height: .85;
    letter-spacing: -2px;
    text-shadow: 0 0 18px rgba(57,255,20,.28);
}
.drop-countdown-timer span {
    margin-top: 12px;
    color: #39ff14;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.drop-countdown-modern.drop-live .drop-countdown-timer {
    display: block;
    color: #39ff14;
    font-size: clamp(28px, 6vw, 64px);
    font-weight: 900;
    letter-spacing: -1px;
    text-transform: uppercase;
}
@media (max-width: 900px) {
    .drop-countdown-modern { margin: 24px 14px 8px; grid-template-columns: 1fr; padding: 22px; border-radius: 28px; }
    .drop-countdown-timer { grid-template-columns: repeat(2, 1fr); }
    .drop-countdown-timer div { min-height: 96px; border-radius: 20px; }
}
@media (max-width: 420px) {
    .drop-countdown-timer { gap: 8px; }
    .drop-countdown-timer strong { font-size: 36px; }
    .drop-countdown-timer div { min-height: 88px; }
}

/* ===== V15 BRAND / CONVERSION MODULES ===== */
.v15-drop-mode-panel {
    max-width: 1240px;
    margin: 34px auto 18px;
    padding: 34px;
    border-radius: 30px;
    border: 1px solid rgba(57,255,20,.22);
    background: linear-gradient(135deg, rgba(57,255,20,.10), rgba(10,10,10,.94) 42%, rgba(255,255,255,.04));
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 28px;
    align-items: center;
    box-shadow: 0 28px 90px rgba(0,0,0,.42), 0 0 60px rgba(57,255,20,.08);
}
.v15-drop-mode-panel span,
.v15-lookbook-teaser span,
.lookbook-hero span { color:#39ff14; text-transform:uppercase; letter-spacing:3px; font-size:12px; font-weight:900; }
.v15-drop-mode-panel h2 { margin:10px 0; font-size: clamp(34px, 5vw, 72px); line-height:.9; text-transform:uppercase; }
.v15-drop-mode-panel p { color:#bbb; line-height:1.7; }
.notify-form { display:grid; gap:12px; }
.notify-form input { width:100%; background:#050505; border:1px solid rgba(255,255,255,.15); color:#fff; border-radius:999px; padding:17px 20px; }
.notify-form button { border:0; border-radius:999px; background:#39ff14; color:#041008; padding:16px 20px; font-weight:900; text-transform:uppercase; cursor:pointer; }
.notify-form small { color:#888; text-transform:uppercase; letter-spacing:1px; font-size:11px; }
.notify-form small.warn { color:#39ff14; }
.v15-lock-strip { border-color: rgba(57,255,20,.20); }
.locked-product .photo img { filter: grayscale(1) blur(1px); opacity:.45; }
.locked-product { position:relative; }
.locked-product:after { content:'NEXT DROP'; position:absolute; inset:0; display:flex; align-items:center; justify-content:center; pointer-events:none; font-size:34px; font-weight:900; letter-spacing:5px; color:rgba(255,255,255,.18); }
.soldout-product .photo img { filter: grayscale(1); opacity:.55; }
.soldout-product:after { content:'SOLD OUT'; position:absolute; top:50%; left:50%; transform:translate(-50%,-50%) rotate(-8deg); border:2px solid rgba(255,255,255,.5); color:#fff; border-radius:16px; padding:12px 18px; font-weight:900; letter-spacing:3px; animation:soldStamp .55s ease both; pointer-events:none; }
@keyframes soldStamp { from{opacity:0; transform:translate(-50%,-50%) scale(1.8) rotate(-8deg);} to{opacity:1; transform:translate(-50%,-50%) scale(1) rotate(-8deg);} }
.v15-viewers { margin: 12px 0 0; color:#aaa; font-size:13px; letter-spacing:1px; text-transform:uppercase; }
.soldout-animated { animation: soldPulse 1.7s ease-in-out infinite; }
@keyframes soldPulse { 0%,100%{box-shadow:0 0 0 rgba(255,255,255,0)} 50%{box-shadow:0 0 30px rgba(255,255,255,.08)} }
.v15-lookbook-teaser { max-width:1240px; margin: 45px auto; padding: 34px; border-radius:30px; border:1px solid rgba(255,255,255,.10); background: radial-gradient(circle at top right, rgba(57,255,20,.12), transparent 35%), #0b0b0b; display:flex; justify-content:space-between; gap:22px; align-items:center; }
.v15-lookbook-teaser h2 { margin:8px 0; font-size:42px; text-transform:uppercase; }
.v15-lookbook-teaser p { color:#aaa; }
.v15-lookbook-teaser a { color:#041008; background:#39ff14; text-decoration:none; border-radius:999px; padding:15px 22px; font-weight:900; text-transform:uppercase; white-space:nowrap; }
.lookbook-page { min-height:100vh; padding: 70px 24px; background:#050505; }
.lookbook-hero { max-width:1240px; margin:0 auto 36px; }
.lookbook-hero h1 { font-size:clamp(46px, 8vw, 110px); line-height:.88; text-transform:uppercase; margin:14px 0; }
.lookbook-hero p { color:#aaa; max-width:620px; line-height:1.7; }
.lookbook-grid { max-width:1240px; margin:0 auto; display:grid; grid-template-columns: repeat(3, 1fr); gap:18px; }
.lookbook-shot { position:relative; min-height:420px; border-radius:28px; overflow:hidden; background:#111; border:1px solid rgba(255,255,255,.08); }
.lookbook-shot.wide { grid-column: span 2; }
.lookbook-shot img { width:100%; height:100%; object-fit:cover; position:absolute; inset:0; transition:.4s; }
.lookbook-shot:hover img { transform:scale(1.04); }
.lookbook-shot span { position:absolute; left:18px; bottom:18px; background:rgba(0,0,0,.55); backdrop-filter:blur(10px); border:1px solid rgba(255,255,255,.12); border-radius:999px; padding:10px 14px; font-weight:900; letter-spacing:1px; text-transform:uppercase; }
@media(max-width:800px){ .v15-drop-mode-panel,.v15-lookbook-teaser{grid-template-columns:1fr; display:grid; margin-left:14px; margin-right:14px; padding:24px;} .lookbook-grid{grid-template-columns:1fr;} .lookbook-shot,.lookbook-shot.wide{grid-column:auto; min-height:460px;} }

/* ===== V16 PRODUCTION BRAND POLISH ===== */
:root{
    --cream-green:#39ff14;
    --cream-dark:#050505;
    --cream-panel:#0b0b0b;
}

.v16-claim-link,
.v16-tap-claim,
.premium-instagram{
    position:relative;
    overflow:hidden;
}

.v16-claim-link::after,
.v16-tap-claim::after,
.premium-instagram::after{
    content:"";
    position:absolute;
    inset:-40% auto -40% -60%;
    width:38%;
    background:linear-gradient(90deg, transparent, rgba(255,255,255,.55), transparent);
    transform:skewX(-18deg);
    transition:.55s;
    pointer-events:none;
}

.v16-claim-link:hover::after,
.v16-tap-claim:hover::after,
.premium-instagram:hover::after{
    left:125%;
}

.v8-lowstock-pulse,
.badge:not(.sold):not(.locked){
    background:var(--cream-green)!important;
    color:#031006!important;
    box-shadow:0 0 28px rgba(57,255,20,.28);
}

.v16-stock-note{
    color:var(--cream-green)!important;
    font-weight:900;
    letter-spacing:1.2px;
}

.premium-main-image,
.v9-featured-image,
.photo{
    background:
        radial-gradient(circle at 50% 25%, rgba(57,255,20,.10), transparent 35%),
        linear-gradient(145deg,#121212,#050505)!important;
}

.premium-main-image img,
.v9-featured-image img,
.photo img{
    filter:contrast(1.04) saturate(1.04) drop-shadow(0 24px 48px rgba(0,0,0,.42));
}

.copied-animation.show{
    animation:v16CopiedPop 1.05s ease both;
}

@keyframes v16CopiedPop{
    0%{opacity:0;transform:translateY(12px) scale(.92)}
    18%{opacity:1;transform:translateY(0) scale(1.04)}
    70%{opacity:1;transform:translateY(0) scale(1)}
    100%{opacity:0;transform:translateY(-10px) scale(.96)}
}

.ny-product-info::before,
.v9-featured-copy::before{
    content:"CREAM PLUG / NY DROP";
    display:inline-flex;
    margin-bottom:14px;
    color:rgba(255,255,255,.38);
    font-size:10px;
    font-weight:900;
    letter-spacing:2.4px;
    text-transform:uppercase;
}

.product-eyebrow{
    color:var(--cream-green)!important;
}

@media(max-width:760px){
    .v10-featured-topline strong{font-size:12px}
    .v9-featured-copy::before,.ny-product-info::before{font-size:9px;letter-spacing:1.8px}
}

/* ===== V19 MOBILE IMAGE STABILITY + PRODUCTION POLISH ===== */
@media (max-width: 760px) {
    html, body { background: #050505 !important; overflow-x: hidden; }
    .products, .ny-product-grid, .v8-product-grid { gap: 18px; }
    .card { transform: translateZ(0); backface-visibility: hidden; contain: paint; }
    .photo {
        height: auto !important;
        aspect-ratio: 4 / 5;
        background: #070707 !important;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .photo img {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain !important;
        background: #070707 !important;
        transform: translateZ(0);
        backface-visibility: hidden;
        will-change: transform;
    }
    .card:hover img { transform: none !important; }
    .premium-main-image { height: auto !important; aspect-ratio: 4 / 5; background:#070707 !important; }
    .premium-main-image img { object-fit: contain !important; background:#070707 !important; }
    .v9-featured-image { min-height: 360px; background:#070707; }
    .v9-featured-image img { object-fit: contain !important; background:#070707; }
}

.v19-production-badge {
    display:inline-flex;align-items:center;gap:8px;border:1px solid rgba(57,255,20,.24);color:#39ff14;background:rgba(57,255,20,.08);border-radius:999px;padding:7px 10px;font-size:11px;font-weight:900;text-transform:uppercase;letter-spacing:1px;
}


/* ===== V20 PERFORMANCE / SCROLL SMOOTHNESS PATCH ===== */
:root { color-scheme: dark; }
html, body { background:#050505 !important; }
img { max-width:100%; }
.nav { contain: layout paint; transform: translateZ(0); backface-visibility:hidden; }
.hero-bg { transform: none !important; will-change: auto !important; }
.card, .photo, .premium-main-image, .v9-featured-image, .lookbook-shot { contain: layout paint; backface-visibility:hidden; transform: translateZ(0); }
.photo img, .v9-featured-image img, .premium-main-image img, .lookbook-shot img { backface-visibility:hidden; }
.lookbook-page { background:#050505 !important; }
.lookbook-grid { align-items:start; }
.lookbook-shot { min-height:auto !important; aspect-ratio: 4 / 5; background:#070707 !important; content-visibility:auto; contain-intrinsic-size: 420px 520px; }
.lookbook-shot.wide { aspect-ratio: 16 / 9; }
.lookbook-shot img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; background:#070707 !important; }
@media (hover:none) { .lookbook-shot:hover img, .card:hover img { transform:none !important; } }
@media (max-width: 900px) {
  .hero-bg { background-attachment: scroll !important; }
  .lookbook-grid { grid-template-columns: 1fr !important; gap:16px; }
  .lookbook-shot, .lookbook-shot.wide { grid-column:auto !important; aspect-ratio: 4 / 5; min-height:0 !important; }
  .premium-main-image img, .v9-featured-image img, .photo img { filter:none !important; }
  .photo img { will-change:auto !important; }
  .quick-view-backdrop, .menu-backdrop { backdrop-filter:none !important; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation:none !important; transition:none !important; scroll-behavior:auto !important; }
}


/* ===== V20 PRO FEATURED 3D + CATEGORY MENU ===== */
.menu-section-label{margin:26px 0 8px;color:#39ff14;font-size:10px;font-weight:900;letter-spacing:3px;text-transform:uppercase}.clear-category-link{color:#39ff14;text-decoration:none;border:1px solid rgba(57,255,20,.28);border-radius:999px;padding:10px 14px;font-size:11px;font-weight:900;text-transform:uppercase;letter-spacing:1px}.featured-3d-mode .v10-featured-slider{min-height:520px;perspective:1200px;overflow:visible}.featured-3d-mode .v10-featured-slide{position:absolute;inset:0;opacity:0;transform:translateX(0) translateZ(-260px) rotateY(0deg) scale(.82);transition:transform .55s ease,opacity .55s ease,filter .55s ease;filter:blur(2px) brightness(.55);pointer-events:none}.featured-3d-mode .v10-featured-slide.active{position:absolute;opacity:1;transform:translateX(0) translateZ(0) rotateY(0deg) scale(1);filter:none;pointer-events:auto;z-index:3}.featured-3d-mode .v10-featured-slide.prev-3d{opacity:.55;transform:translateX(-20%) translateZ(-180px) rotateY(18deg) scale(.88);z-index:2}.featured-3d-mode .v10-featured-slide.next-3d{opacity:.55;transform:translateX(20%) translateZ(-180px) rotateY(-18deg) scale(.88);z-index:2}.featured-3d-mode .v10-featured-slide .v9-featured-image img{filter:drop-shadow(0 38px 70px rgba(0,0,0,.75))}@media(max-width:900px){.featured-3d-mode .v10-featured-slider{min-height:700px;perspective:none}.featured-3d-mode .v10-featured-slide,.featured-3d-mode .v10-featured-slide.prev-3d,.featured-3d-mode .v10-featured-slide.next-3d,.featured-3d-mode .v10-featured-slide.active{transform:translateY(0) scale(1);filter:none}}

/* ===== V25 PRO CATEGORY MENU + PREMIUM 3D FEATURED CAROUSEL ===== */
.category-page-wrap { padding-top: 55px; }
.category-hero {
    margin: 0 0 34px;
    padding: clamp(28px, 5vw, 58px);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 34px;
    background:
        radial-gradient(circle at 14% 18%, rgba(57,255,20,.14), transparent 30%),
        linear-gradient(145deg, rgba(18,18,18,.96), rgba(5,5,5,.98));
    box-shadow: 0 28px 100px rgba(0,0,0,.38);
}
.category-hero span {
    color:#39ff14;
    font-size:11px;
    font-weight:900;
    letter-spacing:4px;
    text-transform:uppercase;
}
.category-hero h1 {
    margin: 12px 0 10px;
    font-size: clamp(44px, 8vw, 110px);
    line-height: .86;
    letter-spacing: -4px;
    text-transform: uppercase;
}
.category-hero p { color:#aaa; max-width:680px; line-height:1.7; }

.featured-3d-mode {
    max-width: 1340px;
    margin-top: 52px;
    padding: 0 24px 34px;
}
.featured-3d-mode .v10-featured-topline {
    padding: 0 8px 18px;
}
.featured-3d-mode .v10-featured-topline span {
    color:#39ff14;
    text-shadow:0 0 18px rgba(57,255,20,.25);
}
.featured-3d-mode .v10-featured-slider {
    min-height: 560px;
    perspective: 1800px;
    transform-style: preserve-3d;
    overflow: visible;
    isolation: isolate;
}
.featured-3d-mode .v10-featured-slider:before {
    content:"";
    position:absolute;
    left:50%;
    bottom:10px;
    width:min(620px, 70vw);
    height:130px;
    transform:translateX(-50%);
    background:radial-gradient(ellipse at center, rgba(57,255,20,.20), transparent 68%);
    filter:blur(22px);
    opacity:.75;
    pointer-events:none;
}
.featured-3d-mode .v10-featured-slide {
    position:absolute;
    inset: 0;
    width:min(980px, 82vw);
    margin:auto !important;
    opacity:0;
    pointer-events:none;
    transform-style:preserve-3d;
    transform: translateX(0) translateZ(-420px) rotateY(0deg) scale(.70);
    transition: transform .75s cubic-bezier(.2,.9,.2,1), opacity .55s ease, filter .55s ease;
    filter: blur(3px) brightness(.42) saturate(.75);
    z-index:0;
}
.featured-3d-mode .v10-featured-slide.active {
    opacity:1;
    pointer-events:auto;
    z-index:5;
    transform: translateX(0) translateZ(0) rotateY(0deg) scale(1);
    filter:none;
}
.featured-3d-mode .v10-featured-slide.prev-3d {
    opacity:.58;
    z-index:3;
    transform: translateX(-42%) translateZ(-260px) rotateY(32deg) scale(.78);
    filter: blur(1px) brightness(.62) saturate(.85);
}
.featured-3d-mode .v10-featured-slide.next-3d {
    opacity:.58;
    z-index:3;
    transform: translateX(42%) translateZ(-260px) rotateY(-32deg) scale(.78);
    filter: blur(1px) brightness(.62) saturate(.85);
}
.featured-3d-mode .v9-featured-strip {
    grid-template-columns: .95fr 1.05fr;
    min-height: 500px;
    background:
      linear-gradient(135deg, rgba(15,15,15,.98), rgba(2,2,2,.98)),
      radial-gradient(circle at 70% 35%, rgba(57,255,20,.14), transparent 38%);
    border:1px solid rgba(255,255,255,.13);
    box-shadow:
      0 44px 140px rgba(0,0,0,.72),
      0 0 0 1px rgba(57,255,20,.08),
      inset 0 0 80px rgba(255,255,255,.025);
}
.featured-3d-mode .v9-featured-strip.active,
.featured-3d-mode .v10-featured-slide.active.v9-featured-strip {
    box-shadow:
      0 54px 160px rgba(0,0,0,.78),
      0 0 50px rgba(57,255,20,.13),
      inset 0 0 90px rgba(255,255,255,.03);
}
.featured-3d-mode .v9-featured-copy h2 {
    font-size: clamp(42px, 6vw, 82px);
}
.featured-3d-mode .v9-featured-image {
    min-height: 430px;
    background:
      radial-gradient(circle at center, rgba(57,255,20,.16), transparent 42%),
      linear-gradient(145deg,#111,#050505);
}
.featured-3d-mode .v9-featured-image img {
    max-height: 520px;
    filter: drop-shadow(0 42px 70px rgba(0,0,0,.82));
}
.featured-3d-mode .v10-featured-controls {
    margin-top: 26px;
}
.featured-3d-mode .v10-featured-arrow {
    width:50px;
    height:50px;
    background:rgba(255,255,255,.07);
    backdrop-filter:blur(12px);
}
.featured-3d-mode .v10-featured-dots button.active {
    width:38px;
}

.v25-drop-check {
    display:inline-flex;
    margin-left:8px;
    padding:6px 9px;
    border-radius:999px;
    background:rgba(57,255,20,.10);
    color:#39ff14;
    border:1px solid rgba(57,255,20,.20);
    font-size:10px;
    font-weight:900;
    letter-spacing:1px;
    text-transform:uppercase;
}

@media(max-width: 900px) {
    .featured-3d-mode { padding:0 14px 24px; }
    .featured-3d-mode .v10-featured-slider { min-height: 720px; perspective: none; }
    .featured-3d-mode .v10-featured-slide,
    .featured-3d-mode .v10-featured-slide.prev-3d,
    .featured-3d-mode .v10-featured-slide.next-3d,
    .featured-3d-mode .v10-featured-slide.active {
        width:100%;
        transform: translateY(0) scale(1) !important;
        filter:none !important;
    }
    .featured-3d-mode .v9-featured-strip { grid-template-columns:1fr; min-height:auto; }
    .featured-3d-mode .v9-featured-image { min-height:360px; }
    .category-hero { margin-left:0; margin-right:0; }
}

@media(max-width: 600px) {
    .featured-3d-mode .v10-featured-slider { min-height: 760px; }
    .featured-3d-mode .v9-featured-copy h2 { font-size: clamp(36px, 12vw, 58px); }
    .category-hero h1 { letter-spacing:-2px; }
}

/* =========================================================
   V26 NIKE-STYLE MENU + PREMIUM 3D CAROUSEL OVERRIDES
========================================================= */
body.menu-open { overflow: hidden; }

.nike-menu {
    position: fixed !important;
    top: 0 !important;
    right: -430px !important;
    width: min(430px, 92vw) !important;
    height: 100vh !important;
    z-index: 10001 !important;
    padding: 132px 34px 34px !important;
    background:
        radial-gradient(circle at 80% 12%, rgba(57,255,20,.12), transparent 34%),
        linear-gradient(180deg, rgba(10,10,10,.98), rgba(3,3,3,.99)) !important;
    border-left: 1px solid rgba(255,255,255,.12) !important;
    box-shadow: -44px 0 120px rgba(0,0,0,.72) !important;
    overflow-y: auto !important;
    transition: right .34s cubic-bezier(.2,.9,.25,1) !important;
}

.nike-menu.active { right: 0 !important; }

.nike-menu-head { margin-bottom: 26px; }
.nike-menu-head span {
    display:block;
    color:#39ff14;
    font-size:11px;
    font-weight:900;
    letter-spacing:4px;
    text-transform:uppercase;
}
.nike-menu-head strong {
    display:block;
    margin-top:8px;
    color:#fff;
    font-size: clamp(36px, 7vw, 58px);
    line-height:.88;
    letter-spacing:-2px;
    text-transform:uppercase;
}

.nike-menu-primary {
    display:grid;
    gap: 0;
    margin: 18px 0 30px;
}
.nike-menu-primary a,
.nike-category-link,
.nike-menu-footer a {
    color:#fff !important;
    text-decoration:none !important;
    text-transform:uppercase;
    letter-spacing:1.4px;
    font-weight:900;
}
.nike-menu-primary a {
    display:flex !important;
    align-items:center;
    justify-content:space-between;
    padding: 18px 0 !important;
    border-bottom:1px solid rgba(255,255,255,.09);
    font-size: 18px !important;
    margin:0 !important;
    transition:.22s;
}
.nike-menu-primary a:hover { color:#39ff14 !important; transform: translateX(6px); }

.nike-menu-section { margin-top: 22px; }
.nike-category-grid {
    display:grid;
    gap: 10px;
}
.nike-category-link {
    display:flex !important;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    margin:0 !important;
    padding:16px 16px !important;
    border:1px solid rgba(255,255,255,.10);
    border-radius:18px;
    background:rgba(255,255,255,.045);
    transition:.22s;
}
.nike-category-link span { font-size:15px; }
.nike-category-link em {
    font-style:normal;
    color:#999;
    font-size:11px;
    white-space:nowrap;
}
.nike-category-link:hover {
    border-color:rgba(57,255,20,.45);
    background:rgba(57,255,20,.08);
    transform: translateX(5px);
}
.nike-category-link:hover span { color:#39ff14; }

.nike-menu-footer {
    margin-top: 32px;
    padding-top: 20px;
    border-top:1px solid rgba(255,255,255,.10);
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap: 16px;
}
.nike-menu-footer a {
    color:#39ff14 !important;
    font-size:13px;
}
.nike-menu-footer span {
    color:#888;
    font-size:11px;
    text-transform:uppercase;
    letter-spacing:1px;
    text-align:right;
}

/* Premium 3D carousel: controlled card height, no clipped actions */
.featured-3d-mode {
    max-width: 1360px !important;
    margin: 54px auto 26px !important;
    padding: 0 24px 38px !important;
}
.featured-3d-mode .v10-featured-slider {
    min-height: 650px !important;
    perspective: 1700px !important;
    transform-style: preserve-3d !important;
    overflow: visible !important;
    isolation: isolate;
}
.featured-3d-mode .v10-featured-slide {
    width: min(1020px, 82vw) !important;
    min-height: 585px !important;
    height: auto !important;
    margin: auto !important;
    overflow: visible !important;
    border-radius: 38px !important;
    transform-origin: center center !important;
}
.featured-3d-mode .v10-featured-slide.active {
    transform: translateX(0) translateZ(0) rotateY(0deg) scale(1) !important;
}
.featured-3d-mode .v10-featured-slide.prev-3d {
    transform: translateX(-46%) translateZ(-280px) rotateY(31deg) scale(.76) !important;
}
.featured-3d-mode .v10-featured-slide.next-3d {
    transform: translateX(46%) translateZ(-280px) rotateY(-31deg) scale(.76) !important;
}
.featured-3d-mode .v9-featured-strip {
    min-height: 585px !important;
    height: auto !important;
    display:grid !important;
    grid-template-columns: .94fr 1.06fr !important;
    align-items:center !important;
    padding: 34px 34px 52px !important;
    overflow: hidden !important;
    box-sizing:border-box !important;
}
.featured-3d-mode .v9-featured-copy {
    padding: 18px 14px 0 18px !important;
}
.featured-3d-mode .v9-featured-copy h2 {
    font-size: clamp(40px, 5.4vw, 78px) !important;
}
.featured-3d-mode .v9-featured-meta { margin: 18px 0 20px !important; }
.featured-3d-mode .v9-featured-actions {
    display:flex !important;
    flex-wrap:wrap !important;
    gap:12px !important;
    margin-top: 18px !important;
    margin-bottom:0 !important;
    padding-bottom:0 !important;
    position:relative !important;
    z-index: 6 !important;
}
.featured-3d-mode .v9-featured-actions .v8-primary,
.featured-3d-mode .v9-featured-actions .v8-secondary {
    min-height: 50px !important;
    padding: 14px 20px !important;
    line-height: 1 !important;
}
.featured-3d-mode .v9-featured-image {
    min-height: 440px !important;
    max-height: 500px !important;
    border-radius: 28px !important;
}
.featured-3d-mode .v9-featured-image img {
    max-height: 500px !important;
    padding: 24px !important;
}
.featured-3d-mode .v10-featured-controls {
    margin-top: 10px !important;
    position:relative;
    z-index: 20;
}

@media(max-width: 900px) {
    .featured-3d-mode { padding:0 14px 28px !important; }
    .featured-3d-mode .v10-featured-slider { min-height: 760px !important; perspective:none !important; }
    .featured-3d-mode .v10-featured-slide,
    .featured-3d-mode .v10-featured-slide.prev-3d,
    .featured-3d-mode .v10-featured-slide.next-3d,
    .featured-3d-mode .v10-featured-slide.active {
        width:100% !important;
        min-height:auto !important;
        transform: translateY(0) scale(1) !important;
        filter:none !important;
    }
    .featured-3d-mode .v9-featured-strip {
        grid-template-columns:1fr !important;
        min-height:auto !important;
        padding: 22px 18px 34px !important;
        border-radius:28px !important;
    }
    .featured-3d-mode .v9-featured-image { min-height:340px !important; }
    .featured-3d-mode .v9-featured-actions .v8-primary,
    .featured-3d-mode .v9-featured-actions .v8-secondary { width:100%; }
}
/* FINAL V26 TABLET: keep real 3D, fix image/buttons */
@media (min-width: 541px) and (max-width: 1100px) {

    .featured-3d-mode .v10-featured-slider {
        min-height: 650px !important;
        perspective: 1500px !important;
        transform-style: preserve-3d !important;
        overflow: visible !important;
    }

    .featured-3d-mode .v10-featured-slide {
        position: absolute !important;
        inset: 0 !important;
        width: min(92vw, 860px) !important;
        min-height: 560px !important;
        margin: auto !important;
        transform-style: preserve-3d !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }

    .featured-3d-mode .v10-featured-slide.active {
        opacity: 1 !important;
        pointer-events: auto !important;
        z-index: 5 !important;
        transform: translateX(0) translateZ(0) rotateY(0deg) scale(.92) !important;
        filter: none !important;
    }

    .featured-3d-mode .v10-featured-slide.prev-3d {
        opacity: .42 !important;
        z-index: 3 !important;
        transform: translateX(-34%) translateZ(-240px) rotateY(28deg) scale(.72) !important;
        filter: blur(1px) brightness(.55) !important;
    }

    .featured-3d-mode .v10-featured-slide.next-3d {
        opacity: .42 !important;
        z-index: 3 !important;
        transform: translateX(34%) translateZ(-240px) rotateY(-28deg) scale(.72) !important;
        filter: blur(1px) brightness(.55) !important;
    }

    .featured-3d-mode .v9-featured-strip {
        display: grid !important;
        grid-template-columns: .95fr 1.05fr !important;
        min-height: 560px !important;
        padding: 28px 28px 60px !important;
        overflow: hidden !important;
        align-items: center !important;
    }

    .featured-3d-mode .v9-featured-actions {
        margin-top: 20px !important;
        margin-bottom: 0 !important;
        gap: 10px !important;
    }

    .featured-3d-mode .v9-featured-actions .v8-primary,
    .featured-3d-mode .v9-featured-actions .v8-secondary {
        min-height: 48px !important;
        padding: 13px 18px !important;
    }

    .featured-3d-mode .v9-featured-image {
        min-height: 330px !important;
        max-height: 390px !important;
        overflow: hidden !important;
    }

    .featured-3d-mode .v9-featured-image img {
        max-height: 390px !important;
        object-fit: contain !important;
        padding: 18px !important;
    }
}

/* Phones only: disable 3D */
@media (max-width: 540px) {
    .featured-3d-mode .v10-featured-slider {
        min-height: 760px !important;
        perspective: none !important;
    }

    .featured-3d-mode .v10-featured-slide,
    .featured-3d-mode .v10-featured-slide.prev-3d,
    .featured-3d-mode .v10-featured-slide.next-3d,
    .featured-3d-mode .v10-featured-slide.active {
        width: 100% !important;
        transform: translateY(0) scale(1) !important;
        filter: none !important;
    }

    .featured-3d-mode .v9-featured-strip {
        grid-template-columns: 1fr !important;
    }
}

