/*
Theme Name: VivantisLabs Premium v2
Theme URI: https://vivantislabs.com
Description: Premium biotech research peptide e-commerce theme
Author: VivantisLabs
Version: 2.1.1
Text Domain: vivantislabs-premium
Requires at least: 5.0
Tested up to: 6.5
Requires PHP: 7.4
License: GPL v2
Template: 
*/
/* ===== FONTS (Google Fonts - Inter + fallback) ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
@font-face {
    font-family: 'Satoshi';
    src: url('https://api.fontshare.com/v2/css?f[]=satoshi@300,400,500,700,900&display=swap') format('woff2');
    font-weight: 300 900;
    font-style: normal;
    font-display: swap;
}
:root {
    /* === Premium Dark Palette === */
    --bg-darkest: #000000;
    --bg-primary: #030305;
    --bg-surface: #08080F;
    --bg-elevated: #0E0E1A;
    --bg-glass: rgba(255,255,255,0.02);
    --bg-glass-strong: rgba(255,255,255,0.05);
    /* === Purple — refined, less neon === */
    --purple-deep: #1a0b2e;
    --purple-dark: #4c1d95;
    --purple-main: #7c3aed;
    --purple-light: #a78bfa;
    --purple-glow: rgba(124,58,237,0.15);
    --purple-glow-strong: rgba(124,58,237,0.30);
    /* === Text === */
    --text-primary: #f8f7f4;
    --text-secondary: #b4b4be;
    --text-muted: #9a9aa4;
    --text-subtle: #6e6e78;
    /* === Accent === */
    --success: #22c55e;
    --error: #ef4444;
    /* === Spacing Scale === */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 96px;
    --space-5xl: 128px;
    /* === Radius === */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;
    /* === Easing === */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    /* === Typography === */
    --font-display: 'Satoshi', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    /* === Container === */
    --container: 1280px;
    --container-narrow: 980px;
}
/* ===== RESET ===== */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    font-size: 15px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
img { max-width:100%; height:auto; display:block; }
button { font-family: var(--font-body); border: none; background: none; cursor: pointer; color: inherit; }
ul, ol { list-style: none; }
input, select, textarea { font-family: var(--font-body); }
/* ===== ANIMATED MESH BACKGROUND ===== */
@keyframes meshMove {
    0%   { transform: translate(0,0) scale(1); }
    25%  { transform: translate(3%,-2%) scale(1.04); }
    50%  { transform: translate(-2%,3%) scale(1.02); }
    75%  { transform: translate(2%,2%) scale(1.05); }
    100% { transform: translate(0,0) scale(1); }
}
@keyframes float {
    0%,100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}
@keyframes pulse-glow {
    0%,100% { opacity: 0.35; }
    50% { opacity: 0.65; }
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes slideIn {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}
/* ===== UTILITIES ===== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--space-xl); }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 var(--space-xl); }
.glass {
    background: var(--bg-glass);
    backdrop-filter: blur(24px) saturate(1.2);
    -webkit-backdrop-filter: blur(24px) saturate(1.2);
    border: 1px solid rgba(255,255,255,0.04);
}
.glass-strong {
    background: var(--bg-glass-strong);
    backdrop-filter: blur(32px) saturate(1.3);
    -webkit-backdrop-filter: blur(32px) saturate(1.3);
    border: 1px solid rgba(255,255,255,0.06);
}
.gradient-text {
    background: linear-gradient(135deg, var(--purple-light) 0%, var(--text-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hidden { display: none !important; }
/* ===== HEADER / NAVBAR ===== */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    transition: background 0.5s var(--ease-out), backdrop-filter 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
    padding: 0 var(--space-xl);
}
.site-header.transparent {
    background: transparent;
}
.site-header.scrolled {
    background: rgba(3,3,5,0.75);
    backdrop-filter: blur(24px) saturate(1.2);
    -webkit-backdrop-filter: blur(24px) saturate(1.2);
    box-shadow: 0 1px 0 rgba(255,255,255,0.04), 0 8px 32px rgba(0,0,0,0.4);
}
.header-inner {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: var(--space-xl);
}
.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--text-primary);
}
.brand-logo {
    width: 34px; height: 34px;
    background: linear-gradient(135deg, var(--purple-dark), var(--purple-main));
    border-radius: 10px;
    display: grid;
    place-items: center;
    font-size: 15px;
    font-weight: 800;
    color: white;
    flex-shrink: 0;
}
.desktop-nav {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}
.desktop-nav a {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 4px 0;
    transition: color 0.3s var(--ease-out);
}
.desktop-nav a:hover {
    color: var(--text-primary);
}
.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0; height: 1.5px;
    background: var(--purple-main);
    transition: width 0.35s var(--ease-out);
    border-radius: 2px;
}
.desktop-nav a:hover::after {
    width: 100%;
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}
.header-icon-btn {
    width: 40px; height: 40px;
    display: grid;
    place-items: center;
    border-radius: var(--radius-full);
    color: var(--text-secondary);
    transition: all 0.3s var(--ease-out);
    position: relative;
}
.header-icon-btn:hover {
    background: rgba(255,255,255,0.05);
    color: var(--text-primary);
}
.cart-badge {
    position: absolute;
    top: 3px; right: 3px;
    min-width: 14px; height: 14px;
    font-size: 10px; font-weight: 700;
    background: var(--purple-main);
    color: white;
    border-radius: var(--radius-full);
    display: grid;
    place-items: center;
    padding: 0 4px;
}
.mobile-menu-toggle {
    display: none;
    width: 40px; height: 40px;
    place-items: center;
    color: var(--text-primary);
}
/* ===== MOBILE MENU ===== */
.mobile-menu-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.5);
    opacity: 0; visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s;
    z-index: 1001;
}
.mobile-menu-overlay.open,
.mobile-menu-overlay.active { opacity:1; visibility:visible; }
.mobile-menu {
    position: fixed; top:0; right:0; bottom:0;
    width: 300px; max-width: 85vw;
    background: var(--bg-surface);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border-left: 1px solid rgba(255,255,255,0.04);
    padding: var(--space-3xl) var(--space-xl);
    display: flex; flex-direction: column; gap: 8px;
    z-index: 1002;
    transform: translateX(100%);
    transition: transform 0.5s var(--ease-out-expo);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-close {
    position: absolute; top: 14px; right: 14px;
    font-size: 28px; color: var(--text-secondary);
    width: 44px; height: 44px; display: grid; place-items: center;
}
.mobile-menu a {
    font-size: 18px; font-weight: 500;
    color: var(--text-secondary);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--text-primary); }
