/* VERTEX LABS - CLINICAL REPOSITORY v3.0 */
/* COMPLETE - Expanded spacing, trust features, product page enhancements */

@import url('https://fonts.googleapis.com/css2?family=Gabarito:wght@700;800&family=Roboto:wght@400;500;700&display=swap');

:root {
    --bg-light: #E9F8F9;
    --surface-white: #FFFFFF;
    --navy-primary: #0F172A;
    --teal-bayside: #3AA6B9;
    --teal-hover: #2997AA;
    --slate-text: #454F5E;
    --border-clinical: #e2e8f0;
    --font-header: 'Gabarito', sans-serif;
    --font-body: 'Roboto', sans-serif;
    --shadow-soft: 0px 4px 40px 0px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0px 8px 30px 0px rgba(58, 166, 185, 0.12);
}

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

html, body {
    width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-light);
    color: var(--slate-text);
    font-family: var(--font-body);
    line-height: 1.5;
    overflow-x: hidden;
}

h1, h2, h3, .brand, .btn-primary {
    font-family: var(--font-header);
    letter-spacing: -0.02em;
}

/* TOP BAR */
.top-bar {
    background: var(--navy-primary);
    color: white;
    text-align: center;
    padding: 12px 20px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.top-bar span {
    color: var(--teal-bayside);
}

/* NAVIGATION */
.glass-nav {
    background: var(--surface-white);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-clinical);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.brand {
    font-size: 22px;
    font-weight: 800;
    color: var(--navy-primary);
    cursor: pointer;
    text-transform: uppercase;
}

.brand span {
    color: var(--teal-bayside);
}

.nav-links {
    display: none;
}

.cart-link {
    text-decoration: none;
}

.cart-icon-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(15, 23, 42, 0.05);
    padding: 10px 14px;
    border-radius: 40px;
    border: 1px solid rgba(15, 23, 42, 0.1);
    cursor: pointer;
    transition: all 0.2s;
}

.cart-icon-wrap i {
    color: var(--navy-primary);
    font-size: 16px;
}

#cart-count {
    background: var(--teal-bayside);
    color: white;
    font-size: 12px;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 20px;
    min-width: 22px;
    text-align: center;
}

.hamburger {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: 12px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy-primary);
    margin: 5px 0;
    transition: 0.2s;
    border-radius: 2px;
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--surface-white);
    padding: 20px;
    border-top: 1px solid var(--border-clinical);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    z-index: 999;
}

.mobile-nav.open {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-nav a {
    color: var(--navy-primary);
    text-decoration: none;
    padding: 14px;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    border-radius: 12px;
}

/* HERO */
.hero {
    text-align: center;
    padding: 80px 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.status-badge {
    display: inline-block;
    background: rgba(58, 166, 185, 0.12);
    color: var(--teal-bayside);
    padding: 8px 18px;
    border-radius: 40px;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 42px;
    color: var(--navy-primary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.accent-text {
    color: var(--teal-bayside);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--slate-text);
    margin-bottom: 32px;
    padding: 0 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* BUTTONS */
.btn-primary {
    background: var(--teal-bayside);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 40px;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-secondary {
    background: transparent;
    color: var(--teal-bayside);
    border: 2px solid var(--teal-bayside);
    padding: 14px 32px;
    border-radius: 40px;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block;
}

/* PRODUCT GRID */
.shop-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 20px 24px 48px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: var(--surface-white);
    border: 1px solid var(--border-clinical);
    border-radius: 24px;
    padding: 24px;
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    box-shadow: var(--shadow-soft);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--teal-bayside);
}

.product-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.sku-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(58, 166, 185, 0.12);
    color: var(--teal-bayside);
    font-size: 10px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
}

.vial-preview {
    text-align: center;
    padding: 24px 0;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vial-preview img {
    max-height: 160px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.product-card h3 {
    font-size: 20px;
    color: var(--navy-primary);
    margin-bottom: 12px;
    font-family: var(--font-header);
}

.product-card p {
    font-size: 14px;
    color: #64748B;
    margin-bottom: 20px;
    line-height: 1.5;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--border-clinical);
    margin-top: auto;
}

.price {
    font-size: 22px;
    font-weight: 800;
    color: var(--navy-primary);
    font-family: var(--font-header);
}

.btn-fake {
    color: var(--teal-bayside);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

/* AGE GATE */
.age-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--navy-primary);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: opacity 0.3s;
}

.age-gate-content {
    background: white;
    padding: 40px 32px;
    border-radius: 32px;
    max-width: 400px;
    margin: 20px;
}

.age-gate h2 {
    color: var(--navy-primary);
    font-size: 32px;
    margin-bottom: 16px;
}

.age-gate p {
    color: var(--slate-text);
    margin-bottom: 28px;
    font-size: 15px;
}

.age-gate-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.btn-age {
    padding: 14px 28px;
    border: none;
    border-radius: 40px;
    font-weight: 800;
    cursor: pointer;
    font-size: 14px;
}

.btn-age.confirm {
    background: var(--teal-bayside);
    color: white;
}

.btn-age.deny {
    background: #e2e8f0;
    color: var(--navy-primary);
}

/* CART DRAWER */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(4px);
    z-index: 10000;
    display: none;
}

.cart-overlay.active {
    display: block;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 420px;
    height: 100%;
    background: var(--surface-white);
    z-index: 10001;
    display: flex;
    flex-direction: column;
    transition: right 0.3s ease-out;
    box-shadow: -5px 0 30px rgba(0,0,0,0.15);
}

.cart-drawer.active {
    right: 0;
}

.drawer-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-clinical);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.drawer-header h2 {
    font-size: 20px;
    color: var(--navy-primary);
    font-family: var(--font-header);
}

