:root {
    --primary-green: #1b4332;
    --secondary-green: #2d6a4f;
    --accent-green: #74c69d;
    --light-beige: #f4f1de;
    --pearl-white: #f8f9fa;
    --text-dark: #2d3436;
    --text-muted: #636e72;
    --whatsapp-green: #25d366;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --font-main: 'Poppins', sans-serif;
}

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

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    background-color: #ffffff;
    background-image: radial-gradient(circle at top right, rgba(116, 198, 157, 0.1) 0%, transparent 40%),
                      radial-gradient(circle at bottom left, rgba(116, 198, 157, 0.1) 0%, transparent 40%);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3 {
    color: var(--primary-green);
    font-weight: 700;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
    border: none;
    gap: 10px;
}

.btn-primary {
    background: linear-gradient(135deg, #2d6a4f 0%, #1b4332 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(27, 67, 50, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(27, 67, 50, 0.4);
    background: linear-gradient(135deg, #1b4332 0%, #2d6a4f 100%);
}

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

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

/* WhatsApp Green Button */
.btn-whatsapp {
    background-color: #25D366;
    color: #ffffff !important;
    border: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* Sections */
section {
    padding: 80px 0;
}

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

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
}



/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.95) 100%), url('assets/ved_lifestyle_1778142708764.png') center/cover no-repeat;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.5rem;
    color: var(--secondary-green);
    margin-bottom: 35px;
    font-weight: 500;
}

.hero-btns {
    display: flex;
    gap: 15px;
}

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