/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 72px;
}
.hero-banner-layer {
    position: absolute; inset: 0;
    z-index: 0;
    background-size: cover; background-position: center;
    filter: brightness(1.0) saturate(1.1);
    opacity: 0.85;
}
.hero-mesh-bg {
    position: absolute; inset: 0;
    z-index: 0;
    background: var(--bg-darkest);
    overflow: hidden;
}
.hero-mesh-bg::before {
    content:'';
    position: absolute;
    width: 120%; height: 120%;
    top: -10%; left: -10%;
    background: 
        radial-gradient(ellipse 50% 40% at 20% 30%, rgba(76,29,149,0.15) 0%, transparent 70%),
        radial-gradient(ellipse 40% 50% at 80% 70%, rgba(124,58,237,0.08) 0%, transparent 70%),
        radial-gradient(ellipse 60% 30% at 50% 20%, rgba(167,139,250,0.05) 0%, transparent 60%);
    animation: meshMove 20s ease-in-out infinite;
}
.hero-mesh-canvas {
    position: absolute; inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.15;
}
.hero-gradient-overlay {
    position: absolute; inset: 0;
    z-index: 2;
    background: radial-gradient(ellipse 60% 50% at 50% 45%, rgba(3,3,5,0) 0%, rgba(3,3,5,0.2) 100%);
}
.hero-vignette {
    position: absolute; inset: 0;
    z-index: 3;
    background: radial-gradient(ellipse at center, transparent 60%, rgba(1,1,2,0.15) 100%);
}
.hero-content {
    position: relative; z-index: 10;
    max-width: var(--container-narrow);
    margin: 0 auto;
    padding: var(--space-4xl) var(--space-xl);
    text-align: center;
    display: flex; flex-direction: column; align-items: center; gap: var(--space-xl);
}
.hero-eyebrow {
    font-family: var(--font-body);
    font-size: 13px; font-weight: 600;
    letter-spacing: 3px; text-transform: uppercase;
    color: var(--purple-light);
    opacity: 0.9;
    text-shadow: 0 2px 12px rgba(7,7,11,0.8), 0 1px 4px rgba(7,7,11,0.6);
    animation: fadeUp 1s var(--ease-out) 0.1s both;
}
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 6vw, 80px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -2.5px;
    color: var(--text-primary);
    text-shadow: 0 2px 20px rgba(7,7,11,0.85), 0 1px 6px rgba(7,7,11,0.7);
    animation: fadeUp 1s var(--ease-out) 0.2s both;
}
.hero-title .accent {
    display: block;
    font-weight: 500;
    font-size: 0.55em;
    letter-spacing: -0.5px;
    color: var(--text-secondary);
    margin-top: 12px;
}
.hero-desc {
    font-size: clamp(16px, 1.8vw, 20px);
    color: var(--text-muted);
    max-width: 520px;
    line-height: 1.6;
    text-shadow: 0 2px 12px rgba(7,7,11,0.8), 0 1px 4px rgba(7,7,11,0.6);
    animation: fadeUp 1s var(--ease-out) 0.35s both;
}
.hero-actions {
    display: flex; gap: 14px; flex-wrap: wrap;
    justify-content: center;
    margin-top: 8px;
    animation: fadeUp 1s var(--ease-out) 0.5s both;
}
/* ===== BUTTONS (Premium) ===== */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 8px; padding: 16px 32px;
    font-family: var(--font-body);
    font-size: 15px; font-weight: 600;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.35s var(--ease-out);
    position: relative; overflow: hidden;
    white-space: nowrap;
}
.btn-primary {
    background: var(--purple-main);
    color: white;
    box-shadow: 0 0 40px rgba(124,58,237,0.2), 0 4px 12px rgba(0,0,0,0.3);
}
.btn-primary:hover {
    background: #8b5cf6;
    box-shadow: 0 0 60px rgba(139,92,246,0.35), 0 8px 24px rgba(0,0,0,0.4);
    transform: translateY(-2px);
}
.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1.5px solid rgba(255,255,255,0.12);
    box-shadow: inset 0 0 0 rgba(124,58,237,0);
}
.btn-outline:hover {
    border-color: rgba(124,58,237,0.5);
    background: rgba(124,58,237,0.08);
    box-shadow: inset 0 0 20px rgba(124,58,237,0.08), 0 0 30px rgba(124,58,237,0.1);
    transform: translateY(-2px);
}
.btn-sm { padding: 10px 22px; font-size: 13px; }
/* ===== HERO TRUST (Horizontal strip) ===== */
/* ===== TRUST BAR (Standalone, below hero) ===== */
.trust-bar {
    position: relative; z-index: 10;
    background: var(--bg-darkest);
    border-bottom: 1px solid rgba(255,255,255,0.04);
    padding: 20px 0;
}
.trust-bar-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--space-xl);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
}
.trust-bar-item {
    display: flex; align-items: center; gap: 10px;
    padding: 0 var(--space-xl);
    font-family: var(--font-body);
    font-size: 14px; font-weight: 500;
    color: var(--text-muted);
    position: relative;
}
.trust-bar-item::after {
    content: '';
    position: absolute; right: 0; top: 50%; transform: translateY(-50%);
    width: 1px; height: 20px;
    background: rgba(255,255,255,0.06);
}
.trust-bar-item:last-child::after { display: none; }
.trust-bar-item svg {
    width: 18px; height: 18px;
    color: var(--purple-light);
    flex-shrink: 0;
}
.trust-bar-item span { white-space: nowrap; }
/* ===== SECTIONS ===== */
.section {
    padding: var(--space-5xl) 0;
}
.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}
.section-label {
    font-size: 12px; font-weight: 700;
    letter-spacing: 3px; text-transform: uppercase;
    color: var(--purple-light);
    margin-bottom: var(--space-md);
    opacity: 0.8;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    letter-spacing: -1.5px;
    line-height: 1.1;
    color: var(--text-primary);
}
.section-desc {
    font-size: 17px; color: var(--text-muted);
    max-width: 520px;
    margin: var(--space-lg) auto 0;
    line-height: 1.6;
}
/* ===== FEATURED PRODUCTS ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--space-xl);
}
.product-card {
    display: flex; flex-direction: column;
    background: var(--bg-glass);
    border: 1px solid rgba(255,255,255,0.03);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.45s var(--ease-out);
    position: relative;
}
.product-card::before {
    content:'';
    position: absolute; inset: 0; border-radius: inherit; opacity: 0;
    box-shadow: 0 0 0 1px rgba(124,58,237,0.2), 0 20px 60px rgba(124,58,237,0.08);
    transition: opacity 0.45s var(--ease-out);
    pointer-events: none;
}
.product-card:hover {
    transform: translateY(-8px) scale(1.01);
    background: var(--bg-glass-strong);
    border-color: rgba(124,58,237,0.15);
}
.product-card:hover::before { opacity: 1; }
.product-image-wrap {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: var(--bg-elevated);
    display: flex; align-items: center; justify-content: center;
    padding: var(--space-xl);
}
.product-image-wrap img {
    width: 100%; height: 100%;
    object-fit: contain;
    transition: transform 0.6s var(--ease-out);
    filter: brightness(0.95) contrast(1.05);
}
.product-card:hover .product-image-wrap img {
    transform: scale(1.08);
}
.product-card-info {
    padding: var(--space-lg);
    display: flex; flex-direction: column;
    gap: 6px;
}
.product-card-meta {
    display: flex; align-items: center; gap: 8px;
    font-size: 12px; font-weight: 600;
    letter-spacing: 0.5px; text-transform: uppercase;
}
.product-brand-tag {
    color: var(--purple-light);
}
.product-category-tag {
    color: var(--text-subtle);
    font-weight: 500;
}
.product-card-name {
    font-family: var(--font-display);
    font-size: 17px; font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3;
    letter-spacing: -0.3px;
    margin-top: 2px;
}
.product-card-bottom {
    display: flex; align-items: center; justify-content: space-between;
    margin-top: auto; padding-top: var(--space-md);
}
.product-card-price {
    font-family: var(--font-display);
    font-size: 18px; font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}
.product-card-price .woocommerce-Price-amount { font-weight: 700; }
.product-card-price ins { text-decoration: none; }
.product-card-cta {
    padding: 10px 20px;
    font-size: 13px; font-weight: 600;
    border-radius: var(--radius-full);
    background: var(--purple-main);
    color: white;
    border: 1px solid rgba(124,58,237,0.3);
    transition: all 0.3s var(--ease-out);
    white-space: nowrap;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.product-card-cta:hover {
    background: #8b5cf6;
    border-color: #8b5cf6;
    color: white;
    transform: translateY(-1px);
}
.product-card-badges {
    position: absolute; top: 12px; left: 12px;
    display: flex; flex-direction: column; gap: 6px;
    z-index: 5;
}
.product-badge {
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}
.product-badge.purity {
    background: rgba(124,58,237,0.12);
    color: #c4b5fd;
    border: 1px solid rgba(124,58,237,0.2);
}
.product-badge.mg {
    background: rgba(255,255,255,0.06);
    color: var(--text-muted);
    border: 1px solid rgba(255,255,255,0.08);
}
.view-all-row {
    text-align: center;
    margin-top: var(--space-3xl);
}
/* ===== MOLECULE / BRAND SECTION ===== */
.brand-section {
    position: relative;
    padding: var(--space-5xl) 0;
    overflow: hidden;
}
.brand-section-canvas {
    position: absolute; inset: 0;
    z-index: 0;
    pointer-events: none;
}
.brand-section-content {
    position: relative; z-index: 10;
    max-width: var(--container-narrow);
    margin: 0 auto;
    padding: 0 var(--space-xl);
    text-align: center;
    display: flex; flex-direction: column; align-items: center; gap: var(--space-xl);
}
.brand-section h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    letter-spacing: -1.2px;
    line-height: 1.15;
    color: var(--text-primary);
}
.brand-section p {
    font-size: 17px; color: var(--text-muted);
    max-width: 480px; line-height: 1.6;
}
/* ===== CTA SECTION ===== */
.cta-section {
    padding: var(--space-4xl) var(--space-xl);
    text-align: center;
}
.cta-section-inner {
    max-width: var(--container-narrow);
    margin: 0 auto;
    display: flex; flex-direction: column; align-items: center; gap: var(--space-lg);
}
.cta-section h2 {
    font-family: var(--font-display);
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.2;
}
.cta-section p {
    font-size: 16px; color: var(--text-muted);
    max-width: 460px;
    line-height: 1.6;
}
/* ===== FOOTER (Minimal) ===== */
.site-footer {
    border-top: 1px solid rgba(255,255,255,0.04);
    padding: var(--space-2xl) 0 var(--space-lg);
    background: var(--bg-darkest);
}
.footer-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--space-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
    text-align: center;
}
.footer-main { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.footer-logo-text {
    font-family: var(--font-display);
    font-size: 20px; font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}
.footer-tagline {
    font-size: 13px; color: var(--text-subtle);
}
.footer-nav {
    display: flex; flex-wrap: wrap;
    justify-content: center;
    gap: 8px 20px;
}
.footer-nav a {
    font-size: 14px; color: var(--text-muted);
    transition: color 0.2s;
}
.footer-nav a:hover { color: var(--text-primary); }
.footer-divider {
    width: 60px; height: 1px;
    background: rgba(255,255,255,0.06);
}
.footer-legal {
    max-width: var(--container);
    margin: 0 auto;
    padding: var(--space-xl) var(--space-xl) 0;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 12px; color: var(--text-subtle);
    border-top: 1px solid rgba(255,255,255,0.03);
    margin-top: var(--space-xl);
}
.footer-legal a {
    color: var(--text-subtle);
    transition: color 0.2s;
}
.footer-legal a:hover { color: var(--text-muted); }
/* ===== AGE VERIFY (Minimal) ===== */
.age-verify-overlay {
    position: fixed; inset: 0; z-index: 9999;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(20px);
    display: none; align-items: center; justify-content: center;
    padding: var(--space-xl);
}
.age-verify-overlay.active { display: flex; }
.age-verify-box {
    background: var(--bg-surface);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-xl);
    padding: var(--space-3xl);
    max-width: 420px; width: 100%;
    text-align: center;
    display: flex; flex-direction: column; align-items: center; gap: var(--space-lg);
    box-shadow: 0 32px 64px rgba(0,0,0,0.5);
}
.age-verify-box h2 {
    font-family: var(--font-display);
    font-size: 24px; font-weight: 700;
    letter-spacing: -0.5px;
}
.age-verify-box p {
    font-size: 14px; color: var(--text-muted);
    line-height: 1.6;
}
.age-verify-actions {
    display: flex; gap: 12px; flex-wrap: wrap; justify-content: center;
    width: 100%;
}
.age-verify-actions .btn { flex: 1; min-width: 130px; }
/* ===== SCROLL REVEAL UTILITIES ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
/* ===== WOOCOMMERCE OVERRIDES ===== */
.woocommerce .products-grid { margin-top: var(--space-2xl); }
.woocommerce .product-card { height: 100%; }
.woocommerce .product-card-info { flex: 1; }
.woocommerce-cart .cart-contents,
.woocommerce-checkout .cart-contents,
.woocommerce-account .cart-contents {
    max-width: var(--container);
    margin: 0 auto; padding: var(--space-2xl);
}
.woocommerce table.shop_table {
    border: 1px solid rgba(255,255,255,0.04) !important;
    border-radius: var(--radius-lg) !important;
    background: var(--bg-surface) !important;
    color: var(--text-primary) !important;
}
.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
    border-color: rgba(255,255,255,0.04) !important;
    padding: var(--space-md) !important;
}
.woocommerce a.remove {
    color: var(--text-muted) !important;
    font-size: 22px !important;
}
.woocommerce a.remove:hover { color: var(--error) !important; background: none !important; }
.woocommerce .cart_totals h2 {
    font-family: var(--font-display); font-size: 22px; font-weight: 700;
}
.woocommerce .checkout {
    max-width: var(--container-narrow); margin: var(--space-2xl) auto;
}
.woocommerce form.checkout_coupon,
.woocommerce form.login,
.woocommerce form.register {
    background: var(--bg-surface);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: var(--radius-lg);
}
.woocommerce .col2-set .col-1,
.woocommerce .col2-set .col-2 {
    background: transparent !important;
}
.woocommerce .woocommerce-billing-fields h3,
.woocommerce .woocommerce-additional-fields h3,
.woocommerce #order_review_heading {
    font-family: var(--font-display); font-size: 20px; font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}