.close-drawer {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #64748B;
    padding: 8px;
}

.shipping-progress-box {
    padding: 16px 24px;
    background: #f8fafc;
    border-bottom: 1px solid var(--border-clinical);
}

.progress-label {
    font-size: 12px;
    font-weight: 800;
    color: var(--teal-bayside);
    display: block;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.progress-track {
    background: #e2e8f0;
    height: 6px;
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    background: var(--teal-bayside);
    height: 100%;
    width: 0%;
    transition: width 0.3s;
}

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

.cart-item {
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-clinical);
}

.cart-item-info p {
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--navy-primary);
    font-size: 15px;
}

.cart-item-info span {
    font-size: 12px;
    color: var(--teal-bayside);
    font-weight: 600;
}

.cart-item-price {
    font-weight: 800;
    color: var(--navy-primary);
    font-size: 15px;
}

.remove-item {
    background: none;
    border: none;
    color: #ef4444;
    font-size: 12px;
    cursor: pointer;
    margin-top: 6px;
}

.drawer-footer {
    padding: 20px 24px;
    border-top: 1px solid var(--border-clinical);
    background: white;
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--navy-primary);
}

/* PRODUCT PAGE */
.product-container-main {
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.breadcrumbs {
    font-size: 13px;
    color: #64748B;
    margin-bottom: 30px;
}

.product-layout-grid {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.visual-card {
    background: white;
    border: 1px solid var(--border-clinical);
    border-radius: 28px;
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.visual-card img {
    max-width: 100%;
    height: auto;
    max-height: 350px;
    object-fit: contain;
}

.trust-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 24px;
}

.trust-pill {
    background: white;
    border: 1px solid var(--border-clinical);
    padding: 8px 16px;
    border-radius: 40px;
    font-size: 11px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--slate-text);
}

.trust-pill i {
    color: var(--teal-bayside);
}

.specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    background: #f8fafc;
    padding: 24px;
    border-radius: 20px;
    margin: 24px 0;
    border: 1px solid var(--border-clinical);
}

.spec-item {
    display: flex;
    flex-direction: column;
}

.spec-label {
    font-size: 10px;
    font-weight: 800;
    color: var(--teal-bayside);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.spec-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy-primary);
    margin-top: 4px;
}

.purchase-engine-wrap {
    background: white;
    border: 1px solid var(--border-clinical);
    border-radius: 24px;
    padding: 28px;
    margin-top: 24px;
}

.price-large {
    font-size: 38px;
    font-weight: 800;
    color: var(--navy-primary);
    margin: 20px 0;
    font-family: var(--font-header);
}

/* PRODUCT PAGE NEW FEATURES */
.research-warning-banner {
    background: #FEF3C7;
    border-left: 4px solid #F59E0B;
    padding: 12px 20px;
    margin-bottom: 24px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-weight: 700;
    font-size: 13px;
    color: #92400E;
}

.product-header {
    margin-bottom: 16px;
}

.product-reviews {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 8px 0 16px;
    flex-wrap: wrap;
}

