        /* Landing Page Specific Styles - General selector for all landing pages */
        [class*="-landing-page"] {
            padding-top: 0px !important;
            padding-bottom: 0px !important;
        }

        /* Remove content-area padding for all landing pages */
        [class*="-landing-page"] .content-area {
            padding-top: 0 !important;
        }

        /* Hide default theme breadcrumb on landing pages */
        .sbomart-breadcrumb-wrapper:not(.lp-custom-breadcrumb) {
            display: none !important;
        }

        /* Breadcrumb styling for landing pages - only for our custom breadcrumb */
        .sbomart-breadcrumb-wrapper.lp-custom-breadcrumb {
            display: block !important;
            visibility: visible !important;
            opacity: 1 !important;
            padding: 1rem 0 !important;
            margin: 0 !important;
            background: #ffffff !important;
            position: relative !important;
            width: 100% !important;
        }

        .sbomart-breadcrumb-wrapper.lp-custom-breadcrumb .container {
            display: flex !important;
        }

        .sbomart-breadcrumb-wrapper.lp-custom-breadcrumb .breadcrumb-area {
            font-size: 0.875rem;
            display: block !important;
        }

        .sbomart-breadcrumb-wrapper.lp-custom-breadcrumb .rtsb-breadcrumb,
        .sbomart-breadcrumb-wrapper.lp-custom-breadcrumb .woocommerce-breadcrumb {
            display: block !important;
        }

        .sbomart-breadcrumb-wrapper.lp-custom-breadcrumb .woocommerce-breadcrumb a {
            color: #666;
            text-decoration: none;
            transition: color 0.2s;
        }

        .sbomart-breadcrumb-wrapper.lp-custom-breadcrumb .woocommerce-breadcrumb a:hover {
            color: var(--primary-green);
        }

        .sbomart-breadcrumb-wrapper.lp-custom-breadcrumb .breadcrumb-separator {
            margin: 0 8px;
            color: #999;
        }

        :root {
            --primary-green: #2d5016;
            --primary-light: #3d6b1f;
            --secondary-orange: #FF6B35;
            --bg-cream: #FAF8F3;
            --bg-light-green: #F0F4EC;
            --text-dark: #1a1a1a;
            --text-gray: #4a4a4a;
            --white: #ffffff;
        }

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

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background: var(--white);
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        /* ===================================== */
        /* HERO SECTION - SINGLE PRODUCT FOCUS */
        /* ===================================== */
        .hero-single {
            background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-light-green) 100%);
            padding: 1rem 0 3rem;
            position: relative;
            overflow: hidden;
        }

        .hero-single::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(45,80,22,0.05) 0%, transparent 70%);
            border-radius: 50%;
        }

        .hero-content-wrapper {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
            align-items: center;
        }

        @media (min-width: 768px) {
            .hero-content-wrapper {
                grid-template-columns: 1fr 1fr;
                gap: 4rem;
            }
        }

        .hero-text {
            z-index: 2;
            order: 2; /* On mobile, text appears second */
        }

        .hero-product {
            order: 1; /* On mobile, product image appears first */
        }

        @media (min-width: 768px) {
            .hero-text {
                order: 0; /* Reset order on desktop */
            }

            .hero-product {
                order: 0; /* Reset order on desktop */
            }
        }

        .hero-eyebrow {
            display: inline-block;
            background: var(--primary-green);
            color: var(--white);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.5px;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
        }

        .hero-headline {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--text-dark);
            line-height: 1.2;
            margin-bottom: 1rem;
        }

        .hero-headline .highlight {
            color: var(--secondary-orange);
            display: block;
        }

        @media (min-width: 768px) {
            .hero-headline {
                font-size: 3.5rem;
            }
        }

        .hero-subheadline {
            font-size: 1.125rem;
            color: var(--text-gray);
            line-height: 1.7;
            margin-bottom: 2rem;
        }

        .hero-benefits {
            list-style: none;
            margin: 2rem 0;
            display: grid;
            grid-template-columns: 1fr;
            gap: 0.75rem;
        }

        @media (min-width: 768px) {
            .hero-benefits {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .hero-benefits li {
            font-size: 1rem;
            color: var(--text-dark);
            font-weight: 600;
            padding-left: 0;
        }

        .hero-cta-wrapper {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 2rem;
        }

        .hero-cta-wrapper .btn {
            width: 100%;
            max-width: 100%;
        }

        @media (min-width: 768px) {
            .hero-cta-wrapper {
                flex-direction: row;
                gap: 1.5rem;
            }

            .hero-cta-wrapper .btn {
                width: auto;
                flex: 1;
            }
        }

        .btn {
            display: inline-block;
            padding: 0.875rem 1.5rem;
            border-radius: 50px;
            font-size: 0.9375rem;
            font-weight: 700;
            text-decoration: none;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
            line-height: 1.4;
            word-wrap: break-word;
            white-space: normal;
        }

        @media (min-width: 480px) {
            .btn {
                padding: 1rem 1.75rem;
                font-size: 1rem;
            }
        }

        @media (min-width: 768px) {
            .btn {
                padding: 1rem 2rem;
                font-size: 1.0625rem;
            }
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary-green), var(--primary-light));
            color: var(--white);
            box-shadow: 0 4px 15px rgba(45, 80, 22, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(45, 80, 22, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: var(--primary-green);
            border: 2px solid var(--primary-green);
        }

        .btn-secondary:hover {
            background: var(--primary-green);
            color: var(--white);
        }

        .hero-trust-badges {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            margin-top: 2rem;
        }

        @media (min-width: 768px) {
            .hero-trust-badges {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .trust-badge {
            text-align: center;
            font-size: 0.875rem;
            color: var(--text-gray);
            font-weight: 600;
        }

        .hero-product {
            position: relative;
            z-index: 2;
        }

        .product-showcase {
            background: var(--white);
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            text-align: center;
        }

        .product-image-main {
            width: 100%;
            max-width: 400px;
            height: auto;
            margin: 0 auto 1.5rem;
            display: block;
            transition: transform 0.3s ease;
        }

        .product-image-link:hover .product-image-main {
            transform: scale(1.05);
        }

        .product-price-box {
            background: var(--bg-light-green);
            padding: 1.5rem;
            border-radius: 12px;
            margin-bottom: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .product-price-box:hover {
            background: #e8f0e0;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(45, 80, 22, 0.15);
        }

        .product-price-label {
            font-size: 0.875rem;
            color: var(--text-gray);
            margin-bottom: 0.5rem;
        }

        .product-price-current {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-green);
        }

        .product-price-old {
            font-size: 1.25rem;
            color: var(--text-gray);
            text-decoration: line-through;
            margin-left: 0.5rem;
        }

        .product-save {
            display: inline-block;
            background: var(--secondary-orange);
            color: var(--white);
            padding: 0.25rem 0.75rem;
            border-radius: 15px;
            font-size: 0.875rem;
            font-weight: 700;
            margin-top: 0.5rem;
        }

        .product-rating {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }

        .product-rating.scroll-to-reviews {
            cursor: pointer;
            transition: opacity 0.2s ease;
        }

        .product-rating.scroll-to-reviews:hover {
            opacity: 0.8;
        }

        .stars {
            color: #FFD700;
            font-size: 1.25rem;
        }

        .rating-text {
            font-size: 0.9375rem;
            color: var(--text-gray);
        }

        .product-stock {
            color: var(--primary-green);
            font-weight: 600;
            margin-bottom: 1rem;
        }

        /* ===================================== */
        /* MARKETING SECTIONS */
        /* ===================================== */
        .section {
            padding: 4rem 0;
        }

        .section-alt {
            background: var(--bg-cream);
        }

        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 2.25rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 1rem;
            line-height: 1.3;
        }

        .section-title .highlight {
            color: var(--secondary-orange);
        }

        .section-subtitle {
            font-size: 1.125rem;
            color: var(--text-gray);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.7;
        }

        /* Problem Section */
        .problem-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
            max-width: 800px;
            margin: 0 auto;
        }

        .problem-item {
            background: var(--white);
            padding: 1.5rem;
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            display: flex;
            gap: 1rem;
        }

        .problem-icon {
            font-size: 2rem;
            flex-shrink: 0;
        }

        .problem-text {
            font-size: 1.0625rem;
            color: var(--text-gray);
            line-height: 1.6;
        }

        .problem-text strong {
            color: var(--text-dark);
        }

        .empathy-box {
            background: linear-gradient(135deg, var(--primary-green), var(--primary-light));
            color: var(--white);
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            margin-top: 2rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .empathy-text {
            font-size: 1.125rem;
            line-height: 1.7;
            font-weight: 500;
        }

        /* Solution Grid */
        .solution-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        @media (min-width: 768px) {
            .solution-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .solution-card {
            background: var(--white);
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            transition: all 0.3s;
        }

        .section-alt .solution-card {
            background: var(--bg-cream);
        }

        .solution-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.12);
        }

        .solution-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .solution-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 0.75rem;
        }

        .solution-text {
            font-size: 0.9375rem;
            color: var(--text-gray);
            line-height: 1.7;
        }

        /* Ingredients Section */
        .ingredients-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        @media (min-width: 768px) {
            .ingredients-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .ingredient-card {
            background: var(--white);
            padding: 1.5rem;
            border-radius: 12px;
            border-left: 4px solid var(--primary-green);
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        .ingredient-name {
            font-size: 1.125rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 0.5rem;
        }

        .ingredient-benefit {
            font-size: 0.9375rem;
            color: var(--text-gray);
            line-height: 1.6;
        }

        /* How to Use Section */
        .how-to-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            max-width: 900px;
            margin: 0 auto;
        }

        @media (min-width: 768px) {
            .how-to-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .how-to-step {
            text-align: center;
            position: relative;
        }

        .step-number {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-green), var(--primary-light));
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0 auto 1rem;
        }

        .step-title {
            font-size: 1.125rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 0.5rem;
        }

        .step-description {
            font-size: 0.9375rem;
            color: var(--text-gray);
            line-height: 1.6;
        }

        /* Before After Section */
        .before-after-section {
            padding: 60px 0;
            background: linear-gradient(135deg, #f8fdf5 0%, #ffffff 100%);
        }

        .before-after-header {
            text-align: center;
            margin-bottom: 2.5rem;
        }

        .before-after-title {
            font-size: 1.75rem;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 1rem;
            line-height: 1.3;
        }

        .before-after-subtitle {
            font-size: 1.125rem;
            color: var(--text-gray);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .results-gallery {
            max-width: 700px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .result-item {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(45, 80, 22, 0.12);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .result-item:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(45, 80, 22, 0.18);
        }

        .result-item img {
            width: 100%;
            height: auto;
            display: block;
        }

        @media (min-width: 768px) {
            .results-gallery {
                max-width: 600px;
            }
        }

        .result-caption {
            padding: 1.5rem;
            background: var(--bg-light-green);
            text-align: center;
        }

        .result-caption p {
            margin: 0;
            font-size: 0.9375rem;
            color: var(--text-dark);
            line-height: 1.6;
        }

        .result-caption strong {
            color: var(--primary-green);
            font-weight: 700;
        }

        .results-cta {
            text-align: center;
            margin-top: 2.5rem;
        }

        .treatment-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: linear-gradient(135deg, var(--primary-green), var(--primary-light));
            color: white;
            padding: 1rem 2rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            box-shadow: 0 4px 12px rgba(45, 80, 22, 0.3);
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .treatment-badge:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(45, 80, 22, 0.4);
        }

        @media (max-width: 640px) {
            .before-after-section {
                padding: 40px 0;
            }

            .before-after-title {
                font-size: 1.5rem;
            }

            .before-after-subtitle {
                font-size: 1rem;
                padding: 0 1rem;
            }

            .results-gallery {
                gap: 1.5rem;
            }

            .result-caption {
                padding: 1rem;
            }

            .result-caption p {
                font-size: 0.875rem;
            }

            .treatment-badge {
                padding: 0.875rem 1.5rem;
                font-size: 0.9375rem;
            }
        }

        /* Add to Cart Modal */
        .cart-modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 999999;
            justify-content: center;
            align-items: center;
            animation: fadeIn 0.3s ease;
        }

        .cart-modal-overlay.show {
            display: flex;
        }

        .cart-modal {
            background: white;
            border-radius: 20px;
            padding: 3rem 2rem;
            max-width: 500px;
            width: 90%;
            text-align: center;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            animation: slideUp 0.4s ease;
            position: relative;
        }

        .cart-modal-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: none;
            border: none;
            font-size: 2rem;
            color: #999;
            cursor: pointer;
            line-height: 1;
            padding: 0;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .cart-modal-close:hover {
            background: #f0f0f0;
            color: #333;
        }

        .cart-modal-icon {
            font-size: 4rem;
            margin-bottom: 1rem;
            animation: scaleIn 0.5s ease;
        }

        .cart-modal-title {
            font-size: 1.75rem;
            font-weight: 800;
            color: var(--primary-green);
            margin-bottom: 1rem;
        }

        .cart-modal-message {
            font-size: 1.125rem;
            color: var(--text-dark);
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .cart-modal-buttons {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .cart-modal-btn {
            padding: 1rem 2rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .cart-modal-btn.primary {
            background: linear-gradient(135deg, var(--primary-green), var(--primary-light));
            color: white;
            box-shadow: 0 4px 12px rgba(45, 80, 22, 0.3);
        }

        .cart-modal-btn.primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(45, 80, 22, 0.4);
        }

        .cart-modal-btn.secondary {
            background: white;
            color: var(--primary-green);
            border: 2px solid var(--primary-green);
        }

        .cart-modal-btn.secondary:hover {
            background: var(--bg-light-green);
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideUp {
            from {
                transform: translateY(50px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

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

        @media (max-width: 640px) {
            .cart-modal {
                padding: 2rem 1.5rem;
            }

            .cart-modal-title {
                font-size: 1.5rem;
            }

            .cart-modal-message {
                font-size: 1rem;
            }

            .cart-modal-icon {
                font-size: 3rem;
            }
        }

        /* Reviews Section - Google Style */
        .reviews-carousel-section {
            padding: 60px 0;
            background: var(--bg-light-green);
        }

        .bio-reviews-widget {
            max-width: 1200px;
            margin: 0 auto;
        }

        .bio-widget-container {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        }

        .bio-reviews-header {
            text-align: center;
            padding-bottom: 40px;
            border-bottom: 2px solid #f0f0f0;
            margin-bottom: 40px;
        }

        .bio-rating-text {
            margin-bottom: 12px;
        }

        .bio-rating-large {
            font-size: 2rem;
            font-weight: 800;
            color: #2c3e50;
            letter-spacing: 2px;
        }

        .bio-stars-large {
            display: flex;
            justify-content: center;
            gap: 4px;
            margin-bottom: 12px;
        }

        .bio-stars-large img {
            width: 28px;
            height: 28px;
        }

        .bio-logo-wrapper {
            display: flex;
            justify-content: center;
        }

        .bio-logo-wrapper img {
            width: 110px;
            height: auto;
        }

        .bio-reviews-container {
            position: relative;
            overflow: visible;
            touch-action: pan-y pinch-zoom;
        }

        .bio-reviews-wrapper {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            padding: 0 0 30px 0;
            cursor: grab;
            overflow: hidden;
        }

        .bio-reviews-wrapper:active {
            cursor: grabbing;
        }

        .bio-review-item {
            background: #fafafa;
            border-radius: 12px;
            padding: 20px;
            min-height: 200px;
            display: flex;
            flex-direction: column;
            transition: all 0.3s ease, transform 0.1s ease;
            border: 1px solid #eee;
            will-change: transform;
        }

        .bio-review-item:hover {
            background: white;
            box-shadow: 0 4px 15px rgba(39, 174, 96, 0.1);
            transform: translateY(-2px);
            border-color: #27ae60;
        }

        .bio-review-inner {
            display: flex;
            flex-direction: column;
            height: 100%;
        }

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

        .bio-platform-icon {
            position: absolute;
            top: -5px;
            right: 0;
        }

        .bio-platform-icon img {
            width: 20px;
            height: 20px;
        }

        .bio-profile-img {
            flex-shrink: 0;
        }

        .bio-profile-img img {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            object-fit: cover;
        }

        .bio-profile-details {
            flex: 1;
            min-width: 0;
        }

        .bio-reviewer-name {
            font-weight: 700;
            color: #2c3e50;
            font-size: 0.95rem;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .bio-review-date {
            font-size: 0.85rem;
            color: #95a5a6;
        }

        .bio-stars {
            display: flex;
            align-items: center;
            gap: 2px;
            margin-bottom: 12px;
            position: relative;
        }

        .bio-stars img {
            width: 16px;
            height: 16px;
        }

        .bio-verified-badge {
            display: inline-block;
            width: 16px;
            height: 16px;
            background: #4285f4;
            border-radius: 50%;
            margin-left: 6px;
            position: relative;
            cursor: help;
        }

        .bio-verified-badge::after {
            content: '✓';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            font-size: 10px;
            font-weight: bold;
        }

        .bio-verified-tooltip {
            display: none;
            position: absolute;
            bottom: 125%;
            left: 50%;
            transform: translateX(-50%);
            background: #2c3e50;
            color: white;
            padding: 8px 12px;
            border-radius: 6px;
            font-size: 0.75rem;
            white-space: nowrap;
            z-index: 10;
            pointer-events: none;
        }

        .bio-verified-tooltip::after {
            content: '';
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            border: 5px solid transparent;
            border-top-color: #2c3e50;
        }

        .bio-verified-badge:hover .bio-verified-tooltip {
            display: block;
        }

        .bio-review-content {
            font-size: 0.9rem;
            line-height: 1.6;
            color: #5a6c7d;
            flex: 1;
            margin-bottom: 8px;
        }

        .bio-review-product {
            font-size: 0.75rem;
            font-style: italic;
            color: #95a5a6;
            margin-top: 8px;
            padding-top: 8px;
            border-top: 1px solid #f0f0f0;
        }

        .bio-controls {
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            transform: translateY(-50%);
            display: flex;
            justify-content: space-between;
            pointer-events: none;
            z-index: 5;
        }

        .bio-prev,
        .bio-next {
            width: 50px;
            height: 50px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: #27ae60;
            cursor: pointer;
            box-shadow: 0 2px 10px rgba(0,0,0,0.15);
            pointer-events: auto;
            transition: all 0.3s ease;
            font-weight: 300;
        }

        .bio-prev {
            margin-left: -25px;
        }

        .bio-next {
            margin-right: -25px;
        }

        .bio-prev:hover,
        .bio-next:hover {
            background: #27ae60;
            color: white;
            transform: scale(1.1);
        }

        .bio-controls-line {
            width: 100%;
            height: 2px;
            background: #e0e0e0;
            position: relative;
            margin-top: 20px;
        }

        .bio-progress-dot {
            position: absolute;
            top: 50%;
            left: 0;
            transform: translateY(-50%);
            width: 60px;
            height: 4px;
            background: #27ae60;
            border-radius: 2px;
            transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        @media (max-width: 768px) {
            .reviews-carousel-section {
                padding: 40px 15px;
            }

            .bio-widget-container {
                padding: 25px;
            }

            .bio-reviews-header {
                padding-bottom: 25px;
                margin-bottom: 25px;
            }

            .bio-rating-large {
                font-size: 1.5rem;
            }

            .bio-stars-large img {
                width: 22px;
                height: 22px;
            }

            .bio-reviews-wrapper {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }

            .bio-review-item {
                padding: 15px;
                min-height: 180px;
            }

            .bio-prev,
            .bio-next {
                width: 40px;
                height: 40px;
                font-size: 1.5rem;
            }

            .bio-prev {
                margin-left: -20px;
            }

            .bio-next {
                margin-right: -20px;
            }
        }

        @media (max-width: 480px) {
            .bio-reviews-wrapper {
                grid-template-columns: 1fr;
            }
        }

        /* FAQ Section */
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--white);
            border-radius: 12px;
            margin-bottom: 1rem;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            overflow: hidden;
        }

        .faq-question {
            padding: 1.25rem 1.5rem;
            font-size: 1.0625rem;
            font-weight: 600;
            color: var(--text-dark);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s;
        }

        .faq-question:hover {
            background: var(--bg-light-green);
            color: var(--primary-green);
        }

        .faq-toggle {
            font-size: 1.5rem;
            font-weight: 400;
            color: var(--primary-green);
            transition: transform 0.3s;
        }

        .faq-item.active .faq-toggle {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
            transition: max-height 0.5s ease-in;
        }

        .faq-answer-content {
            padding: 0 1.5rem 1.25rem 1.5rem;
            font-size: 0.9375rem;
            color: var(--text-gray);
            line-height: 1.7;
        }

        /* CTA Section */
        .cta-final {
            background: linear-gradient(135deg, var(--primary-green), var(--primary-light));
            color: var(--white);
            padding: 4rem 0;
            text-align: center;
        }

        .cta-final .section-title,
        .cta-final .section-subtitle {
            color: var(--white);
        }

        .cta-final .btn-primary {
            background: var(--white);
            color: var(--primary-green);
        }

        .cta-final .btn-primary:hover {
            background: var(--bg-cream);
        }

        .guarantee-text {
            margin-top: 1.5rem;
            font-size: 0.9375rem;
            opacity: 0.9;
        }

        /* Final CTA Button - 2 Lines on Mobile */
        .btn-cta-final {
            font-size: 0.9375rem;
            padding: 1rem 1.5rem;
            display: inline-flex;
            flex-direction: column;
            gap: 0.25rem;
            line-height: 1.3;
            width: 100%;
            max-width: 100%;
            text-align: center;
        }

        .btn-cta-final .btn-text {
            font-weight: 700;
            word-wrap: break-word;
            white-space: normal;
        }

        .btn-cta-final .btn-price {
            font-size: 1.25rem;
            font-weight: 800;
        }

        @media (min-width: 480px) {
            .btn-cta-final {
                font-size: 1rem;
                padding: 1.125rem 2rem;
            }

            .btn-cta-final .btn-price {
                font-size: 1.375rem;
            }
        }

        @media (min-width: 768px) {
            .btn-cta-final {
                font-size: 1.25rem;
                padding: 1.25rem 3rem;
                flex-direction: row;
                gap: 0.5rem;
                width: auto;
            }

            .btn-cta-final .btn-text::after {
                content: ' - ';
            }

            .btn-cta-final .btn-price {
                font-size: 1.25rem;
                font-weight: 700;
            }
        }

        /* Doctor Section */
        .doctor-section {
            background: var(--bg-light-green);
            padding: 3rem 2rem;
            border-radius: 15px;
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            align-items: center;
            max-width: 900px;
            margin: 0 auto;
        }

        @media (min-width: 768px) {
            .doctor-section {
                grid-template-columns: 200px 1fr;
            }
        }

        .doctor-image-placeholder {
            width: 150px;
            height: 150px;
            background: var(--primary-green);
            border-radius: 50%;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            color: var(--white);
        }

        .doctor-image {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            margin: 0 auto;
            display: block;
            object-fit: cover;
            border: 4px solid var(--primary-green);
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
        }

        @media (max-width: 767px) {
            .doctor-image {
                width: 150px;
                height: 150px;
            }
        }

        .doctor-info h3 {
            font-size: 1.5rem;
            color: var(--text-dark);
            margin-bottom: 0.5rem;
        }

        .doctor-credentials {
            font-size: 0.9375rem;
            color: var(--text-gray);
            margin-bottom: 1rem;
        }

        .doctor-quote {
            font-size: 1rem;
            color: var(--text-gray);
            font-style: italic;
            line-height: 1.7;
        }

        /* Related Products Section */
        .related-products-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            margin-top: 2rem;
        }

        @media (min-width: 768px) {
            .related-products-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .related-product-card {
            background: var(--white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
        }

        .related-product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.15);
        }

        .related-product-link {
            text-decoration: none;
            color: inherit;
            display: block;
        }

        .related-product-image-wrapper {
            width: 100%;
            height: 400px;
            overflow: hidden;
            background: var(--bg-light-green);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        @media (max-width: 767px) {
            .related-product-image-wrapper {
                height: 350px;
            }
        }

        .related-product-image {
            width: 100%;
            height: 100%;
            object-fit: contain;
            padding: 1rem;
            transition: transform 0.3s ease;
        }

        .related-product-card:hover .related-product-image {
            transform: scale(1.1);
        }

        .related-product-info {
            padding: 1.5rem;
        }

        .related-product-title {
            font-size: 1.0625rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 0.75rem;
            line-height: 1.4;
            min-height: 2.8em;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }

        .related-product-rating {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 0.75rem;
        }

        .related-product-rating .stars {
            color: #FFD700;
            font-size: 0.9375rem;
        }

        .related-product-rating .rating-count {
            font-size: 0.875rem;
            color: var(--text-gray);
        }

        .related-product-price {
            margin-bottom: 1rem;
        }

        .related-product-price .price {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-green);
        }

        .related-product-price .price-old {
            font-size: 1rem;
            color: var(--text-gray);
            text-decoration: line-through;
            margin-left: 0.5rem;
        }

        .related-product-cta {
            padding-top: 0.75rem;
            border-top: 1px solid var(--bg-light-green);
        }

        .btn-view {
            display: inline-block;
            color: var(--primary-green);
            font-weight: 600;
            font-size: 0.9375rem;
            transition: all 0.3s ease;
        }

        .related-product-card:hover .btn-view {
            color: var(--secondary-orange);
            transform: translateX(5px);
        }

        /* Mobile Responsive */
        @media (max-width: 767px) {
            .hero-headline {
                font-size: 2rem;
            }

            .section-title {
                font-size: 1.75rem;
            }

            .product-price-current {
                font-size: 2rem;
            }
        }

        /* Trust Info Section */
        .trust-info-section {
            max-width: 800px;
            margin: 40px auto;
            padding: 30px;
            background: white;
            border-radius: 20px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            text-align: center;
        }

        .trust-info-text {
            margin: 20px 0;
        }

        .trust-info-text h6 {
            font-size: 1rem;
            line-height: 1.8;
            color: #2c3e50;
            margin: 0;
        }

        .payment-methods-logos,
        .shipping-methods-logos {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 30px;
            margin: 25px 0;
            flex-wrap: wrap;
        }

        .payment-methods-logos img,
        .shipping-methods-logos img {
            height: 40px;
            width: auto;
            object-fit: contain;
            filter: grayscale(20%);
            transition: all 0.3s ease;
        }

        .payment-methods-logos img:hover,
        .shipping-methods-logos img:hover {
            filter: grayscale(0%);
            transform: scale(1.05);
        }

        @media (max-width: 768px) {
            .trust-info-section {
                padding: 20px;
            }

            .trust-info-text h6 {
                font-size: 0.9rem;
                line-height: 1.6;
            }

            .payment-methods-logos img,
            .shipping-methods-logos img {
                height: 30px;
            }

            .payment-methods-logos,
            .shipping-methods-logos {
                gap: 15px;
            }
        }

/* ===================================== */
/* TRUST BADGES BAR - INFINITE CAROUSEL */
/* ===================================== */

/* Trust Badges Bar - Infinite Carousel */
.trust-badges-bar {
    background: var(--white);
    padding: 1.5rem 0;
    border-bottom: 1px solid #e0e0e0;
    overflow: hidden;
}

.partners-carousel-wrapper {
    width: 100%;
    height: 80px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
}

/* Fade edges for seamless effect */
.partners-carousel-wrapper::before,
.partners-carousel-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.partners-carousel-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--white), transparent);
}

.partners-carousel-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--white), transparent);
}

.partners-carousel {
    display: flex;
    width: fit-content;
    animation: scrollRightToLeft 30s linear infinite;
}

.partners-carousel:hover {
    animation-play-state: paused;
}

.partners-track {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 0 1.5rem;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    min-width: 100px;
    flex-shrink: 0;
}

.partner-logo img {
    max-height: 60px;
    max-width: 140px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: all 0.3s ease;
}

.partner-logo:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

/* Keyframe for infinite scroll right to left */
@keyframes scrollRightToLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .partners-carousel-wrapper {
        height: 60px;
    }

    .partner-logo {
        height: 60px;
        min-width: 80px;
    }

    .partner-logo img {
        max-height: 45px;
        max-width: 110px;
    }

    .partners-track {
        gap: 2rem;
        padding: 0 1rem;
    }

    .partners-carousel-wrapper::before,
    .partners-carousel-wrapper::after {
        width: 50px;
    }
}