.woocommerce-input-wrapper .input-text,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
    background: var(--bg-elevated) !important;
    border: 1px solid rgba(255,255,255,0.06) !important;
    border-radius: var(--radius-md) !important;
    color: var(--text-primary) !important;
    padding: 12px 16px !important;
    transition: border-color 0.3s, box-shadow 0.3s !important;
}
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus {
    border-color: var(--purple-main) !important;
    box-shadow: 0 0 0 3px rgba(124,58,237,0.15) !important;
    outline: none !important;
}
.woocommerce form .form-row label {
    color: var(--text-secondary) !important;
    font-weight: 500 !important;
    margin-bottom: 6px !important;
}
.woocommerce #respond input#submit.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.woocommerce #payment #place_order,
.woocommerce .checkout-button {
    background: var(--purple-main) !important;
    color: white !important;
    border-radius: var(--radius-full) !important;
    font-weight: 600 !important;
    padding: 14px 28px !important;
    transition: all 0.3s var(--ease-out) !important;
}
.woocommerce #respond input#submit.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover,
.woocommerce .checkout-button:hover {
    background: #8b5cf6 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 24px rgba(124,58,237,0.25) !important;
}
/* Single product */
.woocommerce div.product {
    max-width: var(--container);
    margin: var(--space-2xl) auto; padding: 0 var(--space-xl);
    display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3xl);
}
.woocommerce div.product .woocommerce-product-gallery {
    position: sticky; top: 100px;
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.03);
}
.woocommerce div.product .summary {
    display: flex; flex-direction: column; gap: var(--space-lg);
}
.woocommerce div.product .product_title {
    font-family: var(--font-display);
    font-size: 32px; font-weight: 700;
    letter-spacing: -1px; line-height: 1.15;
    color: var(--text-primary);
}
.woocommerce div.product .price {
    font-family: var(--font-display);
    font-size: 24px; font-weight: 700;
    color: var(--text-primary);
}
.woocommerce div.product .price .woocommerce-Price-amount { font-weight: 700; }
.woocommerce div.product .woocommerce-product-details__short-description {
    color: var(--text-muted); line-height: 1.65;
    font-size: 15px;
}
.woocommerce div.product form.cart {
    display: flex; gap: var(--space-md); align-items: stretch;
}
.woocommerce .quantity .qty {
    background: var(--bg-elevated) !important;
    border: 1px solid rgba(255,255,255,0.06) !important;
    border-radius: var(--radius-md) !important;
    color: var(--text-primary) !important;
    height: 48px !important; width: 80px !important;
    text-align: center !important;
    font-weight: 600 !important;
}
.woocommerce div.product form.cart .single_add_to_cart_button {
    flex: 1;
    height: 48px;
    background: var(--purple-main) !important;
    color: white !important;
    border-radius: var(--radius-full) !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    transition: all 0.3s var(--ease-out) !important;
}
.woocommerce div.product form.cart .single_add_to_cart_button:hover {
    background: #8b5cf6 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 24px rgba(124,58,237,0.25) !important;
}
/* Archive header */
.woocommerce .woocommerce-breadcrumb {
    max-width: var(--container); margin: 96px auto 0; padding: 0 var(--space-xl);
    font-size: 13px; color: var(--text-subtle);
}
.woocommerce .woocommerce-breadcrumb a { color: var(--text-muted); }
.woocommerce .woocommerce-breadcrumb a:hover { color: var(--text-primary); }
.woocommerce .page-title {
    max-width: var(--container); margin: var(--space-md) auto 0; padding: 0 var(--space-xl);
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    letter-spacing: -1.5px;
    color: var(--text-primary);
}
/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-md); }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: var(--space-xl); }
    .woocommerce div.product { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    :root {
        --space-5xl: 72px;
        --space-4xl: 48px;
        --space-3xl: 36px;
        --space-2xl: 28px;
        --space-xl: 20px;
        --space-lg: 16px;
        --space-md: 12px;
    }
    .container, .container-narrow { padding: 0 var(--space-md); }
    .hero {
        min-height: auto;
        padding: 120px var(--space-md) var(--space-2xl);
    }
    .hero-content {
        gap: var(--space-lg);
        padding: var(--space-2xl) var(--space-md);
    }
    .hero-eyebrow {
        font-size: 11px;
        letter-spacing: 2px;
    }
    .hero-title {
        font-size: clamp(28px, 9vw, 48px);
        line-height: 1.1;
        letter-spacing: -1px;
    }
    .hero-desc {
        font-size: 15px;
        max-width: 100%;
    }
    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: var(--space-sm);
    }
    .hero-actions .btn {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
    .products-section { padding: var(--space-2xl) 0; }
    .products-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
        padding: 0 var(--space-md);
        max-width: 420px;
        margin: 0 auto;
    }
    .product-card {
        border-radius: var(--radius-md);
    }
    .product-card-img {
        aspect-ratio: 16 / 10;
    }
    .product-card-name { font-size: 14px; }
    .product-card-price { font-size: 16px; }
    .product-card-cta {
        font-size: 13px;
        padding: 10px 20px;
    }
    /* Fix brand section text overlap */
    .brand-section {
        padding: var(--space-3xl) var(--space-md);
        min-height: auto;
    }
    .brand-section-content {
        position: relative;
        gap: var(--space-lg);
        padding: var(--space-2xl) var(--space-md);
    }
    .brand-section h2 {
        font-size: clamp(22px, 5.5vw, 32px);
    }
    .brand-section p {
        font-size: 14px;
        line-height: 1.6;
    }
    /* Improve mobile scrolling */
    html { scroll-behavior: auto; }
    body { -webkit-overflow-scrolling: touch; }
    /* Fix CTA section */
    .cta-section {
        padding: var(--space-3xl) var(--space-md);
        min-height: auto;
    }
    .cta-section h2 {
        font-size: clamp(22px, 5.5vw, 32px);
    }
    /* Fix age verify on mobile */
    .age-verify-popup {
        max-width: 90%;
        padding: var(--space-2xl) var(--space-xl);
    }
    .age-verify-popup h2 {
        font-size: 24px;
    }
    .age-verify-popup p {
        font-size: 14px;
    }
    .age-verify-buttons {
        flex-direction: column;
        gap: var(--space-sm);
    }
    .age-verify-buttons button {
        width: 100%;
        padding: 14px 20px;
    }
    /* Fix header on mobile */
    .header-inner {
        height: 60px;
        padding: 0 var(--space-md);
    }
    /* Sticky product gallery can cause jank — disable on mobile */
    .woocommerce div.product .woocommerce-product-gallery {
        position: relative;
        top: auto;
    }
    /* Reduce USP bar padding */
    .usp-bar { padding: 8px 0; }
    .usp-item span { font-size: 11px; }
    .section { padding: var(--space-3xl) var(--space-md); }
    .section-title {
        font-size: clamp(24px, 6vw, 36px);
        text-align: center;
    }
    .section-subtitle {
        font-size: 14px;
        text-align: center;
    .brand-section {
        padding: var(--space-3xl) var(--space-md);
    }
    .brand-section-content {
        gap: var(--space-lg);
        padding: var(--space-2xl) var(--space-md);
    }
    .brand-section h2 {
        font-size: clamp(24px, 6vw, 36px);
    }
    .cta-section {
        padding: var(--space-3xl) var(--space-md);
    }
    .cta-section h2 {
        font-size: clamp(22px, 5vw, 32px);
    }
    .desktop-nav { display: none; }
    .mobile-menu-toggle { display: grid; }
    .footer-inner {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
        text-align: center;
        padding: var(--space-2xl) var(--space-md);
    }
    .footer-legal {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        padding: var(--space-lg) var(--space-md);
    }
}
@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
    }
    .product-card-cta {
        font-size: 13px;
        padding: 10px 18px;
        min-height: 44px;
    }
}
@media (max-width: 430px) {
    .hero-title { font-size: 28px; letter-spacing: -0.5px; }
    .hero-desc { font-size: 14px; }
    .section-title { font-size: 24px; letter-spacing: -0.5px; }
    .btn { padding: 14px 24px; font-size: 14px; min-height: 48px; }
    .product-card-badge {
        font-size: 9px;
        padding: 3px 8px;
    }
    .mobile-menu a {
        padding: 14px 0;
        min-height: 48px;
        display: flex;
        align-items: center;
    }
}
@media (max-width: 375px) {
    :root { --space-xl: 16px; --space-lg: 12px; }
    .hero-title { font-size: 26px; }
}
/* ===== BRAND HEADER ===== */
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-name { font-size: 20px; font-weight: 700; letter-spacing: -0.5px; color: var(--text-primary); }
.brand-tagline { font-size: 10px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; color: var(--purple-light); }

