/* style.css */
:root {
    /* Colors */
    --primary: #ff7a00;
    --primary-hover: #e06c00;
    --secondary: #e53935;
    --secondary-hover: #c62828;
    --highlight: #ffb300;
    
    /* Backgrounds */
    --bg-white: #ffffff;
    --bg-cream: #fff8f0;
    --bg-warm: #fdf6ec;
    
    /* Text Colors */
    --text-dark: #2d1808;
    --text-muted: #6b5040;
    
    /* Gradients */
    --gradient-btn: linear-gradient(135deg, #ff7a00 0%, #e53935 100%);
    --gradient-btn-hover: linear-gradient(135deg, #e53935 0%, #ff7a00 100%);
    
    /* Shadows */
    --shadow-soft: 0 10px 30px rgba(229, 57, 53, 0.08);
    --shadow-hover: 0 20px 40px rgba(229, 57, 53, 0.15);
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    
    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .logo {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center { text-align: center; }
.w-100 { width: 100%; }

/* Buttons */
.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
    line-height: 1;
}

.btn-primary {
    background: var(--gradient-btn);
    color: white;
    box-shadow: 0 4px 15px rgba(229, 57, 53, 0.3);
}

.btn-primary:hover {
    background: var(--gradient-btn-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(229, 57, 53, 0.4);
    color: white;
}

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

.btn-secondary:hover {
    background: var(--bg-cream);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 10px 24px;
}

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

.btn-large {
    padding: 16px 36px;
    font-size: 18px;
}

/* Sections */
.section-light {
    background-color: var(--bg-cream);
    padding: 80px 0;
}

.section-warm {
    background-color: var(--bg-warm);
    padding: 80px 0;
}

.section-header {
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--highlight);
    border-radius: 3px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 18px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 249, 230, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(255, 122, 0, 0.1);
    border-bottom: 2px solid rgba(255, 122, 0, 0.2);
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 65px;
    max-width: 100%;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-name {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--primary);
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: var(--transition);
}

.logo:hover .brand-name {
    transform: scale(1.05);
}

.logo img {
    height: 55px;
    width: 55px;
    object-fit: contain;
    border-radius: 50%;
    border: 2px solid var(--primary);
    background-color: var(--bg-white);
    padding: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-dark);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    color: var(--text-dark);
    cursor: pointer;
}

/* Mobile Nav */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    z-index: 1001;
    padding: 80px 30px;
    box-shadow: -5px 0 20px rgba(0,0,0,0.1);
    transition: 0.4s ease-in-out;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.mobile-nav.open {
    right: 0;
}

.close-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 24px;
    cursor: pointer;
}

.mobile-nav a {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    border-bottom: 1px solid var(--bg-cream);
    padding-bottom: 15px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    background-color: var(--bg-cream);
    overflow: hidden;
}

.quick-shop {
    padding: 30px 0;
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.mobile-row {
    overflow-x: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.9;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.hero h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 24px;
    color: white;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.4);
}

.hero .subheading {
    font-size: 22px;
    color: white;
    margin-bottom: 40px;
    font-weight: 500;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.4);
}

.hero-products {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 20px 0;
}

