@import url('./single-product.css');

:root {
    --green: #1a3a16;
    --green-dark: #0f2410;
    --doom-green: #224010;
    /* Darker green */
    --doom-green-light: #2d5016;
    /* Previous base green */
    --dark: #0a0a0a;
    --light: #f4f4f4;
    --white: #ffffff;
    --red-sale: #b51a1a;
    /* Rich, premium crimson red */
    --font: 'Outfit', 'Inter', sans-serif;
    --font-heading: 'Outfit', 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

body {
    background: var(--white);
    color: var(--dark);
    font-family: var(--font);
    font-weight: 700;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Font hierarchy */
h1,
h2,
h3,
h4,
h5,
h6,
.section-title,
.section-title-minimal,
.product-title-minimal,
.hero-title,
.cart-header h2 {
    font-family: var(--font-heading);
    font-weight: 700;
}

/* Navbar - more bold */
.navbar,
.navbar a {
    font-weight: 800;
}

/* Keep logo in original font */
.logo {
    font-family: 'Inter', sans-serif !important;
    font-weight: 900 !important;
}

/* --- PRELOADER --- */
#site-preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--dark);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease-in-out, visibility 0.8s;
}

#site-preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.preloader-logo {
    width: 250px;
    height: auto;
    margin-bottom: 2rem;
    /* Dropped the heavy drop-shadow filter and scale. Using extreme smooth opacity + transform */
    animation: smoothFade 1.2s infinite ease-in-out alternate;
    will-change: opacity, transform;
}

@keyframes smoothFade {
    0% {
        opacity: 0.2;
        transform: translateY(0px);
    }

    100% {
        opacity: 1;
        transform: translateY(-5px);
    }
}

.loading-bar {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    /* Fix clipping bugs on rounded borders during transform animation */
    mask-image: radial-gradient(white, black);
    -webkit-mask-image: -webkit-radial-gradient(white, black);
}

.loading-progress {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 80px;
    background: var(--white);
    border-radius: 4px;
    will-change: transform;
    /* Hardware accelerated animation instead of left/width which causes UI thread lag */
    animation: loadingSlide 1.2s infinite cubic-bezier(0.4, 0, 0.2, 1) alternate;
}

@keyframes loadingSlide {
    0% {
        transform: translateX(-80px);
    }

    100% {
        transform: translateX(200px);
    }
}

/* --- ABOUT SECTION --- */
.about-section {
    background: var(--dark);
    position: relative;
    padding: 8rem 4rem;
    overflow: hidden;
    display: flex;
    justify-content: center;
    border-bottom: 4px solid var(--white);
}

.about-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 30vw;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    pointer-events: none;
    z-index: 0;
    white-space: nowrap;
    font-family: sans-serif;
}

.about-grid-fancy {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    width: 100%;
    max-width: 1300px;
    z-index: 1;
}

.about-card {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: 0.3s ease;
    backdrop-filter: blur(10px);
    color: var(--white);
}

.about-card:hover {
    background: var(--white);
    color: var(--dark);
    transform: translateY(-10px);
}

.about-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.about-card p {
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.about-card.alert:hover {
    background: #ff3333;
    color: var(--white);
    border-color: #ff3333;
}

/* --- CONTACT SECTION --- */
.contact-section {
    background: var(--light);
    color: var(--dark);
    padding: 8rem 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 4px solid var(--dark);
}

.contact-content {
    background: var(--white);
    padding: 5rem 6rem;
    border: 4px solid var(--dark);
    box-shadow: 20px 20px 0 var(--dark);
    text-align: center;
    display: inline-block;
}

.contact-content h2 {
    font-size: 5rem;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 0.5rem;
}

.contact-content p {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

.social-huge {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-huge a {
    display: inline-block;
    background: var(--dark);
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
    padding: 1.5rem 3rem;
    border: 4px solid var(--dark);
    transition: 0.2s;
}

.social-huge a:hover {
    background: var(--green);
    color: var(--white);
    transform: scale(1.05);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 1rem;
    left: 2rem;
    right: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2.5rem;
    z-index: 2000;
    background: var(--doom-green);
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1), transform 0.4s ease-in-out;
    backdrop-filter: blur(10px);
}

body.filters-open .navbar {
    transform: translateY(-200%);
    opacity: 0;
}

.navbar:hover {
    background: var(--doom-green-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.2rem;
}

/* SALE link in desktop nav — animated glow */
.nav-sale-link {
    position: relative;
    color: var(--white) !important;
    font-weight: 900;
    letter-spacing: 1px;
    text-shadow:
        0 0 6px rgba(255, 255, 255, 0.9),
        0 0 18px rgba(255, 255, 255, 0.5),
        0 0 35px rgba(200, 255, 200, 0.3);
    animation: saleNavGlow 2.2s ease-in-out infinite alternate;
}

@keyframes saleNavGlow {
    from {
        text-shadow:
            0 0 3px rgba(255, 255, 255, 0.6),
            0 0 8px rgba(255, 255, 255, 0.25),
            0 0 15px rgba(180, 255, 180, 0.15);
    }
    to {
        text-shadow:
            0 0 6px rgba(255, 255, 255, 0.95),
            0 0 15px rgba(255, 255, 255, 0.5),
            0 0 25px rgba(160, 255, 160, 0.3);
    }
}

/* Nav divider line between links and social pills */
.nav-divider {
    display: block;
    width: 1px;
    height: 18px;
    background: rgba(255, 255, 255, 0.25);
    flex-shrink: 0;
    margin: 0 0.3rem;
}

/* Social icon pills in desktop nav */
.nav-social-pill {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 9px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease !important;
    flex-shrink: 0;
}

.nav-social-pill::after {
    display: none !important;
}

.nav-social-pill:hover {
    background: rgba(255, 255, 255, 0.22) !important;
    transform: translateY(-2px) scale(1.08) !important;
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.15);
    opacity: 1 !important;
}

.nav-social-pill-icon {
    width: 16px;
    height: 16px;
    display: block;
    filter: brightness(0) invert(1);
    flex-shrink: 0;
}

.navbar a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.navbar a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--white);
    transition: width 0.3s ease;
}

.navbar a:hover::after {
    width: 100%;
}

/* Specific fix for logo link underline */
.logo-link {
    display: inline-flex !important;
    align-items: center;
    padding: 0 !important;
}

.logo-link::after {
    bottom: -8px !important;
    left: -8px !important;
}

.navbar a:hover {
    opacity: 0.9;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.mobile-socials {
    display: none;
}

.mobile-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon {
    width: 24px;
    height: 24px;
    display: block;
    transition: all 0.2s ease;
}

.social-icon:hover {
    transform: scale(1.1);
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 900;
}

.lang-switcher a {
    color: var(--white);
    opacity: 0.4;
    transition: 0.3s;
}

.lang-switcher a.active {
    opacity: 1;
    text-decoration: underline;
}

.lang-switcher span {
    opacity: 0.2;
}

.lang-switcher-mobile {
    display: none;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 110px;
    width: auto;
    display: block;
    margin: -35px 0 -35px -20px;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
    transition: all 0.3s ease;
}

.logo a:hover .logo-img {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.4));
}

.logo a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.logo a:hover {
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.4));
}

.footer-logo {
    height: 140px;
    width: auto;
    display: block;
    margin: -40px 0;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.1));
}

.footer-minimal-title {
    margin-bottom: 1.5rem;
}

.cart a {
    color: var(--white);
    text-decoration: none;
    font-weight: 900;
    transition: all 0.3s ease;
    padding: 0.6rem 1.2rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.cart-icon {
    width: 28px;
    height: 28px;
    display: block;
}

.cart a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

#cart-count-wrap {
    font-size: 0.9rem;
    opacity: 0.8;
}

#cart-count {
    font-weight: 900;
}

/* Hero */
.hero {
    height: 100vh;
    background: var(--green);
    /* Dark green background */
    color: var(--white);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
    background: var(--green);
}

.bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.bg-text {
    position: absolute;
    font-family: var(--font);
    font-weight: 900;
    font-size: 20vw;
    letter-spacing: -2px;
    line-height: 0.8;
    color: rgba(255, 255, 255, 0.03);
    /* Brightened slightly to be visible against dark blobs */
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
}

