/* ========== ADD THESE MISSING SECTIONS TO YOUR style.css ========== */

/* ========== PRODUCTS PAGE ========== */
.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.product-image {
    height: 280px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.product-methi { background: linear-gradient(135deg, #D4E7C5 0%, #BFD8AF 100%); }
.product-gond { background: linear-gradient(135deg, #F4E4C1 0%, #E5D4A6 100%); }
.product-khajur { background: linear-gradient(135deg, #E8C4A0 0%, #D9B491 100%); }
.product-sont { background: linear-gradient(135deg, #F5E6D3 0%, #E6D7C4 100%); }

.product-info {
    padding: 32px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-info h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.product-price {
    font-size: 28px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 24px;
}

.quantity-selector {
    margin-bottom: 24px;
}

.quantity-selector label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 14px;
}

.quantity-selector select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border);
    border-radius: 12px;
    font-size: 16px;
    background: var(--white);
    font-family: inherit;
    transition: all 0.2s;
}

.quantity-selector select:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
}

.product-benefits {
    background: var(--cream);
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.product-benefits h4 {
    color: var(--primary);
    margin-bottom: 16px;
    font-size: 18px;
    font-weight: 600;
}

.product-benefits ul {
    list-style: none;
}

.product-benefits li {
    padding: 8px 0;
    color: var(--text-primary);
    position: relative;
    padding-left: 24px;
}

.product-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 8px;
    color: var(--secondary);
    font-weight: bold;
    font-size: 14px;
}

.product-usage {
    background: var(--cream-dark);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 24px;
}

.product-usage h4 {
    color: var(--primary);
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: 600;
}

.product-usage p {
    margin-bottom: 8px;
    color: var(--text-primary);
    font-size: 14px;
}

.usage-label {
    font-weight: 600;
    color: var(--secondary);
}

.btn-add-cart {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    margin-top: auto;
}

/* ========== ORDER FORM PAGE ========== */
.order-form-section {
    background: var(--cream);
    padding: 100px 0;
}

.order-form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 48px;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px;
    border: 2px solid var(--border);
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.2s;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.total-display {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    margin-bottom: 32px;
}

.total-display h3 {
    font-size: 20px;
    margin-bottom: 12px;
    opacity: 0.9;
}

.total-amount {
    font-size: 40px;
    font-weight: 800;
    color: var(--secondary);
}

.btn-submit {
    width: 100%;
    background: var(--secondary);
    color: var(--white);
    border: none;
    padding: 20px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-submit:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.payment-section {
    display: none;
    margin-top: 40px;
    padding: 40px;
    background: var(--cream);
    border-radius: 20px;
    border: 2px dashed var(--secondary);
    text-align: center;
}

.payment-section.active {
    display: block;
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.qr-code {
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
    border: 3px dashed var(--secondary);
    border-radius: 16px;
    margin: 32px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 500;
}

.upi-id {
    background: var(--white);
    padding: 20px;
    border-radius: 12px;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin: 24px 0;
    border: 2px solid var(--border);
    word-break: break-all;
}

.payment-instructions {
    background: var(--cream-dark);
    padding: 28px;
    border-radius: 16px;
    margin: 32px 0;
    text-align: left;
}

.payment-instructions h4 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
}

.payment-instructions ol {
    padding-left: 24px;
    margin-bottom: 0;
}

.payment-instructions li {
    margin-bottom: 12px;
    color: var(--text-primary);
    font-size: 15px;
    line-height: 1.6;
}

/* ========== ABOUT PAGE ========== */
.about-section {
    background: var(--white);
    padding: 100px 0;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about-story {
    background: var(--cream);
    padding: 48px;
    border-radius: 24px;
    margin-bottom: 60px;
    box-shadow: var(--shadow);
}

.about-story h3 {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 24px;
    font-weight: 700;
}

.about-story p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.7;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.value-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: 20px;
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.3s;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary);
}

.value-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.value-card h4 {
    font-size: 22px;
    color: var(--text-primary);
    margin-bottom: 16px;
    font-weight: 700;
}

.value-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========== CONTACT PAGE ========== */
.contact-section {
    background: var(--cream);
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.contact-info {
    background: var(--white);
    padding: 48px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.contact-info h3 {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 32px;
    font-weight: 700;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-icon {
    font-size: 28px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    border-radius: 12px;
}

.contact-details h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.contact-details p {
    color: var(--text-secondary);
    font-size: 15px;
}

.inquiry-form {
    background: var(--white);
    padding: 48px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.inquiry-form h3 {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 32px;
    font-weight: 700;
}

.map-container {
    margin-top: 60px;
    height: 400px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ========== MOBILE RESPONSIVE FIXES ========== */
@media (max-width: 768px) {
    .order-form-container,
    .contact-info,
    .inquiry-form,
    .about-story {
        padding: 32px 24px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .product-info {
        padding: 24px;
    }
    
    .total-amount {
        font-size: 32px;
    }
    
    .qr-code {
        width: 240px;
        height: 240px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px !important;
    }
    
    .section-title {
        font-size: 28px !important;
    }
}


/* ========== ORDER FORM ENHANCEMENTS ========== */
.customer-details, .cart-section {
    margin-bottom: 40px;
}

.customer-details h3, .cart-section h3 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 24px;
    font-weight: 700;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 20px;
    margin-bottom: 20px;
}

.cart-item {
    background: var(--cream);
    padding: 24px;
    border-radius: 16px;
    margin-bottom: 20px;
    border: 1px solid var(--border);
}

.item-total {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    color: var(--primary);
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.btn-add-product {
    background: var(--secondary);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}

.btn-add-product:hover {
    background: var(--secondary-dark);
    transform: translateY(-1px);
}

.btn-remove {
    background: #EF4444;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.remove-col {
    display: flex;
    align-items: end;
}

.order-summary {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid var(--border);
}

.total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 18px;
}

.total-row.final {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    margin-top: 16px;
    padding-top: 20px;
    border-top: 2px solid var(--border);
}

.payment-header {
    text-align: center;
    margin-bottom: 40px;
}

.order-summary-small {
    background: var(--cream);
    padding: 20px;
    border-radius: 12px;
    margin: 20px 0;
}

.payment-methods {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.qr-container {
    text-align: center;
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
}

.qr-label {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 16px;
}

.qr-image {
    width: 280px;
    height: 280px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.whatsapp-section {
    text-align: center;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 auto;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
}

/* Mobile */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .qr-image {
        width: 240px;
        height: 240px;
    }
}











/* ========== RESET & VARIABLES ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2D5F3F;
    --primary-dark: #1F4029;
    --secondary: #C9A961;
    --secondary-dark: #A68B4C;
    --cream: #FAF7F0;
    --cream-dark: #F5F1E8;
    --text-primary: #0F172A;
    --text-secondary: #475569;
    --text-light: #64748B;
    --white: #FFFFFF;
    --border: #E2E8F0;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-primary);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== LANGUAGE TOGGLE ========== */
.lang-toggle {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 1001;
}

.lang-toggle button {
    background: var(--white);
    color: var(--text-primary);
    border: 1px solid var(--border);
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    box-shadow: var(--shadow);
    transition: all 0.2s ease;
}

.lang-toggle button:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

/* ========== NAVIGATION ========== */
.navbar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.95);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.02em;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 15px;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.2s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    background: var(--cream);
}

.btn-nav {
    background: var(--primary);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s;
    margin-left: 8px;
}

.btn-nav:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ========== BUTTONS ========== */
.btn-primary {
    background: var(--primary);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-primary.large {
    padding: 16px 40px;
    font-size: 17px;
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    padding: 14px 32px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
    transition: all 0.2s;
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-text {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.2s;
    display: inline-block;
}

.btn-text:hover {
    color: var(--primary-dark);
    transform: translateX(4px);
}

/* ========== HERO SECTION ========== */
.hero {
    background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: var(--white);
    border: 1px solid var(--border);
    padding: 8px 16px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.hero-description {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    gap: 32px;
    align-items: center;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

.hero-visual {
    position: relative;
    height: 600px;
}

.floating-card {
    position: absolute;
    background: var(--white);
    padding: 20px 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 3s ease-in-out infinite;
}

.card-icon {
    font-size: 32px;
}

.card-text {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 15px;
}

.card-1 {
    top: 60px;
    left: -20px;
    animation-delay: 0s;
}

.card-2 {
    top: 240px;
    right: -20px;
    animation-delay: 1s;
}

.card-3 {
    bottom: 120px;
    left: 40px;
    animation-delay: 2s;
}

.hero-image-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    opacity: 0.1;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* ========== TRUST SECTION ========== */
.trust-section {
    padding: 60px 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
}

.trust-icon {
    font-size: 32px;
}

.trust-text {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 15px;
}

/* ========== SECTION STYLES ========== */
section {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 60px;
}

.section-header.center {
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 16px;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.section-title.left {
    text-align: left;
}

.section-description {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========== WHY SECTION ========== */
.why-section {
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.feature-card {
    background: var(--cream);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: all 0.3s;
    display: flex;
    gap: 24px;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary);
}

.feature-number {
    font-size: 40px;
    font-weight: 800;
    color: var(--secondary);
    opacity: 0.4;
    line-height: 1;
}

.feature-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.feature-content p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========== PHILOSOPHY SECTION ========== */
.philosophy-section {
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.philosophy-container {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 80px;
    align-items: center;
}

.philosophy-content .section-label {
    color: var(--secondary);
}

.philosophy-title {
    color: var(--white);
    margin-bottom: 32px;
}

.philosophy-quote {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 16px;
    border-left: 4px solid var(--secondary);
}

.philosophy-quote p {
    font-size: 20px;
    line-height: 1.7;
    font-style: italic;
    color: var(--white);
    opacity: 0.95;
}

.philosophy-visual {
    position: relative;
    height: 400px;
}

.visual-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.2;
}

.circle-1 {
    width: 300px;
    height: 300px;
    background: var(--secondary);
    top: 0;
    right: 0;
    animation: pulse 4s ease-in-out infinite;
}

.circle-2 {
    width: 200px;
    height: 200px;
    background: var(--secondary);
    bottom: 40px;
    left: 40px;
    animation: pulse 4s ease-in-out infinite 1s;
}

.circle-3 {
    width: 120px;
    height: 120px;
    background: var(--cream);
    top: 120px;
    left: 0;
    animation: pulse 4s ease-in-out infinite 2s;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* ========== PRODUCTS PREVIEW ========== */
.products-preview {
    background: var(--cream);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.product-preview-card {
    background: var(--white);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: all 0.3s;
    position: relative;
}

.product-preview-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary);
}

.product-preview-card.featured {
    border: 2px solid var(--secondary);
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-visual {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
}

.product-methi {
    background: linear-gradient(135deg, #D4E7C5 0%, #BFD8AF 100%);
}

.product-gond {
    background: linear-gradient(135deg, #F4E4C1 0%, #E5D4A6 100%);
}

.product-khajur {
    background: linear-gradient(135deg, #E8C4A0 0%, #D9B491 100%);
}

.product-sont {
    background: linear-gradient(135deg, #F5E6D3 0%, #E6D7C4 100%);
}

.product-preview-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.product-price {
    font-size: 24px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 8px;
}

.product-tagline {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.center-cta {
    text-align: center;
}

/* ========== GIFT SECTION ========== */
.gift-section {
    background: var(--white);
}

.gift-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.gift-content p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
}

.gift-list {
    list-style: none;
    margin-bottom: 40px;
}

.gift-list li {
    padding: 16px 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 12px;
}

.gift-list li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--secondary);
    color: var(--white);
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.gift-visual {
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gift-box-large {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
}

/* ========== HOW TO ORDER ========== */
.how-order-section {
    background: var(--cream);
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 48px;
    gap: 16px;
}

.step-card {
    background: var(--white);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid var(--border);
    text-align: center;
    flex: 1;
    transition: all 0.3s;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.step-icon {
    width: 64px;
    height: 64px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.step-card p {
    font-size: 14px;
    color: var(--text-light);
}

.step-arrow {
    font-size: 24px;
    color: var(--secondary);
    font-weight: 700;
    flex-shrink: 0;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--text-primary);
    color: var(--white);
    padding: 80px 0 32px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 80px;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-top: 16px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo span {
    font-size: 20px;
    font-weight: 700;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
    color: var(--secondary);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.footer-tagline {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.7);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .hero-visual {
        height: 400px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .philosophy-container {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gift-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 73px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-xl);
        padding: 24px;
        gap: 0;
        align-items: stretch;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin-bottom: 12px;
    }
    
    .nav-link {
        display: block;
        padding: 12px;
    }
    
    .btn-nav {
        margin-left: 0;
        display: block;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-container {
        flex-direction: column;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}


/* ========== PRODUCT IMAGES ========== */
.product-image img,
.product-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

.product-image {
    position: relative;
    overflow: hidden;
}

.product-image img {
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}
/* ========== FIX PRODUCT IMAGE SPACING - REMOVE SIDE SPACE ========== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    width: 100%;
    justify-content: center;  /* Centers grid perfectly */
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;  /* Makes all cards same height */
    width: 100%;   /* Full width of grid cell */
}

.product-image {
    position: relative;
    height: 300px;  /* Fixed height */
    width: 100%;
    overflow: hidden;  /* Cuts off any overflow */
    background: none !important;  /* Remove colored backgrounds */
    flex-shrink: 0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;  /* Perfectly fills space, crops if needed */
    object-position: center;
    display: block;
    border-radius: 12px 12px 0 0;  /* Top corners only */
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

/* Remove ALL colored gradient backgrounds */
.product-methi, .product-gond, .product-khajur, .product-sont {
    background: none !important;
}

/* Product preview cards on homepage */
.product-preview-card .product-visual {
    height: 220px;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    background: none !important;
    margin-bottom: 24px;
}

.product-preview-card .product-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Container fixes */
.products-preview {
    padding: 80px 0;
    background: var(--white);  /* Clean white background */
}

/* Negative margins fix for perfect grid */
.container {
    padding: 0 20px;
    max-width: 1280px;
    margin: 0 auto;
}

/* Mobile perfect spacing */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 10px;
    }
    
    .product-image {
        height: 280px;
    }
    
    .product-preview-card .product-visual {
        height: 200px;
    }
}






/* ========== PERFECT RESPONSIVE FOR ALL DEVICES ========== */

/* Base Container */
* {
    box-sizing: border-box;
}

body {
    line-height: 1.6;
    overflow-x: hidden; /* NO horizontal scroll */
}

/* Hero Section - Text Left + Image Right */
.hero {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    z-index: 2;
}

.hero-image {
    position: relative;
    height: 500px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.hero:hover .hero-image img {
    transform: scale(1.05);
}

/* Gift Section - Text Left + Image Right */
.gift-section {
    padding: 100px 0;
    background: var(--cream);
}

.gift-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: center;
}

.gift-image {
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.gift-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
    padding: 0 10px;
}

.product-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-image {
    height: 300px;
    flex-shrink: 0;
}

/* Navigation Mobile */
@media (max-width: 992px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        border-radius: 0 0 20px 20px;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .hamburger {
        display: block;
    }
}

/* Tablet */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-image {
        height: 400px;
        order: -1; /* Image above text */
    }
    
    .gift-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .gift-image {
        height: 350px;
        order: -1;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 80px 0 60px;
    }
    
    .hero-container {
        gap: 30px;
    }
    
    .hero-image {
        height: 300px;
        border-radius: 16px;
    }
    
    .hero-title {
        font-size: 32px !important;
        line-height: 1.2;
    }
    
    .gift-section {
        padding: 60px 0;
    }
    
    .gift-container {
        gap: 30px;
    }
    
    .gift-image {
        height: 280px;
        border-radius: 16px;
    }
    
    .product-image {
        height: 260px;
    }
    
    .product-info {
        padding: 24px 20px;
    }
    
    .product-price {
        font-size: 24px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero {
        padding: 60px 0 40px;
    }
    
    .hero-title {
        font-size: 28px !important;
    }
    
    .hero-image {
        height: 250px;
    }
    
    .product-image {
        height: 240px;
    }
    
    .products-grid {
        gap: 20px;
        padding: 0 8px;
    }
    
    .nav-container {
        padding: 0 16px;
    }
}

/* Extra Small */
@media (max-width: 360px) {
    .hero-title {
        font-size: 24px !important;
    }
    
    .product-price {
        font-size: 22px;
    }
}


/* ========== HERO SECTION WITH RIGHT-SIDE IMAGE ========== */
.hero-container {
    display: grid;
    grid-template-columns: 1fr 500px;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-main-image {
    position: relative;
    height: 500px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.hero:hover .hero-main-image img {
    transform: scale(1.05);
}

/* Floating cards positioning */
.floating-cards {
    position: absolute;
    top: 20%;
    right: 5%;
    z-index: 1;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 16px 20px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    font-weight: 600;
    color: var(--text-primary);
    animation: float 6s ease-in-out infinite;
}

.card-1 { top: 0; right: 0; animation-delay: 0s; }
.card-2 { top: 40%; right: 20px; animation-delay: 2s; }
.card-3 { bottom: 20%; right: 0; animation-delay: 4s; }

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-main-image {
        height: 400px;
        order: -1; /* Image goes above text */
        margin: 0 auto;
        max-width: 100%;
    }
    
    .floating-cards {
        display: none; /* Hide floating cards on mobile */
    }
}

@media (max-width: 768px) {
    .hero-main-image {
        height: 320px;
        border-radius: 20px;
    }
}

@media (max-width: 480px) {
    .hero-main-image {
        height: 280px;
    }
    
    .hero-title {
        font-size: 28px !important;
    }
}





/* ========== GIFT SECTION WITH RIGHT-SIDE IMAGE ========== */
.gift-container {
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.gift-main-image {
    position: relative;
    height: 420px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.gift-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.gift-section:hover .gift-main-image img {
    transform: scale(1.05);
}

/* Remove old gift-box-large styling */
.gift-visual,
.gift-box-large {
    display: none !important;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    .gift-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .gift-main-image {
        height: 350px;
        order: -1; /* Image goes above text */
        margin: 0 auto;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .gift-main-image {
        height: 300px;
        border-radius: 20px;
    }
}

@media (max-width: 480px) {
    .gift-main-image {
        height: 260px;
    }
    
    .section-title {
        font-size: 28px !important;
    }
}



.btn-primary a h4{
    color: #FFFFFF;;
}


/* ========== HERO SECTION MOBILE RESPONSIVE FIX ========== */
.hero {
    padding: 80px 0 60px 0;
    min-height: auto !important;
    overflow: visible;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.hero-content {
    max-width: 100%;
    text-align: center;
    padding: 0;
    z-index: 2;
}

.hero-main-image {
    height: 300px;
    max-width: 100%;
    margin: 0 auto;
    order: -1; /* Image above text on mobile */
    border-radius: 20px;
}

/* Desktop */
@media (min-width: 993px) {
    .hero-container {
        grid-template-columns: 1fr 500px;
        gap: 60px;
    }
    
    .hero-main-image {
        height: 500px;
        order: 2;
        margin: 0;
    }
    
    .hero-content {
        text-align: left;
    }
}

/* Tablet */
@media (max-width: 992px) {
    .hero {
        padding: 60px 0 40px 0;
    }
    
    .hero-main-image {
        height: 350px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hero {
        padding: 50px 0 30px 0;
    }
    
    .hero-main-image {
        height: 280px;
        border-radius: 16px;
    }
    
    .hero-title {
        font-size: 28px !important;
        line-height: 1.3 !important;
    }
    
    .hero-description {
        font-size: 16px !important;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero {
        padding: 40px 0 20px 0;
    }
    
    .hero-main-image {
        height: 240px;
    }
    
    .hero-title {
        font-size: 24px !important;
    }
}