.hero-image img {
    width: 100%;
    max-width: 450px;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 20px 20px 60px rgba(0,0,0,0.1);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Trust Strip */
.trust-strip {
    background-color: var(--primary-green);
    color: white;
    padding: 20px 0;
}

.trust-flex {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.trust-item i {
    font-size: 1.2rem;
    color: var(--accent-green);
}

/* Problem-Solution */
.prob-sol {
    background-color: white;
}

.prob-sol-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.problem-box {
    background: #fff5f5;
    padding: 40px;
    border-radius: 20px;
    border-left: 5px solid #ff7675;
}

.solution-box {
    background: #f0fff4;
    padding: 40px;
    border-radius: 20px;
    border-left: 5px solid var(--accent-green);
}

/* Ingredients */
.ingredients {
    background-color: var(--light-beige);
}

.ing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.ing-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.ing-icon {
    width: 80px;
    height: 80px;
    background: var(--light-beige);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
}

/* Benefits */
.benefits-list {
    max-width: 600px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
}

.benefit-item i {
    color: var(--accent-green);
    font-size: 1.5rem;
}

/* How to Use */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

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

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-weight: 700;
}

/* Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.review-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
}

.stars {
    color: #f1c40f;
    margin-bottom: 10px;
}

/* Offer */
.offer-box {
    background: var(--primary-green);
    color: white;
    padding: 60px;
    border-radius: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.price-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.price-card {
    background: rgba(255,255,255,0.1);
    padding: 20px 40px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.2);
}

.price-card h4 {
    color: var(--accent-green);
}

.price-card .amount {
    font-size: 2.5rem;
    font-weight: 700;
}

/* Footer CTA */
.footer-cta {
    background: var(--light-beige);
    text-align: center;
    padding: 100px 0;
}

.footer-cta h2 {
    font-size: 3rem;
    margin-bottom: 30px;
}

.footer-gstin {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-top: 12px;
    letter-spacing: 0.5px;
}

/* Slide result thumbnails */
.slide-result-imgs {
    display: flex;
    gap: 12px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.slide-result-imgs img {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    border: 2px solid rgba(116,198,157,0.4);
    transition: transform 0.3s;
}

.slide-result-imgs img:hover {
    transform: scale(1.05);
}

/* How-to-use step box on slide 4 */
.hero-how-to-use {
    background: rgba(27,67,50,0.06);
    border-radius: 15px;
    padding: 18px 20px;
    margin: 16px 0;
    border-left: 4px solid var(--primary-green);
}

.hero-how-to-use h3 {
    color: var(--primary-green);
    font-size: 1rem;
    margin-bottom: 12px;
}

.hero-how-to-use ol {
    padding-left: 20px;
    color: var(--text-dark);
    line-height: 2;
    font-size: 0.95rem;
}

.hero-how-to-use .tip {
    margin-top: 10px;
    font-style: italic;
    color: var(--secondary-green);
    font-size: 0.88rem;
}

/* Products Grid */
.products {
    background-color: var(--pearl-white);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: 20px;
    padding: 20px;
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    border-radius: 15px;
    margin-bottom: 20px;
}

.product-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.product-card .desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.product-price-row {
    display: flex;
    justify-content: space-around;
    background: var(--light-beige);
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.product-price {
    display: flex;
    flex-direction: column;
}

.product-price .type {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--secondary-green);
    text-transform: uppercase;
}

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

/* Combo Offer */
.combo-offer {
    padding: 80px 0;
}

.combo-box {
    background: linear-gradient(135deg, #1b4332 0%, #2d6a4f 50%, #1b4332 100%);
    color: white;
    padding: 60px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.combo-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #e74c3c;
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
}

.combo-box h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.combo-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

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

.combo-image {
    text-align: center;
}

@media (max-width: 768px) {
    .combo-grid {
        grid-template-columns: 1fr;
    }
    .combo-box {
        padding: 30px 20px;
    }
    .combo-box h2 {
        font-size: 1.8rem;
    }
    .combo-badge {
        position: relative;
        top: auto;
        right: auto;
        display: inline-block;
        margin-bottom: 15px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-btns {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    
    .hero-btns .btn {
        width: 100%;
        justify-content: center;
    }
    
    .prob-sol-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .trust-flex {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        text-align: left;
    }
    .trust-item {
        justify-content: flex-start;
        font-size: 0.9rem;
    }
    
    .modal-content {
        padding: 20px;
        width: 95%;
    }
}

/* D2C Premium Enhancements */
.announcement-bar {
    background-color: var(--primary-green);
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-badge-small {
    display: inline-block;
    background: rgba(116, 198, 157, 0.2);
    color: var(--secondary-green);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
    border: 1px solid rgba(116, 198, 157, 0.4);
}

.highlight {
    color: var(--accent-green);
    position: relative;
}

.highlight::after {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(116, 198, 157, 0.3);
    z-index: -1;
}

.image-glow {
    position: absolute;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(116, 198, 157, 0.4) 0%, rgba(255,255,255,0) 70%);
    z-index: -1;
    border-radius: 50%;
    filter: blur(40px);
}

.floating-badge {
    position: absolute;
    background: white;
    padding: 10px 15px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
    z-index: 2;
    animation: float 5s ease-in-out infinite alternate;
}

.badge-1 {
    top: 20px;
    right: -10px;
    animation-delay: 1s;
}

.badge-2 {
    bottom: 40px;
    left: -20px;
    animation-delay: 2s;
}

.price-card.popular {
    transform: scale(1.05);
    background: white;
    color: var(--text-dark);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    border: 2px solid var(--accent-green);
    position: relative;
}

.popular-ribbon {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #e74c3c;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(231, 76, 60, 0.4);
}

.price-card.popular h4 {
    color: var(--primary-green);
}

.original-price {
    color: #95a5a6;
    margin-bottom: 10px;
}

.discount {
    color: #e74c3c;
    font-weight: bold;
    font-size: 0.9rem;
    background: rgba(231, 76, 60, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
}

.urgency-bar {
    margin-top: 30px;
    background: rgba(0,0,0,0.2);
    padding: 20px;
    border-radius: 15px;
}

.progress-container {
    height: 8px;
    background: rgba(255,255,255,0.2);
    border-radius: 10px;
    margin-top: 10px;
    overflow: hidden;
}

.progress-bar {
    width: 15%;
    height: 100%;
    background: #e74c3c;
    border-radius: 10px;
    animation: progressPulse 2s infinite;
}

@keyframes progressPulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

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

@keyframes btnPulse {
    0% { box-shadow: 0 0 0 0 rgba(45, 106, 79, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(45, 106, 79, 0); }
    100% { box-shadow: 0 0 0 0 rgba(45, 106, 79, 0); }
}

.secure-checkout {
    margin-top: 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Sticky Bottom CTA for Mobile */
.sticky-bottom-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    padding: 15px 20px;
    display: none;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    z-index: 1000;
}

.sticky-price {
    display: flex;
    flex-direction: column;
}

.s-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-green);
}

.s-del {
    font-size: 0.8rem;
    color: #95a5a6;
}

@media (max-width: 768px) {
    .sticky-bottom-cta {
        display: flex;
    }
    .footer-cta {
        padding-bottom: 120px; /* space for sticky bar */
    }
    .badge-1 {
        right: 10px;
        font-size: 0.8rem;
    }
    .badge-2 {
        left: 10px;
        font-size: 0.8rem;
    }
}

/* Checkout Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: white;
    width: 90%;
    max-width: 500px;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
}

.modal-header {
    text-align: center;
    margin-bottom: 25px;
}

.modal-header h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    font-family: var(--font-main);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-green);
    box-shadow: 0 0 0 3px rgba(116, 198, 157, 0.2);
}

.payment-options {
    margin: 25px 0;
    border: 1px solid #eee;
    border-radius: 15px;
    overflow: hidden;
}

.payment-option {
    display: flex;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: background 0.2s;
}

.payment-option:last-child {
    border-bottom: none;
}

.payment-option:hover {
    background: #f8f9fa;
}

.payment-option input {
    margin-right: 15px;
    transform: scale(1.2);
}

.payment-info {
    flex-grow: 1;
}

.payment-info h4 {
    margin: 0;
    font-size: 1.05rem;
    color: var(--primary-green);
}

.payment-info p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.order-summary {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 25px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.summary-row.total {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-green);
    border-top: 1px solid #ddd;
    padding-top: 10px;
    margin-bottom: 0;
}