/* ===================================== */
/* PRODUCT SLIDER BY BRAND */
/* ===================================== */

.brand-product-slider {
    background: var(--bg-light-green);
    padding: 2rem 0 1.5rem;
    overflow: hidden;
}

.brand-product-slider .slider-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

.product-carousel-wrapper {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
}

/* Fade edges for seamless effect */
.product-carousel-wrapper::before,
.product-carousel-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.product-carousel-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-light-green), transparent);
}

.product-carousel-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-light-green), transparent);
}

.product-carousel {
    display: flex;
    width: fit-content;
    animation: scrollRightToLeft 60s linear infinite;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.product-carousel:hover {
    animation-play-state: paused;
}

.product-track {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0 1rem;
}

.product-slide {
    background: var(--white);
    border-radius: 12px;
    padding: 1rem;
    width: 160px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.product-slide:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.product-slide-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-slide img {
    width: 100%;
    height: 100px;
    object-fit: contain;
    margin-bottom: 0.75rem;
    border-radius: 8px;
}

.product-slide-info {
    text-align: center;
}

.product-slide-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.3;
    height: 2.6em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-slide-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
    font-size: 0.75rem;
}

.product-slide-rating .stars {
    color: #FFD700;
    font-size: 0.875rem;
}

.product-slide-rating .rating-value {
    color: var(--text-gray);
    font-weight: 600;
}

.product-slide-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-green);
}

