/* ============================================
   33 DEGREES OF HEALING — MAIN STYLESHEET
   Dark / Gold Premium Aesthetic
   ============================================ */

/* Citation links */
.citation-link {
    color: #d4a843;
    opacity: 0.6;
    font-size: 0.75em;
    text-decoration: none;
    border-bottom: 1px dotted rgba(212, 168, 67, 0.4);
    transition: opacity 0.3s ease;
}
.citation-link:hover {
    opacity: 1;
}

/* ---------- CSS VARIABLES ---------- */
:root {
    --gold: #9a7b3f;
    --gold-light: #c4a265;
    --gold-dark: #7a5f2e;
    --gold-glow: rgba(154, 123, 63, 0.15);
    --black: #000000;
    --bg-primary: #faf6f0;
    --bg-card: #ffffff;
    --bg-card-hover: #f3ede4;
    --text-primary: #2c2416;
    --text-secondary: #5c4f3a;
    --text-muted: #8a7f6b;
    --border-subtle: rgba(154, 123, 63, 0.15);
    --border-gold: rgba(154, 123, 63, 0.3);
    --font-heading: 'Libre Baskerville', serif;
    --font-body: 'Source Sans 3', sans-serif;
    --container-max: 1280px;
    --section-padding: 80px 0;
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

html {
    background: #faf6f0;
}

/* Opaque sections — chain hidden */
.featured-products {
    position: relative;
    background-color: #0a0a0a;
}
.popular-bundles {
    position: relative;
    background-color: #fff;
}

/* Semi-transparent sections — 3D chain shows through */
.science-section,
.all-products,
.cat-section,
.social-proof-section,
.brand-story,
.community-section,
.site-footer {
    position: relative;
    background-color: rgba(10, 10, 10, 0.88);
}

body {
    font-family: var(--font-body);
    background: transparent;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--gold-light);
}

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

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- TYPOGRAPHY ---------- */
.section-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--gold);
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto 48px;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 14px 36px;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
}

.btn-primary {
    background: var(--gold);
    color: #fff;
}

.btn-primary:hover {
    background: var(--gold-dark);
    color: #fff;
    box-shadow: 0 0 30px var(--gold-glow);
}

.btn-secondary {
    background: var(--gold);
    color: #fff;
    border: 1px solid var(--gold);
    padding: 10px 24px;
    font-size: 0.75rem;
}

.btn-secondary:hover {
    background: var(--gold-dark);
    color: #fff;
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--border-gold);
    padding: 12px 32px;
}

.btn-outline:hover {
    background: rgba(212, 168, 67, 0.1);
    border-color: var(--gold);
    color: var(--gold-light);
}

/* ============================================
   NAVIGATION
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo img {
    height: 50px;
    width: auto;
}

.nav-logo-text {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.2;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 4px;
}

.nav-logo-sub {
    font-size: 0.55rem;
    letter-spacing: 3px;
    color: var(--gold-light);
    font-weight: 400;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-link {
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-icon {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 4px;
    transition: color var(--transition);
    position: relative;
}

.nav-icon:hover {
    color: var(--gold);
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -8px;
    background: var(--gold);
    color: var(--black);
    font-size: 0.6rem;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all var(--transition);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.98) 0%, rgba(15, 13, 5, 0.98) 50%, rgba(0, 0, 0, 0.98) 100%);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    z-index: 999;
    padding: 60px 32px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
}

.mobile-menu-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top center, rgba(212, 168, 67, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.mobile-menu-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.4;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-nav-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 28px;
    position: relative;
}

.mobile-nav-menu li {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-menu-overlay.active .mobile-nav-menu li {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-overlay.active .mobile-nav-menu li:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu-overlay.active .mobile-nav-menu li:nth-child(2) { transition-delay: 0.1s; }
.mobile-menu-overlay.active .mobile-nav-menu li:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu-overlay.active .mobile-nav-menu li:nth-child(4) { transition-delay: 0.2s; }
.mobile-menu-overlay.active .mobile-nav-menu li:nth-child(5) { transition-delay: 0.25s; }
.mobile-menu-overlay.active .mobile-nav-menu li:nth-child(6) { transition-delay: 0.3s; }

.mobile-nav-menu a {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--text-primary);
    letter-spacing: 3px;
    text-transform: uppercase;
    display: inline-block;
    padding-bottom: 8px;
    border-bottom: 1px solid transparent;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.mobile-nav-menu a:hover {
    color: var(--gold);
    border-bottom-color: var(--border-gold);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: #0a0a0a;
}

#peptide-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    will-change: transform;
}

#particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    will-change: contents;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.35;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 24px;
}

.hero-logo {
    width: 320px;
    max-width: 80vw;
    margin: 0 auto 32px;
    filter: drop-shadow(0 0 60px rgba(212, 168, 67, 0.3));
    animation: logoGlow 4s ease-in-out infinite alternate;
}

@keyframes logoGlow {
    0% { filter: drop-shadow(0 0 40px rgba(212, 168, 67, 0.2)); }
    100% { filter: drop-shadow(0 0 80px rgba(212, 168, 67, 0.5)); }
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--gold);
    letter-spacing: 3px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-secondary);
    max-width: 540px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

/* ============================================
   TRUST BADGES (desktop: overlap strip)
   ============================================ */
.trust-badges {
    position: relative;
    z-index: 10;
    margin-top: -64px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    padding: 20px 0;
}


.badge-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.badge-item svg {
    color: var(--gold);
    flex-shrink: 0;
}

/* ============================================
   COMPOUNDS PAGE HERO
   ============================================ */
.compounds-hero {
    padding: 140px 0 60px;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-primary) 0%, #0f0d05 100%);
    border-bottom: 1px solid var(--border-subtle);
}

.compounds-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 32px;
}