.text-1 {
    top: 10vh;
    left: 0;
    animation: driftText1 40s linear infinite;
}

.text-2 {
    bottom: 5vh;
    left: -50vw;
    animation: driftText2 50s linear infinite;
}

.searchlight {
    position: absolute;
    width: 120vw;
    height: 150vh;
    -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 90%);
    pointer-events: none;
    z-index: 0;
}

.beam-1 {
    top: -10vh;
    left: -10vw;
    background: conic-gradient(from 150deg at 50% 0%, transparent 0deg, rgba(160, 255, 160, 0.25) 30deg, transparent 60deg);
    transform-origin: 50% 0%;
    animation: panBeam1 10s ease-in-out infinite alternate;
}

.beam-2 {
    top: -10vh;
    right: -10vw;
    background: conic-gradient(from 150deg at 50% 0%, transparent 0deg, rgba(140, 255, 140, 0.2) 30deg, transparent 60deg);
    transform-origin: 50% 0%;
    animation: panBeam2 12s ease-in-out infinite alternate-reverse;
}

@keyframes panBeam1 {
    0% {
        transform: rotate(-25deg);
    }

    100% {
        transform: rotate(40deg);
    }
}

@keyframes panBeam2 {
    0% {
        transform: rotate(-40deg);
    }

    100% {
        transform: rotate(25deg);
    }
}

.halftone-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    z-index: 1;
}

.vignette-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0.85) 100%);
    z-index: 2;
}

@keyframes driftText1 {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100vw);
    }
}

@keyframes driftText2 {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(100vw);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.huge-title {
    font-size: clamp(6rem, 20vw, 18rem);
    font-weight: 900;
    line-height: 0.75;
    letter-spacing: -6px;
    text-align: center;
    z-index: 0;
    margin: 0;
    color: var(--white);
    position: relative;
}

.huge-title.outline {
    color: transparent;
    -webkit-text-stroke: 2px var(--white);
    font-weight: 900;
    font-family: sans-serif;
    letter-spacing: 5px;
    /* Fully prevents overlapping */
    z-index: 2;
    /* Sits in front of mask */
    margin-top: -6vh;
    /* Pull upwards into the mask */
    pointer-events: none;
    /* Make clicks pass through to mask */
}

.mask-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    width: 100%;
    max-width: 800px;
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.spinning-mask {
    height: 65vh;
    width: 65vh;
    --poster-color: transparent;
    filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.6));
    outline: none;
    z-index: 2;
    /* Transition for appearance */
    opacity: 0;
    transform: scale(0.8) translateY(20px);
    transition: opacity 1.2s ease-out, transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.spinning-mask.loaded {
    opacity: 1;
    transform: scale(1) translateY(0);
}

/* CS:GO style glow for mobile loading */
.mobile-glow {
    display: none;
}

@media (max-width: 768px) {
    .mobile-glow {
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 80vw;
        height: 80vw;
        background: radial-gradient(circle, rgba(255, 215, 0, 0.9) 0%, rgba(255, 120, 0, 0.4) 30%, rgba(0, 0, 0, 0) 70%);
        filter: blur(20px);
        z-index: 1;
        animation: cs-pulse-intense 1s infinite alternate ease-in-out;
        pointer-events: none;
        overflow: visible;
    }

    .mobile-glow::after {
        content: '';
        position: absolute;
        top: -10%;
        left: -10%;
        width: 120%;
        height: 120%;
        background: conic-gradient(from 0deg,
                transparent 0%,
                rgba(255, 255, 255, 0.5) 15%,
                transparent 30%,
                rgba(255, 255, 255, 0.3) 50%,
                transparent 70%);
        filter: blur(15px);
        animation: cs-rotate 3s linear infinite;
        border-radius: 50%;
    }
}

@keyframes cs-pulse-intense {
    0% {
        transform: translate(-50%, -50%) scale(0.7);
        opacity: 0.5;
        filter: blur(30px);
    }

    100% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 1;
        filter: blur(15px);
    }
}

@keyframes cs-rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Hide model-viewer loading bar (moved to index.html to bypass Shopify parser) */

.hero-bottom {
    position: absolute;
    bottom: 3rem;
    left: 4rem;
    right: 4rem;
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.1rem;
    z-index: 10;
    letter-spacing: 1px;
}

/* Store Section */
.store-section {
    padding: 0 0 8rem 0;
    background: var(--white);
    position: relative;
    z-index: 20;
}

.store-header {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
    border-bottom: 4px solid var(--dark);
    padding-bottom: 1.5rem;
    position: sticky;
    top: 0;
    padding-top: 6.5rem;
    padding-left: 4rem;
    padding-right: 4rem;
    background: var(--white);
    z-index: 1100 !important;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.store-header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.section-title {
    font-size: 5rem;
    font-weight: 900;
    letter-spacing: -3px;
    line-height: 0.9;
}

button,
.btn-primary,
.slider-btn,
.close-modal,
.checkbox-label,
.sort-select {
    touch-action: manipulation;
}

.btn-primary {
    background: var(--dark);
    color: var(--white);
    border: none;
    padding: 1.2rem 2.5rem;
    font-family: var(--font);
    font-weight: 900;
    font-size: 1.2rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: var(--green);
}

.filter-panel {
    display: flex;
    gap: 3rem;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    margin-top: 0;
    padding-top: 0;
}

.filter-panel.open {
    max-height: 1000px;
    opacity: 1;
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem 3rem;
    padding-bottom: 1.5rem;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-group label {
    font-size: 0.9rem;
    font-weight: 800;
    color: #666;
    text-transform: uppercase;
}

.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0;
    cursor: pointer;
}

.filter-group-wide {
    grid-column: 1 / -1;
    width: 100%;
    margin-bottom: 1rem;
}

.search-field {
    width: 100%;
    padding: 1rem 1.2rem;
    font-family: var(--font);
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    border: 3px solid var(--dark);
    background: var(--white);
    color: var(--dark);
    outline: none;
    transition: all 0.2s ease;
}

.search-field:focus {
    box-shadow: 10px 10px 0 var(--dark);
    transform: translate(-4px, -4px);
    border-color: var(--green);
}

.search-field::placeholder {
    color: #bbb;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-label span {
    display: inline-block;
    padding: 0.5rem 1rem;
    font-family: var(--font);
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    border: 2px solid var(--dark);
    background: var(--white);
    color: var(--dark);
    cursor: pointer;
    transition: all 0.15s ease;
    user-select: none;
}

.checkbox-label input[type="checkbox"]:checked+span {
    background: var(--dark);
    color: var(--white);
}

.checkbox-label:hover span {
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
}

.select-wrap {
    position: relative;
    width: 100%;
}

.sort-select {
    width: 100%;
    padding: 0.8rem 2.5rem 0.8rem 1rem;
    font-family: var(--font);
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    background: var(--white);
    border: 2px solid var(--dark);
    cursor: pointer;
    outline: none;
    color: var(--dark);
    appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23000%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat;
    background-position: right 1rem top 50%;
    background-size: 0.65rem auto;
    transition: all 0.2s ease;
}

.sort-select:hover {
    border-color: var(--green);
}

.sort-select:focus {
    background: var(--dark);
    color: var(--white);
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E');
}

/* --- PRODUCT MODAL --- */
.product-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s;
    background: rgba(0, 0, 0, 0.8);
    padding: 3rem;
}

.product-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.modal-content {
    position: relative;
    background: var(--white);
    width: 90vw;
    max-width: 1100px;
    height: 85vh;
    z-index: 2001;
    border: 6px solid var(--dark);
    box-shadow: 20px 20px 0 rgba(0, 0, 0, 1);
    overflow: visible !important;
}

.modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    height: 100%;
}

.modal-gallery {
    border-right: 4px solid var(--dark);
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    background: var(--light);
    position: relative;
    height: 100%;
    overflow: hidden;
}

