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

:root {
    --gold: #E6C642;
    --gold-dark: #c9a935;
    --gold-gradient: linear-gradient(90deg, #caa83d, #9a7e1f);
    --bg-dark: #000000;
    --bg-section: #0a0a0a;
    --bg-card: #1a1a1a;
    --text-white: #ffffff;
    --text-gray: #b0b0b0;
    --text-light: #d0d0d0;
    --font-heading: 'Anton', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-ui: 'Poppins', sans-serif;
    --header-height: 60px;
    --container-width: 1200px;
}

html { scroll-behavior: smooth; }

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

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

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

.gold { color: var(--gold); }

.section-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-block;
    padding: 12px 32px;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

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

.btn-outline {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--text-white);
    padding: 8px 20px;
    font-family: var(--font-heading);
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.btn-outline:hover { background: var(--text-white); color: #000; }

.btn-gold-small {
    background: var(--gold);
    color: #000;
    padding: 8px 20px;
    font-family: var(--font-heading);
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: inline-block;
}
.btn-gold-small:hover { background: var(--gold-dark); }

.btn-outline-white {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--text-white);
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
}
.btn-outline-white:hover { background: var(--text-white); color: #000; }

/* ========== HEADER ========== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    border-bottom: 1px solid #1a1a1a;
    transition: background 0.3s;
}

.site-header.scrolled { background: rgba(0, 0, 0, 0.98); }

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

.logo img { height: 38px; width: auto; }

.main-nav ul { display: flex; gap: 28px; }
.main-nav a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-white);
    transition: color 0.2s;
    white-space: nowrap;
}
.main-nav a:hover { color: var(--gold); }

.header-icons { display: flex; align-items: center; gap: 12px; }

.icon-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--text-white);
    transition: all 0.2s;
    position: relative;
    background: none;
    cursor: pointer;
}
.icon-btn:hover { border-color: var(--gold); color: var(--gold); }

.cart-btn { background: var(--gold); border-color: var(--gold); color: #000; }
.cart-btn:hover { background: var(--gold-dark); color: #000; }

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff0000;
    color: white;
    font-size: 10px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}
.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: white;
    display: block;
    transition: 0.3s;
}

/* Search Overlay */
.search-overlay {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #111;
    padding: 16px 20px;
    border-bottom: 2px solid var(--gold);
    animation: slideDown 0.3s ease;
}
.search-overlay.active { display: block; }

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.search-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    gap: 12px;
}

.search-inner input {
    flex: 1;
    background: #1a1a1a;
    border: 1px solid #333;
    color: var(--text-white);
    padding: 12px 16px;
    font-size: 15px;
    border-radius: 6px;
    outline: none;
}
.search-inner input:focus { border-color: var(--gold); }
.search-inner input::placeholder { color: #666; }

.search-close {
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 20px;
    cursor: pointer;
    padding: 0 8px;
}

/* ========== HERO ========== */
.hero {
    position: relative;
    min-height: 420px;
    max-height: 480px;
    margin-top: var(--header-height);
    background: url('assets/images/branding/hero.png') right center / cover no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.55) 40%, rgba(0,0,0,0.15) 70%, rgba(0,0,0,0.05) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 60px;
    max-width: var(--container-width);
    margin: 0 auto;
    width: 100%;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 2px;
    color: var(--text-white);
    margin-bottom: 24px;
    text-transform: uppercase;
    max-width: 500px;
}

/* ========== TICKER BAR ========== */
.ticker-bar {
    background: var(--gold-gradient);
    padding: 14px 0;
    overflow: hidden;
    white-space: nowrap;
}

.ticker-track {
    display: flex;
    animation: ticker 25s linear infinite;
}
.ticker-bar:hover .ticker-track { animation-play-state: paused; }

.ticker-content {
    display: flex;
    flex-shrink: 0;
}

.ticker-content span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 30px;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #000;
    text-transform: uppercase;
    white-space: nowrap;
}

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

/* ========== CATEGORIES ========== */
.categories-section {
    background: var(--bg-section);
    padding: 50px 0 40px;
    border-top: 3px solid var(--gold);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 12px;
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 16px 8px;
    background: var(--bg-card);
    border-radius: 8px;
    border: 1px solid #2a2a2a;
    transition: all 0.3s;
}
.category-card:hover { border-color: var(--gold); transform: translateY(-3px); }