.compounds-nav-btn {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-secondary);
    background: transparent;
    border: 1px solid var(--border-subtle);
    padding: 10px 20px;
    border-radius: 2px;
    transition: all var(--transition);
    text-decoration: none;
    cursor: pointer;
}

.compounds-nav-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(212, 168, 67, 0.05);
}

.compounds-nav-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

/* ============================================
   TRUST TICKER (Mobile marquee)
   ============================================ */
.trust-ticker {
    background: var(--bg-card);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    overflow: hidden;
    height: 44px;
    white-space: nowrap;
}

.ticker-track {
    display: inline-flex;
    align-items: center;
    height: 100%;
    animation: ticker-scroll 12s linear infinite;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-secondary);
    padding: 0 24px;
    line-height: 1;
}

.ticker-item svg {
    vertical-align: middle;
    margin-top: -1px;
}

.ticker-item svg {
    color: var(--gold);
    flex-shrink: 0;
}

@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   FEATURED PRODUCTS CAROUSEL
   ============================================ */
.featured-products {
    padding: var(--section-padding);
}

/* Category Tabs */
.carousel-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.carousel-tab {
    background: transparent;
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 10px 24px;
    border-radius: 2px;
    cursor: pointer;
    transition: all var(--transition);
}

.carousel-tab:hover {
    border-color: var(--border-gold);
    color: var(--gold);
}

.carousel-tab.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

/* Ambient Glow (replaces progress bar) */
.carousel-progress {
    display: none;
}

.featured-products {
    position: relative;
    overflow: hidden;
}

.featured-products::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 70%;
    background: radial-gradient(ellipse at center, rgba(212, 168, 67, 0.70) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    opacity: var(--glow-opacity, 0.07);
}

.featured-products > .container {
    position: relative;
    z-index: 1;
}

/* Panels — use grid stacking so active panel always holds height */
.carousel-panels {
    display: grid;
    margin-top: 40px;
}

.carousel-panel {
    grid-row: 1;
    grid-column: 1;
    opacity: 0;
    transition: opacity 1s ease;
    pointer-events: none;
    visibility: hidden;
}

.carousel-panel.active {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    z-index: 2;
}

.carousel-panel.fading-out {
    opacity: 0;
    pointer-events: none;
    visibility: visible;
    z-index: 1;
}

.carousel-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 4px;
    overflow: hidden;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(212, 168, 67, 0.1);
}

.product-image {
    position: relative;
    height: 240px;
    background: linear-gradient(135deg, #1a1500, #0d0d0d);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-bottle-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--gold);
    color: var(--black);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 2px;
}

/* (Show More removed — replaced by carousel tabs) */

.product-info {
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.product-info .btn {
    margin-top: auto;
}

.product-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 4px;
    letter-spacing: 1px;
}

.product-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.product-stars {
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 8px;
    letter-spacing: 2px;
}

.product-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

/* ============================================
   WHAT ARE PEPTIDES
   ============================================ */
.what-are-peptides {
    padding: var(--section-padding);
    background: linear-gradient(180deg, #0f0d05 0%, var(--bg-primary) 50%, #0f0d05 100%);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    text-align: center;
}

.peptides-intro {
    max-width: 700px;
    margin: 0 auto 48px;
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
}

/* ========== POPULAR BUNDLES ========== */
/* ========== POPULAR BUNDLES — Full-width horizontal ========== */
.popular-bundles {
    padding: 0;
    background: #fff;
}
.bundles-carousel {
    position: relative;
    max-width: 100%;
}
.bundles-grid {
    position: relative;
    overflow: hidden;
}
.bundle-card {
    display: none;
    min-height: 420px;
}
.bundle-card.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
}
.bundle-card.active .bundle-visual {
    animation: slideInLeft 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
.bundle-card.active .bundle-info {
    animation: slideUpFade 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s both;
}
@keyframes slideInLeft {
    0% { opacity: 0; transform: translateX(-50px); }
    40% { opacity: 0.5; }
    100% { opacity: 1; transform: translateX(0); }
}
@keyframes slideUpFade {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.bundle-visual {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px 40px;
    min-height: 100%;
    position: relative;
}
.bundle-total {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    color: rgba(255,255,255,0.12);
    position: absolute;
    top: 30px;
    right: 30px;
    line-height: 1;
}
.bundle-compounds {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}
.bundle-compounds span {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 8px 20px;
    border-radius: 30px;
    letter-spacing: 0.5px;
    backdrop-filter: blur(4px);
}
.bundle-info {
    padding: 60px 80px 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
}
.bundle-eyebrow {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 12px;
}
.bundle-name {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-size: 1.8rem;
    margin-bottom: 16px;
    line-height: 1.3;
}
.bundle-desc {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 16px;
}
.bundle-footer {
    display: flex;
    align-items: center;
    gap: 12px;
}
.bundle-price {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 700;
}
.bundle-arrows {
    display: none;
}
.bundle-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.12);
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 5;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.bundle-prev { left: 20px; }
.bundle-next { right: 20px; }
.bundle-arrow:hover {
    background: #333;
    border-color: #333;
}
.bundle-arrow:hover svg { stroke: #fff; }
.bundle-arrow svg {
    width: 18px;
    height: 18px;
    stroke: #333;
    fill: none;
    stroke-width: 2;
}
.bundle-dots-nav {
    display: flex !important;
    justify-content: center;
    gap: 6px;
    padding: 20px 0 40px;
    background: #fff;
}
.bundle-dots {
    display: flex;
    gap: 8px;
}
.bundle-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(154,123,63,0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}
.bundle-dot.active {
    background: var(--gold);
    width: 24px;
    border-radius: 4px;
}
.bundle-dots-nav { display: none; }
.bundle-name {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-size: 1.15rem;
    margin-bottom: 10px;
}
.bundle-desc {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 16px;
}
.bundle-includes {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}
.bundle-includes span {
    background: rgba(154,123,63,0.06);
    border: 1px solid rgba(154,123,63,0.12);
    color: var(--text-secondary);
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 20px;
}
.bundle-footer {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: auto;
}
.bundle-price {
    font-family: var(--font-heading);
    color: var(--gold-dark);
    font-size: 1.3rem;
    font-weight: 600;
}

.peptides-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto 40px;
}

.peptide-benefit {
    padding: 28px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 4px;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.peptide-benefit:hover {
    border-color: var(--border-gold);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(212, 168, 67, 0.08);
}

.peptide-benefit-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    border-radius: 50%;
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-primary);
}

.peptide-benefit-icon svg {
    color: var(--gold);
}

.peptide-benefit h4 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--gold);
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.peptide-benefit p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.peptides-closing {
    max-width: 700px;
    margin: 0 auto 32px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
}