body {
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* 3D Hero Section */
.hero-3d {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: radial-gradient(circle at center, var(--dark) 0%, var(--black) 100%);
    overflow: hidden;
    margin-top: -60px;
    /* Offset for navbar */
    padding-top: 60px;
}

.hero-3d-model {
    width: 100%;
    height: 100%;
    max-width: 1200px;
    z-index: 2;
    filter: drop-shadow(0 0 40px rgba(0, 0, 0, 0.8));
}

.hero-text-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 15vw;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    white-space: nowrap;
    z-index: 1;
    pointer-events: none;
    letter-spacing: -5px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    z-index: 3;
    animation: bounce 2s infinite;
    pointer-events: none;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-10px) translateX(-50%);
    }

    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

.main-image-wrap {
    width: 100%;
    flex: 1;
    min-height: 0;
    overflow: hidden;
    cursor: zoom-in;
    border: 4px solid var(--dark);
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.1s ease-out;
}

.slider-btn {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    background: var(--white);
    border: 2px solid var(--dark);
    width: 45px;
    height: 45px;
    font-size: 1.5rem;
    font-weight: 900;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    transition: 0.2s;
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 1);
}

.slider-btn:hover {
    background: var(--dark);
    color: var(--white);
}

.slider-btn.prev {
    left: 0.5rem;
}

.slider-btn.next {
    right: 0.5rem;
}

.thumbnail-list {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    overflow-x: auto;
    justify-content: center;
}

.thumb-img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border: 2px solid transparent;
    cursor: pointer;
    transition: 0.2s;
    background: var(--white);
}

.thumb-img.active,
.thumb-img:hover {
    border: 2px solid var(--dark);
}

.modal-info {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow-y: auto;
}

.modal-title {
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 1rem;
}

.modal-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 2rem;
}

.modal-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    color: #444;
}

.product-size-spec {
    display: inline-flex;
    border: 4px solid var(--dark);
    margin-top: 4rem;
    margin-bottom: 3rem;
    font-family: var(--font);
    overflow: hidden;
    background: var(--white);
}

.card-size-badge {
    background: var(--dark);
    color: var(--white);
    padding: 0.3rem 0.6rem;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
}



.modal-options {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.modal-sizes-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.modal-sizes-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.modal-packs-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.modal-pack-select-wrapper {
    position: relative;
    width: 100%;
    max-width: 250px;
}

.modal-pack-select {
    width: 100%;
    padding: 0.5rem 2.5rem 0.5rem 1rem;
    font-family: var(--font, 'Inter', sans-serif);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    background: var(--white);
    border: 1px solid var(--dark);
    border-radius: 6px;
    cursor: pointer;
    outline: none;
    color: var(--dark);
    appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23000%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat;
    background-position: right 1rem top 50%;
    background-size: 0.65rem auto;
    transition: all 0.2s ease;
}

.modal-pack-select:hover {
    background-color: #f9f9f9;
}

.modal-pack-select:focus {
    background-color: var(--dark);
    color: var(--white);
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E');
}

.modal-size-btn {
    background: var(--white);
    border: 1px solid var(--dark);
    color: var(--dark);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
    border-radius: 6px;
}

.modal-size-btn:hover {
    background: var(--dark);
    color: var(--white);
}

.modal-size-btn.active {
    background: var(--dark);
    color: var(--white);
}

.modal-qty-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.modal-qty-control {
    display: flex;
    align-items: center;
    width: fit-content;
    border: 1px solid var(--dark);
    border-radius: 6px;
    background: var(--white);
    overflow: hidden;
}

.modal-qty-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: none;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
    color: var(--dark);
}

.modal-qty-btn:hover {
    background: #f0f0f0;
}

.modal-qty-value {
    width: 40px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    border-left: 1px solid var(--dark);
    border-right: 1px solid var(--dark);
    color: var(--dark);
}

.spec-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #888;
    text-transform: uppercase;
}

.modal-buy {
    margin-top: auto;
    width: 100%;
    padding: 1.5rem;
    font-size: 1.5rem;
}

/* --- CART DRAWER --- */
.cart-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 3000;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
}

.cart-drawer-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 450px;
    height: 100dvh;
    background: var(--white);
    z-index: 3001;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    border-left: 1px solid #e0e0e0;
}

.cart-drawer.active {
    transform: translateX(0);
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.cart-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--dark);
}

.close-cart {
    background: transparent;
    border: none;
    font-size: 2rem;
    font-weight: 300;
    cursor: pointer;
    transition: 0.2s;
    line-height: 1;
    color: var(--dark);
}

.close-cart:hover {
    color: var(--doom-green);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.empty-cart-msg {
    font-size: 1rem;
    font-weight: 600;
    color: #999;
    text-align: center;
    margin-top: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1.2rem 1rem;
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
}

.cart-item-img-wrap {
    position: relative;
    flex-shrink: 0;
}

.cart-item-img-wrap img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 8px;
}

.cart-item-qty-badge {
    position: absolute;
    top: -6px;
    left: -6px;
    background: var(--dark);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    min-width: 22px;
    height: 22px;
    padding: 0 4px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--white);
    z-index: 2;
}

.cart-item-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    min-width: 0;
    padding-right: 1.5rem;
}

.cart-item-title {
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--dark);
    line-height: 1.3;
}

.cart-item-qty-static {
    font-size: 0.95rem;
    font-weight: 700;
    margin-top: 0.3rem;
    color: var(--dark);
}

.cart-item-qty-control {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.4rem;
    background: #f0f0f0;
    border-radius: 4px;
    padding: 2px;
    width: fit-content;
}

.cart-item-qty-control button {
    background: var(--white);
    border: none;
    width: 24px;
    height: 24px;
    border-radius: 3px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--dark);
    font-weight: 600;
    transition: background 0.2s;
}

.cart-item-qty-control button:hover:not(:disabled) {
    background: #e0e0e0;
}

.cart-item-qty-control button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.cart-item-qty-control span {
    font-weight: 700;
    font-size: 0.9rem;
    min-width: 20px;
    text-align: center;
    color: var(--dark);
}

.cart-item-price {
    color: var(--doom-green);
    font-weight: 700;
    margin-top: 0.4rem;
    font-size: 0.95rem;
}

.remove-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #bbb;
    transition: all 0.2s;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.remove-btn:hover {
    color: var(--dark);
    transform: scale(1.1);
}

.cart-footer {
    padding: 2rem;
    border-top: 1px solid #e0e0e0;
    background: #fafafa;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.checkout-btn {
    width: 100%;
    padding: 1.2rem;
    background: var(--dark);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkout-btn:hover {
    background: var(--doom-green);
    transform: translateY(-2px);
}

/* Grid */
.grid {
    display: grid;
    padding: 0 4rem;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 5rem 4rem;
    position: relative;
    z-index: 1;
}

.card {
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.card-img {
    width: 100%;
    aspect-ratio: 4/5;
    background: #e9e9e9;
    overflow: hidden;
    position: relative;
    margin-bottom: 1.5rem;
    border: 4px solid var(--dark);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (hover: hover) {
    .card:hover .card-img {
        box-shadow: 15px 15px 0 var(--dark);
        transform: translate(-5px, -5px);
    }

    .card:hover .card-img img {
        transform: scale(1.08);
    }
}

.card-meta {
    padding: 0.8rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 950;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    line-height: 1;
    margin: 0;
}

.card-details {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.card-price {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--green);
    letter-spacing: 0;
    line-height: 1;
}

.card-size-badge {
    background: var(--dark);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 950;
    padding: 2px 8px;
    border-radius: 2px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .card-meta {
        gap: 0.4rem;
    }

    .card-details {
        gap: 0.8rem;
    }

    .card-title {
        font-size: 1.2rem;
    }

    .card-price {
        font-size: 1.3rem;
    }
}

/* Footer */
/* Footer */
.footer {
    background: #000;
    color: var(--white);
    padding: 6rem 4rem 2rem;
    text-align: center;
    overflow: hidden;
    border-top: 6px solid var(--dark);
}

.footer-title {
    font-size: clamp(6rem, 20vw, 25rem);
    font-weight: 900;
    line-height: 0.75;
    letter-spacing: -6px;
    margin-bottom: 2rem;

    background: linear-gradient(90deg, #fff, var(--green), #fff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmerStore 4s linear infinite;
    text-transform: uppercase;
}

@keyframes shimmerStore {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

.footer-bottom {
    display: flex;
    justify-content: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.1rem;
    opacity: 0.6;
}

.footer-bottom a {
    color: var(--white);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--green);
}

/* === MINIMALIST STYLES === */

/* Hero Minimal */
.hero-minimal {
    min-height: 60vh;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.hero-minimal-content {
    text-align: center;
    max-width: 800px;
}

.hero-minimal-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    letter-spacing: -3px;
    margin-bottom: 1rem;
    color: var(--dark);
}

.hero-minimal-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Mobile 3D Mask */
.mobile-mask-container {
    display: none;
    background-color: var(--white);
    justify-content: center;
    align-items: center;
    position: relative;
    height: 160px;
    margin: 1.5rem 0;
    overflow: visible;
}

.mobile-graffiti-bg {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140%;
    max-width: 500px;
    height: auto;
    z-index: 0;
    opacity: 0.85;
    pointer-events: none;
    mix-blend-mode: multiply;
}

.mobile-mask-model {
    width: 140px;
    height: 140px;
    background-color: transparent;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    animation: mask-pulse 3s infinite ease-in-out;
}

@keyframes mask-pulse {
    0% {
        transform: scale(1) translateY(0);
        filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.4));
    }

    50% {
        transform: scale(1.05) translateY(-5px);
        filter: drop-shadow(0 25px 40px rgba(0, 0, 0, 0.6));
    }

    100% {
        transform: scale(1) translateY(0);
        filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.4));
    }
}