.category-icon { width: 60px; height: 60px; margin-bottom: 10px; }
.category-icon img { width: 100%; height: 100%; object-fit: contain; }

.category-name {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-white);
    line-height: 1.3;
}
.category-name small { color: var(--text-gray); font-weight: 400; font-size: 11px; }

/* ========== PRODUCTS ========== */
.products-section {
    background: var(--bg-section);
    padding: 20px 0 50px;
}

.products-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.products-track {
    display: flex;
    gap: 20px;
    overflow: hidden;
    flex: 1;
    scroll-behavior: smooth;
}

.product-card {
    min-width: calc(25% - 15px);
    max-width: calc(25% - 15px);
    flex-shrink: 0;
    background: var(--bg-card);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
    display: block;
}
.product-card:hover { border-color: var(--gold); }

.products-grid .product-card {
    min-width: 0;
    max-width: none;
}

.product-image {
    position: relative;
    background: #111;
    aspect-ratio: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    margin: 10px;
}
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.product-card:hover .product-image img { transform: scale(1.05); }

.badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: var(--gold);
    color: #000;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 3px;
    text-transform: uppercase;
    z-index: 2;
}

.product-name {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    padding: 4px 14px;
    color: var(--text-white);
    line-height: 1.3;
}

.product-price {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 400;
    color: var(--gold);
    padding: 4px 14px 12px;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-gray);
    font-weight: 400;
}

.product-card .btn-outline,
.product-card .btn-gold-small {
    margin: 0 14px 14px;
}

.carousel-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gold);
    border: none;
    color: #000;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s;
}
.carousel-btn:hover { background: var(--gold-dark); }

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #333;
    cursor: pointer;
    transition: background 0.2s;
}
.dot.active { background: var(--gold); }

/* ========== ABOUT ========== */
.about-section {
    background: var(--bg-dark);
    padding: 50px 0;
    border-top: 1px solid #1a1a1a;
}
.about-section p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 16px;
    max-width: 800px;
}

/* ========== WHY CHOOSE ========== */
.why-choose-section {
    background: var(--bg-section);
    padding: 60px 0 70px;
    position: relative;
}

.shape-divider {
    position: absolute;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}
.shape-divider.shape-top { top: 0; }
.shape-divider.shape-bottom { bottom: 0; }
.shape-divider svg { width: 100%; height: 40px; }

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.why-choose-left .section-title {
    font-size: 2.2rem;
    line-height: 1.3;
}

.why-item {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    align-items: flex-start;
}

.why-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--gold);
}

.why-text h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    color: var(--text-white);
}

.why-text p {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.5;
}

/* ========== TELEGRAM ========== */
.telegram-section {
    background: var(--bg-dark);
    padding: 60px 0 80px;
    border-top: 1px solid #1a1a1a;
}

.telegram-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.telegram-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    border: 3px solid var(--gold);
}

.telegram-content h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 1.3;
    margin-bottom: 16px;
}

.telegram-content p {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 24px;
    line-height: 1.6;
}

/* ========== FOOTER ========== */
.site-footer {
    background: var(--bg-section);
    border-top: 3px solid var(--gold);
    padding: 50px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1.5fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    color: var(--text-white);
}

.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 13px; color: var(--text-gray); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold); }

.social-icons { display: flex; gap: 10px; margin-bottom: 20px; }

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1a1a1a;
    border: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--text-white);
    transition: all 0.2s;
}
.social-icon:hover { background: var(--gold); color: #000; border-color: var(--gold); }

.language-select select {
    background: var(--bg-section);
    color: var(--text-white);
    border: 1px solid var(--gold);
    padding: 8px 12px;
    font-size: 13px;
    border-radius: 4px;
    cursor: pointer;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #1a1a1a;
}

.payment-icons-img { margin-bottom: 16px; }
.payment-icons-img img { max-width: 400px; margin: 0 auto; }

.payment-icons-crypto {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}
.payment-icons-crypto i,
.payment-icons-crypto .crypto-icon {
    font-size: 24px;
    color: var(--gold);
    opacity: 0.85;
    transition: opacity 0.2s;
}
.payment-icons-crypto i:hover,
.payment-icons-crypto .crypto-icon:hover {
    opacity: 1;
}
.payment-icons-crypto .crypto-icon {
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    background: rgba(230, 198, 66, 0.15);
    padding: 4px 10px;
    border-radius: 4px;
    border: 1px solid rgba(230, 198, 66, 0.3);
}

.copyright { font-size: 13px; color: var(--text-gray); }

/* ========== WELCOME BAR ========== */
.welcome-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--gold);
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}
.welcome-bar.visible { transform: translateY(0); }

