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

  :root {
    --saffron: #E8761A;
    --saffron-light: #FFF0E0;
    --saffron-dark: #B85C0E;
    --turmeric: #F2B705;
    --chilli: #C0392B;
    --green: #2D6A4F;
    --cream: #FDF6EC;
    --dark: #1C1208;
    --muted: #7A6652;
    --border: #EDD9C0;
    --white: #FFFFFF;
    --card-bg: #FFFAF4;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--dark);
    overflow-x: hidden;
  }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(253, 246, 236, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0 5%;
    display: flex; align-items: center; justify-content: space-between;
    height: 68px;
  }
  .nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem; font-weight: 700;
    color: var(--saffron-dark);
    letter-spacing: -0.5px;
  }
  .nav-logo span { color: var(--turmeric); }
  .brand-logo-img { width: 62px; height: 62px; object-fit: cover; border-radius: 16px; display: block; box-shadow: 0 2px 10px rgba(0,0,0,.12); }
  .footer-brand-logo { width: 92px; height: 92px; object-fit: cover; border-radius: 22px; display: block; margin-bottom: 14px; }
  .nav-links { display: flex; gap: 2rem; list-style: none; }
  .nav-links a {
    text-decoration: none; color: var(--muted);
    font-size: 0.9rem; font-weight: 500;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--saffron); }
  .nav-cta {
    background: var(--saffron);
    color: white; border: none;
    padding: 10px 22px; border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem; font-weight: 600;
    cursor: pointer; transition: background 0.2s, transform 0.1s;
    text-decoration: none;
  }
  .nav-cta:hover { background: var(--saffron-dark); transform: translateY(-1px); }

  /* HERO */
  .hero {
    min-height: 100vh;
    background: linear-gradient(145deg, #FDF6EC 0%, #FFF0D4 50%, #FDE8C8 100%);
    display: flex; align-items: center;
    padding: 100px 5% 60px;
    position: relative; overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute; top: -80px; right: -80px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(232,118,26,0.12) 0%, transparent 70%);
    border-radius: 50%;
  }
  .hero::after {
    content: '';
    position: absolute; bottom: -100px; left: -60px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(242,183,5,0.1) 0%, transparent 70%);
    border-radius: 50%;
  }
  .hero-content { max-width: 580px; position: relative; z-index: 1; }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--saffron-light); color: var(--saffron-dark);
    border: 1px solid var(--border);
    padding: 6px 16px; border-radius: 50px;
    font-size: 0.8rem; font-weight: 600;
    letter-spacing: 0.5px; margin-bottom: 1.5rem;
    text-transform: uppercase;
  }
  .hero-badge::before { content: '🌿'; font-size: 0.9rem; }
  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    line-height: 1.1; font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.2rem;
  }
  .hero h1 em { color: var(--saffron); font-style: italic; }
  .hero p {
    font-size: 1.1rem; line-height: 1.7;
    color: var(--muted); max-width: 460px;
    margin-bottom: 2.5rem;
  }
  .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
  .btn-primary {
    background: var(--saffron); color: white;
    border: none; padding: 14px 32px; border-radius: 50px;
    font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 600;
    cursor: pointer; transition: all 0.2s; text-decoration: none;
    display: inline-block;
  }
  .btn-primary:hover { background: var(--saffron-dark); transform: translateY(-2px); }
  .btn-secondary {
    background: transparent; color: var(--dark);
    border: 1.5px solid var(--border); padding: 14px 32px; border-radius: 50px;
    font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 500;
    cursor: pointer; transition: all 0.2s; text-decoration: none;
    display: inline-block;
  }
  .btn-secondary:hover { border-color: var(--saffron); color: var(--saffron); }
  .hero-stats {
    display: flex; gap: 2.5rem; margin-top: 3rem;
    padding-top: 2rem; border-top: 1px solid var(--border);
  }
  .stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem; font-weight: 700; color: var(--saffron-dark);
  }
  .stat-label { font-size: 0.82rem; color: var(--muted); margin-top: 2px; }

  .hero-visual {
    position: absolute; right: 5%; top: 50%;
    transform: translateY(-50%);
    width: 420px; height: 420px;
  }
  .spice-bowl-svg { width: 100%; height: 100%; }

  /* TRUST BAR */
  .trust-bar {
    background: var(--dark); color: rgba(255,255,255,0.7);
    padding: 18px 5%;
    display: flex; align-items: center; justify-content: center;
    gap: 3rem; flex-wrap: wrap;
    font-size: 0.85rem; font-weight: 500;
  }
  .trust-item { display: flex; align-items: center; gap: 8px; }
  .trust-item::before { font-size: 1rem; }

  /* SECTION COMMON */
  section { padding: 90px 5%; }
  .section-label {
    font-size: 0.75rem; font-weight: 600; letter-spacing: 2px;
    text-transform: uppercase; color: var(--saffron);
    margin-bottom: 0.6rem;
  }
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700; line-height: 1.2;
    color: var(--dark); margin-bottom: 1rem;
  }
  .section-sub {
    color: var(--muted); font-size: 1rem;
    line-height: 1.7; max-width: 520px;
  }

  /* CATEGORIES */
  .categories { background: var(--white); }
  .cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px; margin-top: 2.5rem;
  }
  .cat-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px; padding: 24px 16px;
    text-align: center; cursor: pointer;
    transition: all 0.25s; text-decoration: none;
  }
  .cat-card:hover {
    border-color: var(--saffron);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(232,118,26,0.12);
  }
  .cat-icon { font-size: 2.2rem; margin-bottom: 12px; }
  .cat-name {
    font-size: 0.9rem; font-weight: 600;
    color: var(--dark); margin-bottom: 4px;
  }
  .cat-count { font-size: 0.78rem; color: var(--muted); }

  /* PRODUCTS */
  .products-header {
    display: flex; align-items: flex-end;
    justify-content: space-between; margin-bottom: 2.5rem;
    flex-wrap: wrap; gap: 1rem;
  }
  .filter-tabs {
    display: flex; gap: 8px; flex-wrap: wrap;
    margin-top: 1.5rem;
  }
  .tab {
    padding: 8px 18px; border-radius: 50px;
    border: 1px solid var(--border);
    background: transparent; color: var(--muted);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem; font-weight: 500;
    cursor: pointer; transition: all 0.2s;
  }
  .tab.active, .tab:hover {
    background: var(--saffron); color: white;
    border-color: var(--saffron);
  }
  .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
  }
  .product-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 20px; overflow: hidden;
    transition: all 0.25s; cursor: pointer;
  }
  .product-card:hover {
    border-color: var(--saffron);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(232,118,26,0.12);
  }
  .product-img {
    height: 310px;
    display: flex; align-items: center; justify-content: center;
    position: relative;
    background: #fff;
    padding: 12px;
    overflow: hidden;
  }
  .product-img img {
    width: 100%; height: 100%;
    object-fit: contain;
    display: block;
  }
  .product-link { text-decoration: none; color: inherit; display: block; }
  .product-footer.single-action { justify-content: flex-end; }
  .add-btn { text-decoration: none; display: inline-block; }
  .badge-new {
    position: absolute; top: 12px; left: 12px;
    background: var(--green); color: white;
    font-size: 0.7rem; font-weight: 700;
    padding: 3px 10px; border-radius: 50px;
    text-transform: uppercase; letter-spacing: 0.5px;
  }
  .badge-hot {
    position: absolute; top: 12px; left: 12px;
    background: var(--chilli); color: white;
    font-size: 0.7rem; font-weight: 700;
    padding: 3px 10px; border-radius: 50px;
    text-transform: uppercase; letter-spacing: 0.5px;
  }
  .product-body { padding: 16px 18px 20px; }
  .product-tag {
    font-size: 0.72rem; font-weight: 600;
    color: var(--saffron); text-transform: uppercase;
    letter-spacing: 0.5px; margin-bottom: 6px;
  }
  .product-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem; font-weight: 700;
    color: var(--dark); margin-bottom: 6px;
  }
  .product-desc { font-size: 0.82rem; color: var(--muted); line-height: 1.5; margin-bottom: 14px; }
  .product-footer {
    display: flex; align-items: center;
    justify-content: space-between;
  }
  .product-price {
    font-size: 1.1rem; font-weight: 700;
    color: var(--saffron-dark);
  }
  .product-price span {
    font-size: 0.78rem; color: var(--muted);
    text-decoration: line-through; font-weight: 400; margin-left: 4px;
  }
  .add-btn {
    background: var(--saffron); color: white;
    border: none; padding: 8px 16px; border-radius: 50px;
    font-family: 'DM Sans', sans-serif; font-size: 0.82rem; font-weight: 600;
    cursor: pointer; transition: background 0.2s;
  }
  .add-btn:hover { background: var(--saffron-dark); }

  /* WHY US */
  .why-us {
    background: var(--dark);
    color: white;
    position: relative; overflow: hidden;
  }
  .why-us::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at 80% 50%, rgba(232,118,26,0.15) 0%, transparent 60%);
  }
  .why-us .section-title { color: white; }
  .why-us .section-sub { color: rgba(255,255,255,0.6); }
  .why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px; margin-top: 3rem; position: relative; z-index: 1;
  }
  .why-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px; padding: 32px 28px;
    transition: all 0.25s;
  }
  .why-card:hover {
    background: rgba(232,118,26,0.15);
    border-color: rgba(232,118,26,0.4);
    transform: translateY(-4px);
  }
  .why-icon { font-size: 2.4rem; margin-bottom: 1rem; }
  .why-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem; font-weight: 700;
    color: white; margin-bottom: 0.6rem;
  }
  .why-desc { font-size: 0.88rem; line-height: 1.65; color: rgba(255,255,255,0.6); }

  /* TESTIMONIALS */
  .testimonials { background: var(--white); }
  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px; margin-top: 2.5rem;
  }
  .review-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px; padding: 24px;
  }
  .stars { color: var(--turmeric); font-size: 1rem; margin-bottom: 12px; letter-spacing: 2px; }
  .review-text {
    font-size: 0.9rem; line-height: 1.7;
    color: var(--dark); font-style: italic;
    margin-bottom: 16px;
  }
  .reviewer {
    display: flex; align-items: center; gap: 10px;
  }
  .reviewer-avatar {
    width: 38px; height: 38px; border-radius: 50%;
    background: var(--saffron-light);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 0.85rem; color: var(--saffron-dark);
  }
  .reviewer-name { font-size: 0.88rem; font-weight: 600; color: var(--dark); }
  .reviewer-loc { font-size: 0.78rem; color: var(--muted); }

  /* RECIPE SECTION */
  .recipe-section {
    background: linear-gradient(135deg, #FDF6EC, #FFF0D4);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .recipe-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: center;
    margin-top: 3rem;
  }
  .recipe-visual {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 24px; padding: 40px;
    text-align: center; font-size: 6rem;
    min-height: 280px; display: flex;
    flex-direction: column; align-items: center; justify-content: center;
  }
  .recipe-label-small { font-size: 0.85rem; color: var(--muted); margin-top: 12px; }
  .recipe-list { list-style: none; }
  .recipe-list li {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 16px 0; border-bottom: 1px solid var(--border);
    font-size: 0.92rem; color: var(--dark); line-height: 1.5;
  }
  .recipe-list li:last-child { border-bottom: none; }
  .recipe-num {
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--saffron-light); color: var(--saffron-dark);
    font-size: 0.78rem; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; margin-top: 1px;
  }

  /* NEWSLETTER */
  .newsletter {
    background: var(--saffron);
    color: white; text-align: center;
    padding: 80px 5%;
  }
  .newsletter .section-label { color: rgba(255,255,255,0.7); }
  .newsletter .section-title { color: white; }
  .newsletter p { color: rgba(255,255,255,0.85); font-size: 1rem; margin: 0.8rem auto 2rem; max-width: 480px; }
  .newsletter-form {
    display: flex; gap: 12px; justify-content: center;
    flex-wrap: wrap; max-width: 460px; margin: 0 auto;
  }
  .newsletter-form input {
    flex: 1; min-width: 220px;
    padding: 14px 20px; border-radius: 50px;
    border: 2px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.15);
    color: white; font-size: 0.95rem;
    font-family: 'DM Sans', sans-serif;
    outline: none;
  }
  .newsletter-form input::placeholder { color: rgba(255,255,255,0.6); }
  .newsletter-form input:focus { border-color: white; }
  .btn-white {
    background: white; color: var(--saffron-dark);
    border: none; padding: 14px 28px; border-radius: 50px;
    font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 700;
    cursor: pointer; transition: all 0.2s; white-space: nowrap;
  }
  .btn-white:hover { background: var(--cream); transform: translateY(-2px); }

  /* FOOTER */
  footer {
    background: var(--dark); color: rgba(255,255,255,0.6);
    padding: 60px 5% 30px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px; margin-bottom: 40px;
  }
  .footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem; font-weight: 700;
    color: var(--saffron); margin-bottom: 1rem;
  }
  .footer-about { font-size: 0.85rem; line-height: 1.7; margin-bottom: 1.5rem; }
  .footer-social { display: flex; gap: 12px; }
  .social-btn {
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem; text-decoration: none; color: white;
    transition: all 0.2s; cursor: pointer;
  }
  .social-btn:hover { background: var(--saffron); border-color: var(--saffron); }
  .social-btn svg { width: 20px; height: 20px; display: block; fill: currentColor; }
  .footer-heading {
    font-size: 0.85rem; font-weight: 700;
    color: white; margin-bottom: 1.2rem; text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  .footer-links { list-style: none; }
  .footer-links li { margin-bottom: 0.6rem; }
  .footer-links a {
    text-decoration: none; color: rgba(255,255,255,0.5);
    font-size: 0.85rem; transition: color 0.2s;
  }
  .footer-links a:hover { color: var(--saffron); }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 24px;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 1rem;
    font-size: 0.8rem;
  }

  /* ANIMATIONS */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .hero-content > * {
    animation: fadeUp 0.6s ease both;
  }
  .hero-content > *:nth-child(1) { animation-delay: 0.1s; }
  .hero-content > *:nth-child(2) { animation-delay: 0.2s; }
  .hero-content > *:nth-child(3) { animation-delay: 0.3s; }
  .hero-content > *:nth-child(4) { animation-delay: 0.4s; }
  .hero-content > *:nth-child(5) { animation-delay: 0.5s; }

  @media (max-width: 768px) {
    nav { padding: 0 4%; }
    .nav-links { display: none; }
    .hero { flex-direction: column; text-align: center; padding: 100px 5% 60px; }
    .hero-visual { display: none; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
    .recipe-layout { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
  }
