/* ==========================================================================
   VIMAX PREMIUM REDESIGN - MAIN STYLESHEET
   Matching redesign.png
   ========================================================================== */

:root {
    --color-bg-dark: #081712;
    --color-bg-hero: #0c221a;
    --color-bg-card-dark: #122b22;
    --color-bg-light: #f8fafc;
    --color-bg-white: #ffffff;

    --color-primary: #059669;
    --color-primary-light: #10b981;
    --color-primary-dark: #047857;

    --color-gold: #f59e0b;
    --color-gold-light: #fbbf24;
    --color-gold-dark: #d97706;

    --color-text-dark: #0f172a;
    --color-text-muted: #64748b;
    --color-text-light: #f8fafc;
    --color-text-gold: #f59e0b;

    --color-border-light: #e2e8f0;
    --color-border-dark: rgba(255, 255, 255, 0.1);

    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 0 35px rgba(16, 185, 129, 0.25);
    --shadow-gold: 0 8px 20px rgba(217, 119, 6, 0.3);
}

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

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

body {
    font-family: var(--font-body);
    color: var(--color-text-dark);
    background-color: var(--color-bg-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.2s ease;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
    transition: all 0.2s ease;
}

/* ==========================================================================
   1. HEADER / NAVIGATION
   ========================================================================== */

.site-header {
    background: rgba(10, 26, 20, 0.45);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 0;
    transition: all 0.3s ease;
}

.site-header.scrolled {
    background: rgba(6, 18, 13, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(212, 163, 89, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    padding: 12px 0;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.logo-crown {
    color: var(--color-gold);
    font-size: 20px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--color-text-light);
}

.site-nav .nav-links {
    display: flex;
    list-style: none;
    gap: 28px;
    align-items: center;
}

.site-nav .nav-links a {
    color: #cbd5e1;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.site-nav .nav-links a:hover {
    color: var(--color-gold-light);
}

.btn-header-gold {
    display: inline-block;
    background: linear-gradient(135deg, #dfba7c 0%, #be9047 100%);
    color: #0c221a;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.5px;
    padding: 10px 22px;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(190, 144, 71, 0.3);
    text-transform: uppercase;
}

.btn-header-gold:hover {
    background: linear-gradient(135deg, #ebd09e 0%, #d4a359 100%);
    transform: translateY(-1px);
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    color: #ffffff;
    font-size: 22px;
}

.mobile-nav-drawer {
    display: none;
    background: var(--color-bg-dark);
    padding: 20px;
    border-top: 1px solid var(--color-border-dark);
}

.mobile-nav-drawer.active {
    display: block;
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-nav-links a {
    color: #ffffff;
    font-weight: 600;
    font-size: 15px;
}

/* ==========================================================================
   2. HERO SECTION
   ========================================================================== */

.hero-section {
    background-color: #0c221a;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    color: var(--color-text-light);
    padding: 130px 0 90px;
    position: relative;
    overflow: hidden;
    min-height: 640px;
    display: flex;
    align-items: center;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 40px;
    width: 100%;
}

.hero-visual-space {
    position: relative;
    min-height: 480px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    padding-top: 20px;
    padding-right: 35px;
}

/* Хардкоднат кръгъл бадж 100% НАТУРАЛНИ СЪСТАВКИ */
.hero-hardcoded-circle-badge {
    position: relative;
    width: 124px;
    height: 124px;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 40%, #153e2d 0%, #0a2016 70%, #05140e 100%);
    border: 1.5px solid #d4a359;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6), inset 0 0 15px rgba(212, 163, 89, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 10px;
    z-index: 5;
    animation: badgeGentleFloat 4s ease-in-out infinite;
}

@keyframes badgeGentleFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-5px);
    }
}

.badge-dot-top,
.badge-dot-bottom {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: #d4a359;
    border-radius: 50%;
}

.badge-dot-top {
    top: 4px;
}

.badge-dot-bottom {
    bottom: 4px;
}

.hero-hardcoded-circle-badge .badge-percent {
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: #e5be75;
    line-height: 1;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-hardcoded-circle-badge .badge-text {
    font-family: 'Inter', sans-serif;
    font-size: 9px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.25;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.hero-badge-top {
    display: inline-block;
    border: 1px solid rgba(212, 163, 89, 0.45);
    background: rgba(0, 0, 0, 0.4);
    color: #f1f5f9;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 22px;
}

.hero-badge-top .gold-badge-txt {
    color: #d4a359;
    font-weight: 800;
}

.hero-main-title {
    font-family: var(--font-heading);
    font-size: 46px;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 18px;
    text-transform: uppercase;
    color: #ffffff;
}

.gold-text {
    color: #ffffff;
}

.gold-highlight {
    color: #e5b869;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(229, 184, 105, 0.25);
}

.hero-subtitle {
    font-size: 17px;
    color: #94a3b8;
    margin-bottom: 28px;
    font-weight: 500;
}

.hero-pills-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    margin-bottom: 35px;
    flex-wrap: nowrap;
}

.hero-pill-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(18, 34, 27, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 10px 16px;
    border-radius: 12px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    transition: all 0.2s ease;
    flex: 0 0 auto;
}

.hero-pill-card:hover {
    background: rgba(26, 48, 38, 0.8);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-1px);
}

.pill-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pill-card-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.22;
    color: #ffffff;
    white-space: nowrap;
}

.hero-action-box {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
}

.hero-price-tag {
    font-size: 19px;
    font-weight: 600;
    color: #ffffff;
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.hero-price-number {
    font-size: 34px;
    font-weight: 900;
    color: #ffffff;
    font-family: var(--font-heading);
    letter-spacing: -0.5px;
}

.hero-price-curr {
    font-size: 15px;
    color: #cbd5e1;
    font-weight: 500;
}

.btn-hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #00875a 0%, #006644 100%);
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.5px;
    padding: 15px 34px;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 135, 90, 0.4);
    text-transform: uppercase;
    transition: all 0.25s ease;
    width: 100%;
    max-width: 360px;
}

.btn-hero-cta:hover {
    background: linear-gradient(135deg, #00a36c 0%, #00875a 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 163, 108, 0.5);
    color: #ffffff;
}

.cta-arrow-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}

.hero-micro-trust {
    font-size: 12px;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-micro-trust i {
    color: var(--color-gold);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-bottle-stage {
    position: relative;
    display: inline-block;
}

.hero-glow-bg {
    position: absolute;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.25) 0%, rgba(0, 0, 0, 0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.hero-bottle-img {
    position: relative;
    z-index: 2;
    max-height: 480px;
    filter: drop-shadow(0 25px 35px rgba(0, 0, 0, 0.6));
}

.natural-round-badge {
    position: absolute;
    top: 20px;
    right: -20px;
    z-index: 3;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, #0e3023 0%, #071912 100%);
    border: 2px dashed rgba(245, 158, 11, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.badge-inner .badge-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 900;
    color: var(--color-gold);
    line-height: 1;
}

.badge-inner .badge-txt {
    display: block;
    font-size: 9px;
    font-weight: 700;
    color: #e2e8f0;
    letter-spacing: 0.5px;
    line-height: 1.1;
    margin-top: 2px;
}

/* ==========================================================================
   3. INTRO / PROBLEM AGITATION SECTION
   ========================================================================== */

.intro-problem-section {
    padding: 70px 0;
    background: #f1f5f9;
}

.intro-problem-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 40px;
    align-items: center;
}

.image-wrapper-rounded {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.intro-img,
.how-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-title-dark {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 900;
    color: var(--color-text-dark);
    margin-bottom: 25px;
    text-transform: uppercase;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.problem-item {
    background: #ffffff;
    padding: 16px 12px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--color-border-light);
    box-shadow: var(--shadow-sm);
}

.problem-icon {
    font-size: 24px;
    color: #ef4444;
    margin-bottom: 8px;
}

.problem-title {
    font-size: 12px;
    font-weight: 700;
    color: #334155;
    line-height: 1.3;
    display: block;
}

.intro-description {
    font-size: 15px;
    color: #475569;
    line-height: 1.7;
}

/* ==========================================================================
   4. BENEFITS SECTION ("КАКВО МОЖЕШ ДА ОЧАКВАШ?")
   ========================================================================== */

.benefits-section {
    padding: 70px 0;
    background: #ffffff;
}

.section-heading-center {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 900;
    text-align: center;
    color: var(--color-text-dark);
    margin-bottom: 40px;
    text-transform: uppercase;
}

.section-subtitle-center {
    text-align: center;
    color: #64748b;
    font-size: 16px;
    margin-bottom: 40px;
}

.benefits-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.benefit-card {
    background: #f8fafc;
    border: 1px solid var(--color-border-light);
    border-radius: 14px;
    padding: 30px 25px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: #cbd5e1;
}

.benefit-icon-box {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.male-icon {
    background: #ecfdf5;
    color: #059669;
}

.energy-icon {
    background: #fef3c7;
    color: #d97706;
}

.confidence-icon {
    background: #eff6ff;
    color: #2563eb;
}

.benefit-text-box h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    color: var(--color-text-dark);
    margin-bottom: 6px;
}

.benefit-text-box p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
}

/* ==========================================================================
   5. REVIEWS SECTION
   ========================================================================== */

.reviews-section {
    padding: 70px 0;
    background: #f8fafc;
}

.reviews-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 35px;
}

.review-card {
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid var(--color-border-light);
    padding: 25px;
    box-shadow: var(--shadow-sm);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 18px;
}

.author-name {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 800;
    color: var(--color-text-dark);
}

.author-meta {
    font-size: 12px;
    color: #94a3b8;
    display: block;
}

.review-stars {
    color: #f59e0b;
    font-size: 14px;
    margin-bottom: 12px;
    display: flex;
    gap: 2px;
}

.review-text {
    font-size: 14px;
    color: #334155;
    line-height: 1.6;
    font-style: italic;
}

.reviews-summary-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 15px;
    color: #475569;
}

.stars-gold {
    color: #f59e0b;
    display: flex;
    gap: 2px;
}

.rating-number {
    font-weight: 800;
    color: var(--color-text-dark);
}

/* ==========================================================================
   6. FORMULA / INGREDIENTS SECTION
   ========================================================================== */

.formula-section {
    padding: 70px 0;
    background: #ffffff;
}

.ingredients-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.formula-ingredient-card {
    background: #f8fafc;
    border: 1px solid var(--color-border-light);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
}

.formula-ingredient-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.ingredient-img-wrapper {
    width: 140px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.formula-ing-img {
    max-height: 100%;
    object-fit: contain;
}

.formula-ing-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    color: var(--color-text-dark);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.formula-ing-desc {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 15px;
    flex-grow: 1;
}

.formula-dosage-badge {
    display: inline-block;
    background: #ecfdf5;
    color: #059669;
    border: 1px solid #a7f3d0;
    font-size: 13px;
    font-weight: 800;
    padding: 4px 14px;
    border-radius: 50px;
}

/* ==========================================================================
   7. HOW TO TAKE SECTION
   ========================================================================== */

.how-to-take-section {
    padding: 70px 0;
    background: #f1f5f9;
}

.how-to-take-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.section-subtitle-green {
    color: #059669;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 30px;
}

.how-steps-chain {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.step-card {
    background: #ffffff;
    padding: 16px 14px;
    border-radius: 12px;
    border: 1px solid var(--color-border-light);
    text-align: center;
    flex: 1;
    box-shadow: var(--shadow-sm);
}

.step-icon {
    font-size: 22px;
    color: #059669;
    margin-bottom: 6px;
}

.step-text {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-text-dark);
    display: block;
}

.step-arrow {
    color: #94a3b8;
    font-size: 14px;
}

.how-instruction {
    font-size: 15px;
    color: #475569;
    line-height: 1.7;
}

/* ==========================================================================
   8. FAQ ACCORDION SECTION
   ========================================================================== */

.faq-section {
    padding: 70px 0;
    background: #ffffff;
}

.faq-two-columns-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.faq-accordion-item {
    border: 1px solid var(--color-border-light);
    border-radius: 10px;
    margin-bottom: 12px;
    background: #f8fafc;
    overflow: hidden;
}

.faq-question-btn {
    width: 100%;
    padding: 18px 20px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    font-size: 15px;
    font-weight: 700;
    color: var(--color-text-dark);
}

.faq-question-btn:hover {
    background: #f1f5f9;
}

.faq-toggle-icon {
    color: #94a3b8;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.faq-accordion-item.active .faq-toggle-icon {
    transform: rotate(45deg);
    color: #059669;
}

.faq-answer-body {
    display: none;
    padding: 0 20px 20px;
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
}

.faq-accordion-item.active .faq-answer-body {
    display: block;
}

/* ==========================================================================
   9. PACKAGES & FAST CHECKOUT FORM
   ========================================================================== */

.order-packages-section {
    padding: 80px 0;
    background: #f8fafc;
}

.order-packages-container {
    display: grid;
    grid-template-columns: 1.25fr 0.95fr;
    gap: 35px;
    align-items: start;
}

.packages-header h2 {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 900;
    color: var(--color-text-dark);
    margin-bottom: 4px;
    text-transform: uppercase;
}

.packages-header p {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 25px;
}

.packages-cards-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.pkg-card {
    background: #ffffff;
    border: 2px solid var(--color-border-light);
    border-radius: 14px;
    padding: 20px 14px;
    text-align: center;
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.2s ease;
}

.pkg-card:hover {
    border-color: #94a3b8;
    transform: translateY(-2px);
}

.pkg-card.selected {
    border-color: #059669;
    box-shadow: 0 0 0 1px #059669, 0 10px 25px rgba(5, 150, 105, 0.15);
    background: #f0fdf4;
}

.pkg-badge-top {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.5px;
    padding: 3px 8px;
    border-radius: 4px;
    margin-bottom: 8px;
    color: #ffffff;
}

.pkg-badge-top.most-popular {
    background: #059669;
}

.pkg-badge-top.best-price {
    background: #d97706;
}

.pkg-badge-spacer {
    height: 22px;
}

.pkg-period-title {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 900;
    color: var(--color-text-dark);
}

.pkg-sub-name {
    font-size: 12px;
    color: #64748b;
    margin-bottom: 10px;
}

.pkg-bottle-img-box {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.pkg-bottle-img-box img {
    max-height: 100%;
    object-fit: contain;
}

.pkg-price-row {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}

.pkg-price-row .price-val {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 900;
    color: var(--color-text-dark);
}

.pkg-price-row .price-currency {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-text-dark);
}

.price-unit {
    font-size: 11px;
    color: #64748b;
    margin-bottom: 8px;
}

.pkg-saving-label {
    font-size: 11px;
    font-weight: 800;
    color: #059669;
    margin-bottom: 12px;
}

.pkg-saving-spacer {
    height: 16px;
    margin-bottom: 12px;
}

.btn-select-pkg {
    width: 100%;
    padding: 9px 0;
    border-radius: 6px;
    background: #e2e8f0;
    color: #334155;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.pkg-card.selected .btn-select-pkg {
    background: #059669;
    color: #ffffff;
}

.order-guarantees-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 8px;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #334155;
}

.guarantee-item i {
    color: #059669;
    font-size: 16px;
}

.micro-note {
    font-size: 11px;
    color: #94a3b8;
    font-style: italic;
}

/* ==========================================================================
   CHECKOUT BOX CARD (Дясна тъмнозелена колона)
   ========================================================================== */

.checkout-box-card {
    background: #0f271f;
    border-radius: 16px;
    padding: 30px 25px;
    color: #ffffff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.checkout-card-header {
    text-align: center;
    margin-bottom: 20px;
}

.checkout-card-header h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.checkout-card-header p {
    font-size: 13px;
    color: #94a3b8;
}

.selected-package-summary-strip {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.summary-label {
    color: #94a3b8;
}

.summary-total-price {
    color: var(--color-gold);
    font-size: 16px;
    font-family: var(--font-heading);
}

/* Courier & Delivery Tabs */
.form-courier-tabs,
.form-delivery-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.courier-tab,
.delivery-tab {
    flex: 1;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    padding: 10px 0;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #cbd5e1;
    transition: all 0.2s ease;
}

.courier-tab input,
.delivery-tab input {
    display: none;
}

.courier-tab.active,
.delivery-tab.active {
    background: #059669;
    border-color: #10b981;
    color: #ffffff;
}

/* Inputs */
.form-field-group {
    margin-bottom: 12px;
    position: relative;
}

.checkout-input,
.checkout-select,
.checkout-textarea {
    width: 100%;
    padding: 12px 14px;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 14px;
    color: #0f172a;
    font-family: inherit;
    outline: none;
}

.checkout-input:focus,
.checkout-select:focus,
.checkout-textarea:focus {
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}

.autocomplete-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 100;
    box-shadow: var(--shadow-lg);
    display: none;
}

.autocomplete-item {
    padding: 10px 14px;
    font-size: 13px;
    color: #1e293b;
    cursor: pointer;
    border-bottom: 1px solid #f1f5f9;
}

.autocomplete-item:hover {
    background: #f0fdf4;
    color: #059669;
    font-weight: 600;
}

.btn-checkout-submit {
    width: 100%;
    padding: 16px 0;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 0.5px;
    border-radius: 8px;
    margin-top: 10px;
    margin-bottom: 15px;
    box-shadow: var(--shadow-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-checkout-submit:hover {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    transform: translateY(-1px);
}

.checkout-form-security-footer {
    text-align: center;
    font-size: 11px;
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* ==========================================================================
   10. TRUST STRIP SECTION
   ========================================================================== */

.trust-strip-section {
    background: #ffffff;
    border-top: 1px solid var(--color-border-light);
    border-bottom: 1px solid var(--color-border-light);
    padding: 30px 0;
}

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

.trust-strip-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.trust-strip-icon {
    font-size: 32px;
}

.trust-strip-icon.gold {
    color: #f59e0b;
}

.trust-strip-icon.usa {
    color: #2563eb;
}

.trust-strip-icon.gmp {
    color: #059669;
}

.trust-strip-text strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 800;
    color: var(--color-text-dark);
}

.trust-strip-text span {
    font-size: 11px;
    color: #64748b;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   11. FOOTER
   ========================================================================== */

.site-footer {
    background: #081712;
    color: #ffffff;
    padding-top: 60px;
}

.footer-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.footer-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 25px;
}

.footer-card h3 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.footer-card p {
    font-size: 13px;
    color: #94a3b8;
    margin-bottom: 20px;
    line-height: 1.5;
}

.btn-footer-faq {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #059669;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 800;
}

.btn-footer-faq:hover {
    background: #10b981;
}

.support-card {
    display: flex;
    gap: 20px;
    align-items: center;
}

.support-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #059669;
}

.support-hours {
    font-size: 11px;
    color: #10b981;
    display: block;
    margin-bottom: 10px;
}

.support-contacts a {
    display: block;
    font-size: 13px;
    color: #cbd5e1;
    margin-bottom: 4px;
}

.support-contacts a:hover {
    color: var(--color-gold);
}

.brand-card .footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.brand-slogan {
    font-size: 12px !important;
    margin-bottom: 15px !important;
}

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

.social-icons a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    font-size: 14px;
}

.social-icons a:hover {
    background: #059669;
    color: #ffffff;
}

.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #64748b;
}

.legal-links {
    display: flex;
    gap: 10px;
}

.legal-links a:hover {
    color: #ffffff;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS (Mobile & Tablet)
   ========================================================================== */

@media (max-width: 992px) {

    .site-nav,
    .header-cta-box {
        display: none;
    }

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

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-action-box {
        align-items: center;
    }

    .hero-pills-row {
        flex-wrap: wrap;
        justify-content: center;
    }

    .intro-problem-container {
        grid-template-columns: 1fr;
    }

    .benefits-cards-grid,
    .reviews-cards-grid,
    .ingredients-showcase-grid {
        grid-template-columns: 1fr;
    }

    .how-to-take-container {
        grid-template-columns: 1fr;
    }

    .faq-two-columns-grid {
        grid-template-columns: 1fr;
    }

    .order-packages-container {
        grid-template-columns: 1fr;
    }

    .footer-cards-grid {
        grid-template-columns: 1fr;
    }

    .trust-strip-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-bottom-container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .hero-main-title {
        font-size: 28px;
    }

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

    .packages-cards-row {
        grid-template-columns: 1fr;
    }
}