/* ==========================================================================
   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: #fff;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    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;
}

.hero-mobile-visual {
    display: none;
}

/* Хардкоднат кръгъл бадж 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;
}

.intro-problem-image {
    max-width: 420px;
    width: 100%;
}

.image-wrapper-rounded {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    max-height: 560px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.intro-img,
.how-img {
    width: 100%;
    height: 100%;
    max-height: 560px;
    object-fit: cover;
    display: block;
}

video.intro-img {
    height: 560px;
    max-height: 560px;
    width: 100%;
    object-fit: cover;
}

.section-title-dark {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 800;
    color: #0c2b1e;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.problem-item {
    background: transparent;
    padding: 0;
    border-radius: 0;
    text-align: center;
    border: none;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.problem-icon {
    font-size: 32px;
    color: #0c3826;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    transition: transform 0.2s ease;
}

.problem-item:hover .problem-icon {
    transform: translateY(-2px);
    color: #059669;
}

.problem-title {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    color: #0c221a;
    line-height: 1.25;
    display: block;
    text-align: center;
}

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

.intro-description p {
    margin-bottom: 14px;
}

.intro-description p:last-child {
    margin-bottom: 0;
}

.intro-description strong,
.intro-description b {
    color: #0f172a;
    font-weight: 700;
}

.intro-description ul,
.intro-description ol {
    margin-left: 20px;
    margin-bottom: 14px;
}

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

.benefits-section {
    padding: 60px 0;
    background: #f8fafc;
}

.section-title-wrap-center {
    text-align: center;
    margin-bottom: 35px;
}

.section-heading-center {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 800;
    text-align: center;
    color: #0c2b1e;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.title-green-line {
    width: 44px;
    height: 3px;
    background: #059669;
    margin: 8px auto 0;
    border-radius: 2px;
}

.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: 20px;
}

.benefit-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
    transition: all 0.2s ease;
}

.benefit-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.benefit-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    flex-shrink: 0;
    color: #0c3826;
    background: transparent;
}

.benefit-text-box h3 {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 800;
    color: #0c2b1e;
    margin-bottom: 4px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.benefit-text-box p {
    font-size: 13px;
    color: #475569;
    line-height: 1.35;
    margin: 0;
}

.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 60px;
    background: #f1f5f9;
    position: relative;
}

.reviews-wrapper {
    position: relative;
    margin-bottom: 25px;
}

.reviews-wrapper.reviews-carousel-active {
    padding: 0 45px;
}

.reviews-track-container {
    overflow: hidden;
    width: 100%;
}

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

.reviews-cards-grid.reviews-track {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    gap: 24px;
}

.reviews-track .review-card {
    flex: 0 0 calc((100% - 48px) / 3);
    min-width: 0;
}

.review-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 12px;
    padding: 26px 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: all 0.25s ease;
}

.review-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
    border-color: rgba(5, 150, 105, 0.3);
}

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

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

.review-author-info .author-name {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 800;
    color: #0c221a;
    margin-bottom: 2px;
}

.review-author-info .author-meta {
    font-size: 11.5px;
    color: #94a3b8;
    font-weight: 500;
}

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

.review-text {
    font-size: 13.5px;
    color: #334155;
    line-height: 1.5;
    font-style: italic;
    margin: 0;
}

/* Carousel Arrows */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: #0c2b1e;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.carousel-arrow:hover {
    background: #059669;
    color: #ffffff;
    border-color: #059669;
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

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

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.2s ease;
}

.carousel-dot.active {
    background: #059669;
    width: 22px;
    border-radius: 4px;
}

/* Bottom summary strip */
.reviews-summary-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #f59e0b;
    display: flex;
    gap: 2px;
}

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

/* ==========================================================================
   6. FORMULA / INGREDIENTS SECTION (Clean Minimalist Horizontal Layout)
   ========================================================================== */

.formula-section {
    padding: 60px 0 50px;
    background: #f8fafc;
    position: relative;
}

.ingredients-wrapper {
    position: relative;
    margin-bottom: 25px;
}

.ingredients-wrapper.ingredients-carousel-active {
    padding: 0 45px;
}

.ingredients-track-container {
    overflow: hidden;
    width: 100%;
}

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

.ingredients-showcase-grid.ingredients-track {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    gap: 35px;
}

.ingredients-track .formula-ingredient-card {
    flex: 0 0 calc((100% - 70px) / 3);
    min-width: 0;
}

.formula-ingredient-card {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    text-align: left;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 18px;
    box-shadow: none;
    transition: transform 0.2s ease;
}

.formula-ingredient-card:hover {
    transform: translateY(-2px);
    box-shadow: none;
}

.ingredient-img-wrapper {
    width: 88px !important;
    height: 88px !important;
    min-width: 88px !important;
    min-height: 88px !important;
    border-radius: 50% !important;
    overflow: hidden !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    margin-bottom: 0 !important;
    background: #ffffff !important;
    border: 3px solid #ffffff !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12) !important;
}

