/* Home Page - Green & White theme (Simply Salad style) */

/* Hero Section - Green theme */
.hero-section {
    background: #ffffff; /* plain background - no gradient */
    min-height: calc(100vh - 70px);
    position: relative;
    padding: 80px 20px 60px;
    overflow: hidden;
    margin-top: 0;
}

.hero-section::before { display: none; }

.hero-accent-bar {
    position: absolute;
    left: 0; top: 0;
    width: 8px;
    height: 100%;
    background: #2e7d32;
    z-index: 2;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.hero-content { padding-left: 40px; }
.hero-headline { margin-bottom: 30px; }

.headline-main {
    font-size: 3.5rem;
    font-weight: 900;
    color: #1b5e20;
    line-height: 1.1;
    margin: 0;
    letter-spacing: -2px;
}

.headline-accent {
    font-size: 3.5rem;
    font-weight: 900;
    color: #43a047;
    line-height: 1.1;
    margin: 0;
    letter-spacing: -2px;
}

.hero-description { margin-bottom: 50px; }
.hero-description p {
    font-size: 1.1rem;
    color: #2e7d32;
    line-height: 1.8;
    max-width: 600px;
    font-weight: 500;
    margin: 0;
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 500px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 10px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.25);
    border-color: #81c784;
}

.feature-card i {
    font-size: 2.5rem;
    color: #2e7d32;
}

.feature-card span {
    font-size: 1rem;
    font-weight: 600;
    color: #1b5e20;
    text-align: center;
}

.salad-image-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.salad-image-wrapper {
    width: 100%;
    max-width: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.salad-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    animation: float 6s ease-in-out infinite;
}

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

/* Options Section: Kit | Salad Subscription */
.options-section {
    background: #fff;
    padding: 60px 20px 80px;
    position: relative;
}

.options-container {
    max-width: 1400px;
    margin: 0 auto;
}

.nav-tabs-container {
    padding: 0 0 30px 0;
    border-bottom: none;
}

.nav-tabs-custom {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.nav-tab-btn {
    padding: 14px 36px;
    border-radius: 30px;
    border: 2px solid #2e7d32;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s;
    background: #fff;
    color: #2e7d32;
}

.nav-tab-btn.active {
    background: #2e7d32;
    color: #fff;
    border-color: #2e7d32;
    box-shadow: 0 2px 12px rgba(46, 125, 50, 0.35);
}

.nav-tab-btn:hover:not(.active) {
    background: rgba(76, 175, 80, 0.12);
    border-color: #43a047;
    transform: translateY(-2px);
}

/* Solapur notice - Salad Subscription */
.solapur-notice {
    text-align: center;
    padding: 20px 20px 30px;
}

.solapur-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1b5e20;
    margin: 0;
}

