/* V-TEDETOX Funnel Styles - Green Theme */
:root {
    --primary: #2E7D32;
    --primary-dark: #1B5E20;
    --primary-light: #4CAF50;
    --accent: #FFD700;
    --accent-dark: #FFC107;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8fdf8;
    --bg-white: #ffffff;
    --shadow: 0 4px 20px rgba(46, 125, 50, 0.15);
    --shadow-hover: 0 8px 30px rgba(46, 125, 50, 0.25);
}

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

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

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

/* Top Bar */
.top-bar {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 10px 0;
    text-align: center;
    font-size: 14px;
}

/* Navbar */
.navbar {
    background: var(--bg-white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo {
    height: 40px;
}

.btn-nav {
    background: var(--primary);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-nav:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    background-size: cover;
    background-position: center;
    padding: 60px 0;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(248,253,248,0.9) 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    padding-right: 20px;
}

.badge-discount {
    display: inline-block;
    background: var(--accent);
    color: var(--text-dark);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 800;
    font-size: 16px;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

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

.hero h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.hero h1 .highlight {
    color: var(--primary);
}

.subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 25px;
}

.hero-benefits {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.hero-benefit {
    background: var(--bg-light);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-dark);
}

.btn-cta {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    padding: 18px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-pulse {
    animation: btnPulse 2s infinite;
}

@keyframes btnPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(46, 125, 50, 0.4); }
    50% { box-shadow: 0 0 0 15px rgba(46, 125, 50, 0); }
}

.guarantee {
    margin-top: 20px;
    font-size: 14px;
    color: var(--text-light);
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.product-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: white;
    padding: 10px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.product-small {
    width: 80px;
    height: auto;
}

/* Countdown Section */
.countdown-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 25px 0;
    text-align: center;
}

.countdown-text {
    color: white;
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 600;
}

.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.countdown-item {
    background: rgba(255,255,255,0.2);
    padding: 15px 20px;
    border-radius: 10px;
    min-width: 70px;
}

.countdown-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: white;
    font-family: 'Montserrat', sans-serif;
}

.countdown-label {
    font-size: 12px;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
}

.countdown-separator {
    font-size: 32px;
    font-weight: 800;
    color: white;
}

/* Problem Section */
.problem-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.problem-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--text-dark);
}

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

.problem-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--bg-light);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.problem-item:hover {
    transform: translateY(-5px);
}

.problem-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 15px;
}

.problem-item p {
    font-size: 15px;
    color: var(--text-light);
}

.solution-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    color: white;
}

.solution-box h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.solution-box p {
    font-size: 17px;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.benefits-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

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

.benefit-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
}

.benefit-card img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.benefit-card p {
    font-size: 15px;
    color: var(--text-light);
}

/* Ingredients Section */
.ingredients-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.ingredients-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 50px;
    font-size: 17px;
}

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

.ingredient-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px;
    background: var(--bg-light);
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.ingredient-item:hover {
    transform: scale(1.05);
}

.ingredient-icon {
    font-size: 36px;
    margin-bottom: 10px;
}

.ingredient-name {
    font-weight: 700;
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.ingredient-benefit {
    font-size: 13px;
    color: var(--primary);
}

/* Videos Section */
.videos-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.videos-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 15px;
}

.video-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.video-carousel::-webkit-scrollbar {
    height: 8px;
}

.video-carousel::-webkit-scrollbar-track {
    background: #e0e0e0;
    border-radius: 4px;
}

.video-carousel::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

.video-item {
    flex: 0 0 280px;
    scroll-snap-align: start;
    background: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.video-item iframe {
    width: 100%;
    height: 500px;
    border: none;
}

/* Offers Section */
.offers-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
}

.offers-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 15px;
}

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

.offer-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    position: relative;
    transition: transform 0.3s ease;
    border: 2px solid transparent;
}

.offer-card:hover {
    transform: translateY(-10px);
}

.offer-card.popular {
    border-color: var(--primary);
    transform: scale(1.05);
}

.offer-card.popular:hover {
    transform: scale(1.08);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 8px 25px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.offer-header {
    margin-bottom: 20px;
}

.offer-quantity {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--text-dark);
    font-family: 'Montserrat', sans-serif;
}

.offer-duration {
    font-size: 14px;
    color: var(--text-light);
}

.offer-price {
    margin-bottom: 15px;
}

.price-original {
    display: block;
    font-size: 18px;
    color: #999;
    text-decoration: line-through;
}

.price-current {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
    font-family: 'Montserrat', sans-serif;
}

.price-unit {
    font-size: 18px;
    color: var(--text-light);
}

.savings-badge {
    background: var(--accent);
    color: var(--text-dark);
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 13px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
}

.offer-features {
    list-style: none;
    text-align: left;
    margin-bottom: 25px;
}

.offer-features li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-light);
    border-bottom: 1px solid #eee;
}