/* ===== BRAND STORY SECTION ===== */
.brand-story-section { padding: var(--space-4xl) 0; background: var(--bg-surface); border-top: 1px solid rgba(255,255,255,0.03); }
.brand-story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3xl); align-items: center; }
.brand-story-text { font-size: 16px; line-height: 1.75; color: var(--text-muted); margin-bottom: var(--space-lg); }
.brand-story-stats { display: flex; gap: var(--space-xl); margin-top: var(--space-xl); }
.stat-item { text-align: center; }
.stat-number { display: block; font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--purple-light); }
.stat-label { display: block; font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }
.brand-story-visual { display: flex; flex-direction: column; gap: var(--space-lg); }
.brand-story-card { background: var(--bg-elevated); border: 1px solid rgba(255,255,255,0.04); border-radius: var(--radius-lg); padding: var(--space-xl); }
.brand-story-card h4 { font-size: 16px; font-weight: 600; color: var(--text-primary); margin-bottom: 8px; }
.brand-story-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.brand-story-icon { width: 48px; height: 48px; background: rgba(124,58,237,0.1); border-radius: 12px; display: grid; place-items: center; color: var(--purple-light); margin-bottom: var(--space-md); }

/* ===== QUALITY SECTION ===== */
.quality-section { padding: var(--space-4xl) 0; }
.quality-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3xl); align-items: start; }
.quality-text { font-size: 16px; line-height: 1.75; color: var(--text-muted); margin-bottom: var(--space-xl); }
.quality-list { list-style: none; display: flex; flex-direction: column; gap: var(--space-md); }
.quality-list li { display: flex; align-items: center; gap: var(--space-md); font-size: 15px; color: var(--text-secondary); }
.quality-list li svg { color: var(--success); flex-shrink: 0; }
.quality-visual { display: flex; flex-direction: column; gap: var(--space-lg); }
.quality-card { background: var(--bg-surface); border: 1px solid rgba(255,255,255,0.04); border-radius: var(--radius-lg); padding: var(--space-xl); position: relative; overflow: hidden; }
.quality-card-number { position: absolute; top: 16px; right: 20px; font-family: var(--font-display); font-size: 48px; font-weight: 800; color: rgba(124,58,237,0.08); line-height: 1; }
.quality-card h4 { font-size: 18px; font-weight: 600; color: var(--text-primary); margin-bottom: 8px; }
.quality-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ===== NEWSLETTER ===== */
.newsletter-section { padding: var(--space-3xl) 0; background: var(--bg-surface); border-top: 1px solid rgba(255,255,255,0.03); }
.newsletter-content { text-align: center; max-width: 520px; margin: 0 auto; }
.newsletter-content h3 { font-size: 24px; font-weight: 700; margin-bottom: var(--space-sm); }
.newsletter-content p { font-size: 15px; color: var(--text-muted); margin-bottom: var(--space-lg); }
.newsletter-form { display: flex; gap: var(--space-sm); margin-bottom: var(--space-md); }
.newsletter-form input { flex: 1; background: var(--bg-elevated); border: 1px solid rgba(255,255,255,0.06); border-radius: var(--radius-full); padding: 12px 20px; color: var(--text-primary); font-size: 14px; }
.newsletter-form input::placeholder { color: var(--text-subtle); }
.newsletter-privacy { font-size: 12px; color: var(--text-subtle); }