.product-reviews .stars {
    color: #FBBF24;
    font-size: 14px;
    letter-spacing: 1px;
}

.product-reviews .rating-value {
    font-weight: 700;
    color: var(--navy-primary);
    font-size: 14px;
}

.product-reviews .review-count {
    font-size: 13px;
    color: #64748B;
}

.dosage-section {
    margin: 24px 0;
}

.dosage-label {
    font-weight: 700;
    font-size: 13px;
    color: var(--navy-primary);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dosage-options {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.dosage-option {
    background: #f8fafc;
    border: 2px solid var(--border-clinical);
    border-radius: 40px;
    padding: 10px 20px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
}

.dosage-option:hover {
    border-color: var(--teal-bayside);
    background: rgba(58, 166, 185, 0.05);
}

.dosage-option.active {
    border-color: var(--teal-bayside);
    background: var(--teal-bayside);
    color: white;
}

.bundle-section {
    margin: 20px 0;
    padding: 16px;
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid var(--border-clinical);
}

.bundle-label {
    font-weight: 700;
    font-size: 13px;
    color: var(--navy-primary);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bundle-options {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.bundle-option {
    flex: 1;
    min-width: 100px;
    background: white;
    border: 2px solid var(--border-clinical);
    border-radius: 12px;
    padding: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
}

.bundle-option:hover {
    border-color: var(--teal-bayside);
    transform: translateY(-2px);
}

.bundle-option.active {
    border-color: var(--teal-bayside);
    background: rgba(58, 166, 185, 0.05);
}

.bundle-quantity {
    font-weight: 800;
    font-size: 14px;
    color: var(--navy-primary);
    margin-bottom: 4px;
}

.bundle-discount-badge {
    display: inline-block;
    background: var(--teal-bayside);
    color: white;
    font-size: 9px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 20px;
    margin-left: 6px;
}

.bundle-discount-badge.best-value {
    background: #F59E0B;
}

.bundle-price {
    font-weight: 800;
    font-size: 16px;
    color: var(--teal-bayside);
}

.bundle-save {
    font-size: 10px;
    color: #22c55e;
    margin-top: 4px;
}

.purchase-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 24px 0;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #f8fafc;
    border: 1px solid var(--border-clinical);
    border-radius: 40px;
    padding: 8px 16px;
}

.qty-btn {
    background: none;
    border: none;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
}

.qty-value {
    font-weight: 700;
    font-size: 16px;
    min-width: 30px;
    text-align: center;
}

.add-to-cart-btn {
    width: 100%;
    margin: 16px 0;
}

.shipping-estimate {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f8fafc;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 13px;
    color: var(--navy-primary);
    margin: 16px 0;
}

.payment-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin: 16px 0;
    padding: 12px 0;
    border-top: 1px solid var(--border-clinical);
    border-bottom: 1px solid var(--border-clinical);
}

.payment-badges span {
    font-size: 12px;
    color: #64748B;
}

.payment-badges i {
    margin-right: 6px;
    font-size: 14px;
}

.coa-link {
    text-align: center;
    margin: 16px 0;
}

.coa-link a {
    color: var(--teal-bayside);
    font-size: 13px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.compound-info-section {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 2px solid var(--border-clinical);
}

.compound-info-section h2 {
    font-size: 24px;
    margin-bottom: 24px;
    color: var(--navy-primary);
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.info-card {
    background: #f8fafc;
    border: 1px solid var(--border-clinical);
    border-radius: 20px;
    padding: 20px;
}

.info-card h3 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--navy-primary);
}

.info-table {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 13px;
}

.info-label {
    font-weight: 600;
    color: #64748B;
}

.info-value {
    font-weight: 500;
    color: var(--navy-primary);
    text-align: right;
}

.research-applications-section {
    margin-top: 40px;
    padding: 24px;
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border-radius: 20px;
    border: 1px solid #bbf7d0;
}

.research-applications-section h2 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #166534;
}

.research-applications-section p {
    font-size: 14px;
    line-height: 1.6;
    color: #14532d;
}

.cross-sell-section {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 2px solid var(--border-clinical);
}

.cross-sell-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--navy-primary);
}

.cross-sell-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.cross-sell-card {
    display: flex;
    gap: 16px;
    background: white;
    border: 1px solid var(--border-clinical);
    border-radius: 16px;
    padding: 16px;
    transition: all 0.2s;
}