.formula-ing-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 50% !important;
    display: block !important;
}

.ingredient-text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.formula-ing-title {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 800;
    color: #0c2b1e;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    line-height: 1.2;
}

.formula-ing-desc {
    font-size: 12.5px;
    color: #475569;
    line-height: 1.35;
    margin-bottom: 8px;
}

.dosage-badge-wrap {
    margin-top: 2px;
}

.formula-dosage-badge {
    display: inline-block;
    background: #ecfdf5;
    color: #059669;
    border: 1px solid #d1fae5;
    font-size: 11.5px;
    font-weight: 700;
    padding: 3px 14px;
    border-radius: 50px;
    letter-spacing: 0.2px;
}

@media (max-width: 992px) {
    .ingredients-track .formula-ingredient-card {
        flex: 0 0 calc((100% - 25px) / 2);
    }
}

@media (max-width: 600px) {
    .ingredients-wrapper.ingredients-carousel-active {
        padding: 0 35px;
    }

    .ingredients-track .formula-ingredient-card {
        flex: 0 0 100%;
    }
}

/* ==========================================================================
   7. HOW TO TAKE SECTION (1:1 Clean Design with Left Card & Right Photo)
   ========================================================================== */

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

.how-to-take-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: stretch;
}

/* Left Card */
.how-left-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 45px 35px 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.how-header-center {
    text-align: center;
    margin-bottom: 30px;
}

.how-header-center .section-title-dark {
    font-size: 21px;
    font-weight: 800;
    color: #0c2b1e;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.how-header-center .section-subtitle-green {
    color: #059669;
    font-weight: 700;
    font-size: 13.5px;
    margin-bottom: 0;
}

