/* ============================================
   MAXXER BIOTECH RESEARCH — MAIN STYLESHEET
   ============================================ */

:root {
    --black: #000000;
    --dark: #0d0d0d;
    --dark2: #111111;
    --dark3: #161616;
    --border: #2a2a2a;
    --gold: #c9a84c;
    --gold-light: #e8c96a;
    --gold-dark: #a07830;
    --white: #ffffff;
    --gray: #888888;
    --gray-light: #b0b0b0;
    --font-main: 'Inter', sans-serif;
    --font-display: 'Bebas Neue', sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius: 4px;
    --shadow: 0 8px 32px rgba(0,0,0,0.4);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-main);
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

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

img { max-width: 100%; display: block; }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============ BUTTONS ============ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.55);
    padding: 14px 32px;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 4px;
    transition: var(--transition);
    text-decoration: none;
}
.btn-primary:hover {
    background: #ffffff;
    border-color: #e0c060;
    color: #000000;
    transform: none;
    box-shadow: none;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: rgba(255,255,255,0.8);
    border: 1px solid rgba(255,255,255,0.5);
    padding: 14px 32px;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 4px;
    transition: var(--transition);
    text-decoration: none;
}
.btn-outline:hover {
    background: #fff;
    border-color: #fff;
    color: #000;
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: rgba(255,255,255,0.65);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 14px 32px;
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 4px;
    transition: var(--transition);
    text-decoration: none;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.6); color: rgba(255,255,255,0.9); background: transparent; }

/* ============ SECTION HEADERS ============ */
.section-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 48px;
}
.section-header h2 {
    font-family: var(--font-display);
    font-size: 42px;
    letter-spacing: 3px;
    white-space: nowrap;
    color: var(--white);
}
.section-line {
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,0.06);
    display: none;
}

/* ============ AGE GATE ============ */
.age-gate {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.97);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.age-gate-box {
    background: #0d0d0d;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 4px;
    padding: 56px;
    max-width: 520px;
    width: 100%;
    text-align: center;
}
.age-gate-logo {
    font-family: var(--font-display);
    font-size: 28px;
    letter-spacing: 4px;
    color: var(--white);
    margin-bottom: 32px;
    line-height: 1;
}
.age-gate-logo span {
    display: block;
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--gold);
    font-family: var(--font-main);
    font-weight: 600;
    margin-top: 4px;
}
.age-gate h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
}
.age-gate p {
    color: rgba(255,255,255,0.55);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 40px;
}
.age-gate-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============ ANNOUNCEMENT BAR ============ */
.announcement-bar, .ticker-bar {
    background: #0d0d0d;
    color: rgba(255,255,255,0.7);
    overflow: hidden;
    height: 36px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    position: sticky;
    top: 0;
    z-index: 1001;
}
.announcement-track, .ticker-track {
    display: flex;
    align-items: center;
    gap: 24px;
    white-space: nowrap;
    animation: ticker 35s linear infinite;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.announcement-track .dot, .ticker-track .dot {
    color: rgba(255,255,255,0.2);
    font-size: 8px;
}
@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============ HEADER ============ */
.header {
    position: sticky;
    top: 36px;
    z-index: 1000;
    background: rgba(8,8,8,0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: var(--transition);
}
.header.scrolled {
    box-shadow: 0 4px 24px rgba(0,0,0,0.5);
}
.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}
.logo a {
    font-family: var(--font-display);
    font-size: 22px;
    letter-spacing: 3px;
    color: var(--white);
    line-height: 1;
    display: block;
}
.logo span {
    display: block;
    font-size: 8px;
    letter-spacing: 2.5px;
    color: var(--gold);
    font-family: var(--font-main);
    font-weight: 700;
    margin-top: 2px;
    text-transform: uppercase;
}
.nav {
    display: none;
}
.nav a {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    padding: 8px 12px;
    border-radius: 2px;
    transition: var(--transition);
    position: relative;
}
.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}
.nav a:hover { color: rgba(255,255,255,0.9); }
.nav a:hover::after { width: 60%; }

.header-actions {
    display: flex !important;
    align-items: center;
    gap: 12px;
    margin-left: auto;
}
.search-wrap {
    position: relative;
    display: flex;
    align-items: center;
}
.search-input {
    background: #0d0d0d;
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--white);
    padding: 8px 36px 8px 14px;
    border-radius: 4px;
    font-size: 12px;
    width: 200px;
    transition: var(--transition);
    font-family: var(--font-main);
}
.search-input:focus {
    outline: none;
    border-color: rgba(255,255,255,0.65);
    width: 240px;
}
.search-input::placeholder { color: rgba(255,255,255,0.55); }
.search-icon {
    position: absolute;
    right: 10px;
    width: 16px;
    height: 16px;
    color: rgba(255,255,255,0.55);
    pointer-events: none;
}
.cart-btn {
    background: none;
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--white);
    width: 42px;
    height: 42px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: var(--transition);
}
.cart-btn:hover { border-color: rgba(255,255,255,0.5); color: rgba(255,255,255,0.9); }
.cart-btn svg { width: 18px; height: 18px; }
.cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--gold);
    color: var(--black);
    font-size: 10px;
    font-weight: 800;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}
.hamburger {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 9999;
    min-width: 38px;
    min-height: 38px;
    flex-shrink: 0;
}
.hamburger span {
    display: block !important;
    width: 22px;
    height: 2px;
    background: #ffffff !important;
    border-radius: 8px;
    transition: var(--transition);
    flex-shrink: 0;
}

/* ============ NAV MENU (Hamburger — all screen sizes) ============ */
.mobile-nav {
    display: none;
    flex-direction: column;
    background: #050505;
    border-bottom: none;
    position: fixed;
    top: 108px;
    left: 0;
    right: 0;
    bottom: 0;
    height: calc(100vh - 108px);
    overflow: hidden;
    z-index: 9999;
    padding: 0;
    box-shadow: none;
}
.mobile-nav-links {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    padding: 4px 0 0;
    -webkit-overflow-scrolling: touch;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
    padding: 10px 28px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 17px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    border-bottom: none;
    transition: all 0.2s;
    text-decoration: none;
    position: relative;
}
.mobile-nav a::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 28px;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, rgba(255,255,255,0.12), rgba(255,255,255,0.06) 55%, transparent 85%);
}
.mobile-nav a:hover {
    color: #fff;
    padding-left: 36px;
    background: rgba(255,255,255,0.02);
}
.mobile-nav a:hover::after {
    left: 36px;
    background: linear-gradient(to right, rgba(255,255,255,0.18), rgba(255,255,255,0.08) 55%, transparent 85%);
}