/* ===== FOOTER REDESIGN ===== */
.footer-top-bar { background: var(--bg-surface); border-top: 1px solid rgba(255,255,255,0.03); border-bottom: 1px solid rgba(255,255,255,0.03); padding: var(--space-md) 0; }
.footer-top-inner { max-width: var(--container); margin: 0 auto; padding: 0 var(--space-xl); display: flex; justify-content: space-between; gap: var(--space-lg); flex-wrap: wrap; }
.footer-top-item { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 500; color: var(--text-muted); }
.footer-top-item svg { color: var(--purple-light); }
.site-footer { background: var(--bg-primary); border-top: 1px solid rgba(255,255,255,0.03); }
.footer-inner { max-width: var(--container); margin: 0 auto; padding: var(--space-3xl) var(--space-xl); display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--space-2xl); }
.footer-logo-text { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--text-primary); display: block; margin-bottom: var(--space-sm); }
.footer-tagline { font-size: 14px; font-weight: 500; color: var(--purple-light); margin-bottom: var(--space-sm); }
.footer-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.footer-col-title { font-size: 14px; font-weight: 600; color: var(--text-primary); text-transform: uppercase; letter-spacing: 1px; margin-bottom: var(--space-lg); }
.footer-col-nav { display: flex; flex-direction: column; gap: var(--space-sm); }
.footer-col-nav a { font-size: 14px; color: var(--text-muted); transition: color 0.2s; }
.footer-col-nav a:hover { color: var(--text-primary); }
.footer-bottom-bar { background: var(--bg-darkest); border-top: 1px solid rgba(255,255,255,0.03); padding: var(--space-lg) 0; }
.footer-bottom-inner { max-width: var(--container); margin: 0 auto; padding: 0 var(--space-xl); display: flex; flex-direction: column; gap: 4px; text-align: center; }
.footer-copyright { font-size: 13px; color: var(--text-muted); }
.footer-partnership { font-size: 12px; color: var(--purple-light); }
.footer-disclaimer { font-size: 11px; color: var(--text-subtle); }