.cross-sell-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--teal-bayside);
}

.cross-sell-card img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.cross-sell-info h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy-primary);
    margin-bottom: 4px;
}

.cross-sell-info p {
    font-size: 11px;
    color: #64748B;
    margin-bottom: 6px;
}

.cross-sell-price {
    font-weight: 800;
    font-size: 14px;
    color: var(--teal-bayside);
    margin-bottom: 6px;
}

.cross-sell-btn {
    font-size: 11px;
    color: var(--teal-bayside);
    text-decoration: none;
    font-weight: 600;
}

/* TRUST BANNER */
.trust-banner {
    background: var(--surface-white);
    border: 1px solid var(--border-clinical);
    border-radius: 28px;
    padding: 32px 28px;
    margin: 30px auto;
    max-width: 1200px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    gap: 24px;
    box-shadow: var(--shadow-soft);
}

.trust-banner-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
}

.trust-banner-item i {
    font-size: 36px;
    color: var(--teal-bayside);
}

.trust-banner-item span {
    font-weight: 800;
    font-size: 16px;
    color: var(--navy-primary);
    font-family: var(--font-header);
}

.trust-banner-item small {
    font-size: 12px;
    color: #64748B;
}

.trust-banner-divider {
    width: 1px;
    height: 50px;
    background: var(--border-clinical);
}

/* FEATURE GRID */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 24px;
}

.feature-card {
    background: var(--surface-white);
    border: 1px solid var(--border-clinical);
    border-radius: 28px;
    padding: 32px 28px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
}

.feature-card i {
    font-size: 48px;
    color: var(--teal-bayside);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 20px;
    color: var(--navy-primary);
    margin-bottom: 12px;
    font-family: var(--font-header);
}

.feature-card p {
    font-size: 14px;
    color: #64748B;
    line-height: 1.5;
}

/* SECTION HEADER */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 60px auto 32px;
    padding: 0 24px;
}

.section-header h2 {
    font-size: 36px;
    color: var(--navy-primary);
    margin-bottom: 12px;
    font-family: var(--font-header);
}

/* VOLUME BANNER */
.volume-banner {
    background: linear-gradient(135deg, #0F172A, #1E293B);
    border-radius: 28px;
    margin: 60px 24px;
    padding: 48px 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.volume-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 28px;
}

.volume-banner-content i {
    font-size: 56px;
    color: var(--teal-bayside);
}

.volume-banner-content h3 {
    color: white;
    font-size: 26px;
    margin-bottom: 12px;
    font-family: var(--font-header);
}

.volume-banner-content p {
    color: #94A3B8;
    font-size: 15px;
}

/* REVIEWS GRID */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 24px;
}

.review-card {
    background: var(--surface-white);
    border: 1px solid var(--border-clinical);
    border-radius: 28px;
    padding: 32px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
}

.review-stars {
    color: #FBBF24;
    margin-bottom: 20px;
    font-size: 16px;
    letter-spacing: 2px;
}

.review-text {
    font-size: 15px;
    color: var(--slate-text);
    line-height: 1.6;
    margin-bottom: 24px;
    font-style: italic;
}

.reviewer-name {
    display: block;
    font-weight: 700;
    color: var(--navy-primary);
    font-size: 14px;
}

.reviewer-title {
    display: block;
    font-size: 12px;
    color: #64748B;
}