.offer-features li:last-child {
    border-bottom: none;
}

.btn-offer {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-offer:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-hover);
}

.btn-popular {
    background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%);
    color: var(--text-dark);
}

/* How to Use Section */
.howto-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.howto-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

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

.howto-step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    margin: 0 auto 20px;
    font-family: 'Montserrat', sans-serif;
}

.howto-step h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.howto-step p {
    font-size: 15px;
    color: var(--text-light);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.faq-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

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

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: none;
    border: none;
    text-align: left;
    font-size: 17px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
}

.faq-icon {
    font-size: 24px;
    color: var(--primary);
    transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 25px 20px;
    color: var(--text-light);
    font-size: 15px;
}

/* Final CTA Section */
.final-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    text-align: center;
    color: white;
}

.final-cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.final-cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-large {
    padding: 20px 50px;
    font-size: 20px;
}

.trust-badges {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.trust-badges span {
    font-size: 16px;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 30px 0;
    text-align: center;
}

.footer p {
    font-size: 14px;
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 12px !important;
    opacity: 0.7;
}

/* Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.modal-small {
    max-width: 400px;
    text-align: center;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    color: #999;
}

.modal-content h2 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}

.order-summary {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 25px;
}

.order-summary p {
    margin: 5px 0;
    font-size: 15px;
}

.order-summary .total {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    margin-top: 10px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.coverage-indicator {
    display: block;
    font-size: 12px;
    margin-top: 5px;
    font-weight: 600;
}

.coverage-indicator.checking {
    color: #999;
}

.coverage-indicator.success {
    color: var(--primary);
}

.coverage-indicator.error {
    color: #e53935;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: scale(1.02);
}

.btn-submit:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.form-note {
    text-align: center;
    font-size: 13px;
    color: var(--text-light);
    margin-top: 15px;
}

/* No Coverage Modal */
.no-coverage-content {
    padding: 20px 0;
}

.no-coverage-icon {
    font-size: 60px;
    display: block;
    margin-bottom: 20px;
}

.no-coverage-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.no-coverage-content p {
    color: var(--text-light);
    margin-bottom: 10px;
}

.btn-secondary {
    background: #e0e0e0;
    color: var(--text-dark);
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 15px;
}

/* Success Modal */
.success-content {
    padding: 20px 0;
}

.success-icon {
    font-size: 60px;
    display: block;
    margin-bottom: 20px;
}

.success-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary);
}