/* Products grid for options */
.option-products {
    margin-top: 20px;
    padding-bottom: 40px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

@media (min-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

/* Product card - green theme, rounded image for Kit */
.product-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid rgba(232, 245, 233, 0.8);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 36px rgba(76, 175, 80, 0.2);
    border-color: #81c784;
}

.product-image {
    width: 100%;
    height: 280px;
    background: #fff; /* plain */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: #2e7d32;
    position: relative;
    overflow: hidden;
}

.product-image-rounded {
    border-radius: 50%;
    width: 220px;
    height: 220px;
    margin: 30px auto;
}

.product-card .product-image-rounded {
    margin: 24px auto;
    width: 200px;
    height: 200px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.product-image-rounded img {
    border-radius: 50%;
    object-fit: cover;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 22px;
}

.product-info-compact {
    padding: 16px 22px 22px;
    text-align: center;
}

.product-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1b5e20;
    margin-bottom: 8px;
    line-height: 1.3;
}

.product-cta {
    font-size: 1rem;
    font-weight: 600;
    color: #43a047;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.arrow-icon { font-size: 0.9rem; }

.product-description {
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
}

.product-price {
    font-size: 1.35rem;
    font-weight: 700;
    color: #2e7d32;
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
}

.product-price .mrp {
    text-decoration: line-through;
    color: #999;
    font-size: 1rem;
}

.product-price .selling-price {
    color: #2e7d32;
    font-weight: 700;
}

.product-price .discount {
    color: #c62828;
    font-size: 0.9rem;
    font-weight: 600;
}

.product-price .btn-view-details {
    display: inline-block;
    padding: 10px 20px;
    background: #2e7d32;
    color: #fff;
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid #2e7d32;
}

.product-price .btn-view-details:hover {
    background: #1b5e20;
    color: #fff;
    transform: translateY(-2px);
}

/* Empty state */
.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.empty-state i {
    font-size: 4rem;
    color: #81c784;
    margin-bottom: 16px;
}

.empty-state h3 { margin-bottom: 8px; color: #333; }
.empty-state p { margin: 0; }

/* How to Use Modal */
.modal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

body.modal-open { overflow: hidden; }

.modal-box {
    background: #fff;
    border-radius: 20px;
    max-width: 520px;
    width: 100%;
    max-height: 85vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transform: scale(0.95);
    transition: transform 0.3s;
}

.modal-overlay.active .modal-box {
    transform: scale(1);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: #2e7d32;
    color: #fff;
}

.modal-title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
}

.modal-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
}

.modal-body {
    padding: 24px;
    overflow-y: auto;
    max-height: calc(85vh - 70px);
}

.how-to-use-content {
    line-height: 1.7;
    color: #333;
}

.how-to-use-content p { margin-bottom: 12px; }

/* Animation */
.animate-bottom-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-container { grid-template-columns: 1fr; gap: 40px; }
    .hero-content { padding-left: 0; text-align: center; }
    .headline-main, .headline-accent { font-size: 3rem; }
    .feature-cards { max-width: 100%; justify-content: center; }
}

@media (max-width: 768px) {
    .hero-section { padding: 20px 15px 40px; min-height: auto; }
    .hero-container { flex-direction: column; gap: 20px; }
    .hero-content { order: 2; }
    .salad-image-section { order: 1; padding: 10px; }
    .headline-main, .headline-accent { font-size: 2.25rem; }
    .hero-description p { font-size: 1rem; }
    .feature-cards { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .options-section { padding: 40px 15px 60px; }
    .products-grid { grid-template-columns: 1fr; gap: 20px; }
    .product-image-rounded {
        width: 180px;
        height: 180px;
        margin: 20px auto;
    }
    .product-card .product-image-rounded {
        width: 160px;
        height: 160px;
    }
}

@media (max-width: 480px) {
    .headline-main, .headline-accent { font-size: 1.85rem; }
    .nav-tab-btn { padding: 12px 24px; font-size: 1rem; }
    .solapur-heading { font-size: 1.25rem; }
}

.testimonial-section { display: none !important; }

/* Why Customers section */
.why-section {
    background: #17a55b; /* solid green band */
    color: #fff;
    padding: 60px 20px;
}
.why-container { max-width: 1200px; margin: 0 auto; text-align: center; }
.why-heading {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 12px;
    text-shadow: 0 3px 0 rgba(0,0,0,0.08);
}
.why-sub { max-width: 800px; margin: 0 auto 28px; color: rgba(255,255,255,0.95); font-weight: 500; }
.why-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 24px; }
.why-card { background: #cfefd8; color: #1b5e20; border-radius: 12px; padding: 22px; text-align: left; box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
.why-card h3 { margin-top: 6px; margin-bottom: 10px; font-size: 1.4rem; }
.why-card p { color: #224a2e; font-size: 0.98rem; line-height: 1.6; }
.why-card-img { height: 120px; border-radius: 8px; background: #fff; background-size: cover; background-position: center; box-shadow: inset 0 0 0 6px rgba(255,255,255,0.25); }

/* Product card enhancements */
.product-card { position: relative; overflow: visible; }
.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #17a55b;
    color: #fff;
    padding: 6px 10px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 6px 18px rgba(23,165,91,0.18);
}
.product-cta-btn {
    display: inline-block;
    padding: 10px 18px;
    background: #17a55b;
    color: #fff;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.product-cta-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(23,165,91,0.18); }

@media (max-width: 992px) {
    .why-cards { grid-template-columns: 1fr; }
    .why-heading { font-size: 2rem; }
}