/* DISCORD BANNER */
.discord-banner {
    background: linear-gradient(135deg, #5865F2, #404EED);
    border-radius: 28px;
    margin: 60px 24px;
    padding: 48px 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 28px;
    color: white;
}

.discord-banner i:first-child {
    font-size: 56px;
}

.discord-banner h2 {
    color: white;
    font-size: 28px;
    margin-bottom: 12px;
}

.btn-discord {
    background: white;
    color: #5865F2;
    padding: 14px 32px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* FAQ ACCORDION */
.faq-section {
    max-width: 900px;
    margin: 0 auto 80px;
    padding: 0 24px;
}

.faq-item {
    background: var(--surface-white);
    border: 1px solid var(--border-clinical);
    border-radius: 20px;
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 28px;
    cursor: pointer;
    font-weight: 700;
    font-size: 16px;
    color: var(--navy-primary);
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--teal-bayside);
    font-size: 18px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    padding: 0 28px;
    border-top: 1px solid transparent;
}

.faq-item.active .faq-answer {
    max-height: 600px;
    padding: 0 28px 28px;
    border-top-color: var(--border-clinical);
}

.faq-answer p, .faq-answer ul, .faq-answer ol {
    font-size: 15px;
    color: #475569;
    line-height: 1.6;
    margin: 16px 0;
}

/* FOOTER */
.clinical-footer {
    background: var(--navy-primary);
    color: white;
    margin-top: 80px;
    padding: 60px 24px 30px;
}

.footer-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-col h4 {
    color: var(--teal-bayside);
    font-size: 13px;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-family: var(--font-header);
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 14px;
}

.footer-mission {
    font-size: 14px;
    color: #cbd5e1;
    margin-top: 16px;
    line-height: 1.6;
}

.footer-status-pill {
    display: inline-block;
    background: rgba(58, 166, 185, 0.2);
    padding: 8px 16px;
    border-radius: 40px;
    font-size: 11px;
    font-weight: 700;
    margin-top: 16px;
}

.footer-contact {
    font-size: 14px;
    color: #cbd5e1;
    margin-bottom: 8px;
}

.payment-icons {
    display: flex;
    gap: 14px;
    margin-top: 16px;
}

.payment-icons i {
    font-size: 28px;
    color: #cbd5e1;
}

.disclaimer-box {
    background: rgba(0,0,0,0.3);
    padding: 20px;
    border-radius: 20px;
    margin-top: 48px;
    text-align: center;
}

.disclaimer-box p {
    font-size: 11px;
    color: #94a3b8;
}

.copyright {
    text-align: center;
    font-size: 11px;
    color: #64748B;
    margin-top: 30px;
}

.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: linear-gradient(var(--border-clinical) 1px, transparent 1px),
                      linear-gradient(90deg, var(--border-clinical) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.3;
    pointer-events: none;
}

.volume-discount-notice {
    background: rgba(58, 166, 185, 0.12);
    color: var(--teal-bayside);
    font-size: 13px;
    font-weight: 700;
    padding: 10px 16px;
    border-radius: 40px;
    margin-bottom: 16px;
    text-align: center;
}

.floating-discord {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: #5865F2;
    color: white;
    padding: 14px 24px;
    border-radius: 60px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    z-index: 1000;
    box-shadow: 0 6px 20px rgba(88, 101, 242, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

/* TABLET & DESKTOP */
@media (min-width: 768px) {
    .hamburger {
        display: none;
    }
    
    .nav-links {
        display: flex;
        gap: 32px;
    }
    
    .nav-links a {
        color: var(--navy-primary);
        text-decoration: none;
        font-weight: 600;
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .hero-title {
        font-size: 56px;
    }
    
    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 20px 32px 60px;
    }
    
    .product-layout-grid {
        flex-direction: row;
        gap: 60px;
    }
    
    .footer-container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    
    .footer-col {
        flex: 1;
        min-width: 200px;
    }
}

@media (min-width: 1024px) {
    .shop-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
    
    .hero-title {
        font-size: 68px;
    }
    
    .nav-container {
        padding: 18px 40px;
    }
    
    .product-container-main {
        padding: 50px;
    }
}

@media (max-width: 768px) {
    .bundle-options {
        flex-direction: column;
    }
    
    .cross-sell-grid {
        grid-template-columns: 1fr;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .purchase-row {
        flex-direction: column;
        gap: 16px;
    }
    
    .trust-banner {
        flex-direction: column;
        margin: 20px;
        padding: 28px 20px;
    }
    
    .trust-banner-divider {
        width: 80%;
        height: 1px;
    }
    
    .discord-banner {
        flex-direction: column;
        text-align: center;
        padding: 36px 28px;
    }
    
    .volume-banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .floating-discord {
        padding: 12px 20px;
        font-size: 12px;
        bottom: 16px;
        right: 16px;
    }
}

.review-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.review-date {
    font-size: 11px;
    color: #94a3b8;
}

.reviewer-info {
    display: flex;
    flex-direction: column;
}

.verified-badge {
    color: var(--teal-bayside);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    margin-left: 6px;
    letter-spacing: 0.5px;
}

.reviewer-tag {
    font-size: 12px;
    color: #64748B;
    margin-top: 2px;
}

.fa-star, .fa-star-half-stroke {
    color: #FBBF24; /* Nice gold color for stars */
}