.welcome-bar-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.welcome-bar p {
    font-family: var(--font-ui);
    font-size: 15px;
    color: #000;
    font-weight: 500;
}

.welcome-bar-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: opacity 0.2s;
}
.welcome-bar-btn:hover { opacity: 0.85; }

.welcome-bar-close {
    background: none;
    border: none;
    color: #000;
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
    padding: 0 4px;
}

/* ========== PAGE HEADER (subpages) ========== */
.page-header {
    margin-top: var(--header-height);
    padding: 50px 0 40px;
    background: var(--bg-section);
    border-bottom: 3px solid var(--gold);
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: 2px;
}

/* ========== SHOP PAGE ========== */
.shop-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 30px;
    padding: 40px 0;
}

.shop-sidebar {
    background: var(--bg-card);
    border-radius: 8px;
    padding: 20px;
    border: 1px solid #2a2a2a;
    position: sticky;
    top: 80px;
    align-self: start;
}

.filter-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 16px;
    color: var(--text-white);
}

.filter-group { margin-bottom: 20px; }
.filter-group h5 {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 10px;
}

.filter-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: 6px;
    cursor: pointer;
}
.filter-group label:hover { color: var(--gold); }

.filter-group input[type="checkbox"] { accent-color: var(--gold); }

.category-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 30px;
}

.cat-pill {
    padding: 6px 16px;
    border: 1px solid #333;
    border-radius: 20px;
    font-size: 12px;
    color: var(--text-gray);
    transition: all 0.2s;
    cursor: pointer;
    background: transparent;
}
.cat-pill:hover, .cat-pill.active { border-color: var(--gold); color: var(--gold); background: rgba(230, 198, 66, 0.1); }

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.products-grid .product-card { min-width: 0; }

/* ========== PRODUCT PAGE ========== */
.product-page {
    padding: 30px 0 60px;
    margin-top: var(--header-height);
}

.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.product-gallery { position: relative; }
.product-gallery .main-image {
    width: 100%;
    border-radius: 4px;
    background: #111;
    cursor: zoom-in;
}
.gallery-thumbs {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}
.gallery-thumbs .thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 3px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: border-color 0.2s;
    background: #111;
}
.gallery-thumbs .thumb:hover,
.gallery-thumbs .thumb.active { border-color: var(--gold); }

.product-info h1 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.product-info .price {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.variation-group { margin-bottom: 14px; }
.variation-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    color: var(--gold);
}
.variation-group label .var-value { color: var(--text-white); }

.variation-options { display: flex; gap: 6px; flex-wrap: wrap; }

.variation-btn {
    min-width: 42px;
    min-height: 42px;
    padding: 8px 14px;
    background: #000;
    border: 1px solid #fff;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.15s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.variation-btn:hover { border-color: var(--gold); color: var(--gold); }
.variation-btn.selected {
    background: var(--gold);
    border-color: var(--gold);
    color: #000;
}

.var-clear { display: block; font-size: 12px; color: var(--text-gray); margin-top: 4px; cursor: pointer; }
.var-clear:hover { color: var(--gold); }

.stock-status {
    font-size: 13px;
    color: #4caf50;
    margin: 12px 0 8px;
}

.add-to-cart-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
}

.qty-input {
    width: 50px;
    height: 46px;
    background: #000;
    border: 1px solid #fff;
    color: var(--text-white);
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    border-radius: 3px;
}
.qty-input:focus { border-color: var(--gold); outline: none; }

.add-to-cart-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    color: #000;
    font-family: var(--font-heading);
    font-size: 16px;
    height: 46px;
    padding: 0 28px;
    border: none;
    cursor: pointer;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: background 0.3s;
    border-radius: 3px;
}
.add-to-cart-btn:hover { background: var(--gold-dark); }