.success-content p {
    color: var(--text-light);
    margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text {
        padding-right: 0;
    }
    
    .hero-benefits {
        justify-content: center;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-img {
        max-width: 400px;
    }
    
    .problem-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .ingredients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .offers-grid {
        grid-template-columns: 1fr;
    }
    
    .offer-card.popular {
        transform: none;
    }
    
    .howto-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }
    
    .subtitle {
        font-size: 16px;
    }
    
    .btn-cta {
        padding: 15px 30px;
        font-size: 16px;
    }
    
    .countdown-item {
        padding: 10px 15px;
        min-width: 60px;
    }
    
    .countdown-number {
        font-size: 24px;
    }
    
    .problem-grid {
        grid-template-columns: 1fr;
    }
    
    .ingredients-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .top-bar {
        font-size: 12px;
        padding: 8px 10px;
    }
    
    .navbar-content {
        gap: 10px;
    }
    
    .logo {
        height: 30px;
    }
    
    .btn-nav {
        padding: 8px 15px;
        font-size: 12px;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .hero-img {
        max-width: 100%;
    }
    
    .product-badge {
        bottom: 10px;
        right: 10px;
    }
    
    .product-small {
        width: 60px;
    }
    
    h2 {
        font-size: 28px !important;
    }
    
    .modal-content {
        padding: 25px;
    }
    
    .video-item {
        flex: 0 0 260px;
    }
    
    .video-item iframe {
        height: 460px;
    }
}

/* ===================================
   SECURITY BANNER SECTION
   =================================== */
.security-banner-section {
    padding: 40px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.security-banner-img {
    width: 100%;
    max-width: 1000px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* ===================================
   INGREDIENTS TIMELINE SECTION
   =================================== */
.ingredients-timeline-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.ingredients-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.ingredients-intro h2 {
    font-size: 42px;
    font-weight: 800;
    color: #2d3436;
    margin-bottom: 20px;
    line-height: 1.2;
}

.ingredients-intro .section-subtitle {
    font-size: 18px;
    color: #636e72;
    margin-bottom: 40px;
    line-height: 1.6;
}

.certification-seals {
    display: flex;
    gap: 30px;
    align-items: center;
}

.certification-seals .seal {
    width: 120px;
    height: 120px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.certification-seals .seal:hover {
    transform: scale(1.1);
}

.ingredients-hero-image {
    position: relative;
}

.ingredients-hero-image img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    margin: 0 auto;
    display: block;
}

.ingredients-timeline {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.ingredients-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #00b894 0%, #00cec9 100%);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    background: #00b894;
    border: 4px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(0, 184, 148, 0.2);
    z-index: 2;
}

.timeline-marker-plus {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    font-weight: bold;
}

.timeline-marker-plus::before {
    content: '+';
}

.timeline-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.timeline-item-reverse .timeline-content {
    direction: rtl;
}

.timeline-item-reverse .ingredient-info {
    direction: ltr;
    text-align: right;
}

.ingredient-image {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
}

.ingredient-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.ingredient-info h3 {
    font-size: 28px;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 8px;
}

.ingredient-latin {
    font-size: 14px;
    font-style: italic;
    color: #00b894;
    margin-bottom: 15px;
    display: block;
}

.ingredient-description {
    font-size: 16px;
    color: #636e72;
    line-height: 1.7;
}

.timeline-item-final .timeline-content {
    grid-template-columns: 1fr;
    text-align: center;
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    color: white;
}

.timeline-content-final h3 {
    font-size: 32px;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
}

.timeline-content-final p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
}

.checkout-summary {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 25px;
}

.checkout-summary p {
    margin: 8px 0;
    font-size: 15px;
}

.cod-badge {
    background: var(--primary);
    color: white;
    padding: 8px 15px;
    border-radius: 10px;
    display: inline-block;
    margin-top: 10px;
    font-weight: 600;
}

@media (max-width: 992px) {
    .ingredients-header {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .certification-seals {
        justify-content: center;
    }
    
    .ingredients-intro h2 {
        font-size: 36px;
    }
    
    .ingredients-timeline::before {
        left: 30px;
    }
    
    .timeline-marker {
        left: 30px;
        transform: translate(-50%, 0);
        top: 20px;
    }
    
    .timeline-content {
        grid-template-columns: 1fr;
        margin-left: 70px;
        padding: 30px;
    }
    
    .timeline-item-reverse .timeline-content {
        direction: ltr;
    }
    
    .timeline-item-reverse .ingredient-info {
        text-align: left;
    }
    
    .ingredient-image {
        max-width: 200px;
    }
    
    .ingredient-info h3 {
        font-size: 24px;
    }
    
    .ingredient-description {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .security-banner-section {
        padding: 20px 0;
    }
    
    .security-banner-img {
        border-radius: 8px;
    }
    
    .ingredients-timeline-section {
        padding: 50px 0;
    }
    
    .ingredients-intro h2 {
        font-size: 28px;
    }
    
    .ingredients-intro .section-subtitle {
        font-size: 16px;
    }
    
    .certification-seals .seal {
        width: 80px;
        height: 80px;
    }
    
    .ingredients-header {
        margin-bottom: 50px;
    }
    
    .timeline-content {
        margin-left: 50px;
        padding: 20px;
    }
    
    .timeline-marker {
        left: 20px;
        width: 18px;
        height: 18px;
    }
    
    .ingredients-timeline::before {
        left: 20px;
        width: 3px;
    }
    
    .ingredient-info h3 {
        font-size: 20px;
    }
    
    .ingredient-latin {
        font-size: 12px;
    }
    
    .ingredient-description {
        font-size: 14px;
    }
    
    .timeline-content-final h3 {
        font-size: 24px;
    }
    
    .timeline-content-final p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .ingredients-intro h2 {
        font-size: 24px;
    }
    
    .certification-seals {
        gap: 15px;
    }
    
    .certification-seals .seal {
        width: 60px;
        height: 60px;
    }
    
    .timeline-content {
        margin-left: 40px;
        padding: 15px;
    }
    
    .ingredient-image {
        max-width: 150px;
    }
}


/* ===================================
   INGREDIENTS INFOGRAPHIC SECTION
   =================================== */
.ingredients-infographic-section {
    padding: 60px 0;
    background: var(--bg-white);
    overflow-x: hidden;
}

.ingredients-infographic-section .container {
    overflow-x: hidden;
}

.ingredients-infographic-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.ingredients-infographic {
    width: 100%;
    max-width: 700px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

@media (max-width: 1024px) {
    .ingredients-infographic {
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .ingredients-infographic-section {
        padding: 40px 0;
    }
    
    .ingredients-infographic-section h2 {
        font-size: 22px;
        margin-bottom: 25px;
        padding: 0 15px;
        line-height: 1.3;
    }
    
    .ingredients-infographic {
        max-width: 450px;
        width: 90%;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
}

@media (max-width: 480px) {
    .ingredients-infographic-section {
        padding: 30px 0;
    }
    
    .ingredients-infographic-section .container {
        padding: 0 15px;
    }
    
    .ingredients-infographic-section h2 {
        font-size: 20px;
        margin-bottom: 20px;
        line-height: 1.3;
        padding: 0 10px;
    }
    
    .ingredients-infographic {
        max-width: 400px;
        width: 95%;
        border-radius: 10px;
        box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    }
}