.peptides-closing strong {
    color: var(--gold);
}

/* ============================================
   ALL PRODUCTS GRID
   ============================================ */
.all-products {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--bg-primary) 0%, #0f0d05 50%, var(--bg-primary) 100%);
}

.products-full-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 32px;
}

.product-card-sm {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 4px;
    padding: 20px;
    text-align: center;
    transition: all var(--transition);
    cursor: pointer;
}

.shop-all-btn {
    display: none;
    margin: 32px auto 0;
    text-align: center;
}

.all-products .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.all-products .products-full-grid,
.all-products .section-title,
.all-products .section-subtitle {
    width: 100%;
}

.product-card-sm:hover {
    border-color: var(--border-gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 168, 67, 0.08);
}

.product-image-sm {
    width: 80px;
    height: 100px;
    margin: 0 auto 16px;
    background: linear-gradient(180deg, #2a1f00, #1a1200);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-subtle);
}

.product-bottle-img-sm {
    height: 80px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(212, 168, 67, 0.12));
}

.product-card-sm h4 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--gold);
    margin-bottom: 4px;
    letter-spacing: 1px;
}

.product-card-sm .dose {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.product-card-sm .price-sm {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* ============================================
   MOBILE SWIPE ROW
   ============================================ */
.mobile-swipe-row {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0 24px 16px;
    scrollbar-width: none;
    touch-action: pan-x pan-y;
}

.mobile-swipe-row::-webkit-scrollbar {
    display: none;
}

.mobile-swipe-row .product-card {
    flex: 0 0 70vw;
    max-width: 280px;
    scroll-snap-align: center;
}

.mobile-swipe-row .product-card .product-image {
    height: 180px;
}

/* ============================================
   CATEGORY STORYTELLING SECTIONS (Desktop)
   ============================================ */
.desktop-only { display: block; }
.mobile-only { display: none; }

.cat-section {
    padding: var(--section-padding);
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-subtle);
}

.cat-section.cat-alt {
    background: linear-gradient(180deg, #0f0d05 0%, var(--bg-primary) 100%);
}

.cat-inner {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
}

.cat-inner.cat-reverse {
    grid-template-columns: 400px 1fr;
}

.cat-inner.cat-reverse .cat-text {
    order: 2;
}

.cat-inner.cat-reverse .cat-img {
    order: 1;
}

.cat-tag {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    display: inline-block;
    border: 1px solid var(--border-gold);
    padding: 6px 16px;
    border-radius: 2px;
    margin-bottom: 20px;
}

.cat-heading {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.cat-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

.cat-stats {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.cat-stat {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.cat-stat-num {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--gold);
    font-weight: 600;
    min-width: 60px;
    flex-shrink: 0;
}

.cat-stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.cat-products {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

.cat-product {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 4px;
    padding: 14px 18px;
    flex: 1;
    min-width: 140px;
    transition: all var(--transition);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.cat-product:hover {
    border-color: var(--border-gold);
    transform: translateY(-2px);
}

.cat-product.featured {
    border-color: var(--gold);
    background: rgba(212, 168, 67, 0.05);
}

.cat-product.active {
    border-color: var(--gold);
    background: rgba(212, 168, 67, 0.08);
    box-shadow: 0 0 12px rgba(212, 168, 67, 0.1);
}

.cat-desc,
.cat-stats,
.cat-img img {
    transition: opacity 0.4s ease;
}

/* Product image in cat cards (hidden on desktop) */
.cat-product-img {
    display: none;
}

.cat-product h4 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--gold);
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.cat-product p {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-bottom: 6px;
    flex: 1;
}

.cat-price {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    display: block;
    margin-bottom: 10px;
}

.cat-shop-btn {
    display: block;
    text-align: center;
    padding: 8px 0;
    font-size: 0.65rem;
    margin-top: auto;
}

.cat-img {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cat-img img {
    width: 100%;
    max-width: 400px;
    border-radius: 8px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

/* ============================================
   SOCIAL PROOF (CATEGORIES + TESTIMONIAL)
   ============================================ */
.social-proof-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #0e0c05 0%, #141008 50%, #0e0c05 100%);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 40px;
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
    min-height: 120px;
}

.category-item:hover {
    transform: translateY(-4px);
}

.category-item:hover .category-icon {
    border-color: var(--gold);
    box-shadow: 0 0 20px var(--gold-glow);
}

.category-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    transition: all var(--transition);
}

.category-icon svg {
    color: var(--gold);
}

.category-item span {
    font-size: 0.75rem;
    color: var(--text-secondary);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
}

/* ============================================
   SCIENCE SECTION
   ============================================ */
.science-section {
    padding: var(--section-padding);
    background: var(--bg-card);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    text-align: center;
}

.science-process {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--gold);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.science-text {
    max-width: 650px;
    margin: 0 auto 40px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
}

.science-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   TESTIMONIAL
   ============================================ */
.testimonial-card {
    margin-top: 160px;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 48px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 4px;
}

.testimonial-stars {
    color: var(--gold);
    font-size: 1.2rem;
    letter-spacing: 4px;
    margin-bottom: 24px;
}

.testimonial-card blockquote {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.testimonial-card cite {
    font-size: 0.85rem;
    color: var(--gold);
    font-style: normal;
    font-weight: 500;
}

/* ============================================
   BRAND STORY
   ============================================ */
.brand-story {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--bg-primary) 0%, #0f0d05 100%);
}

.story-content {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-top: 40px;
}

.story-text {
    flex: 1;
}

.story-text p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 20px;
}

.mission-statement {
    color: var(--gold) !important;
    font-style: italic;
    border-left: 2px solid var(--gold);
    padding-left: 20px;
}

.story-image {
    flex: 0 0 280px;
}

.story-logo {
    width: 280px;
    filter: drop-shadow(0 0 60px rgba(212, 168, 67, 0.3));
    animation: logoGlow 4s ease-in-out infinite alternate;
}

/* ============================================
   COMMUNITY / NEWSLETTER
   ============================================ */
.community-section {
    padding: var(--section-padding);
    text-align: center;
    border-top: 1px solid var(--border-subtle);
}

.community-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.newsletter-form {
    display: flex;
    gap: 0;
    max-width: 480px;
    width: 100%;
}

.newsletter-input {
    flex: 1;
    padding: 14px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-right: none;
    border-radius: 2px 0 0 2px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.85rem;
    outline: none;
    transition: border-color var(--transition);
}

.newsletter-input::placeholder {
    color: var(--text-muted);
}

.newsletter-input:focus {
    border-color: var(--gold);
}

.newsletter-form .btn-primary {
    border-radius: 0 2px 2px 0;
    padding: 14px 28px;
}

.community-btn {
    margin-top: 8px;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--black);
    border-top: 1px solid var(--border-subtle);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border-subtle);
}

.footer-logo {
    width: 160px;
    margin-bottom: 12px;
}

.footer-tagline {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul a {
    color: var(--text-muted);
    font-size: 0.8rem;
    transition: color var(--transition);
}

.footer-col ul a:hover {
    color: var(--gold);
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    color: var(--text-muted);
    transition: color var(--transition);
}

.social-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
}

.disclaimer {
    font-size: 0.7rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 12px;
    line-height: 1.6;
}

.copyright {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
    .carousel-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-full-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .story-content {
        flex-direction: column;
        text-align: center;
    }

    .mission-statement {
        border-left: none !important;
        padding-left: 0 !important;
        border-top: 1px solid var(--gold);
        padding-top: 20px;
    }

    .story-image {
        flex: none;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }

    /* Bundles mobile — horizontal swipe */
    .popular-bundles {
        background: #faf6f0 !important;
        padding: 40px 0;
    }
    .bundles-carousel {
        padding: 0;
    }
    .bundles-grid {
        display: flex;
        gap: 16px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 0 24px 16px;
        scrollbar-width: none;
        touch-action: pan-x pan-y;
    }
    .bundles-grid::-webkit-scrollbar { display: none; }
    .bundle-card,
    .bundle-card.active {
        display: grid !important;
        grid-template-columns: 1fr;
        flex: 0 0 80vw;
        max-width: 320px;
        min-height: auto;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        scroll-snap-align: center;
    }
    .bundle-card .bundle-info,
    .bundle-card.active .bundle-info { order: -1; }
    .bundle-card .bundle-visual,
    .bundle-card.active .bundle-visual { order: 1; }
    .bundle-visual { padding: 30px 20px; min-height: 180px; }
    .bundle-total { font-size: 2.5rem; top: 16px; right: 16px; }
    .bundle-compounds {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }
    .bundle-compounds span { font-size: 0.75rem; padding: 6px 14px; }
    .bundle-info {
        padding: 24px 24px 32px;
        flex: 1;
    }
    .bundle-desc {
        flex: 1;
    }
    .bundle-name { font-size: 1.3rem; }
    .bundle-desc { font-size: 0.85rem; margin-bottom: 20px; }
    .bundle-footer .btn { font-size: 0.8rem; padding: 8px 20px; }
    .bundle-dots-nav { display: none !important; }
    .bundle-arrow { display: none !important; }

    .science-section { padding: 0 !important; }
    .science-section .container { padding: 40px 20px; }

    .compounds-hero {
        display: none;
    }

    #cat-recovery {
        padding-top: 120px;
    }

    .desktop-only { display: none !important; }
    .mobile-only { display: block !important; }

    .section-title {
        font-size: 1.6rem;
    }

    /* Nav */
    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-container {
        justify-content: space-between;
    }

    .nav-logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .nav-logo img {
        height: 48px;
    }



    .hero-logo {
        width: 220px;
    }

    .hero-tagline {
        font-size: 1rem;
        letter-spacing: 2px;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    /* Badges */
    .badge-grid {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    /* Carousel */
    .carousel-tabs {
        gap: 6px;
    }

    .carousel-tab {
        font-size: 0.65rem;
        padding: 8px 12px;
        letter-spacing: 1px;
    }

    .carousel-panels {
        min-height: auto;
    }

    .carousel-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    /* Taller product images on mobile carousel */
    .carousel-grid .product-card .product-image {
        height: 180px;
    }

    .carousel-grid .product-card .product-info {
        padding: 12px;
    }

    .carousel-grid .product-card .product-name {
        font-size: 0.85rem;
    }

    .carousel-grid .product-card .product-desc {
        font-size: 0.7rem;
    }

    .carousel-grid .product-card .product-price {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    .carousel-grid .product-card .btn-secondary {
        padding: 8px 16px;
        font-size: 0.65rem;
        white-space: nowrap;
    }

    .carousel-grid .product-card .product-badge {
        display: none;
    }

    .carousel-grid .product-card {
        display: flex;
        flex-direction: column;
    }

    .carousel-grid .product-card .product-info {
        display: flex;
        flex-direction: column;
        flex: 1;
    }

    .carousel-grid .product-card .product-info .btn-secondary {
        margin-top: auto;
    }

    .shop-all-btn {
        display: inline-block;
    }

    /* Categories */
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px 16px;
        max-width: 100%;
        justify-items: center;
    }

    .category-item {
        min-height: auto;
        width: 100%;
    }

    .category-icon {
        width: 56px;
        height: 56px;
    }

    .category-icon svg {
        width: 24px;
        height: 24px;
    }

    /* Category sections — mobile stacked layout */
    .cat-inner {
        grid-template-columns: 1fr !important;
        gap: 24px;
    }

    .cat-section {
        overflow-x: clip;
        overflow-y: visible;
    }

    .cat-text {
        max-width: 100%;
        overflow-wrap: break-word;
        word-wrap: break-word;
    }

    .cat-desc {
        min-height: 120px;
    }

    .cat-stats {
        min-height: 80px;
    }

    .cat-inner.cat-reverse .cat-text,
    .cat-inner.cat-reverse .cat-img {
        order: unset;
    }

    .cat-img {
        display: none;
    }

    .cat-heading {
        font-size: 1.5rem;
    }

    .cat-desc {
        font-size: 0.85rem;
    }

    /* Mobile swipe row for category products */
    .cat-products {
        display: flex;
        flex-wrap: nowrap !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 16px;
        padding: 6px 24px 16px;
        scrollbar-width: none;
        touch-action: pan-x pan-y;
        margin-left: -24px;
        margin-right: -24px;
    }

    .cat-products::-webkit-scrollbar {
        display: none;
    }

    .cat-product {
        flex: 0 0 70vw;
        max-width: 280px;
        min-width: unset;
        scroll-snap-align: center;
        padding: 0;
        overflow: hidden;
        border-radius: 4px;
    }

    .cat-product-img {
        display: block;
        height: 180px;
        background: linear-gradient(135deg, #1a1500, #0d0d0d);
    }

    .cat-product-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .cat-product h4 {
        font-size: 1rem;
        padding: 12px 16px 0;
    }

    .cat-product p {
        font-size: 0.8rem;
        padding: 0 16px;
    }

    .cat-price {
        font-size: 1rem;
        padding: 0 16px;
    }

    .cat-shop-btn {
        margin: 8px 16px 16px;
    }

    /* What Are Peptides */
    .peptides-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    /* Science */
    .science-ctas {
        flex-direction: column;
        align-items: center;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo {
        margin: 0 auto 12px;
    }

    .social-links {
        justify-content: center;
    }

    /* Newsletter */
    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-input {
        border-right: 1px solid var(--border-subtle);
        border-radius: 2px;
    }

    .newsletter-form .btn-primary {
        border-radius: 2px;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .products-full-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-tagline {
        font-size: 0.85rem;
    }

    .category-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px 16px;
        max-width: 100%;
    }
}

/* Peptide benefit link cards */
.peptide-benefit-link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}
.peptide-benefit-link:hover {
    border-color: rgba(154, 123, 63, 0.4);
    transform: translateY(-3px);
}

/* ========== C-LIGHT THEME OVERRIDES ========== */

/* Nav */
.site-header { background: rgba(250, 246, 240, 0.95) !important; backdrop-filter: blur(20px); border-bottom: 1px solid rgba(154, 123, 63, 0.12); }
.nav-logo-text { color: #2c2416; }
.nav-logo-sub { color: var(--text-muted); }
.nav-link { color: var(--text-secondary); }
.nav-link:hover, .nav-link.active { color: var(--gold-dark); }
.nav-icon { color: var(--text-secondary); }
.mobile-menu-toggle span { background: #2c2416; }

/* Hero — dark for video */
.hero { background: #1a1812; }
.hero-logo { filter: sepia(0.3) brightness(1.1); }
.hero-subtitle { color: #f5e6c8; }
.hero-tagline { color: rgba(245, 230, 200, 0.85); }
.hero .btn-primary { background: var(--gold); color: #fff; }
.hero .btn-primary:hover { background: var(--gold-dark); }

/* Trust badges */
.trust-badges { background: #f3ede4 !important; border-bottom: 1px solid rgba(154, 123, 63, 0.1); }
.badge-item span { color: var(--text-secondary); }
.badge-item svg { stroke: var(--gold); }

/* Ticker */
.trust-ticker { background: var(--gold-dark); }
.ticker-item { color: #fff; }
.ticker-item svg { color: #fff; }

/* Headings & fonts */
.nav-logo-text, .section-title, .bundle-name, .product-name, .cat-heading,
.story-content h2, .cat-stat-num { font-family: var(--font-heading); }
.section-title { color: #2c2416; }
.section-subtitle { color: var(--text-muted); }

/* Featured products */
.featured-products { background: #faf6f0 !important; }
.carousel-tab { background: #f3ede4; border-color: rgba(154, 123, 63, 0.15); color: var(--text-secondary); }
.carousel-tab:hover { border-color: var(--gold); color: var(--gold-dark); }
.carousel-tab.active { background: var(--gold); border-color: var(--gold); color: #fff; }
.product-card { background: #fff; border-color: rgba(154, 123, 63, 0.1); }
.product-card:hover { box-shadow: 0 8px 30px rgba(154, 123, 63, 0.12); border-color: var(--gold); }
.product-image { background: #f8f4ed; }
.product-name { color: #2c2416; }
.product-desc { color: var(--text-muted); }
.product-price { color: var(--gold-dark); }
.product-stars { color: var(--gold); }
.product-badge { background: var(--gold); color: #fff; }
.btn-secondary { background: var(--gold); border-color: var(--gold); color: #fff; }
.btn-secondary:hover { background: var(--gold-dark); border-color: var(--gold-dark); }

/* Bundles */
.bundle-info { background: #fff !important; }
@media (min-width: 769px) {
    .popular-bundles { background: #fff !important; }
}
@media (max-width: 768px) {
    .popular-bundles { background: #faf6f0 !important; }
}

/* Science section — dark + lab bg */
.science-section {
    background: #2c2416 !important;
    position: relative; overflow: hidden; border: none !important;
}
.science-section::before {
    content: '';
    position: absolute;
    top: -20%; left: -5%; width: 110%; height: 140%;
    background: url('../assets/images/lab-bg.png') center center / cover no-repeat;
    opacity: 0.15;
    z-index: 0;
}
.science-section .container { position: relative; z-index: 1; }
.science-section .section-title { color: #f5e6c8; }
.science-process { color: rgba(245, 230, 200, 0.4); }
.science-text { color: rgba(245, 230, 200, 0.7); }
.science-section .btn-outline { color: #f5e6c8; border-color: rgba(245, 230, 200, 0.25); }
.science-section .btn-outline:hover { background: #f5e6c8; color: #2c2416; }

/* Catalog sections */
.cat-section { background: #faf6f0 !important; }
.cat-section.cat-alt { background: #f3ede4 !important; }
.cat-tag { color: var(--gold); }
.cat-heading { color: #2c2416; }
.cat-desc { color: var(--text-secondary); }
.cat-stat-num { color: var(--gold-dark); }
.cat-stat-label { color: var(--text-muted); }
.cat-product { background: #fff; border-color: rgba(154, 123, 63, 0.1); }
.cat-product:hover, .cat-product.active { border-color: var(--gold); }
.cat-product.active { background: rgba(154, 123, 63, 0.04); }
.cat-product h4 { color: #2c2416; }
.cat-product p { color: var(--text-muted); }
.cat-price { color: var(--gold-dark); }

/* Social proof */
.social-proof-section { background: #f3ede4 !important; }
.category-icon { background: #fff; border-color: rgba(154, 123, 63, 0.1); }
.category-item span { color: var(--text-secondary); }
.testimonial-card { background: #fff; border-color: rgba(154, 123, 63, 0.1); }
.testimonial-card blockquote { color: #2c2416; }
.testimonial-card cite { color: var(--text-muted); }
.testimonial-stars { color: var(--gold); }

/* Brand story */
.brand-story { background: #faf6f0 !important; }
.story-content h2 { color: #2c2416; }
.story-text { color: var(--text-secondary); }
.mission-statement { color: var(--gold-dark); border-color: var(--gold); }

/* Community / Newsletter */
.community-section { background: #2c2416 !important; }
.community-section .section-title { color: #f5e6c8; }
.newsletter-input { background: rgba(245, 230, 200, 0.08); border-color: rgba(245, 230, 200, 0.15); color: #f5e6c8; }
.newsletter-form .btn { background: var(--gold); color: #fff; }

/* Footer */
.site-footer { background: #1a1812 !important; }
.footer-logo { color: #f5e6c8; }
.site-footer,
.site-footer p,
.site-footer span,
.site-footer a,
.footer-tagline,
.footer-links a,
.footer-disclaimer,
.footer-disclaimer p,
.footer-copy,
.footer-col ul a,
.disclaimer,
.copyright,
.footer-brand .nav-logo-text,
.footer-brand .nav-logo-sub { color: rgba(245, 230, 200, 0.7) !important; }
.footer-brand .nav-logo-text { color: #f5e6c8 !important; font-size: 1.2rem; }
.site-footer a:hover,
.footer-links a:hover,
.footer-col ul a:hover { color: #fff !important; }

/* Mobile overlay */
.mobile-menu-overlay { background: rgba(44, 36, 22, 0.97); }
.mobile-nav-menu a { color: #f5e6c8 !important; }
.mobile-nav-menu a:hover { color: var(--gold) !important; }

/* All products mobile */
.all-products { background: #faf6f0 !important; }
.shop-all-btn { color: var(--gold-dark) !important; border-color: var(--gold) !important; }

/* ---------- Glossary Tooltips ---------- */
.glossary-term {
    color: #9a7b3f;
    border-bottom: 1px dotted rgba(212,168,67,0.4);
    cursor: help;
    position: relative;
    transition: border-color 0.3s ease;
}

.glossary-term:hover {
    border-color: #9a7b3f;
}

.glossary-tooltip {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: #f3ede4;
    border: 1px solid rgba(212,168,67,0.3);
    border-radius: 10px;
    padding: 1rem 1.25rem;
    width: 280px;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    box-shadow: 0 8px 30px rgba(0,0,0,0.5);
}

.glossary-tooltip.visible {
    opacity: 1;
    pointer-events: auto;
}

.glossary-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-top-color: rgba(212,168,67,0.3);
}

.glossary-tooltip-term {
    font-family: 'Libre Baskerville', serif;
    font-size: 0.8rem;
    color: #9a7b3f;
    margin-bottom: 0.4rem;
    display: block;
}

.glossary-tooltip-def {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.78rem;
    line-height: 1.6;
    color: #5c4f3a;
}

/* ---------- API Stock & Variant Indicators ---------- */
.stock-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-left: 8px;
    vertical-align: middle;
}
.stock-dot.in-stock { background: #4caf50; }
.stock-dot.out-of-stock { background: #e53935; }

/* Product detail variant buttons */
.product-variants {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}
.variant-btn {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 10px 20px;
    border: 1px solid rgba(154, 123, 63, 0.3);
    border-radius: 8px;
    background: #f8f4ed;
    color: #2c2416;
    cursor: pointer;
    transition: all 0.2s ease;
}
.variant-btn:hover { border-color: var(--gold); }
.variant-btn.active {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
}
.variant-btn.out-of-stock {
    opacity: 0.5;
    cursor: not-allowed;
}
.variant-oos {
    display: block;
    font-size: 0.7rem;
    font-weight: 400;
    color: #e53935;
    margin-top: 2px;
}

/* Lab result badges on product detail */
.lab-result-badge {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 20px;
    background: #f3ede4;
    border: 1px solid rgba(154, 123, 63, 0.2);
    border-radius: 10px;
    margin-bottom: 12px;
    font-family: var(--font-body);
    font-size: 0.85rem;
}
.lab-batch { font-weight: 600; color: #2c2416; }
.lab-purity { color: #4caf50; font-weight: 600; }
.lab-lab { color: var(--text-muted); }
.lab-coa-link {
    color: var(--gold-dark);
    text-decoration: underline;
    font-weight: 500;
}

/* Lab results page cards */
.lab-card {
    background: #fff;
    border: 1px solid rgba(154, 123, 63, 0.15);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 16px;
}
.lab-card-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 16px;
}
.lab-card-header h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: #2c2416;
    margin: 0;
}
.lab-card-batch {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}
.lab-card-body {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
    margin-bottom: 16px;
}
.lab-card-stat { text-align: center; }
.lab-card-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 4px;
}
.lab-card-value {
    font-size: 1rem;
    font-weight: 600;
    color: #2c2416;
}
.lab-card-coa { display: inline-block; width: auto; }

/* Lab testing process steps */
.lab-process {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 40px 0;
}
.lab-process-step {
    text-align: center;
    padding: 24px;
    background: #f3ede4;
    border-radius: 12px;
    border: 1px solid rgba(154, 123, 63, 0.15);
}
.lab-process-step h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: #2c2416;
    margin: 12px 0 8px;
}
.lab-process-step p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}
@media (max-width: 768px) {
    .lab-process { grid-template-columns: 1fr; gap: 16px; }
}

/* ---------- Cart Drawer ---------- */
#cart-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5); z-index: 9998;
    opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
#cart-overlay.active { opacity: 1; pointer-events: auto; }

#cart-drawer {
    position: fixed; top: 0; right: -400px; width: 380px; height: 100%;
    background: #faf6f0; z-index: 9999; display: flex; flex-direction: column;
    box-shadow: -4px 0 30px rgba(0,0,0,0.15); transition: right 0.3s ease;
}
#cart-drawer.active { right: 0; }
@media (max-width: 480px) { #cart-drawer { width: 100%; right: -100%; } }

.cart-drawer-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 24px; border-bottom: 1px solid rgba(154,123,63,0.15);
}
.cart-drawer-header h3 {
    font-family: var(--font-heading); font-size: 1.2rem; color: #2c2416; margin: 0;
}
.cart-drawer-close {
    background: none; border: none; font-size: 1.8rem; color: #2c2416;
    cursor: pointer; line-height: 1; padding: 0;
}

.cart-drawer-items { flex: 1; overflow-y: auto; padding: 16px 24px; }

.cart-empty {
    text-align: center; color: var(--text-muted); padding: 40px 0;
    font-size: 0.95rem;
}

.cart-item {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 0; border-bottom: 1px solid rgba(154,123,63,0.1);
}
.cart-item-img { width: 50px; height: 50px; object-fit: contain; border-radius: 6px; }
.cart-item-info { flex: 1; }
.cart-item-name { font-weight: 600; font-size: 0.9rem; color: #2c2416; }
.cart-item-variant { font-size: 0.8rem; color: var(--text-muted); }
.cart-item-price { font-size: 0.85rem; color: var(--gold-dark); font-weight: 600; margin-top: 2px; }

.cart-item-qty {
    display: flex; align-items: center; gap: 8px;
}
.qty-btn {
    width: 26px; height: 26px; border-radius: 50%;
    border: 1px solid rgba(154,123,63,0.3); background: #fff;
    font-size: 1rem; cursor: pointer; display: flex;
    align-items: center; justify-content: center; color: #2c2416;
}
.qty-btn:hover { border-color: var(--gold); }

.cart-item-remove {
    background: none; border: none; font-size: 1.2rem;
    color: #999; cursor: pointer; padding: 0 4px;
}
.cart-item-remove:hover { color: #e53935; }

.cart-drawer-footer {
    padding: 20px 24px; border-top: 1px solid rgba(154,123,63,0.15);
}
.cart-drawer-total {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 16px;
}
.cart-drawer-total span:first-child { font-weight: 600; color: #2c2416; }
.cart-total-amount { font-size: 1.2rem; font-weight: 700; color: var(--gold-dark); }

.cart-checkout-btn {
    width: 100%; padding: 14px; font-size: 0.95rem; font-weight: 600;
    border: none; border-radius: 8px; cursor: pointer;
    background: var(--gold); color: #fff;
}
.cart-checkout-btn:hover { background: var(--gold-dark); }
.cart-checkout-btn:disabled { opacity: 0.5; cursor: not-allowed; }

.cart-drawer-note {
    text-align: center; font-size: 0.75rem; color: var(--text-muted);
    margin-top: 10px;
}

/* Add to Cart button on product detail */
.add-to-cart-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 32px; font-size: 0.95rem; font-weight: 600;
    background: var(--gold); color: #fff; border: none;
    border-radius: 8px; cursor: pointer; transition: background 0.2s;
    font-family: var(--font-body);
}
.add-to-cart-btn:hover { background: var(--gold-dark); }
.add-to-cart-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.add-to-cart-btn svg { width: 18px; height: 18px; }

/* ---------- Product Detail Page (PDP) ---------- */
.pdp-section {
    background: #faf6f0;
    padding: 120px 0 80px;
}
.pdp-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.pdp-image {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.pdp-image-wrap {
    background: #f3ede4;
    border-radius: 16px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Compound info card */
.pdp-compound-card {
    border-radius: 16px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    min-height: 160px;
    justify-content: center;
}
.pdp-card-total {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(255,255,255,0.12);
    position: absolute;
    top: 16px;
    right: 20px;
    line-height: 1;
}
.pdp-card-compounds {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}
.pdp-card-compounds span {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    color: #fff;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 8px 18px;
    border-radius: 30px;
    letter-spacing: 0.5px;
    backdrop-filter: blur(4px);
}
.pdp-card-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    margin-top: 4px;
}
.pdp-card-label {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}
.pdp-card-purity {
    font-family: var(--font-body);
    font-size: 0.7rem;
    color: rgba(255,255,255,0.35);
    letter-spacing: 1px;
}
.pdp-image-wrap img {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
}

.pdp-tag {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-dark);
}
.pdp-title {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    color: #2c2416;
    margin: 8px 0 4px;
    line-height: 1.2;
}
.pdp-subtitle {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}
.pdp-price-row { margin-bottom: 20px; }
.pdp-price {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c2416;
}

/* Trust badges */
.pdp-trust {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(154,123,63,0.15);
}
.pdp-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--text-muted);
}
.pdp-trust-item svg {
    color: var(--gold);
    flex-shrink: 0;
}

/* Share button */
.pdp-share {
    position: relative;
    margin-top: 16px;
}
.pdp-share-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 1px solid rgba(154,123,63,0.25);
    border-radius: 8px;
    background: transparent;
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}
.pdp-share-toggle:hover {
    border-color: var(--gold);
    color: var(--gold-dark);
}
.pdp-share-toggle svg { color: var(--gold); }
.pdp-share-options {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: #fff;
    border: 1px solid rgba(154,123,63,0.15);
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    padding: 8px;
    z-index: 100;
    min-width: 160px;
}
.pdp-share-options.active { display: block; }
.pdp-share-opt {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: #2c2416;
    cursor: pointer;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.15s;
}
.pdp-share-opt:hover { background: #f3ede4; }
.pdp-share-opt svg { color: var(--gold); flex-shrink: 0; }

/* Related articles section on PDP */
.pdp-related {
    background: #f3ede4;
    padding: 60px 0 70px;
}
.pdp-related-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}
.pdp-related-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 32px;
}
.pdp-related-card {
    background: #fff;
    border: 1px solid rgba(154,123,63,0.12);
    border-radius: 14px;
    padding: 28px 24px;
    text-decoration: none;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
}
.pdp-related-card:hover {
    border-color: var(--gold);
    box-shadow: 0 6px 24px rgba(154,123,63,0.1);
    transform: translateY(-3px);
}
.pdp-related-tag {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 10px;
}
.pdp-related-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: #2c2416;
    margin: 0 0 10px;
    line-height: 1.3;
}
.pdp-related-card p {
    font-family: var(--font-body);
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
    flex: 1;
}
.pdp-related-cta {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold-dark);
    margin-top: 16px;
}
.pdp-related-action {
    text-align: center;
}
@media (max-width: 768px) {
    .pdp-related-grid { grid-template-columns: 1fr; }
    .pdp-related { padding: 40px 0 50px; }
}

/* ---------- Search Overlay ---------- */
#search-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6); z-index: 10000;
    display: flex; align-items: flex-start; justify-content: center;
    padding-top: 12vh;
    opacity: 0; transition: opacity 0.2s ease;
}
#search-overlay.active { opacity: 1; }

.search-modal {
    background: #faf6f0;
    border-radius: 16px;
    width: 90%;
    max-width: 560px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    overflow: hidden;
}
.search-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(154,123,63,0.15);
}
.search-icon { color: var(--gold); flex-shrink: 0; }
#search-input {
    flex: 1;
    border: none;
    background: transparent;
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: #2c2416;
    outline: none;
}
#search-input::placeholder { color: rgba(44,36,22,0.35); }
.search-close {
    background: none; border: none;
    font-size: 1.6rem; color: #999;
    cursor: pointer; line-height: 1; padding: 0 4px;
}
.search-close:hover { color: #2c2416; }

.search-results {
    max-height: 400px;
    overflow-y: auto;
}
.search-result {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    text-decoration: none;
    border-bottom: 1px solid rgba(154,123,63,0.08);
    transition: background 0.15s;
}
.search-result:hover { background: #f3ede4; }
.search-result svg { color: var(--gold); flex-shrink: 0; opacity: 0; transition: opacity 0.15s; }
.search-result:hover svg { opacity: 1; }
.search-result-info { display: flex; flex-direction: column; gap: 2px; }
.search-result-name {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: #2c2416;
}
.search-result-meta {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--text-muted);
}
.search-empty {
    padding: 30px 20px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Info section below */
.pdp-info {
    background: #fff;
    padding: 80px 0;
}
.pdp-info-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}
.pdp-info-block {
    margin-bottom: 40px;
}
.pdp-info-block h2 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: #2c2416;
    margin-bottom: 16px;
}
.pdp-info-block p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-secondary);
}
.pdp-info-block ul {
    list-style: none;
    padding: 0;
}
.pdp-info-block li {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-secondary);
    padding: 8px 0 8px 24px;
    position: relative;
    border-bottom: 1px solid rgba(154,123,63,0.08);
}
.pdp-info-block li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0.5;
}

/* Research stats */
.pdp-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.pdp-stat {
    background: #f8f4ed;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid rgba(154,123,63,0.1);
}
.pdp-stat-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold-dark);
    margin-bottom: 6px;
}
.pdp-stat-label {
    font-family: var(--font-body);
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .pdp-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .pdp-image {
        position: static;
    }
    .pdp-image-wrap {
        padding: 30px;
    }
    .pdp-title { font-size: 1.8rem; }
    .pdp-price { font-size: 1.5rem; }
    .pdp-stats { grid-template-columns: 1fr; }
    .pdp-info { padding: 50px 0; }
}