/* ========== ACCORDION (helpcenter/lab results) ========== */
.accordion { margin-bottom: 30px; }
.accordion-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 16px;
    color: var(--gold);
}

.accordion-item {
    background: var(--bg-card);
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    margin-bottom: 8px;
    overflow: hidden;
}

.accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-white);
    transition: color 0.2s;
}
.accordion-header:hover { color: var(--gold); }
.accordion-header i { transition: transform 0.3s; font-size: 12px; color: var(--gold); }
.accordion-item.open .accordion-header i { transform: rotate(180deg); }

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.open .accordion-body { max-height: 800px; }

.accordion-body-inner {
    padding: 0 20px 16px;
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
}

.accordion-body-inner ul { padding-left: 20px; list-style: disc; margin: 8px 0; }
.accordion-body-inner li { margin-bottom: 4px; }
.accordion-body-inner a { color: var(--gold); text-decoration: underline; }

/* ========== TABS (lab results) ========== */
.tabs-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 24px;
}

.tab-btn {
    padding: 8px 18px;
    background: var(--bg-card);
    border: 1px solid #333;
    color: var(--text-gray);
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s;
}
.tab-btn:hover, .tab-btn.active { border-color: var(--gold); color: var(--gold); background: rgba(230, 198, 66, 0.1); }

.tab-panel { display: none; }
.tab-panel.active { display: block; }

.lab-result-card {
    background: var(--bg-card);
    border-radius: 8px;
    padding: 24px;
    border: 1px solid #2a2a2a;
}

.lab-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 16px;
}
.lab-table th, .lab-table td {
    padding: 10px 14px;
    text-align: left;
    border-bottom: 1px solid #2a2a2a;
    font-size: 13px;
}
.lab-table th { color: var(--gold); font-weight: 600; }
.lab-table td { color: var(--text-gray); }

/* ========== CALCULATOR ========== */
.calculator-container {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 40px;
    max-width: 800px;
    border: 1px solid #2a2a2a;
}

.calc-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
}

.calc-field { margin-bottom: 24px; }
.calc-field label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 10px;
}

.calc-options { display: flex; gap: 8px; flex-wrap: wrap; }

.calc-option {
    padding: 8px 16px;
    background: #000;
    border: 2px solid #333;
    color: var(--text-white);
    font-size: 13px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
}
.calc-option:hover, .calc-option.selected {
    border-color: var(--gold);
    background: var(--gold);
    color: #000;
}

.calc-input {
    background: #000;
    border: 2px solid #333;
    color: var(--text-white);
    padding: 10px 14px;
    font-size: 14px;
    border-radius: 6px;
    width: 80px;
    outline: none;
}
.calc-input:focus { border-color: var(--gold); }

.calc-result {
    background: #000;
    border-radius: 12px;
    padding: 24px;
    margin-top: 20px;
    border: 1px solid #2a2a2a;
}

.calc-result p {
    font-size: 16px;
    color: var(--text-white);
    margin-bottom: 12px;
}
.calc-result strong { color: var(--gold); }

.ruler {
    position: relative;
    height: 40px;
    background: #1a1a1a;
    border-radius: 6px;
    overflow: hidden;
    margin-top: 10px;
}

.ruler-fill {
    height: 100%;
    background: var(--gold);
    border-radius: 6px;
    transition: width 0.4s ease;
}

.ruler-ticks {
    display: flex;
    justify-content: space-between;
    padding: 4px 8px 0;
}
.ruler-ticks span { font-size: 10px; color: var(--text-gray); }

/* Syringe calculator images */
.syringe-options { gap: 16px; }
.syringe-option { padding: 0; border: none; background: none; }
.syringe-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px;
    background: #000;
    border: 2px solid #333;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
    min-width: 100px;
}
.syringe-card:hover { border-color: var(--gold); }
.syringe-option input:checked ~ .syringe-card {
    border-color: var(--gold);
    background: rgba(230, 198, 66, 0.1);
}
.syringe-img { 
    width: 60px; 
    height: auto;
    filter: brightness(0.9);
}
.syringe-card span {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-white);
}

/* Calc option checked state */
.calc-option input:checked ~ span,
.calc-option:has(input:checked) span {
    background: var(--gold);
    color: #000;
}
.calc-option:has(input:checked) {
    border-color: var(--gold);
    background: var(--gold);
    color: #000;
}