/* Desktop: Static display for fewer than 4 products */
@media (min-width: 769px) {
    .product-carousel-wrapper.product-carousel-few {
        overflow: visible;
        justify-content: center;
    }

    .product-carousel-wrapper.product-carousel-few::before,
    .product-carousel-wrapper.product-carousel-few::after {
        display: none; /* Remove fade effects */
    }

    .product-carousel-wrapper.product-carousel-few .product-carousel {
        transform: none !important; /* Disable transform-based scrolling */
        animation: none !important; /* Disable animation */
    }

    .product-carousel-wrapper.product-carousel-few .product-track {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .brand-product-slider {
        padding: 1.5rem 0 1rem;
    }

    .brand-product-slider .slider-title {
        font-size: 1.125rem;
        margin-bottom: 1rem;
    }

    .product-carousel-wrapper {
        height: 240px;
    }

    /* Mobile: Static display for fewer than 3 products (1-2 products) */
    .product-carousel-wrapper.product-carousel-mobile-few {
        overflow: visible;
        justify-content: center;
    }

    .product-carousel-wrapper.product-carousel-mobile-few::before,
    .product-carousel-wrapper.product-carousel-mobile-few::after {
        display: none; /* Remove fade effects */
    }

    .product-carousel-wrapper.product-carousel-mobile-few .product-carousel {
        transform: none !important; /* Disable transform-based scrolling */
        animation: none !important; /* Disable animation */
    }

    .product-carousel-wrapper.product-carousel-mobile-few .product-track {
        justify-content: center;
        gap: 1rem;
    }

    .product-slide {
        width: 140px;
        padding: 0.75rem;
    }

    .product-slide img {
        height: 80px;
    }

    .product-slide-name {
        font-size: 0.8125rem;
        line-height: 1.3;
    }

    .product-slide-rating {
        font-size: 0.75rem;
        margin: 0.25rem 0;
    }

    .product-slide-price {
        font-size: 0.875rem;
    }

    .product-track {
        gap: 1rem;
    }

    .product-carousel-wrapper::before,
    .product-carousel-wrapper::after {
        width: 50px;
    }
}