/* ============ HERO ============ */
/* ============ HERO ============ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--black);
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url('../images/hero-desktop.jpg');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}
.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(8,8,8,0.92) 0%,
        rgba(8,8,8,0.75) 40%,
        rgba(8,8,8,0.15) 70%,
        rgba(8,8,8,0.0) 100%
    );
    z-index: 1;
}
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to top,
        rgba(8,8,8,0.6) 0%,
        transparent 30%
    );
}
/* Desktop hero content */
.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 560px;
    margin: 0;
    padding: 0 0 0 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
    gap: 0;
}
.hero-text {
    max-width: 100%;
}


/* Desktop hero text styles */
.hero-badge {
    display: inline-block;
    background: transparent;
    border: 1px solid rgba(201,168,76,0.45);
    color: var(--gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 2px;
    margin-bottom: 24px;
}
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(64px, 8vw, 118px);
    line-height: 0.88;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 24px;
    text-transform: uppercase;
}
.hero-title span {
    color: var(--gold);
    display: block;
}
.hero-sub {
    font-size: 16px;
    color: rgba(255,255,255,0.75);
    font-weight: 300;
    letter-spacing: 0.3px;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 480px;
}
.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}
/* Mobile hero layout */
@media (max-width: 768px) {
    .hero-bg {
        background-image: url('../images/hero-mobile.jpg') !important;
        background-position: center center !important;
        background-size: cover !important;
    }
    .hero-bg::before {
        background: linear-gradient(
            to bottom,
            rgba(8,8,8,0.95) 0%,
            rgba(8,8,8,0.75) 28%,
            rgba(8,8,8,0.0) 45%,
            rgba(8,8,8,0.0) 65%,
            rgba(8,8,8,0.85) 100%
        ) !important;
    }
    .hero-content {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        min-height: unset !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 24px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        align-items: center !important;
        z-index: 10 !important;
    }
    .hero-text {
        max-width: 100%;
        text-align: center;
        padding-top: 20px;
        padding-bottom: 0;
        color: #fff;
    }
    .hero-title {
        font-size: clamp(52px, 14vw, 80px) !important;
        line-height: 0.88 !important;
        color: #fff !important;
        margin-bottom: 12px !important;
        font-family: var(--font-display) !important;
        letter-spacing: 3px !important;
    }
    .hero-sub {
        font-size: 11px !important;
        margin-bottom: 0 !important;
        line-height: 1.5 !important;
        color: rgba(255,255,255,0.85) !important;
    }
    .hero-badge {
        color: #c9a84c !important;
        margin-bottom: 14px !important;
    }
    .hero-ctas {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        width: 100% !important;
        padding-bottom: 50px;
        padding-top: 0;
    }
    .hero-ctas a {
        width: 100% !important;
        text-align: center !important;
        display: block !important;
    }
    .hero-scroll {
        display: none;
    }
}