/* ========== CONTACT PAGE ========== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.contact-card {
    background: var(--bg-card);
    border-radius: 8px;
    padding: 30px;
    border: 1px solid #2a2a2a;
}

.contact-card .icon {
    font-size: 32px;
    color: var(--gold);
    margin-bottom: 16px;
}

.contact-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.contact-card p, .contact-card li {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

.contact-card a { color: var(--gold); }
.contact-card a:hover { text-decoration: underline; }

/* ========== ABOUT PAGE ========== */
.about-promises {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.promise-card {
    text-align: center;
    padding: 24px 16px;
}

.promise-card .icon {
    font-size: 36px;
    color: var(--gold);
    margin-bottom: 16px;
}

.promise-card h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-white);
    line-height: 1.4;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.feature-card {
    background: var(--bg-card);
    border-radius: 8px;
    padding: 24px;
    border: 1px solid #2a2a2a;
}

.feature-card .icon {
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 12px;
}

.feature-card h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* ========== GENERIC CONTENT PAGES ========== */
.content-page {
    padding: 40px 0 60px;
}

.content-page h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin: 30px 0 12px;
    color: var(--text-white);
}

.content-page p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 12px;
}

.content-page ul {
    padding-left: 20px;
    list-style: disc;
    margin-bottom: 12px;
}
.content-page li {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 6px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .categories-grid { grid-template-columns: repeat(4, 1fr); }
    .product-card { min-width: calc(50% - 10px); }
    .why-choose-grid { grid-template-columns: 1fr; gap: 30px; }
    .telegram-grid { grid-template-columns: 1fr; text-align: center; }
    .telegram-image img { margin: 0 auto; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .shop-layout { grid-template-columns: 220px 1fr; }
    .about-promises { grid-template-columns: repeat(2, 1fr); }
    .about-features { grid-template-columns: 1fr 1fr; }
    .product-layout { grid-template-columns: 1fr; }
    .calc-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    /* Header & Navigation - match live site hamburger menu */
    .main-nav { display: none; position: fixed; top: var(--header-height); left: 0; width: 100%; height: calc(100vh - var(--header-height)); background: rgba(0,0,0,0.98); padding: 20px; border-bottom: 2px solid var(--gold); z-index: 9999; overflow-y: auto; }
    .main-nav.open { display: block; }
    .main-nav ul { flex-direction: column; gap: 16px; }
    .main-nav ul li a { font-size: 16px; display: block; padding: 8px 0; }
    .mobile-menu-btn { display: flex; }
    .search-toggle { display: none; }

    /* Hero - match live site proportions */
    .hero { height: 350px; min-height: 300px; }
    .hero h1 { font-size: 2.2rem; line-height: 1.15; }
    .hero-content { padding: 0 20px; }

    /* Categories - live site: 4 columns on tablet, but our 768px is phone territory */
    .categories-grid { grid-template-columns: repeat(4, 1fr); gap: 8px; }
    .category-icon { width: 50px; height: 50px; }
    .category-name { font-size: 10px; }

    /* Section titles */
    .section-title { font-size: 1.6rem; }

    /* Footer - 2 columns */
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }

    /* Shop page */
    .shop-layout { grid-template-columns: 1fr; }
    .shop-sidebar { position: static; }
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .product-card .product-name { font-size: 13px; line-height: 1.3; }
    .product-card .product-price { font-size: 13px; }
    .product-card .btn { font-size: 11px; padding: 6px 10px; }

    /* Contact / About */
    .contact-grid { grid-template-columns: 1fr; }
    .about-features { grid-template-columns: 1fr; }
    .page-header h1 { font-size: 2rem; }

    /* Calculator - single column form on mobile (matches live site) */
    .calculator-container { padding: 20px 16px; }
    .calc-grid, #peptideForm.form-grid { grid-template-columns: 1fr; }
    .syringe-options { gap: 10px; }
    .syringe-card { min-width: 80px; padding: 12px 8px; }
    .syringe-img { width: 45px; }
    .calc-options { gap: 6px; }
    .calc-option { padding: 8px 14px; font-size: 12px; }

    /* Product page */
    .product-layout { grid-template-columns: 1fr; gap: 20px; }
    .product-info h1 { font-size: 1.6rem; }

    /* Variation swatches - match live site: black bg, white border */
    .variation-btn { 
        padding: 8px 14px; 
        font-size: 13px;
        min-width: 42px;
        min-height: 42px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    .add-to-cart-row { flex-direction: column; gap: 10px; }
    .add-to-cart-btn { width: 100%; }

    /* Tabs */
    .tabs-nav { flex-wrap: wrap; gap: 4px; }
    .tab-btn { font-size: 12px; padding: 8px 12px; }

    /* Cart page */
    .cart-item { grid-template-columns: 60px 1fr auto auto auto; gap: 10px; }
    .cart-item-img img { width: 60px; height: 60px; }

    /* Checkout */
    .checkout-grid { grid-template-columns: 1fr; }
    .checkout-sidebar { position: static; }
    .form-row { grid-template-columns: 1fr; }
    .cart-notification { right: 10px; left: 10px; bottom: 10px; max-width: none; }
}

/* ========== SEARCH RESULTS ========== */
.search-results {
    max-width: var(--container-width);
    margin: 0 auto;
    background: #1a1a1a;
    border-radius: 0 0 8px 8px;
    max-height: 420px;
    overflow-y: auto;
    border: 1px solid #333;
    border-top: none;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    border-bottom: 1px solid #2a2a2a;
    transition: background 0.2s;
    text-decoration: none;
    color: inherit;
}
.search-result-item:last-child { border-bottom: none; }
.search-result-item:hover { background: #222; }

.search-result-thumb {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
    background: #111;
}
.search-result-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-result-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.search-result-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-white);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-result-price {
    font-family: var(--font-heading);
    font-size: 13px;
    color: var(--gold);
}

.search-no-results {
    padding: 20px 16px;
    text-align: center;
    font-size: 14px;
    color: var(--text-gray);
}

@media (max-width: 768px) {
    .search-results { max-height: 300px; }
    .search-result-thumb { width: 40px; height: 40px; }
    .search-result-name { font-size: 13px; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.6rem; }
    .hero { height: 280px; min-height: 240px; }

    /* Categories - 3 columns on small mobile (matches live site mobile-3) */
    .categories-grid { grid-template-columns: repeat(3, 1fr); gap: 6px; }
    .category-icon { width: 42px; height: 42px; }
    .category-name { font-size: 9px; }

    /* Footer single column */
    .footer-grid { grid-template-columns: 1fr; }

    /* Products still 2 columns */
    .about-promises { grid-template-columns: 1fr 1fr; }
    .welcome-bar-inner { flex-wrap: wrap; justify-content: center; text-align: center; }
    .related-products .products-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .product-card { padding: 8px; }
    .product-card .product-image { height: 140px; }

    /* Cart compact */
    .cart-item { grid-template-columns: 50px 1fr auto; gap: 8px; }
    .cart-item-qty, .cart-item-total { font-size: 13px; }

    /* Calculator compact */
    .syringe-options { flex-wrap: nowrap; overflow-x: auto; }
    .syringe-card { min-width: 70px; padding: 10px 6px; }
    .syringe-img { width: 35px; }
    .syringe-card span { font-size: 12px; }

    /* Header compact */
    .header-inner { padding: 0 12px; }
    .logo img { height: 32px; }
    .checkout-submit { font-size: 14px; padding: 14px; }

    /* Variation buttons wrap nicely */
    .variation-options { gap: 4px; }
    .variation-btn { padding: 6px 10px; font-size: 12px; min-width: 36px; min-height: 36px; }
}

/* ========== BREADCRUMB ========== */
.breadcrumb {
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: 24px;
}
.breadcrumb a { color: var(--text-gray); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }

/* ========== PRODUCT PAGE ENHANCED ========== */
.product-gallery { position: relative; }
.product-gallery .main-image {
    width: 100%;
    border-radius: 12px;
    background: #111;
    cursor: zoom-in;
}
.gallery-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}
.gallery-thumbs .thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
    border: 2px solid #333;
    cursor: pointer;
    transition: border-color 0.2s;
}
.gallery-thumbs .thumb:hover,
.gallery-thumbs .thumb.active {
    border-color: var(--gold);
}