/* ===== SECTION CTA ===== */
.section-cta { text-align: center; margin-top: var(--space-2xl); }

/* ===== PRODUCT DISTRIBUTOR TAG ===== */
.product-distributor-tag { font-size: 11px; color: var(--text-subtle); font-weight: 500; }

/* ===== RESPONSIVE NEW SECTIONS ===== */
@media (max-width: 1024px) {
    .brand-story-grid { grid-template-columns: 1fr; gap: var(--space-2xl); }
    .quality-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .brand-story-section { padding: var(--space-3xl) 0; }
    .brand-story-stats { flex-direction: column; gap: var(--space-md); }
    .quality-section { padding: var(--space-3xl) 0; }
    .newsletter-form { flex-direction: column; }
    .footer-inner { grid-template-columns: 1fr; gap: var(--space-xl); text-align: center; }
    .footer-top-inner { justify-content: center; }
    .brand-text { display: none; }
}


/* ===== CLIENT FIXES v2.1.2 ===== */
/* Fix 12: More whitespace between sections */
.section + .section { margin-top: var(--space-2xl); }
.brand-story-section { padding: var(--space-5xl) 0; }
.quality-section { padding: var(--space-5xl) 0; }
.cta-section { padding: var(--space-4xl) 0; }
.newsletter-section { padding: var(--space-3xl) 0; }