.mobile-box {
    width: 200px;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 2;
    animation: box-float 3s infinite ease-in-out;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
    flex-shrink: 0;
}

.box-cyan {
    margin-right: -30px;
    --r: -12deg;
}

.box-purple {
    margin-left: -30px;
    --r: 12deg;
    animation-delay: 1.5s;
}

@keyframes box-float {

    0%,
    100% {
        transform: translateY(0) rotate(var(--r));
    }

    50% {
        transform: translateY(-25px) rotate(var(--r));
    }
}

/* Store Section Minimal */
.store-section-minimal {
    padding: 10rem 2rem 8rem 2rem;
    /* Increased top padding to clear fixed header on desktop */
    background: var(--white);
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.store-header-minimal {
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-title-minimal {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--dark);
    margin: 0;
}

/* Mobile Filter Button */
.mobile-filter-btn {
    display: none;
    padding: 0.5rem 0.9rem;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    background: var(--white);
    font-family: var(--font);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 0.4rem;
    align-items: center;
    color: var(--dark);
}

.mobile-filter-btn svg {
    width: 14px;
    height: 14px;
}

.mobile-filter-btn:hover {
    border-color: var(--doom-green);
    background: #fafafa;
}

.filter-icon {
    font-size: 1rem;
}

/* Store Layout - Sidebar + Grid */
.store-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    align-items: start;
}

/* Filters Minimal */
.filters-minimal {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

/* Filters Sidebar */
.filters-sidebar {
    position: sticky;
    top: 2rem;
    background: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 1.5rem;
    max-height: calc(100vh - 4rem);
    overflow-y: auto;
}

.filters-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e0e0e0;
}

.filters-sidebar-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    color: var(--dark);
}

.close-filters {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--dark);
    padding: 0.5rem;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
    line-height: 1;
}

.close-filters:hover {
    color: var(--doom-green);
}

.filters-sidebar-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.filter-group .search-minimal {
    width: 100%;
}

.filter-label {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--dark);
}

.checkbox-group-sidebar {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.checkbox-group-sidebar label {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
    padding: 0.4rem;
    border-radius: 6px;
    transition: background 0.2s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.checkbox-group-sidebar label:hover {
    background: #f5f5f5;
}

.checkbox-group-sidebar input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--doom-green);
}

.sort-options-sidebar {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.sort-options-sidebar .sort-option {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
    padding: 0.4rem;
    border-radius: 6px;
    transition: background 0.2s ease;
}

.sort-options-sidebar .sort-option:hover {
    background: #f5f5f5;
}

.sort-options-sidebar input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--doom-green);
}

.sort-options-sidebar span {
    font-size: 0.9rem;
    font-weight: 500;
}