.product-usps {
    list-style: none;
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 4px 16px;
}
.product-usps li {
    font-size: 12px;
    color: var(--text-gray);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.product-usps li i { color: var(--gold); font-size: 13px; }

/* Product Tabs */
.product-tabs {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #2a2a2a;
}
.product-tabs .tabs-nav { margin-bottom: 0; }
.product-tabs .tab-btn {
    border-radius: 6px 6px 0 0;
    border-bottom: none;
}
.product-tabs .tab-btn.active {
    background: var(--bg-card);
    border-color: var(--gold);
    border-bottom: none;
}
.tab-content {
    background: var(--bg-card);
    border: 1px solid #333;
    border-top: 2px solid var(--gold);
    border-radius: 0 0 8px 8px;
    padding: 24px;
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
}
.tab-content h4 {
    font-family: var(--font-heading);
    color: var(--text-white);
    font-size: 1rem;
    margin: 20px 0 10px;
}
.tab-content ul {
    padding-left: 20px;
    list-style: disc;
    margin: 8px 0;
}
.tab-content li { margin-bottom: 6px; }
.tab-content a { color: var(--gold); }
.tab-content p { margin-bottom: 10px; }

/* Related Products */
.related-products {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #2a2a2a;
}

@media (max-width: 768px) {
    .related-products .products-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .gallery-thumbs .thumb { width: 60px; height: 60px; }
}

.cart-notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #111;
    border: 2px solid var(--gold);
    color: var(--text-white);
    padding: 16px 24px;
    border-radius: 10px;
    font-size: 14px;
    z-index: 9999;
    transform: translateY(120px);
    opacity: 0;
    transition: all 0.4s ease;
    max-width: 360px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.5);
}
.cart-notification.visible { transform: translateY(0); opacity: 1; }
.cart-notification i { color: var(--gold); margin-right: 8px; }