/* ============ TRUST BAR ============ */
.trust-bar {
    background: #0d0d0d;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 32px 0;
}
.trust-bar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    min-width: 200px;
}
.trust-icon {
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.trust-icon svg {
    width: 18px;
    height: 18px;
    color: rgba(255,255,255,0.5);
}
.trust-text strong {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
    color: rgba(255,255,255,0.8);
}
.trust-text span {
    font-size: 12px;
    color: rgba(255,255,255,0.55);
}
.trust-divider {
    width: 1px;
    height: 48px;
    background: rgba(255,255,255,0.08);
    flex-shrink: 0;
}

/* ============ CATEGORIES ============ */
.categories-section {
    padding: 96px 0 80px;
    background: #000;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.category-card {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    transition: var(--transition);
    cursor: pointer;
    group: true;
}
.category-card:hover {
    border-color: rgba(255,255,255,0.15);
}
.category-img {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.4s ease;
}
.category-card:hover .category-img {
    transform: scale(1.05);
}
.cat-peptides {
    background-image: url('../images/cat-peptides.jpg');
}
.cat-supplements {
    background-image: url('../images/cat-supplements.jpg');
}
.cat-supplies {
    background-image: url('../images/cat-supplies.jpg');
}
.cat-apparel {
    background-image: url('../images/cat-apparel.jpg');
}
.category-info {
    padding: 20px;
    background: #0d0d0d;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.category-info h3 {
    font-family: var(--font-display);
    font-size: 20px;
    letter-spacing: 2px;
    margin-bottom: 4px;
    color: rgba(255,255,255,0.9);
}
.category-info span {
    font-size: 11px;
    color: rgba(255,255,255,0.55);
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* ============ PRODUCTS GRID ============ */
.products-section {
    padding: 80px 0;
    background: #000;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.sort-wrap { margin-left: auto; }
.sort-select {
    background: #0d0d0d;
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.5);
    padding: 10px 16px;
    font-size: 12px;
    border-radius: 4px;
    font-family: var(--font-main);
    cursor: pointer;
    transition: var(--transition);
}
.sort-select:focus { outline: none; border-color: rgba(255,255,255,0.65); }

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}
.product-card {
    background: #0d0d0d;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 4px;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    group: true;
}
/* product-card hover handled below */
.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    background: rgba(255,255,255,0.08);
    color: #ffffff;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 2px;
    border: 1px solid rgba(255,255,255,0.1);
}
.product-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--dark3) 0%, var(--dark2) 100%);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    position: relative;
    overflow: hidden;
    font-size: 56px;
}
.product-img::after {
    content: '';
    position: absolute;
    inset: 0;
}
.product-info { padding: 20px; }
.product-name {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 4px;
    color: rgba(255,255,255,0.9);
}
.product-price {
    font-size: 18px;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 14px;
    margin-top: 6px;
}
.product-price .original {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    text-decoration: line-through;
    font-weight: 400;
    margin-left: 8px;
}
.product-actions {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.btn-add-cart {
    width: 100%;
    background: #000000;
    color: #ffffff;
    border: 1px solid #c9a84c;
    padding: 12px 16px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 4px;
    white-space: nowrap;
    transition: var(--transition);
    font-family: var(--font-main);
}
.btn-add-cart:hover { background: #111; border-color: #e0c060; color: #ffffff; }
.btn-view {
    display: block;
    width: 100%;
    box-sizing: border-box;
    background: transparent;
    color: rgba(255,255,255,0.35);
    border: none;
    padding: 4px 10px;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 1.5px;
    cursor: pointer;
    border-radius: 0;
    transition: color 0.2s;
    font-family: var(--font-main);
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    margin-top: 0;
}
.btn-view:hover {
    color: rgba(255,255,255,0.65);
    background: transparent;
}

/* ============ PAGINATION ============ */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}
.page-btn {
    width: 40px;
    height: 40px;
    background: #0d0d0d;
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.5);
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    font-family: var(--font-main);
    transition: var(--transition);
}
.page-btn:hover, .page-btn.active { background: #fff; border-color: #fff; color: #000; }

/* ============ NEW ARRIVALS ============ */
.new-arrivals-section {
    padding: 80px 0;
    background: #000;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* ============ LAB SECTION ============ */
.lab-section {
    padding: 96px 0;
    background: #000;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.lab-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.lab-badge {
    display: inline-block;
    background: transparent;
    border: 1px solid rgba(201,168,76,0.45);
    color: var(--gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 2px;
    margin-bottom: 24px;
}
.lab-text h2 {
    font-family: var(--font-display);
    font-size: 52px;
    letter-spacing: 3px;
    line-height: 0.95;
    margin-bottom: 24px;
}
.lab-text p {
    color: rgba(255,255,255,0.5);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 40px;
}
.lab-text p strong { color: var(--white); }
.lab-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.lab-stat {
    background: #0d0d0d;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 4px;
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
}
.lab-stat:hover {
    border-color: rgba(255,255,255,0.12);
}
.stat-num {
    font-family: var(--font-display);
    font-size: 40px;
    color: var(--white);
    letter-spacing: 2px;
    margin-bottom: 8px;
}
.stat-label {
    font-size: 9px;
    color: #c9a84c;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* ============ PAYMENT SECTION ============ */
.payment-section {
    padding: 72px 0;
    background: #000;
}
.payment-cards {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}
.payment-card {
    background: #0d0d0d;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 4px;
    padding: 16px 28px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    transition: var(--transition);
}
.payment-card:hover { border-color: rgba(255,255,255,0.65); color: var(--white); }

/* ============ FOOTER ============ */
.footer {
    background: #000;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 72px 0 32px;
}
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 56px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-logo {
    font-family: var(--font-display);
    font-size: 24px;
    letter-spacing: 3px;
    margin-bottom: 16px;
    line-height: 1;
}
.footer-logo span {
    display: block;
    font-size: 9px;
    letter-spacing: 2px;
    color: var(--gold);
    font-family: var(--font-main);
    font-weight: 700;
    margin-top: 4px;
}
.footer-brand p {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 280px;
}
.footer-socials { display: flex; gap: 12px; }
.social-link {
    width: 36px;
    height: 36px;
    background: #0d0d0d;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.5);
    transition: var(--transition);
}
.social-link:hover { border-color: rgba(255,255,255,0.65); color: rgba(255,255,255,0.9); }
.footer-col h4 {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-col a {
    display: block;
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    margin-bottom: 10px;
    transition: var(--transition);
}
.footer-col a:hover { color: var(--gold); padding-left: 4px; }
.footer-bottom { text-align: center; }
.footer-bottom p {
    font-size: 12px;
    color: rgba(255,255,255,0.55);
    margin-bottom: 12px;
}
.footer-disclaimer {
    font-size: 11px !important;
    color: #555 !important;
    max-width: 800px;
    margin: 0 auto !important;
    line-height: 1.7;
}
.footer-disclaimer strong { color: #777; }

/* ============ CART SIDEBAR ============ */
.cart-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 2000;
    backdrop-filter: blur(4px);
}
.cart-overlay.open { display: block; }
.cart-sidebar {
    position: fixed;
    right: -420px;
    top: 0;
    bottom: 0;
    width: 420px;
    background: #000;
    border-left: 1px solid rgba(255,255,255,0.08);
    z-index: 2001;
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.cart-sidebar.open { right: 0; }
.cart-header {
    padding: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.cart-header h3 {
    font-family: var(--font-display);
    font-size: 22px;
    letter-spacing: 3px;
}
.cart-close {
    background: none;
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--white);
    width: 36px;
    height: 36px;
    border-radius: 12px;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.cart-close:hover { border-color: rgba(255,255,255,0.65); color: rgba(255,255,255,0.9); }
.cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 0;
}
.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 16px;
    text-align: center;
    color: rgba(255,255,255,0.55);
}
.cart-empty svg { width: 48px; height: 48px; opacity: 0.3; }
.cart-empty p { font-size: 14px; }
.cart-footer {
    padding: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

/* Cart checkout button */
.btn-checkout {
    display: block;
    width: 100%;
    padding: 16px;
    background: transparent;
    color: #c9a84c;
    border: 1px solid #c9a84c;
    font-family: var(--font-main);
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s ease;
    text-align: center;
}
.btn-checkout:hover {
    background: #c9a84c;
    color: #000;
}
.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 14px;
    color: rgba(255,255,255,0.6);
}
.cart-total span { color: var(--gold); font-size: 20px; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
    .products-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 900px) {
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .lab-inner { grid-template-columns: 1fr; gap: 48px; }
    .trust-bar .container { gap: 16px; }
    .trust-divider { display: none; }
}
@media (max-width: 768px) {
    .search-wrap { display: none; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-title { font-size: 64px; }
    .section-header h2 { font-size: 28px; }
    .lab-stats { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .age-gate-box { padding: 32px 24px; }
    .cart-sidebar { width: 100%; right: -100%; }
}
@media (max-width: 480px) {
    .products-grid { grid-template-columns: 1fr; }
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-title { font-size: 48px; }
    .hero-ctas { flex-direction: column; }
}

/* OUT OF STOCK CARD */
.product-card .product-img { position: relative; }
.btn-notify-card { display: inline-block; width: 100%; text-align: center; background: #111; border: 1px solid #2a2a2a; color: #777; font-family: 'Bebas Neue', sans-serif; font-size: 12px; letter-spacing: 2px; padding: 9px 12px; border-radius: 8px; text-decoration: none; transition: all 0.2s; cursor: pointer; }
.btn-notify-card:hover { border-color: #d4af37; color: #d4af37; background: #0d0d0d; }


/* ============ FILTER PILLS ============ */
.filter-bar {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 32px;
    align-items: center;
}
.filter-pill {
    display: inline-flex;
    align-items: center;
    padding: 8px 22px;
    border-radius: 50px;
    border: 1.5px solid rgba(255,255,255,0.08);
    background: transparent;
    color: rgba(255,255,255,0.5);
    font-family: var(--font-main);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}
.filter-pill:hover {
    border-color: rgba(255,255,255,0.6);
    color: #ffffff;
}
.filter-pill.active {
    background: #ffffff;
    border-color: #e0c060;
    color: #000000;
}

/* ============ PRODUCT CARD V2 ============ */
.product-card {
    border-radius: 4px !important;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255,255,255,0.06);
    background: #0d0d0d;
    border: 1px solid rgba(255,255,255,0.06);
}
.product-card:hover {
    border-color: rgba(255,255,255,0.12);
}
.product-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}
.product-type-tag {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.tag-peptide, .tag-blend, .tag-supplement, .tag-supply {
    background: transparent;
    color: rgba(255,255,255,0.6);
    border: 1px solid rgba(255,255,255,0.12);
}
/* Research Category Tag */
.tag-research-cat {
    background: transparent;
    color: rgba(255,255,255,0.55);
    border: 1px solid rgba(255,255,255,0.18);
    font-size: 8px;
    letter-spacing: 1.5px;
    padding: 2px 7px;
    border-radius: 2px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.product-purity {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
}
.product-dosage {
    font-size: 11px;
    color: rgba(255,255,255,0.55);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

/* ============ SECTION CARDS - TRUST / STATS ============ */
.trust-card, .stat-card, .feature-card {
    border-radius: 4px !important;
}

/* ============ INPUTS ============ */
input[type="text"], input[type="email"], input[type="number"], select, textarea {
    border-radius: 10px !important;
}

/* ============ AGE GATE ============ */
.age-gate-box {
    border-radius: 20px !important;
}

/* ============ CART SIDEBAR ============ */
.cart-sidebar {
    border-radius: 20px 0 0 20px !important;
}

/* ============ TOAST ============ */
.toast {
    border-radius: 50px !important;
}

.page-badge { border-radius: 50px !important; }


/* ======================================================
   MAXXER × VYLIX — PURE BLACK/WHITE DESIGN SYSTEM
   ====================================================== */

/* Ticker bar: dark bg, subtle white text */
.announcement-bar,
.ticker-bar {
    background: #090909 !important;
    color: rgba(255,255,255,0.65) !important;
    border-bottom: 1px solid rgba(255,255,255,0.05) !important;
}
.announcement-track .dot,
.ticker-track .dot {
    color: rgba(255,255,255,0.2) !important;
}

/* Section line: grey */
.section-line {
    background: linear-gradient(90deg, rgba(255,255,255,0.12), transparent) !important;
}

/* All product type tags: pure neutral */
.tag-peptide,
.tag-blend,
.tag-supplement,
.tag-supply {
    background: transparent !important;
    color: rgba(255,255,255,0.55) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
}

/* Filter pills */
.filter-pill {
    background: transparent !important;
    color: rgba(255,255,255,0.65) !important;
    border: 1px solid rgba(255,255,255,0.12) !important;
    font-size: 10px !important;
    letter-spacing: 1.5px !important;
}
.filter-pill:hover {
    color: #ffffff !important;
    border-color: rgba(255,255,255,0.6) !important;
    background: transparent !important;
}
.filter-pill.active {
    background: #ffffff !important;
    border-color: #e0c060 !important;
    color: #000000 !important;
    font-weight: 700 !important;
}

/* Product purity text: muted */
.product-purity {
    color: rgba(255,255,255,0.28) !important;
    font-size: 9px !important;
}

/* Product card: pure dark */
.product-card {
    background: #0d0d0d !important;
    border: 1px solid rgba(255,255,255,0.05) !important;
}
.product-card:hover {
    border-color: rgba(255,255,255,0.12) !important;
    box-shadow: 0 8px 32px rgba(0,0,0,0.6) !important;
}

/* Category card borders */
.category-card {
    border: 1px solid rgba(255,255,255,0.06) !important;
}
.category-card:hover {
    border-color: rgba(255,255,255,0.15) !important;
}

/* Nav active underline stays gold */
.nav a::after { background: var(--gold) !important; }

/* Cart count badge stays gold */
.cart-count { background: var(--gold) !important; color: #000 !important; }

/* Logo tagline stays gold */
.logo span { color: var(--gold) !important; }

/* Gold NEW badge stays gold */
.product-badge-new {
    background: var(--gold) !important;
    color: #000 !important;
}

/* Out of stock overlay: dark */
.oos-badge {
    background: rgba(0,0,0,0.85) !important;
    border: 1px solid rgba(255,255,255,0.15) !important;
    color: rgba(255,255,255,0.7) !important;
}

/* Stat boxes: Vylix style */
.stat-box, .trust-stat {
    border-color: rgba(255,255,255,0.06) !important;
}

/* Remove any warm tones from backgrounds */
body { background: #000000 !important; }

/* ============ GLOBAL POLISH OVERRIDES — ABOUT PAGE CONSISTENCY ============ */

/* Ensure all cards use flat 4px radius */
.product-card,
.category-card,
.lab-stat,
.payment-card,
.age-gate-box,
.footer .social-link {
    border-radius: 4px !important;
}

/* Ensure product card borders are subtle */
.product-card {
    border-color: rgba(255,255,255,0.07) !important;
}

/* Product img background - cleaner */
.product-img {
    background: #0d0d0d !important;
}

/* Section label badge — global reusable class */
.section-badge {
    display: inline-block;
    border: 1px solid rgba(201,168,76,0.45);
    color: #c9a84c;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 2px;
    margin-bottom: 20px;
}

/* Section headline style */
.section-headline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(36px, 5vw, 56px);
    letter-spacing: 3px;
    color: #fff;
    line-height: 1;
    margin-bottom: 0;
}

/* Consistent body text muted color */
.text-muted {
    color: rgba(255,255,255,0.5);
}

/* Remove section-line styling (replaced by badge approach) */
.section-line {
    display: none;
}

/* Consistent product type tag colors in cards */
.product-type-tag {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    margin-bottom: 8px;
}

/* Purity badge on cards */
.purity-tag {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.65);
}

/* Product card info padding consistency */
.product-info {
    padding: 18px 20px 20px;
}

/* Trust item divider */
.trust-divider {
    background: rgba(255,255,255,0.06);
}

/* Footer social links */
.social-link {
    border-radius: 4px !important;
}

/* Section padding consistency */
.payment-section {
    padding: 80px 0;
    background: #000;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* Category grid mobile */
@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .categories-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ============================================================
   MASTER COLOR OVERRIDE — BLACK / WHITE / GREY SYSTEM
   Matches About page DNA exactly
   ============================================================ */

/* Body & base */
body { background: #000 !important; }

/* Ticker bar — clean dark */
.ticker-bar, .announcement-bar {
    background: #000 !important;
    border-bottom: 1px solid rgba(255,255,255,0.06) !important;
    color: rgba(255,255,255,0.6) !important;
}
.ticker-track, .announcement-track {
    color: rgba(255,255,255,0.6) !important;
}
.ticker-track .dot, .announcement-track .dot {
    color: rgba(255,255,255,0.12) !important;
}

/* Header */
.header {
    background: rgba(0,0,0,0.97) !important;
    border-bottom: 1px solid rgba(255,255,255,0.06) !important;
}

/* Nav */
.nav a { color: rgba(255,255,255,0.6) !important; }
.nav a:hover { color: #fff !important; }
.nav a::after { background: rgba(255,255,255,0.5) !important; }

/* Filter pills — white active system */
.filter-pill {
    background: transparent !important;
    color: rgba(255,255,255,0.6) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    border-radius: 2px !important;
    font-size: 10px !important;
    letter-spacing: 2px !important;
    padding: 8px 20px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    font-family: 'Inter', sans-serif !important;
    text-transform: uppercase !important;
}
.filter-pill:hover {
    color: rgba(255,255,255,0.85) !important;
    border-color: rgba(255,255,255,0.65) !important;
    background: transparent !important;
}
.filter-pill.active {
    background: #fff !important;
    border-color: #fff !important;
    color: #000 !important;
    font-weight: 800 !important;
}

/* Product type tags (PEPTIDE / BLEND / SUPPLEMENT) */
.tag-peptide, .tag-blend, .tag-supplement, .tag-supply, .tag-supp {
    background: transparent !important;
    color: rgba(255,255,255,0.5) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    border-radius: 2px !important;
    font-size: 9px !important;
    letter-spacing: 2px !important;
    font-weight: 700 !important;
}

/* Product cards */
.product-card {
    background: #0d0d0d !important;
    border: 1px solid rgba(255,255,255,0.07) !important;
    border-radius: 4px !important;
    box-shadow: none !important;
    transform: none !important;
}
.product-card:hover {
    border-color: rgba(255,255,255,0.14) !important;
    transform: none !important;
    box-shadow: none !important;
}

/* Product image area */
.product-img {
    background: #0d0d0d !important;
    border-bottom: 1px solid rgba(255,255,255,0.06) !important;
}

/* Product info */
.product-name { color: rgba(255,255,255,0.9) !important; }
.product-meta, .product-purity, .product-dose {
    color: rgba(255,255,255,0.5) !important;
    font-size: 10px !important;
    letter-spacing: 1px !important;
}

/* Price — keep gold, it signals value */
.product-price { color: #c9a84c !important; }

/* Product badge (NEW) */
.product-badge {
    background: rgba(255,255,255,0.06) !important;
    color: rgba(255,255,255,0.5) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    font-weight: 600 !important;
}

/* OUT OF STOCK badge */
.oos-badge {
    background: rgba(255,255,255,0.06) !important;
    color: rgba(255,255,255,0.5) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
}

/* Category cards */
.category-card {
    border-color: rgba(255,255,255,0.07) !important;
    border-radius: 4px !important;
}
.category-card:hover {
    border-color: rgba(255,255,255,0.18) !important;
    transform: none !important;
    box-shadow: none !important;
}
.category-img { transition: transform 0.4s ease; }
.category-card:hover .category-img { transform: scale(1.03) !important; }
.category-info {
    background: #0d0d0d !important;
    border-top: 1px solid rgba(255,255,255,0.06) !important;
}
.category-info h3 { color: rgba(255,255,255,0.9) !important; }
.category-info span { color: rgba(255,255,255,0.5) !important; }

/* Trust bar */
.trust-bar {
    background: #000 !important;
    border-top: 1px solid rgba(255,255,255,0.06) !important;
    border-bottom: 1px solid rgba(255,255,255,0.06) !important;
}
.trust-icon {
    background: transparent !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    border-radius: 4px !important;
}
.trust-icon svg { color: rgba(255,255,255,0.6) !important; }
.trust-text strong { color: rgba(255,255,255,0.8) !important; }
.trust-text span { color: rgba(255,255,255,0.5) !important; }
.trust-divider { background: rgba(255,255,255,0.06) !important; }

/* Lab section */
.lab-section {
    background: #000 !important;
    border-top: 1px solid rgba(255,255,255,0.06) !important;
    border-bottom: 1px solid rgba(255,255,255,0.06) !important;
}
.lab-stat {
    background: #0d0d0d !important;
    border: 1px solid rgba(255,255,255,0.07) !important;
    border-radius: 4px !important;
}
.lab-stat:hover { border-color: rgba(255,255,255,0.12) !important; }
.stat-num { color: #fff !important; }
.stat-label { color: rgba(255,255,255,0.55) !important; font-size: 10px !important; letter-spacing: 2px !important; }
.lab-text p { color: rgba(255,255,255,0.5) !important; }
.lab-text p strong { color: rgba(255,255,255,0.85) !important; }
.lab-text h2 { color: #fff !important; }

/* Payment section */
.payment-section {
    background: #000 !important;
    border-bottom: 1px solid rgba(255,255,255,0.06) !important;
}
.payment-card {
    background: #0d0d0d !important;
    border: 1px solid rgba(255,255,255,0.07) !important;
    border-radius: 4px !important;
    color: rgba(255,255,255,0.6) !important;
}
.payment-card:hover {
    border-color: rgba(255,255,255,0.2) !important;
    color: rgba(255,255,255,0.85) !important;
}

/* Sections */
.categories-section, .products-section, .new-arrivals-section {
    background: #000 !important;
    border-bottom: 1px solid rgba(255,255,255,0.06) !important;
}

/* Buttons */
.btn-outline:hover {
    background: #fff !important;
    border-color: #fff !important;
    color: #000 !important;
}

.btn-add-cart:hover {
    background: #111111 !important;
    border-color: #e0c060 !important;
    color: #ffffff !important;
}

/* Pagination */
.page-btn { border-radius: 4px !important; color: rgba(255,255,255,0.6) !important; }
.page-btn:hover, .page-btn.active {
    background: #fff !important;
    border-color: #fff !important;
    color: #000 !important;
}

/* Footer */
.footer {
    background: #000 !important;
    border-top: 1px solid rgba(255,255,255,0.06) !important;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06) !important;
}
.footer-col h4 {
    color: rgba(255,255,255,0.8) !important;
    font-size: 11px !important;
    letter-spacing: 2px !important;
}
.footer-col a, .footer-links a {
    color: rgba(255,255,255,0.55) !important;
    font-size: 13px !important;
}
.footer-col a:hover, .footer-links a:hover {
    color: rgba(255,255,255,0.8) !important;
}
.footer-legal {
    color: rgba(255,255,255,0.2) !important;
    font-size: 11px !important;
}
.social-link {
    background: transparent !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    border-radius: 4px !important;
    color: rgba(255,255,255,0.6) !important;
}
.social-link:hover {
    border-color: rgba(255,255,255,0.5) !important;
    color: rgba(255,255,255,0.85) !important;
}

/* Cart sidebar */
.cart-sidebar {
    background: #0d0d0d !important;
    border-left: 1px solid rgba(255,255,255,0.08) !important;
}
.cart-sidebar-title {
    color: #fff !important;
    border-bottom: 1px solid rgba(255,255,255,0.06) !important;
}
.cart-total { color: rgba(255,255,255,0.5) !important; }
.cart-total strong { color: #fff !important; }

/* Inputs globally */
input, select, textarea {
    border-color: rgba(255,255,255,0.1) !important;
    background: #0d0d0d !important;
    color: #fff !important;
}
input:focus, select:focus, textarea:focus {
    border-color: rgba(255,255,255,0.5) !important;
    outline: none !important;
}

/* Scrollbar */
::-webkit-scrollbar { width: 4px; background: #000; }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 2px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.2); }


/* ================================================================
   MAXXER — APPENDED COMPONENT & MOBILE STYLES
   All additions consolidated here. Do not append below this block.
   ================================================================ */

/* ── HERO STAT PILLS ── */
.hero-stats-bar {
    display: flex;
    gap: 12px;
    margin-top: 36px;
    flex-wrap: wrap;
}
.hero-stat-pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    min-width: 110px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 4px;
    backdrop-filter: blur(8px);
    gap: 2px;
}
.hero-stat-num {
    font-family: var(--font-display);
    font-size: 28px;
    color: #fff;
    letter-spacing: 1px;
    line-height: 1;
}
.hero-stat-label {
    font-size: 10px;
    color: rgba(255,255,255,0.5);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-top: 3px;
}

/* ── REDUCE GAP: HERO → CATEGORIES ── */
.categories-section {
    padding: 48px 0 80px !important;
}

/* ── COA HIGHLIGHT BOX ── */
.coa-highlight-box {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: #0d0d0d;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 4px;
    margin-top: 0;
    margin-bottom: 8px;
}
.coa-highlight-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    color: #ffffff;
}
.coa-highlight-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.coa-highlight-text strong {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    letter-spacing: 1px;
    text-transform: uppercase;
}
.coa-highlight-text span {
    font-size: 10px;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.5px;
}
.coa-highlight-link {
    flex-shrink: 0;
    font-family: var(--font-display);
    font-size: 11px;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s;
}
.coa-highlight-link:hover { color: #fff; }

/* ── VOLUME DISCOUNT TIERS ── */
.volume-tiers {
    display: flex;
    gap: 8px;
    margin-top: 0;
    margin-bottom: 14px;
}
.vol-tier {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 6px;
    background: #0d0d0d;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 4px;
    cursor: default;
    transition: border-color 0.2s, background 0.2s;
    text-align: center;
    gap: 3px;
}
.vol-tier.active {
    border-color: rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.04);
}
.vol-pct {
    font-family: var(--font-display);
    font-size: 20px;
    color: #fff;
    letter-spacing: 1px;
    line-height: 1;
}
.vol-qty {
    font-size: 10px;
    color: rgba(255,255,255,0.55);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* ── PRODUCT DETAIL PAGE: SPACING TIGHTEN ── */
.product-name { margin-bottom: 4px !important; }
.product-subtitle { margin-bottom: 4px !important; }
.product-rating { margin-bottom: 8px !important; }
.product-price-row { margin-bottom: 6px !important; }
.product-short-desc {
    margin-top: 4px !important;
    margin-bottom: 8px !important;
    font-size: 13px !important;
    line-height: 1.6 !important;
}
.product-option-label { margin-top: 6px !important; margin-bottom: 6px !important; }
.product-variants { margin-bottom: 0 !important; }
.product-divider { margin: 12px 0 !important; }
.product-actions { margin-bottom: 12px !important; }
.trust-badges-buy { padding: 12px 0 !important; margin-bottom: 12px !important; }
.sales-final-notice { margin-bottom: 14px !important; padding: 10px 14px !important; }

/* ── PRODUCT META TABLE (detail page) ── */
.product-details .product-meta {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    text-align: left !important;
    margin-top: 8px !important;
    border-top: 1px solid rgba(255,255,255,0.07) !important;
    padding-top: 8px !important;
}
.product-details .product-meta-row {
    display: flex !important;
    align-items: flex-start !important;
    gap: 12px !important;
    padding: 7px 0 !important;
    border-bottom: 1px solid rgba(255,255,255,0.05) !important;
    text-align: left !important;
}
.product-details .meta-label {
    font-size: 9px !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    color: rgba(255,255,255,0.55) !important;
    min-width: 70px !important;
    padding-top: 2px !important;
    text-align: left !important;
    flex-shrink: 0 !important;
}
.product-details .meta-value {
    font-size: 12px !important;
    color: rgba(255,255,255,0.8) !important;
    line-height: 1.5 !important;
    text-transform: none !important;
    text-align: left !important;
}
.product-details .meta-value.gold {
    color: #c9a84c !important;
    text-transform: none !important;
}

/* ================================================================
   MOBILE — 768px
   ================================================================ */
@media (max-width: 768px) {

    /* Hero: hide pills, push buttons to bottom */
    .hero-stats-bar { display: none !important; }
    .hero-content {
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        min-height: 88vh !important;
        padding-bottom: 48px !important;
    }
    .hero-text { flex: 0 0 auto !important; }
    .hero-ctas { margin-top: auto !important; padding-top: 0 !important; }

    /* Gap: categories → products */
    .categories-section { padding-bottom: 32px !important; }
    .products-section { padding-top: 32px !important; }

    /* 2-column product grids everywhere */
    .products-grid,
    .peptides-grid,
    #shopGrid,
    #newGrid,
    .shop-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }

    /* Product CARDS — compact (scoped to .product-card only) */
    .product-card .product-info { padding: 10px 10px 12px !important; }
    .product-card .product-img { height: 150px !important; object-fit: contain !important; background: #0d0d0d !important; }
    .product-card .product-name {
        font-size: 11px !important;
        letter-spacing: 1.5px !important;
        margin-bottom: 2px !important;
        line-height: 1.3 !important;
    }
    .product-card .product-price {
        font-size: 14px !important;
        margin-bottom: 8px !important;
    }
    .product-card .product-meta {
        display: flex !important;
        gap: 6px !important;
        flex-wrap: nowrap !important;
        overflow: hidden !important;
    }
    .product-type-tag, .product-tag, .product-purity, .purity-badge {
        font-size: 8px !important;
        padding: 2px 6px !important;
        white-space: nowrap !important;
    }
    .product-dose { font-size: 10px !important; margin-bottom: 6px !important; }
    /* Card buttons stacked */
    .product-card .product-actions,
    .product-card .card-actions {
        display: flex !important;
        flex-direction: column !important;
        gap: 6px !important;
    }
    .product-card .btn-add-cart, .product-card .btn-cart {
        width: 100% !important;
        font-size: 11px !important;
        padding: 12px 8px !important;
        white-space: nowrap !important;
    }
    .product-card .btn-view {
        font-size: 8px !important;
        padding: 5px 8px !important;
        opacity: 0.65 !important;
        width: 100% !important;
    }

    /* Product DETAIL PAGE — large title + price (scoped to .product-details) */
    .product-details .product-name {
        font-size: clamp(40px, 12vw, 64px) !important;
        letter-spacing: 2px !important;
        line-height: 1 !important;
    }
    .product-details .product-subtitle {
        font-size: 11px !important;
        letter-spacing: 2px !important;
    }
    .product-details .product-price {
        font-size: 38px !important;
        letter-spacing: 2px !important;
    }
    .product-per { font-size: 11px !important; }

    /* Volume tiers mobile */
    .vol-pct { font-size: 17px; }
    .vol-qty { font-size: 9px; }
    .vol-tier { padding: 10px 6px; }

    /* COA box mobile */
    .coa-highlight-box { padding: 10px 12px; gap: 10px; }
    .coa-highlight-icon { width: 28px; height: 28px; }

    /* Footer */
    .footer { padding: 40px 0 24px !important; }
    .footer-top { margin-bottom: 32px !important; padding-bottom: 32px !important; gap: 24px !important; }
}

/* ================================================================
   MOBILE — 480px
   ================================================================ */
@media (max-width: 480px) {
    .products-grid,
    .peptides-grid,
    #shopGrid,
    #newGrid,
    .shop-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px !important;
    }
    .product-card .product-info { padding: 8px 8px 10px !important; }
    .product-card .product-img { height: 140px !important; object-fit: contain !important; background: #0d0d0d !important; }
    .product-card .product-name { font-size: 10px !important; }
    .product-card .btn-add-cart { font-size: 11px !important; padding: 10px 6px !important; }

    .product-details .product-name { font-size: clamp(36px, 11vw, 52px) !important; }
    .product-details .product-price { font-size: 34px !important; }

    .vol-pct { font-size: 15px !important; }
    .vol-tier { padding: 8px 4px !important; }

    .coa-highlight-text strong { font-size: 10px !important; }
    .coa-highlight-link { font-size: 9px !important; }
}

/* ── NEW FOOTER (Vylix-inspired) ── */
.footer { background: #000; border-top: 1px solid rgba(255,255,255,0.06); }

.footer-main { padding: 72px 0 56px; }

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.footer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    letter-spacing: 3px;
    color: #fff;
    line-height: 1;
    margin-bottom: 6px;
}
.footer-logo span {
    display: block;
    font-size: 10px;
    letter-spacing: 4px;
    color: #c9a84c;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    margin-top: 2px;
}

.footer-tagline {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin: 14px 0 20px;
    max-width: 280px;
}

.footer-socials { display: flex; gap: 10px; }
.footer-socials .social-link {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.1);
    padding: 6px 10px;
    border-radius: 2px;
    transition: all 0.2s;
}
.footer-socials .social-link:hover {
    color: #fff;
    border-color: rgba(255,255,255,0.6);
}

.footer-col { display: flex; flex-direction: column; gap: 0; }

.footer-col-title {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-col a {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    padding: 7px 0;
    transition: color 0.2s;
    border-bottom: none;
}
.footer-col a:hover { color: #fff; }

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    padding: 7px 0;
    transition: color 0.2s;
}
.footer-contact-item:hover { color: #fff; }
.footer-contact-item svg { flex-shrink: 0; opacity: 0.5; }

/* Disclaimer box */
.footer-disclaimer-box {
    background: #080808;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 28px 0;
}
.footer-disclaimer-label {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.2);
    text-transform: uppercase;
    margin-bottom: 8px;
}
.footer-disclaimer-text {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    max-width: 900px;
}
.footer-disclaimer-text strong { color: rgba(255,255,255,0.65); font-weight: 600; }

/* Bottom bar */
.footer-bottom {
    padding: 20px 0;
    background: #000;
}
.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.footer-copyright {
    font-size: 11px;
    color: rgba(255,255,255,0.2);
    letter-spacing: 1px;
}
.footer-research-note {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.2);
    text-transform: uppercase;
}

/* Footer responsive */
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
    .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-main { padding: 48px 0 36px; }
    .footer-bottom .container { flex-direction: column; align-items: flex-start; gap: 6px; }
    .footer-research-note { font-size: 9px; }
}
/* ── END NEW FOOTER ── */

/* ── HAMBURGER + HEADER ALIGNMENT FIX ── */
/* Ensure hamburger always shows and header items align right */
.hamburger { display: flex !important; }
.header-actions { display: flex !important; margin-left: auto; }

/* Mobile header: keep search, cart, hamburger aligned right */
@media (max-width: 768px) {
    .header-inner { padding: 0 16px; gap: 0; }
    .header-actions { gap: 10px; }
    .search-input { width: 130px; }
    .search-input:focus { width: 150px; }
    .hamburger { padding: 8px; min-width: 38px; min-height: 38px; flex-shrink: 0; }
    .hamburger span { display: block !important; width: 22px; height: 2px; background: #ffffff !important; }
}
/* ── END HAMBURGER FIX ── */

/* Age Gate Buttons */
.age-gate-btns { display: flex; gap: 12px; justify-content: center; margin-top: 8px; }
.btn-yes { padding: 14px 36px; background: #fff; color: #000; border: none; border-radius: 4px; font-family: 'Bebas Neue', sans-serif; font-size: 17px; letter-spacing: 2px; cursor: pointer; transition: background 0.2s, color 0.2s; }
.btn-yes:hover { background: #c9a84c; color: #000; }
.btn-no { padding: 14px 36px; background: transparent; color: rgba(255,255,255,0.5); border: 1px solid rgba(255,255,255,0.2); border-radius: 4px; font-family: 'Bebas Neue', sans-serif; font-size: 17px; letter-spacing: 2px; cursor: pointer; transition: all 0.2s; }
.btn-no:hover { border-color: #ff4444; color: #ff4444; }

/* =============================================
   MOBILE SECTION SPACING REDUCTION
   Reduce padding between sections on mobile
   ============================================= */
@media (max-width: 768px) {
  /* General section padding reduction */
  section,
  .section,
  .about-mission,
  .about-trust,
  .about-quality,
  .about-cta,
  .about-hero,
  .shop-section,
  .featured-section,
  .lab-hero,
  .coa-gallery-section,
  .faq-section,
  .faq-cta,
  .research-disclaimer,
  .trust-bar,
  .categories-section,
  .hero-section {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }

  /* Hero sections get a bit more room */
  .about-hero,
  .lab-hero {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }

  /* Trust bar stays compact */
  .trust-bar {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }

  /* Announcement bar - no change needed */
  .announcement-bar {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}

@media (max-width: 480px) {
  section,
  .section,
  .about-mission,
  .about-trust,
  .about-quality,
  .about-cta,
  .shop-section,
  .featured-section,
  .lab-hero,
  .coa-gallery-section,
  .faq-section,
  .faq-cta,
  .research-disclaimer,
  .categories-section {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }

  .trust-bar {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
}


/* ============================================
   LEARN MORE MODAL
   ============================================ */



/* ============ MOBILE NAV FOOTER ============ */
.mobile-nav-footer {
    margin-top: auto;
    padding: 20px 28px 32px;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.mobile-nav-socials {
    display: flex;
    gap: 10px;
}
.mobile-nav-social {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.55);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 11px;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.2s;
    background: transparent;
}
.mobile-nav-social:hover {
    border-color: rgba(255,255,255,0.4);
    color: #fff;
    background: rgba(255,255,255,0.04);
}
.mobile-nav-disclaimer {
    font-family: 'Inter', sans-serif;
    font-size: 9px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.25);
    line-height: 1.6;
}
.mobile-nav-hashtag {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 15px;
    letter-spacing: 2px;
    color: #c9a84c;
    text-decoration: none;
    opacity: 0.85;
}

/* ============ MOBILE FILTER PILLS SLIDER ============ */
@media (max-width: 768px) {
    /* Stack filter bar above product count */
    .filter-bar {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        gap: 8px !important;
        margin-bottom: 16px !important;
        padding-bottom: 8px !important;
        /* Hide scrollbar */
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
    }
    .filter-bar::-webkit-scrollbar {
        display: none !important;
    }
    /* Pills compact on mobile */
    .filter-bar .filter-pill {
        flex-shrink: 0 !important;
        padding: 7px 16px !important;
        font-size: 10px !important;
        white-space: nowrap !important;
    }
}

/* =============================================
   APPAREL GRID — 4:5 PORTRAIT IMAGE RATIO
   ============================================= */
#apparelGrid .product-img {
    aspect-ratio: 4 / 5 !important;
    height: auto !important;
    overflow: hidden !important;
}
#apparelGrid .product-img img {
    object-fit: contain !important;
    width: 100% !important;
    height: 100% !important;
    object-position: center top !important;
}
@media (max-width: 768px) {
    #apparelGrid .product-card .product-img {
        aspect-ratio: 4 / 5 !important;
        height: auto !important;
        overflow: hidden !important;
    }
    #apparelGrid .product-card .product-img img {
        height: 100% !important;
        object-fit: contain !important;
        object-position: center top !important;
    }
}
@media (max-width: 480px) {
    #apparelGrid .product-card .product-img {
        aspect-ratio: 4 / 5 !important;
        height: auto !important;
        overflow: hidden !important;
    }
    #apparelGrid .product-card .product-img img {
        height: 100% !important;
        object-fit: contain !important;
        object-position: center top !important;
    }
}

/* =============================================
   APPAREL CARD — HOVER IMAGE SWAP
   ============================================= */
#apparelGrid .product-img {
    overflow: hidden !important;
}
#apparelGrid .product-img .img-primary {
    opacity: 1;
    transition: opacity 0.4s ease !important;
}
#apparelGrid .product-img .img-hover {
    opacity: 0;
    transition: opacity 0.4s ease !important;
}
#apparelGrid .product-card:hover .img-primary {
    opacity: 0 !important;
}
#apparelGrid .product-card:hover .img-hover {
    opacity: 1 !important;
}

/* ===================================================
   CARD BUTTON ALIGNMENT — buttons always at bottom
   =================================================== */
.product-card {
    display: flex !important;
    flex-direction: column !important;
}

.product-info {
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
}

.product-actions {
    margin-top: auto !important;
    padding-top: 12px !important;
}

/* v2 */