/* Fix 13: Better text contrast */
.hero-desc { color: rgba(248,247,244,0.95); text-shadow: 0 1px 8px rgba(0,0,0,0.4); }
.quality-text { color: var(--text-secondary); line-height: 1.7; }
.brand-story-text { color: var(--text-secondary); line-height: 1.7; }
.footer-desc { color: var(--text-muted); }

/* Fix 14: More prominent CTAs */
.btn-primary {
    box-shadow: 0 4px 20px rgba(124,58,237,0.35), 0 0 0 1px rgba(124,58,237,0.2);
    transform: translateY(0);
    transition: all 0.25s var(--ease-out);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(124,58,237,0.5), 0 0 0 1px rgba(124,58,237,0.3);
}
.btn-outline {
    border-width: 1.5px;
    box-shadow: 0 2px 12px rgba(124,58,237,0.08);
}
.btn-outline:hover {
    box-shadow: 0 4px 20px rgba(124,58,237,0.15);
}
.product-card-cta, .add-to-cart-btn {
    background: linear-gradient(135deg, var(--purple-main), var(--purple-dark));
    box-shadow: 0 2px 12px rgba(124,58,237,0.25);
    font-weight: 600;
    letter-spacing: 0.02em;
}
.product-card-cta:hover, .add-to-cart-btn:hover {
    box-shadow: 0 4px 20px rgba(124,58,237,0.4);
    transform: translateY(-1px);
}