.quick-card {
    background: white;
    padding: 12px;
    border-radius: 16px;
    width: 160px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.quick-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.quick-img {
    height: 120px;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
    background-color: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quick-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.quick-card h4 {
    font-size: 15px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.quick-order-btn {
    display: block;
    background: var(--gradient-btn);
    color: white;
    padding: 8px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

@media (max-width: 480px) {
    .hero-products {
        gap: 24px;
    }
    
    .quick-card {
        width: 145px;
        padding: 10px;
    }
    
    .quick-card h4 {
        font-size: 13px;
    }
    
    .quick-order-btn {
        font-size: 11px;
    }
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 40px;
    margin-bottom: 24px;
}

.about-text p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.highlight-box {
    background: white;
    padding: 30px;
    border-radius: 16px;
    border-left: 4px solid var(--primary);
    box-shadow: var(--shadow-soft);
    position: relative;
}

.highlight-box i {
    font-size: 30px;
    color: var(--highlight);
    margin-bottom: 15px;
}

.highlight-text {
    font-family: var(--font-heading);
    font-size: 20px !important;
    font-weight: 600;
    color: var(--primary) !important;
    margin-bottom: 0 !important;
    font-style: italic;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

/* Products Section */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(255, 122, 0, 0.1);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(255, 122, 0, 0.3);
}

.product-img-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fafafa;
}

.product-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 12px;
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

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

.spice-glow {
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(229, 57, 53, 0.4) 0%, rgba(229, 57, 53, 0) 70%);
    border-radius: 50%;
    filter: blur(20px);
    z-index: 1;
    bottom: 0;
    right: 0;
    opacity: 0.6;
}

.turmeric-glow {
    background: radial-gradient(circle, rgba(255, 179, 0, 0.5) 0%, rgba(255, 179, 0, 0) 70%);
}

.product-info {
    padding: 30px;
}

.product-info h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.product-info p {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 24px;
    min-height: 66px;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.old-price {
    font-size: 18px;
    color: #999;
    text-decoration: line-through;
    font-weight: 400;
}

/* Product Range */
.range-wrapper {
    background: white;
    border-radius: 24px;
    padding: 60px;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.range-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,122,0,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.range-content h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.range-content .subtitle {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.range-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.range-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 18px;
    font-weight: 500;
    padding: 16px 20px;
    background: var(--bg-warm);
    border-radius: 12px;
    transition: var(--transition);
}

.range-list li:hover {
    transform: translateX(5px);
    background: var(--bg-cream);
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.range-list i {
    color: var(--highlight);
    font-size: 24px;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-box {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}

.feature-box:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--primary);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
    color: var(--primary);
    transition: var(--transition);
}

.feature-box:hover .feature-icon {
    background: var(--primary);
    color: white;
}

.feature-box h3 {
    font-size: 20px;
    margin-bottom: 16px;
}

.feature-box p {
    color: var(--text-muted);
    font-size: 15px;
}

/* Footer */
.footer {
    background-color: var(--text-dark);
    color: white;
    padding-top: 80px;
}

.footer-cta h2 {
    color: white;
    font-size: 40px;
    margin-bottom: 20px;
}

.stock-alert {
    color: var(--highlight);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    background: rgba(255,255,255,0.1);
    padding: 16px 30px;
    border-radius: 50px;
    transition: var(--transition);
}

.contact-item:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    background: #1a0e05;
    padding: 24px 0;
    text-align: center;
    color: rgba(255,255,255,0.6);
}

.powered-by {
    font-size: 13px;
    margin-top: 8px;
    letter-spacing: 0.5px;
}

.powered-by a {
    color: var(--primary);
    font-weight: 600;
    transition: var(--transition);
}

.powered-by a:hover {
    color: white;
    text-decoration: underline;
}

/* Unified Bottom Navigation */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 75px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1100;
    box-shadow: 0 -5px 30px rgba(0,0,0,0.15);
    padding: 10px 16px;
    gap: 12px;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-family: var(--font-heading);
    transition: var(--transition);
}

.nav-item span {
    font-size: 12px;
    font-weight: 600;
    margin-top: 2px;
}

.call-action {
    flex: 1;
    color: var(--primary);
    background: #fff5eb;
    padding: 10px;
    border-radius: 12px;
    min-width: 70px;
}

.whatsapp-action {
    flex: 1;
    color: #25D366;
    background: #e8f9ed;
    padding: 10px;
    border-radius: 12px;
    min-width: 70px;
}

.order-action {
    flex: 3;
    background: var(--gradient-btn);
    color: white !important;
    border-radius: 14px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(229, 57, 53, 0.3);
}

.order-action span {
    font-size: 17px;
    font-weight: 700;
}

.nav-item i {
    font-size: 20px;
}

.nav-item:active {
    transform: scale(0.95);
}

body {
    padding-bottom: 75px;
}

/* Animations */
@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide-in-left.visible, .slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .highlight-box {
        text-align: left;
    }
    
    .hero h1 {
        font-size: 46px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero {
        padding-top: 100px;
        min-height: 80vh;
    }
    
    .hero h1 {
        font-size: 38px;
    }
    
    .hero-ctas {
        flex-direction: column;
    }
    
    .range-wrapper {
        padding: 40px 20px;
    }
    
    .contact-item {
        width: 100%;
        justify-content: center;
    }
    
    .footer-cta h2 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 32px;
    }
    
    .hero .subheading {
        font-size: 18px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
}