.cart-item {
    display: grid;
    grid-template-columns: 80px 1fr auto auto auto;
    gap: 16px;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #2a2a2a;
}
.cart-item-img img { width: 80px; height: 80px; object-fit: cover; border-radius: 8px; background: #111; }
.cart-item-info h4 { font-size: 14px; font-weight: 600; color: var(--text-white); margin-bottom: 4px; }
.cart-item-variant { font-size: 12px; color: var(--text-gray); }
.cart-item-price { font-size: 13px; color: var(--gold); margin-top: 4px; }
.cart-item-qty { display: flex; align-items: center; gap: 10px; }
.qty-btn {
    width: 30px; height: 30px; border-radius: 6px; border: 1px solid #333;
    background: #111; color: var(--text-white); font-size: 16px; cursor: pointer;
    display: flex; align-items: center; justify-content: center; transition: border-color 0.2s;
}
.qty-btn:hover { border-color: var(--gold); }
.cart-item-qty span { font-size: 14px; font-weight: 600; min-width: 20px; text-align: center; }
.cart-item-total { font-family: var(--font-heading); font-size: 15px; color: var(--gold); white-space: nowrap; }
.cart-item-remove { background: none; border: none; color: #666; cursor: pointer; font-size: 14px; padding: 8px; transition: color 0.2s; }
.cart-item-remove:hover { color: #ff4444; }

.cart-summary {
    background: var(--bg-card);
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 24px;
    margin-top: 30px;
    max-width: 400px;
    margin-left: auto;
}
.cart-summary-row {
    display: flex; justify-content: space-between; padding: 10px 0;
    font-size: 14px; color: var(--text-gray);
    border-bottom: 1px solid #1a1a1a;
}
.cart-summary-row.total {
    border-bottom: none; padding-top: 16px; margin-top: 8px;
    border-top: 2px solid var(--gold);
    font-family: var(--font-heading); font-size: 18px; color: var(--text-white);
}
.cart-summary-row.total span:last-child { color: var(--gold); }
.cart-actions { display: flex; gap: 12px; margin-top: 20px; justify-content: flex-end; }

.checkout-grid {
    display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px;
    padding: 40px 0; align-items: start;
}
.checkout-form-section { background: var(--bg-card); border-radius: 12px; padding: 30px; border: 1px solid #2a2a2a; }
.checkout-form-section h2 { font-family: var(--font-heading); font-size: 1.3rem; margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-row.full { grid-template-columns: 1fr; }
.form-group { display: flex; flex-direction: column; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--text-light); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
    padding: 12px 14px; background: #000; border: 1px solid #333; border-radius: 6px;
    color: var(--text-white); font-size: 14px; font-family: var(--font-body);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); outline: none; }
.form-group select { cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 80px; }

.checkout-sidebar {
    background: var(--bg-card); border-radius: 12px; padding: 24px;
    border: 1px solid #2a2a2a; position: sticky; top: 80px;
}
.checkout-sidebar h3 { font-family: var(--font-heading); font-size: 1.1rem; margin-bottom: 16px; }
.checkout-item {
    display: flex; justify-content: space-between; padding: 8px 0;
    font-size: 13px; color: var(--text-gray); border-bottom: 1px solid #1a1a1a;
}
.checkout-subtotal { border-top: 1px solid #333; margin-top: 8px; padding-top: 12px; }
.checkout-total {
    border-bottom: none; border-top: 2px solid var(--gold); margin-top: 8px; padding-top: 12px;
    font-family: var(--font-heading); font-size: 16px; color: var(--text-white);
}
.checkout-total span:last-child { color: var(--gold); }
.checkout-submit {
    width: 100%; margin-top: 20px; padding: 16px;
    background: var(--gold); color: #000; border: none;
    font-family: var(--font-heading); font-size: 16px; letter-spacing: 1px;
    text-transform: uppercase; cursor: pointer; border-radius: 6px; transition: background 0.3s;
}
.checkout-submit:hover { background: var(--gold-dark); }

.order-success { text-align: center; padding: 80px 20px; }
.order-success i { font-size: 64px; color: var(--gold); margin-bottom: 24px; }
.order-success h1 { font-family: var(--font-heading); font-size: 2rem; margin-bottom: 16px; }
.order-success p { color: var(--text-gray); font-size: 15px; max-width: 500px; margin: 0 auto 24px; }

@media (max-width: 768px) {
    .cart-item { grid-template-columns: 60px 1fr; gap: 10px; }
    .cart-item-qty, .cart-item-total, .cart-item-remove { grid-column: 2; }
    .cart-summary { max-width: 100%; }
    .checkout-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .cart-notification { right: 10px; left: 10px; bottom: 10px; max-width: none; }
}

/* ========== SALE BANNER ========== */
.sale-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    background: linear-gradient(90deg, #ff4444, #cc0000);
    color: #fff;
    font-family: var(--font-ui);
    animation: salePulse 2s ease-in-out infinite;
}

@keyframes salePulse {
    0%, 100% { background: linear-gradient(90deg, #ff4444, #cc0000); }
    50% { background: linear-gradient(90deg, #cc0000, #ff4444); }
}

.sale-banner-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

.sale-banner-icon {
    font-size: 16px;
    animation: saleIconBounce 1s ease-in-out infinite;
}

@keyframes saleIconBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.sale-banner-close {
    background: none;
    border: none;
    color: rgba(255,255,255,0.8);
    font-size: 20px;
    cursor: pointer;
    padding: 0 4px;
    line-height: 1;
    margin-left: 8px;
}
.sale-banner-close:hover { color: #fff; }

/* Adjust header position when sale banner is present */
.sale-banner + .site-header { top: 38px; }
.sale-banner ~ .hero,
.sale-banner ~ .product-page,
.sale-banner ~ .page-header { margin-top: calc(var(--header-height) + 38px); }

/* ========== SALE PRICES ========== */
.sale-price {
    color: #ff4444;
    font-weight: 700;
}

.sale-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    bottom: auto;
    left: auto;
    background: #ff4444 !important;
    color: #fff !important;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 3px;
    z-index: 2;
}

.sale-tag {
    display: inline-block;
    background: #ff4444;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 4px;
    margin-right: 8px;
}

.product-old-price {
    text-decoration: line-through;
    color: var(--text-gray);
    font-size: 15px;
}

.product-sale-info {
    display: flex;
    align-items: center;
    margin-bottom: 4px;
}

@media (max-width: 768px) {
    .sale-banner-inner { font-size: 12px; padding: 8px 12px; }
    .sale-banner + .site-header { top: 34px; }
    .sale-banner ~ .hero,
    .sale-banner ~ .product-page,
    .sale-banner ~ .page-header { margin-top: calc(var(--header-height) + 34px); }
}