/* Fix 15: Smaller menu bar */
.site-header { min-height: 56px; }
.header-inner { min-height: 56px; padding: 0 var(--space-lg); }
.brand-logo { width: 32px; height: 32px; font-size: 14px; }
.brand-name { font-size: 16px; }
.brand-tagline { font-size: 10px; }
.desktop-nav a { padding: 6px 12px; font-size: 13px; }

/* Fix 20: Larger mobile touch targets */
@media (max-width: 768px) {
    .mobile-menu a { padding: 16px 0; font-size: 16px; min-height: 48px; }
    .btn-primary, .btn-outline { padding: 16px 28px; min-height: 48px; font-size: 15px; }
    .product-card-cta { padding: 14px 20px; min-height: 48px; }
    .header-icon-btn { width: 44px; height: 44px; }
    .mobile-menu-toggle { width: 44px; height: 44px; }
    .age-verify-actions button { min-height: 48px; padding: 14px 24px; }
}

/* Fix 21: Fix text over images on mobile */
@media (max-width: 768px) {
    .hero { min-height: auto; padding-bottom: 40px; }
    .hero-content { background: linear-gradient(to bottom, rgba(3,3,5,0.7) 0%, rgba(3,3,5,0.4) 100%); padding: 24px; border-radius: 16px; margin: 0 16px; }
    .hero-title { font-size: clamp(28px, 7vw, 40px); }
    .hero-desc { background: rgba(3,3,5,0.5); padding: 16px; border-radius: 12px; }
    .product-card { margin-bottom: var(--space-lg); }
    .trust-bar-item { font-size: 12px; }
}

/* Fix 19: Consistent product image styling */
.product-image-wrap {
    background: linear-gradient(135deg, var(--bg-surface), var(--bg-elevated));
    border-radius: var(--radius-md);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-image-wrap img {
    object-fit: contain;
    padding: 16px;
    mix-blend-mode: normal;
    filter: none;
}

/* Fix 8: Age verification button clarity */
.age-verify-actions { gap: 12px; }
.age-verify-actions button { font-size: 14px; }

/* Fix 9: HPLC tooltip styling */
.product-badge[title] { cursor: help; position: relative; }
.product-badge[title]:hover::after {
    content: attr(title);
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-elevated);
    color: var(--text-secondary);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    font-size: 11px;
    white-space: nowrap;
    z-index: 100;
    border: 1px solid var(--bg-glass-strong);
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

/* Fix 16: Navigation product groups hint */
.desktop-nav a[href*="shop"] {
    position: relative;
}

/* Fix 17: Smart search placeholder */
.header-search-form input::placeholder {
    color: var(--text-subtle);
}