.how-steps-chain {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 35px;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.step-icon-circle {
    width: 66px;
    height: 66px;
    border-radius: 50%;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    color: #0c3826;
    transition: transform 0.2s ease;
}

.step-item:hover .step-icon-circle {
    transform: translateY(-2px);
    background: #e2e8f0;
}

.step-icon-circle svg {
    width: 28px;
    height: 28px;
    stroke: #0c3826;
    stroke-width: 2;
    fill: none;
}

.step-icon-circle i {
    font-size: 24px;
    color: #0c3826;
}

.step-label {
    font-size: 12.5px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.3;
    text-align: center;
}

.step-arrow-line {
    color: #0c3826;
    font-size: 18px;
    flex-shrink: 0;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.how-instruction-text {
    font-size: 13px;
    color: #475569;
    line-height: 1.6;
    margin-top: auto;
    text-align: left;
}

/* Right Media Block */
.how-right-media {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    background: #ffffff;
    height: 100%;
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.how-right-media img,
.how-right-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 900px) {
    .how-to-take-container {
        grid-template-columns: 1fr;
    }

    .how-right-media {
        min-height: 280px;
    }
}

/* ==========================================================================
   8. FAQ ACCORDION SECTION (1:1 Clean Design)
   ========================================================================== */

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

.faq-section .section-heading-center {
    font-size: 22px;
    font-weight: 900;
    color: #0c2b1e;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 35px;
    text-align: center;
}

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

.faq-accordion-item {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 14px;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    overflow: hidden;
    transition: all 0.2s ease;
}

.faq-accordion-item:hover {
    border-color: #cbd5e1;
}

.faq-accordion-item.active {
    border-color: #059669;
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.06);
}

.faq-question-btn {
    width: 100%;
    padding: 16px 20px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    font-size: 14.5px;
    font-weight: 800;
    color: #0c2b1e;
    border: none;
    cursor: pointer;
    gap: 15px;
}

.faq-toggle-icon {
    color: #94a3b8;
    font-size: 16px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s ease;
    flex-shrink: 0;
}

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

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

.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(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-bottom: 30px;
}

.pkg-card {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 16px;
    padding: 22px 14px 18px;
    text-align: center;
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.pkg-card:hover {
    border-color: #cbd5e1;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

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

.pkg-badge-top {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.3px;
    padding: 4px 10px;
    border-radius: 6px;
    margin-bottom: 10px;
    color: #ffffff;
    text-transform: uppercase;
}

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

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

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

.pkg-period-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 900;
    color: #0c2b1e;
    margin-bottom: 2px;
}

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

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

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

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

.pkg-price-row .price-val {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 900;
    color: #0c2b1e;
}

.pkg-price-row .price-currency {
    font-size: 14px;
    font-weight: 800;
    color: #0c2b1e;
}

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

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

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

.btn-select-pkg {
    width: 100%;
    padding: 10px 0;
    border-radius: 8px;
    background: #e2e8f0;
    color: #334155;
    font-size: 12.5px;
    font-weight: 800;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.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;
}

/* ==========================================================================
   PACKAGES PHONE ORDER CTA (Под пакетите)
   ========================================================================== */

.packages-phone-order-box {
    margin-top: 22px;
}

.btn-phone-order-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: #ffffff;
    text-decoration: none;
    padding: 16px 26px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(5, 150, 105, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-phone-order-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(5, 150, 105, 0.45);
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
}

.phone-order-icon-wrap {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    color: #ffffff;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    animation: phonePulse 2s infinite;
}

.phone-order-text-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.phone-order-kicker {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fef08a;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.phone-order-main {
    font-size: 17px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.3px;
}

.phone-order-main strong {
    color: #ffffff;
    margin-left: 4px;
    font-weight: 900;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.4);
}

@keyframes phonePulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
    }
    70% {
        transform: scale(1.08);
        box-shadow: 0 0 0 8px rgba(255, 255, 255, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/* ==========================================================================
   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 #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    padding: 32px 0;
}

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

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

.trust-strip-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    flex-shrink: 0;
}

.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: 15px;
    font-weight: 900;
    color: #0c2b1e;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    line-height: 1.2;
}

.trust-strip-text span {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #64748b;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-top: 3px;
    line-height: 1.2;
}

/* ==========================================================================
   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;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.legal-links a {
    color: #64748b;
    white-space: nowrap;
    transition: color 0.2s;
}

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

.legal-links span {
    color: rgba(255, 255, 255, 0.15);
}

/* ==========================================================================
   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-visual-space {
        display: none !important;
    }

    .hero-section {
        background-position: center top !important;
        padding-top: 110px !important;
        padding-bottom: 50px !important;
    }

    .hero-mobile-visual {
        display: flex !important;
        justify-content: center;
        align-items: center;
        margin: 30px auto 10px;
        width: 100%;
    }

    .hero-mobile-bottle-stage {
        position: relative;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .hero-mobile-glow {
        position: absolute;
        width: 220px;
        height: 220px;
        background: radial-gradient(circle, rgba(16, 185, 129, 0.3) 0%, rgba(0, 0, 0, 0) 70%);
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        pointer-events: none;
    }

    .hero-mobile-bottle-img {
        width: 100%;
        height: auto;
        object-fit: contain;
        filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.8));
        position: relative;
        z-index: 2;
    }

    .mobile-circle-badge {
        position: absolute !important;
        top: -15px !important;
        right: -10px !important;
        z-index: 5 !important;
        transform: scale(0.85) !important;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.8) !important;
    }

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

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

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

    .intro-problem-image {
        max-width: 360px;
        margin: 0 auto;
    }

    .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: 14px;
        text-align: center;
    }

    .legal-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 6px 14px;
    }

    .legal-links a {
        white-space: nowrap;
    }

    .legal-links span {
        display: none;
    }
}

@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;
    }
}

/* ==========================================================================
   MOBILE FIXED BOTTOM PHONE BAR
   ========================================================================== */

.mobile-fixed-phone-bar {
    display: none;
}

@media (max-width: 768px) {
    body {
        padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px)) !important;
    }

    .packages-phone-order-box {
        display: none;
    }

    .mobile-fixed-phone-bar {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        background: rgba(10, 28, 21, 0.95);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border-top: 1px solid rgba(212, 163, 89, 0.35);
        box-shadow: 0 -6px 25px rgba(0, 0, 0, 0.4);
        padding: 8px 12px calc(8px + env(safe-area-inset-bottom, 0px));
        z-index: 9999;
    }

    .mobile-phone-btn {
        display: flex;
        align-items: center;
        gap: 12px;
        background: linear-gradient(135deg, #059669 0%, #047857 100%);
        color: #ffffff;
        text-decoration: none;
        padding: 9px 14px;
        border-radius: 12px;
        box-shadow: 0 4px 14px rgba(5, 150, 105, 0.35);
        border: 1px solid rgba(255, 255, 255, 0.18);
        transition: transform 0.2s ease;
    }

    .mobile-phone-btn:active {
        transform: scale(0.98);
    }

    .mobile-phone-icon-wrap {
        width: 36px;
        height: 36px;
        background: rgba(255, 255, 255, 0.22);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 15px;
        color: #ffffff;
        flex-shrink: 0;
        animation: phonePulse 2s infinite;
    }

    .mobile-phone-text-wrap {
        display: flex;
        flex-direction: column;
        flex: 1;
        min-width: 0;
    }

    .mobile-phone-kicker {
        font-size: 10px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.8px;
        color: #fef08a;
        line-height: 1.2;
        display: inline-flex;
        align-items: center;
        gap: 4px;
    }

    .mobile-phone-title {
        font-size: 13px;
        font-weight: 700;
        color: #ffffff;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        line-height: 1.3;
    }

    .mobile-phone-title strong {
        color: #ffffff;
        font-weight: 800;
        margin-left: 3px;
    }

    .mobile-phone-arrow {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.8);
        flex-shrink: 0;
    }
}