.reset-filters-btn {
    padding: 0.8rem 1.2rem;
    border: 1px solid var(--dark);
    border-radius: 8px;
    background: var(--white);
    font-family: var(--font);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.reset-filters-btn:hover {
    background: var(--dark);
    color: var(--white);
}

.products-container {
    min-width: 0;
    position: relative;
    overflow-x: visible;
    overflow-y: clip;
    padding-top: 12px;
}

.search-minimal {
    padding: 0.8rem 1.2rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: var(--font);
    font-size: 0.9rem;
    width: 250px;
    transition: border-color 0.3s;
}

.search-minimal:focus {
    outline: none;
    border-color: var(--doom-green);
}

.sort-minimal {
    padding: 0.8rem 1.2rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: var(--font);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23333' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.sort-minimal:hover {
    border-color: var(--doom-green);
    background-color: #fafafa;
}

.sort-minimal:focus {
    outline: none;
    border-color: var(--doom-green);
}

.filter-btn-minimal {
    padding: 0.8rem 1.5rem;
    border: 1px solid var(--dark);
    border-radius: 8px;
    background: var(--white);
    font-family: var(--font);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn-minimal:hover {
    background: var(--dark);
    color: var(--white);
}

/* Dropdown Filters */
.dropdown-filter {
    position: relative;
}

.dropdown-btn {
    padding: 0.8rem 1.2rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: var(--white);
    font-family: var(--font);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 120px;
    justify-content: space-between;
    color: var(--dark);
}

.dropdown-btn:hover {
    border-color: var(--doom-green);
    background: #fafafa;
}

.dropdown-btn.active {
    border-color: var(--doom-green);
    background: var(--doom-green);
    color: var(--white);
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.dropdown-btn.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-content {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    background: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    min-width: 200px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    pointer-events: none;
    z-index: 100;
}

.dropdown-content.active {
    max-height: 300px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    overflow-y: auto;
}

.checkbox-group-dropdown {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.sort-options {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.sort-option {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: background 0.2s ease;
}

.sort-option:hover {
    background: #f5f5f5;
}

.sort-option input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--doom-green);
}

.sort-option span {
    font-size: 0.9rem;
    font-weight: 500;
}

.filter-panel-minimal {
    display: none;
    padding: 2rem;
    background: #fafafa;
    border-radius: 12px;
    margin-top: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.filter-panel-minimal.open {
    display: block;
}

.filter-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.filter-group-minimal label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    color: var(--dark);
}

.checkbox-group-minimal {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 0.8rem;
    max-height: 200px;
    overflow-y: auto;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

/* Grid Minimal */
.grid-minimal {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
    min-height: 60vh;
}

/* Product Card Minimal */
.product-card-minimal {
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
}

.product-card-minimal:hover {
    transform: translateY(-8px);
}

.product-card-minimal:hover .product-image-minimal img {
    transform: scale(1.05);
}

.product-image-minimal {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: transparent;
    mix-blend-mode: multiply;
    border-radius: 12px;
    position: relative;
}

/* Quick add styles removed */

.product-image-minimal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease;
    position: absolute;
    top: 0;
    left: 0;
}

.product-image-minimal .product-img-main {
    opacity: 1;
    z-index: 2;
}

.product-image-minimal .product-img-hover {
    opacity: 0;
    z-index: 1;
}

.product-card-minimal:hover .product-img-main {
    opacity: 0;
}

.product-card-minimal:hover .product-img-hover {
    opacity: 1;
}



.product-info-minimal {
    padding: 1.5rem 0.5rem;
}

.product-title-minimal {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.product-price-minimal {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--doom-green);
}

/* Badges overlay on product card image */
.product-badges-overlay {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 10;
    pointer-events: none;
}

.badge-minimal {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 6px;
    line-height: 1;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
    width: fit-content;
}

.badge-sale {
    background: var(--red-sale);
    color: var(--white);
    border: none;
}

.badge-new {
    background: var(--dark);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.badge-fitting {
    background: #d97706;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.badge-out-of-stock {
    background: #6b7280;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Sale Price on product cards */
.product-price-minimal.product-price-sale {
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-price-minimal .price-old {
    text-decoration: line-through;
    color: #888;
    font-size: 0.95rem;
    font-weight: 500;
}

.product-price-minimal .price-new {
    color: var(--red-sale);
    font-weight: 700;
}

.product-meta-minimal {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.3rem;
    margin-top: 0.7rem;
    align-items: center;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.product-meta-minimal::-webkit-scrollbar {
    display: none;
}

.product-sizes-minimal {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.3rem;
    flex-shrink: 0;
}

.size-badge {
    display: inline-block;
    padding: 0.25rem 0.45rem;
    background: #f8f8f8;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--dark);
    transition: all 0.2s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.condition-badge {
    display: inline-block;
    padding: 0.25rem 0.45rem;
    background: #f8f8f8;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--dark);
    transition: all 0.2s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.shipping-badge {
    display: inline-block;
    padding: 0.25rem 0.45rem;
    background: #f8f8f8;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--dark);
    transition: all 0.2s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.product-card-minimal:hover .size-badge,
.product-card-minimal:hover .condition-badge,
.product-card-minimal:hover .shipping-badge {
    background: var(--doom-green);
    color: var(--white);
    border-color: var(--doom-green);
}

/* Footer Minimal */
.footer-minimal {
    background: var(--dark);
    color: var(--white);
    padding: 4rem 2rem;
    border-top: 1px solid #333;
    position: relative;
    z-index: 5;
}

.footer-minimal-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
}

.footer-minimal-title {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 0.5rem;
}

.footer-minimal-text {
    font-size: 0.9rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-minimal-right {
    text-align: right;
}

.footer-minimal-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.footer-nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: opacity 0.2s ease;
}

.footer-nav-link:hover {
    opacity: 0.8;
}

.footer-link-divider {
    color: #444;
    font-size: 1rem;
    user-select: none;
}

.footer-social-group {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 9px;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.footer-social-icon {
    width: 18px;
    height: 18px;
    display: block;
    filter: brightness(0) invert(1);
    transition: transform 0.2s ease;
}

.footer-social-link:hover .footer-social-icon {
    transform: scale(1.08);
}

.footer-minimal-copy {
    font-size: 0.85rem;
    color: #666;
}

@media (max-width: 1024px) {
    .section-title {
        font-size: 3.5rem;
    }

    .grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }

    .navbar {
        font-size: 0.9rem;
        padding: 1rem 1.5rem;
        top: 0.5rem;
        left: 1rem;
        right: 1rem;
        border-radius: 15px;
    }

    .nav-links {
        gap: 2rem;
    }

    /* Shared Mobile/Tablet HUD & Hero Layout */
    .hero-content {
        justify-content: center;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        z-index: 10;
        position: relative;
    }

    .hero-content::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 85vw;
        height: 85vw;
        z-index: 0;
        pointer-events: none;
    }

    .hero-content::after {
        content: "";
        position: absolute;
        top: 12vh;
        left: 1rem;
        z-index: 2;
        pointer-events: none;
    }

    .huge-title {
        font-size: 11.5vw !important;
        margin: 0 !important;
        text-align: center;
        width: 100%;
        position: relative;
        display: block;
        line-height: 0.8 !important;
    }

    .huge-title:first-of-type {
        font-size: 15vw !important;
        transform: translateY(-13vh) !important;
        letter-spacing: -2px !important;
        z-index: 1 !important;
        background: linear-gradient(to bottom, #ffffff 20%, rgba(255, 255, 255, 0.1) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.6));
    }

    .huge-title.outline {
        transform: translateY(16vh) !important;
        letter-spacing: 1px !important;
        text-indent: 1px !important;
        margin-top: 0 !important;
        font-family: sans-serif !important;
        z-index: 1 !important;
        bottom: auto !important;
    }

    .mask-container {
        z-index: 5 !important;
    }

    .mask-container::before {
        content: "";
        position: absolute;
        top: -14vh;
        right: 1rem;
        z-index: 2;
    }

    .mask-container::after {
        content: "";
        position: absolute;
        bottom: -14vh;
        left: 1.5rem;
        width: 0;
        height: 0;
        z-index: 2;
    }

    .spinning-mask {
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) scale(1.1) !important;
        height: 38vh !important;
        width: 100vw !important;
        margin: 0 !important;
        z-index: 5 !important;
    }

    /* Better Tablet Modal Native Bounds */
    .product-modal {
        padding: 2rem 1.5rem;
    }

    .modal-content {
        display: flex;
        flex-direction: column;
        overflow: hidden;
        height: 95vh;
        max-height: 95vh;
        border-radius: 0;
    }

    .modal-grid {
        display: flex;
        flex-direction: column;
        overflow: hidden;
        height: 100%;
    }

    .modal-gallery {
        border-right: none;
        padding: 1.5rem;
        border-bottom: 2px solid var(--dark);
        flex: 1;
        min-height: 0;
        height: auto;
        display: flex;
        flex-direction: column;
    }

    .main-image-wrap {
        aspect-ratio: auto;
        flex: 1;
        min-height: 0;
        border: 4px solid var(--dark);
    }

    .main-image-wrap img {
        object-fit: cover;
        border-radius: 0;
        width: 100%;
        height: 100%;
    }

    .modal-info {
        padding: 1.5rem;
        height: auto;
        flex: 0 0 auto;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        overflow: hidden;
    }

    .modal-title {
        font-size: 1.8rem;
        margin-bottom: 0.3rem;
        line-height: 1;
    }

    .modal-desc {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        display: block !important;
        -webkit-line-clamp: unset !important;
        max-height: 150px;
        overflow-y: auto;
    }

    .modal-buy {
        padding: 1.2rem;
        font-size: 1.2rem;
        margin-top: 1rem;
        margin-bottom: 1rem;
    }

    .footer-title {
        font-size: 14vw;
        letter-spacing: -1px;
    }
}

@media (max-width: 768px) {

    .beam-1,
    .beam-2 {
        opacity: 0.5;
    }

    .bg-text {
        font-size: 65vw;
    }

    .huge-title {
        font-size: 15.5vw !important;
    }

    .huge-title:first-of-type {
        font-size: 20vw !important;
    }

    .navbar {
        transition: transform 0.3s ease-in-out;
    }

    body.filters-open .navbar {
        transform: translateY(-110%);
        pointer-events: none;
    }

    .navbar {
        padding: 1rem 1.5rem;
        top: 0.5rem;
        left: 0.5rem;
        right: 0.5rem;
        border-radius: 12px;
    }

    .nav-links {
        display: none;
    }

    .cart {
        font-size: 1.1rem;
    }

    .logo {
        font-size: 1.5rem;
    }

    .hero-bottom {
        left: 1.5rem;
        right: 1.5rem;
        font-size: 0.9rem;
        z-index: 20;
    }

    .desktop-mask {
        display: none !important;
    }

    .mobile-mask-container {
        display: flex;
    }

    /* Edge-to-edge taller cards */
    .store-section {
        padding: 0 0 4rem 0;
    }

    .store-header {
        padding: 5rem 1.5rem 1.5rem 1.5rem;
    }

    .section-title {
        font-size: 2rem;
        letter-spacing: -0.5px;
        line-height: 1;
    }

    .btn-primary {
        padding: 0.8rem 1.2rem;
        font-size: 1rem;
    }

    .add-btn {
        display: none !important;
    }

    .filter-panel {
        padding: 0 1.5rem;
    }

    .filter-panel.open {
        max-height: 1000px;
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .search-field {
        padding: 0.8rem 1rem;
        font-size: 1rem;
    }

    .filter-group-wide {
        margin-bottom: 0.5rem;
    }

    .grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem 0.8rem;
        padding: 0 1rem;
    }

    .card-img {
        aspect-ratio: 1/1;
        margin-bottom: 0.8rem;
        border: 2px solid var(--dark);
    }

    .card-meta {
        padding: 0 0.2rem;
    }

    .card-title {
        font-size: 1rem;
        margin-bottom: 0.2rem;
    }

    .card-brand {
        font-size: 0.8rem;
    }

    .card-price {
        font-size: 1.1rem;
    }

    .card-size {
        font-size: 0.8rem;
        margin-bottom: 0.3rem;
    }

    .about-section,
    .contact-section {
        padding: 4rem 1.5rem;
    }

    .about-content p {
        font-size: 2.5rem;
    }

    .about-icon {
        font-size: 3rem;
    }

    .about-card p {
        font-size: 1.3rem;
    }

    .contact-content {
        padding: 2rem 1rem;
        border: 2px solid var(--dark);
        box-shadow: 10px 10px 0 var(--dark);
        width: 100%;
        box-sizing: border-box;
    }

    .contact-content h2 {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }

    .social-huge {
        gap: 1rem;
        flex-direction: column;
    }

    .social-huge a {
        padding: 1rem;
        font-size: 1.2rem;
        border-width: 2px;
    }

    .footer {
        padding: 4rem 1.5rem 2rem;
        background: #000;
    }

    .footer-title {
        font-size: 14vw;
        letter-spacing: -1px;
    }

    .footer-bottom {
        font-size: 0.8rem;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    /* Centered Scrollable Card for Mobile */
    .product-modal {
        padding: 2rem 1.5rem;
        display: flex;
        visibility: hidden;
        opacity: 0;
    }

    .product-modal.active {
        visibility: visible;
        opacity: 1;
        display: flex;
    }

    .modal-content {
        height: auto;
        max-height: 85dvh;
        width: 100%;
        max-width: 500px;
        border: 4px solid var(--dark);
        display: flex;
        flex-direction: column;
        overflow: hidden;
        border-radius: 0;
        box-shadow: 15px 15px 0 var(--dark);
        background: var(--white);
        animation: modalPop 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .modal-grid {
        display: flex;
        flex-direction: column;
        flex: 1;
        overflow-y: auto;
        height: auto;
    }

    .modal-gallery {
        flex: 0 0 auto;
        height: auto;
        display: flex;
        flex-direction: column;
        border-right: none;
        border-bottom: 2px solid var(--dark);
        padding: 1rem;
        padding-top: 1rem;
        overflow: visible;
    }

    .main-image-wrap {
        width: 100%;
        aspect-ratio: auto;
        min-height: 200px;
        height: 32dvh;
        margin-bottom: 0.5rem;
        background: var(--light);
        border: 2px solid var(--dark);
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .main-image-wrap img {
        object-fit: contain;
        width: 100%;
        height: 100%;
        padding: 0;
    }

    .slider-btn {
        top: 50%;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        background: rgba(255, 255, 255, 0.9);
        border: 2px solid var(--dark);
    }

    .thumbnail-list {
        height: auto;
        flex: 0 0 auto;
        margin-top: 0.5rem;
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 0.5rem;
    }

    .thumb-img {
        width: 50px;
        height: 50px;
        flex-shrink: 0;
    }

    /* Aggressively shrank text bounding pushing visual scale constraints prioritizing the main image canvas entirely */
    .modal-info {
        flex: 1;
        min-height: 0;
        padding: 1.2rem;
        overflow-y: auto;
    }

    .modal-title {
        font-size: 1.4rem;
        margin-bottom: 0.2rem;
    }

    .modal-price {
        font-size: 1.2rem;
        margin-bottom: 0.4rem;
    }

    .modal-size-info {
        font-size: 0.85rem;
        font-weight: 900;
        margin-bottom: 0.5rem;
        padding: 0;
        border: none;
        background: none;
        display: block;
    }

    .modal-desc {
        font-size: 0.95rem;
        margin-bottom: 1rem;
        display: block !important;
        -webkit-line-clamp: unset !important;
        max-height: 120px;
        overflow-y: auto;
        padding-right: 0.5rem;
    }

    .modal-buy {
        padding: 1.2rem;
        font-size: 1.2rem;
        width: 100%;
        position: sticky;
        bottom: 0;
        left: 0;
        z-index: 100;
        margin-top: 0;
        margin-bottom: 0;
        border-top: 4px solid var(--dark);
        background: #000;
        color: var(--white);
        box-shadow: none;
    }

    .close-modal {
        position: absolute;
        top: -1rem;
        right: -1rem;
        width: 4.5rem;
        height: 4.5rem;
        font-size: 2rem;
        z-index: 200;
        border: 4px solid var(--dark);
        background: var(--green);
        color: var(--white);
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 8px 8px 0 var(--dark);
    }

    .product-modal {
        padding: 2rem 1.5rem;
    }

    .cart-header {
        padding: 1.5rem;
    }

    .cart-items {
        padding: 1.5rem;
    }

    .cart-footer {
        padding: 1.5rem;
        padding-bottom: calc(4.5rem + env(safe-area-inset-bottom));
        background: var(--white);
        border-top: 2px solid var(--dark);
    }
}

/* --- FULLSCREEN VIEWER --- */
.fullscreen-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    background: rgba(0, 0, 0, 0.98);
    z-index: 5000;
    display: none;
    align-items: center;
    justify-content: center;
    touch-action: none;
}

.fullscreen-overlay.active {
    display: flex;
}

.fullscreen-overlay img {
    max-width: 95%;
    max-height: 95dvh;
    object-fit: contain;
    border: none;
    border-radius: 4px;
    background: transparent;
    transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: zoom-in;
}

/* FULLSCREEN NAVIGATION */
.fullscreen-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 3.5rem;
    height: 3.5rem;
    font-size: 1.8rem;
    font-weight: 300;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 6000;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, background 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    touch-action: manipulation;
    line-height: 1;
    padding: 0;
}

.fullscreen-nav:hover {
    background: rgba(0, 0, 0, 0.7);
    border-color: rgba(255, 255, 255, 0.25);
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.fullscreen-nav.prev {
    left: 4%;
}

.fullscreen-nav.next {
    right: 4%;
}

.fullscreen-nav.zoomed {
    opacity: 0.3;
}

.fullscreen-nav.zoomed.prev {
    left: 1rem;
}

.fullscreen-nav.zoomed.next {
    right: 1rem;
}

@media (min-width: 1400px) {
    .fullscreen-nav.prev {
        left: 5%;
    }

    .fullscreen-nav.next {
        right: 5%;
    }
}

@media (min-width: 1800px) {
    .fullscreen-nav.prev {
        left: 6%;
    }

    .fullscreen-nav.next {
        right: 6%;
    }
}

@media (max-width: 768px) {
    .fullscreen-nav {
        display: none;
    }

    .fullscreen-overlay {
        touch-action: none;
    }

    .fullscreen-overlay img {
        touch-action: none;
        cursor: default;
        max-width: 100%;
        max-height: 85vh;
        transition: transform 0.1s ease-out;
    }
}

/* Fullscreen photo indicator - dots like slider */
.fullscreen-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    gap: 0.5rem;
    z-index: 100;
    transition: opacity 0.3s ease;
}

.fullscreen-indicator .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.fullscreen-indicator .dot.active {
    background: var(--white);
    width: 24px;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .fullscreen-indicator {
        display: flex;
    }
}

.close-fullscreen {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 3.2rem;
    height: 3.2rem;
    font-size: 1.2rem;
    font-weight: 300;
    cursor: pointer;
    z-index: 6000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    touch-action: manipulation;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.close-fullscreen:hover {
    background: rgba(0, 0, 0, 0.7);
    border-color: rgba(255, 255, 255, 0.25);
    color: #fff;
    transform: scale(1.1);
}

/* Zoomed state transitions */
.fullscreen-overlay.zoomed .fullscreen-nav.prev {
    transform: translateY(-50%) translateX(-100px);
    opacity: 0;
    pointer-events: none;
}

.fullscreen-overlay.zoomed .fullscreen-nav.next {
    transform: translateY(-50%) translateX(100px);
    opacity: 0;
    pointer-events: none;
}

.fullscreen-overlay.zoomed .close-fullscreen {
    transform: translateY(-50px) scale(0.8);
    opacity: 0;
    pointer-events: none;
}

.fullscreen-overlay.zoomed .fullscreen-indicator {
    opacity: 0;
    pointer-events: none;
}

.fullscreen-trigger {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    background: var(--green);
    color: var(--white);
    border: 3px solid var(--dark);
    width: 3rem;
    height: 3rem;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    touch-action: manipulation;
}

.close-modal {
    position: absolute;
    top: -1.5rem;
    right: -1.5rem;
    width: 4rem;
    height: 4rem;
    background: var(--green);
    color: var(--white);
    border: 4px solid var(--dark);
    font-size: 2rem;
    font-weight: 900;
    cursor: pointer;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 10px 10px 0 var(--dark);
    transition: all 0.2s;
    touch-action: manipulation;
}

.close-modal:hover {
    transform: translate(5px, 5px);
    box-shadow: 5px 5px 0 var(--dark);
}

@keyframes modalPop {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}


/* === MINIMALIST RESPONSIVE === */

@media (max-width: 768px) {
    .hero-minimal {
        min-height: 50vh;
        padding: 6rem 1.5rem 3rem 1.5rem;
    }

    .hero-minimal-title {
        font-size: 2.5rem;
        letter-spacing: -2px;
    }

    .hero-minimal-subtitle {
        font-size: 0.9rem;
    }

    .store-section-minimal {
        padding: 5.5rem 1rem 6rem 1rem;
        /* Reduced top padding further on mobile */
    }

    /* Mobile Filter Button */
    .mobile-mask-container {
        display: flex;
    }

    .mobile-filter-btn {
        display: flex;
    }

    /* Filters Sidebar becomes Modal on Mobile */
    .filters-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 10000;
        max-height: 100vh;
        border-radius: 0;
        border: none;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .filters-sidebar.open {
        transform: translateX(0);
    }

    .filters-sidebar-header {
        position: sticky;
        top: 0;
        background: var(--white);
        z-index: 10;
        margin-bottom: 1.5rem;
        padding: 1.5rem;
        /* Ensure enough room for text */
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .filters-sidebar-header h3 {
        display: block !important;
        font-size: 1.5rem;
        color: var(--dark);
    }

    .close-filters {
        display: flex;
    }

    .store-layout {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .grid-minimal {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .filters-minimal {
        flex-direction: column;
        width: 100%;
    }

    .search-minimal,
    .sort-minimal,
    .filter-btn-minimal,
    .dropdown-btn {
        width: 100%;
    }

    .dropdown-filter {
        width: 100%;
    }

    .dropdown-content {
        left: 0;
        right: 0;
        min-width: 100%;
    }

    .filter-panel-minimal {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .filter-columns {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .checkbox-group-minimal {
        grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
    }

    .footer-minimal-content {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .footer-minimal-right {
        text-align: center;
    }

    .footer-minimal-links {
        flex-direction: column;
        align-items: center;
        gap: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .footer-link-divider {
        display: none;
    }

    .footer-social-group {
        justify-content: center;
        margin-top: 0.4rem;
    }

    .footer-minimal-title {
        display: flex;
        justify-content: center;
    }

    .footer-logo {
        height: 40px;
        width: auto;
    }

    .footer-minimal-text {
        font-size: 0.8rem;
    }

    .footer-minimal-copy {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .grid-minimal {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .hero-minimal-title {
        font-size: 2rem;
    }

    /* Mobile Header Adjustments */
    .navbar {
        padding: 0.8rem 1.2rem !important;
        top: 0.5rem !important;
        left: 0.8rem !important;
        right: 0.8rem !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        position: fixed !important;
    }

    .header-right {
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }

    .header-actions {
        gap: 0.8rem !important;
    }

    .logo {
        display: flex;
        justify-content: flex-start;
        margin-left: 0.4rem;
    }

    .lang-switcher {
        display: none !important;
    }

    .lang-switcher-mobile {
        display: none !important;
    }

    .current-lang {
        padding: 0.3rem 0.5rem;
    }

    .lang-dropdown {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        background: var(--dark);
        border-radius: 8px;
        flex-direction: column;
        overflow: hidden;
        min-width: 60px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .lang-switcher-mobile.active .lang-dropdown {
        display: flex;
    }

    .lang-dropdown a {
        padding: 0.8rem;
        color: var(--white);
        text-align: center;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        text-decoration: none;
    }

    .lang-dropdown a:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    .logo-img {
        height: 75px !important;
        margin: -20px 0 -20px -10px !important;
    }

    .cart a {
        padding: 0.4rem 0.6rem !important;
        font-size: 0.9rem;
    }

    .cart-icon {
        width: 24px !important;
        height: 24px !important;
    }

    .footer-logo {
        height: 120px !important;
        margin: -30px 0 !important;
    }
}


/* Background Graffiti Tags — positioned dynamically by JS */
.bg-graffiti-item {
    position: absolute;
    pointer-events: none;
    mix-blend-mode: multiply;
    opacity: 0.06;
    z-index: 0;
    transition: opacity 0.5s ease;
}

.bg-graffiti-drip {
    position: absolute;
    pointer-events: none;
    mix-blend-mode: multiply;
    opacity: 0.03;
    z-index: 1;
    clip-path: inset(30% 0 0 0);
}
/* Desktop Mask Entrance Animation */
.desktop-mask { opacity: 0; }
.desktop-mask.mask-loaded { 
    animation: maskDropIn 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards; 
}
@keyframes maskDropIn {
    0% { opacity: 0; transform: translateY(-30px) rotate(-15deg); }
    100% { opacity: 1; transform: translateY(0) rotate(0deg); }
}

/* =====================================================================
   BURGER BUTTON
   ===================================================================== */
.burger-btn {
    display: none; /* Hidden by default — shown only on ≤900px */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: 8px;
    transition: background 0.2s ease;
    flex-shrink: 0;
}

.burger-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

.burger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1),
                opacity 0.25s ease,
                width 0.3s ease;
    transform-origin: center;
}

/* Burger → X animation when open */
.burger-btn.is-open .burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.burger-btn.is-open .burger-line:nth-child(2) {
    opacity: 0;
    width: 0;
}

.burger-btn.is-open .burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* =====================================================================
   SIDEBAR OVERLAY
   ===================================================================== */
.sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 8000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.sidebar-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

/* =====================================================================
   SIDEBAR PANEL
   ===================================================================== */
.sidebar-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 320px;
    max-width: 85vw;
    height: 100%;
    background: var(--doom-green);
    z-index: 9000;
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 6px 0 40px rgba(0, 0, 0, 0.4);
    overflow-y: auto;
    overflow-x: hidden;
}

.sidebar-menu.is-open {
    transform: translateX(0);
}

/* Sidebar Header */
.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.8rem 1.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    flex-shrink: 0;
}

.sidebar-logo {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
    margin: -20px 0;
}

.sidebar-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    color: var(--white);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
    flex-shrink: 0;
}

.sidebar-close:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: rotate(90deg);
}

/* Sidebar Body */
.sidebar-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 2rem 1.8rem;
    gap: 0;
}

/* Sidebar Nav Links */
.sidebar-nav {
    list-style: none;
    margin: 0 0 0.5rem 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.sidebar-nav li {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.sidebar-menu.is-open .sidebar-nav li:nth-child(1) { opacity: 1; transform: translateX(0); transition-delay: 0.08s; }
.sidebar-menu.is-open .sidebar-nav li:nth-child(2) { opacity: 1; transform: translateX(0); transition-delay: 0.13s; }
.sidebar-menu.is-open .sidebar-nav li:nth-child(3) { opacity: 1; transform: translateX(0); transition-delay: 0.18s; }
.sidebar-menu.is-open .sidebar-nav li:nth-child(4) { opacity: 1; transform: translateX(0); transition-delay: 0.23s; }
.sidebar-menu.is-open .sidebar-nav li:nth-child(5) { opacity: 1; transform: translateX(0); transition-delay: 0.28s; }

.sidebar-nav-link {
    display: block;
    padding: 1rem 0.5rem;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: color 0.2s ease, padding-left 0.25s ease;
    position: relative;
}

.sidebar-nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) scaleY(0);
    width: 3px;
    height: 60%;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.2s ease;
}

.sidebar-nav-link:hover {
    color: rgba(255, 255, 255, 0.7);
    padding-left: 1.2rem;
}

.sidebar-nav-link:hover::before {
    transform: translateY(-50%) scaleY(1);
}

/* SALE link in sidebar — glowing white like desktop */
.sidebar-nav-link--sale {
    color: var(--white);
    text-shadow:
        0 0 6px rgba(255, 255, 255, 0.9),
        0 0 18px rgba(255, 255, 255, 0.5),
        0 0 35px rgba(200, 255, 200, 0.3);
    animation: saleNavGlow 2.2s ease-in-out infinite alternate;
}

.sidebar-nav-link--sale::before {
    background: var(--white);
}

.sidebar-nav-link--sale:hover {
    color: rgba(255, 255, 255, 0.85);
}

/* Sidebar Divider */
.sidebar-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 1.5rem 0;
    flex-shrink: 0;
}

/* Sidebar Socials */
.sidebar-socials {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.sidebar-social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.6rem 0.5rem;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.sidebar-social-link:hover {
    background: rgba(255, 255, 255, 0.1);
}

.sidebar-social-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    filter: brightness(0) invert(1);
}

/* Sidebar Language Switcher */
.sidebar-lang {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: auto;
    padding-top: 1rem;
}

.sidebar-lang-btn {
    color: var(--white);
    font-size: 1rem;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
    opacity: 0.45;
    transition: opacity 0.2s ease;
    letter-spacing: 1px;
}

.sidebar-lang-btn.active {
    opacity: 1;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.sidebar-lang-btn:hover {
    opacity: 0.8;
}

.sidebar-lang-sep {
    color: rgba(255, 255, 255, 0.25);
    font-weight: 400;
}

/* =====================================================================
   BURGER / SIDEBAR — RESPONSIVE
   ===================================================================== */

/* Desktop (≥901px): show full nav, hide burger */
@media (min-width: 901px) {
    .burger-btn {
        display: none !important;
    }
    .nav-links {
        display: flex !important;
    }
}

/* Tablet & mobile (≤900px): hide nav links, show burger */
@media (max-width: 900px) {
    .burger-btn {
        display: flex !important;
    }
    .nav-links {
        display: none !important;
    }
    /* Hide the divider and social pills — only for desktop nav */
    .nav-divider,
    .nav-social-pill {
        display: none !important;
    }
    .logo {
        margin-left: 0.5rem;
    }
    .mobile-socials {
        display: flex !important;
        align-items: center;
        gap: 0.5rem !important;
    }
    .mobile-socials a {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 34px;
        height: 34px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 9px;
        border: 1px solid rgba(255, 255, 255, 0.18);
        transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
        flex-shrink: 0;
    }
    .mobile-socials a:hover {
        background: rgba(255, 255, 255, 0.22) !important;
    }
    .social-icon {
        width: 16px !important;
        height: 16px !important;
        filter: brightness(0) invert(1);
        display: block;
        transition: all 0.2s ease;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .nav-links {
        display: none !important;
    }
}

/* =====================================================================
   INFO PAGES (DELIVERY, RETURNS, ETC.)
   ===================================================================== */
.info-page-wrap {
    padding: 10rem 2rem 8rem 2rem;
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    color: var(--dark);
    font-family: var(--font);
}

.info-page-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.info-page-header::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--doom-green);
    margin: 1.5rem auto 0 auto;
    border-radius: 2px;
}

.info-page-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -1px;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.info-page-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.55);
    max-width: 600px;
    margin: 0 auto;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-section {
    margin-bottom: 3.5rem;
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 2.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.info-section-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-section-title svg {
    color: var(--doom-green);
    flex-shrink: 0;
}

.info-section-content {
    font-size: 1.05rem;
    line-height: 1.7;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.8);
}

.info-section-content p {
    margin-bottom: 1.2rem;
}

.info-section-content p:last-child {
    margin-bottom: 0;
}

.info-section-content ul {
    margin-bottom: 1.2rem;
    padding-left: 1.5rem;
    list-style-type: square;
}

.info-section-content li {
    margin-bottom: 0.6rem;
}

.info-section-content strong {
    color: var(--dark);
    font-weight: 800;
}

.info-highlight-box {
    background: rgba(34, 64, 16, 0.07);
    border-left: 4px solid var(--doom-green);
    padding: 1.2rem 1.5rem;
    border-radius: 4px 12px 12px 4px;
    margin: 1.5rem 0;
    font-size: 0.95rem;
}

.info-highlight-box h4 {
    font-size: 1.05rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
    color: var(--doom-green);
}

.info-highlight-box ul {
    margin-bottom: 0;
}

.info-footer-note {
    font-style: italic;
    color: rgba(0, 0, 0, 0.6);
    margin-top: 1.5rem;
    text-align: center;
    border-top: 1px dashed rgba(0, 0, 0, 0.1);
    padding-top: 1rem;
}

.info-footer-note a {
    color: var(--doom-green);
    text-decoration: underline;
    font-weight: 800;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .info-page-wrap {
        padding: 6.5rem 1.2rem 4rem 1.2rem;
    }
    
    .info-page-title {
        font-size: 2.2rem;
    }
    
    .info-page-subtitle {
        font-size: 0.95rem;
    }
    
    .info-section {
        padding: 1.8rem 1.5rem;
        margin-bottom: 2.5rem;
    }
    
    .info-section-title {
        font-size: 1.35rem;
    }
}

/* =====================================================================
   WISHLIST SYSTEM STYLES
   ===================================================================== */

/* Desktop Header Wishlist Icon */
.wishlist {
    display: block;
}

.wishlist a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
}

.wishlist-icon-svg {
    width: 26px;
    height: 26px;
    stroke: var(--white);
    fill: none;
    transition: all 0.2s ease;
}

.wishlist a:hover .wishlist-icon-svg {
    transform: scale(1.1);
    stroke: #ffffff;
    fill: #ffffff;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.8));
}

#wishlist-count-wrap {
    font-size: 0.95rem;
    font-family: var(--font);
    color: var(--white);
}

@media (max-width: 900px) {
    .wishlist,
    .wishlist-btn-card {
        display: none !important;
    }
}

/* Catalog Card Wishlist Button */
.wishlist-btn-card {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    color: var(--dark);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    
    /* Hover only triggers */
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.2s cubic-bezier(0.25, 1, 0.5, 1), background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

/* Show only on hover */
.product-card-minimal:hover .wishlist-btn-card {
    opacity: 1;
    pointer-events: auto;
}

.wishlist-btn-card:hover {
    transform: scale(1.1);
    background: var(--white);
    color: #111111;
}

.wishlist-btn-card.active {
    background: #111111;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.wishlist-btn-card svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2px;
    transition: fill 0.2s ease, stroke 0.2s ease;
}

.wishlist-btn-card.active svg {
    fill: #ffffff;
    stroke: #ffffff;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.8));
}

/* Wishlist Mobile Sidebar link spacing */
.sidebar-nav-link--wishlist {
    display: flex !important;
    align-items: center;
}

.sidebar-nav-link--wishlist svg {
    stroke: currentColor;
    fill: none;
    margin-top: -2px; /* optical alignment shift */
    transition: fill 0.2s ease, stroke 0.2s ease;
}
.sidebar-nav-link--wishlist:hover svg {
    fill: #ffffff;
    stroke: #ffffff;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.8));
}

/* Wishlist Action button in drawer */
.wishlist-action-btn {
    margin-top: 0.5rem;
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
    border-radius: 4px;
    width: fit-content;
    text-transform: uppercase;
}

/* Mobile Sidebar Wishlist Count Badge */
.wishlist-sidebar-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    min-width: 24px;
    height: 24px;
    padding: 0 6px;
    border-radius: 12px;
    margin-left: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-family: var(--font);
    line-height: 1;
    vertical-align: middle;
    transition: all 0.2s ease;
}

.sidebar-nav-link--wishlist:hover .wishlist-sidebar-badge {
    background: var(--white);
    color: #111111;
    border-color: var(--white);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
}



