/* ============================================================
   SHRISH LLC — Premium Stylesheet
   Palette: Deep saffron #C8791A, Gold #D4A017, Cream #FDF6EC, Dark #1A1208
   Fonts: Cormorant Garamond (display) + Jost (body)
============================================================ */

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

:root {
  --saffron:   #C8791A;
  --saffron-d: #A8600F;
  --gold:      #D4A017;
  --gold-l:    #F0C84A;
  --cream:     #FDF6EC;
  --cream-d:   #F5E9D4;
  --dark:      #1A1208;
  --dark-m:    #2E1F08;
  --mid:       #6B4A20;
  --text:      #3D2A0A;
  --text-light:#7A5C30;
  --white:     #FFFFFF;
  --radius:    12px;
  --radius-lg: 24px;
  --shadow:    0 4px 24px rgba(26,18,8,0.10);
  --shadow-lg: 0 12px 48px rgba(26,18,8,0.16);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  font-size: 17px;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }

/* -- UTILITY -- */
.container { max-width: 1600px; margin: 0 auto; padding: 0 28px; }
.section    { padding: 96px 0; }
.section-alt{ background: var(--cream-d); }
.section-header { text-align: center; max-width: 600px; margin: 0 auto 56px; }
.section-label  { font-family: var(--font-body); font-size: 12px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--saffron); margin-bottom: 12px; }
.section-title  { font-family: var(--font-display); font-size: clamp(2rem,4vw,3rem); font-weight: 600; color: var(--dark); line-height: 1.15; margin-bottom: 16px; }
.section-title em { font-style: italic; color: var(--saffron); }
.section-desc   { color: var(--text-light); font-size: 18px; }
.section-cta    { text-align: center; margin-top: 48px; }

/* -- BUTTONS -- */
a.btn-primary,
a.btn-primary:link,
a.btn-primary:visited,
button.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--saffron);
  color: #fff !important;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: 2px solid var(--saffron);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none !important;
}

a.btn-primary:hover,
a.btn-primary:focus,
a.btn-primary:active,
button.btn-primary:hover,
button.btn-primary:focus,
button.btn-primary:active {
  background: var(--saffron-d);
  border-color: var(--saffron-d);
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,121,26,0.35);
  text-decoration: none !important;
}
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.15); color: var(--white);
  padding: 14px 32px; border-radius: 50px; font-family: var(--font-body);
  font-size: 15px; font-weight: 600; border: 2px solid rgba(255,255,255,0.4);
  cursor: pointer; transition: var(--transition); backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.25); transform: translateY(-2px); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--saffron);
  padding: 13px 32px; border-radius: 50px; font-family: var(--font-body);
  font-size: 15px; font-weight: 600; border: 2px solid var(--saffron);
  cursor: pointer; transition: var(--transition);
}
.btn-outline:hover { background: var(--saffron); color: var(--white); transform: translateY(-2px); }

/* -- ANNOUNCEMENT BAR -- */
.announcement-bar {
  background: var(--dark);
  color: var(--gold-l);
  text-align: center;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* -- NAVIGATION -- */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(253,246,236,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212,160,23,0.2);
  transition: box-shadow var(--transition);
  min-height: 0;
}

.nav.scrolled { box-shadow: var(--shadow); }

.nav-inner {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr) 120px;
  align-items: center;
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 28px;
  min-height: 80px;
  column-gap: 20px;
}

.nav-logo {
  display: flex;
  align-items: center;
  justify-self: start;
  flex-shrink: 0;
  margin-left: 0;
}

.logo-img {
  height: 118px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  justify-self: center;
  gap: 42px;
  list-style: none;
  margin: 0;
  padding: 0;
  width: auto;
  transform: translateX(-78px);
}

.nav-link {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-light);
  transition: color var(--transition);
  letter-spacing: 0.35px;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--saffron);
}
.nav-cart-wrap {
  display: flex;
  align-items: center;
  justify-self: end;
  justify-content: flex-end;
  min-width: 120px;
  margin-right: 0;
  padding-right: 0;
}

/* -- NAV CART BUTTON -- */
.nav-cart-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: rgba(200,121,26,0.1);
  border-radius: 50px;
  transition: var(--transition);
  text-decoration: none;
}
.nav-cart-btn:hover { background: rgba(200,121,26,0.2); }
.nav-cart-icon { font-size: 20px; line-height: 1; }
.nav-cart-badge {
  background: var(--saffron);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 50px;
  min-width: 20px;
  text-align: center;
  line-height: 1.4;
}

/* move cart to far right */
.nav-cta {
  display: flex;
  align-items: center;
  justify-self: end;
  margin-left: 0;
}

/* hide Order Now button/link if it uses nav-cta text button */
.nav-cta .btn-primary,
.nav-cta .btn-outline,
.nav-cta .order-now,
.nav-cta a[href*="order"],
.nav-cta a[href*="shop"] {
  display: none !important;
}

/* keep only cart visible on right */
.nav-cta .cart-btn,
.nav-cta .cart-button,
.nav-cta .cart,
.nav-cta [class*="cart"],
.nav-cta a[aria-label*="cart"],
.nav-cta button[aria-label*="cart"] {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.nav-hamburger span {
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  display: block;
  transition: var(--transition);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 16px 24px 24px;
  gap: 4px;
  border-top: 1px solid var(--cream-d);
}

.nav-mobile a {
  padding: 10px 0;
  font-size: 15px;
  color: var(--text);
  font-weight: 500;
  border-bottom: 1px solid rgba(212,160,23,0.1);
}

.nav-mobile .mobile-cta {
  display: none;
}

@media (max-width: 1100px) {
  .nav-inner {
    grid-template-columns: 230px 1fr 150px;
    padding: 0 18px 0 14px;
    column-gap: 12px;
  }

  .nav-logo {
    margin-left: 16px;
  }

  .logo-img {
    height: 80px;
  }

  .nav-links {
    gap: 24px;
    width: min(100%, 460px);
    transform: none;
  }

  .nav-link {
    font-size: 17px;
  }

  .nav-cart-wrap {
    min-width: 150px;
    padding-right: 14px;
  }
}

@media (max-width: 768px) {
  .nav-inner {
    grid-template-columns: 1fr auto auto;
    padding: 0 14px 0 12px;
    min-height: 78px;
    column-gap: 10px;
  }

  .nav-logo {
    margin-left: 0;
  }

  .logo-img {
    height: 78px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-cart-wrap {
    min-width: 0;
    padding-right: 0;
    justify-self: end;
  }

  .nav-cart-btn {
    padding: 6px 10px;
    gap: 4px;
  }

  .nav-hamburger {
    display: flex;
    justify-self: end;
    order: 3;
    margin-left: 2px;
  }

  .nav-mobile.open {
    display: flex;
  }
}

/* -- HERO -- */
.hero {
  min-height: 76vh;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-m) 60%, #3D2005 100%);
  display: grid;
  grid-template-columns: minmax(520px, 700px) minmax(500px, 620px);
  justify-content: center;
  gap: 96px;
  align-items: center;
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0;
  padding: 44px 2.5% 52px;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.25;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--saffron), transparent);
  top: -200px; right: -100px;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--gold), transparent);
  bottom: -100px; left: -100px;
}
.hero-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 660px;
  padding-left: 0;
}
.hero-badge {
  display: inline-block;
  background: rgba(212,160,23,0.15);
  border: 1px solid rgba(212,160,23,0.4);
  color: var(--gold-l);
  font-size: 12px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; padding: 7px 16px; border-radius: 50px;
  margin-bottom: 24px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 600; line-height: 1.05;
  color: var(--white); margin-bottom: 24px;
  animation: fadeUp 0.8s ease both;
}
.hero-title em { font-style: italic; color: var(--gold-l); display: block; font-size: 0.75em; }
.hero-title-accent { color: var(--gold-l); }
.hero-sub {
  color: rgba(255,255,255,0.7);
  font-size: 20px; max-width: 600px;
  margin-bottom: 36px; line-height: 1.7;
  animation: fadeUp 0.8s 0.15s ease both;
}
.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-bottom: 56px;
  animation: fadeUp 0.8s 0.25s ease both;
}
.hero-stats {
  display: flex; align-items: center; gap: 24px;
  animation: fadeUp 0.8s 0.35s ease both;
}
.stat { display: flex; flex-direction: column; }
.stat-num   { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--gold-l); line-height: 1; }
.stat-label { font-size: 12px; color: rgba(255,255,255,0.55); letter-spacing: 0.5px; margin-top: 4px; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.15); }

.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  width: 100%;
}
.hero-img-frame {
  position: relative; border-radius: var(--radius-lg);
  overflow: visible; max-width: 620px; width: 100%;
}
.hero-img {
  width: 100%; border-radius: var(--radius-lg);
  object-fit: cover; aspect-ratio: 4/5;
  box-shadow: 0 32px 64px rgba(0,0,0,0.5);
  animation: scaleIn 1s 0.2s ease both;
}
.hero-img-badge {
  position: absolute; bottom: 24px; left: -24px;
  background: var(--white); border-radius: var(--radius);
  padding: 14px 20px; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 600; color: var(--dark);
  animation: fadeLeft 0.8s 0.5s ease both;
}
.badge-icon { font-size: 22px; }

@keyframes fadeUp   { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
@keyframes fadeLeft { from { opacity: 0; transform: translateX(-24px); } to { opacity: 1; transform: none; } }
@keyframes scaleIn  { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }

@media (max-width: 900px) {
  .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 40px 5% 44px;
        min-height: auto;
        gap: 24px;
      }

  .hero-content {
        max-width: 100%;
        padding-left: 0;
      }



  .hero-sub { margin: 0 auto 28px; }
  .hero-actions { justify-content: center; margin-bottom: 26px; }
  .hero-stats   { justify-content: center; }
  .hero-visual {
      margin-top: 8px;
      justify-content: center;
    }
  .hero-img-badge { left: 12px; }
}

/* -- MARQUEE -- */
.marquee-wrap {
  background: var(--dark); overflow: hidden;
  padding: 16px 0; border-top: 1px solid rgba(212,160,23,0.1);
}
.marquee-track {
  display: flex; gap: 32px; width: max-content;
  animation: marquee 30s linear infinite;
  font-family: var(--font-display); font-size: 18px; font-style: italic;
  color: var(--gold-l); white-space: nowrap;
}
.marquee-track .dot { color: var(--saffron); font-style: normal; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* -- ABOUT TEASER -- */
.about-teaser-grid {
  display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr); gap: 96px; align-items: center;
}
.about-teaser-img-wrap { position: relative; }
.about-img { border-radius: var(--radius-lg); width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.about-img-overlay {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--dark); color: var(--white);
  padding: 20px 24px; border-radius: var(--radius);
  box-shadow: var(--shadow-lg); max-width: 220px;
}
.about-img-overlay blockquote {
  font-family: var(--font-display); font-style: italic;
  font-size: 20px; line-height: 1.3; color: var(--gold-l);
  margin-bottom: 6px;
}
.about-img-overlay cite { font-size: 12px; color: rgba(255,255,255,0.5); font-style: normal; }
.about-teaser-text .section-title { text-align: left; margin-bottom: 20px; }
.about-teaser-text .section-label { text-align: left; }
.about-teaser-text p { color: var(--text-light); margin-bottom: 16px; font-size: 17px; }
.about-teaser-text .btn-outline { margin-top: 8px; }

@media (max-width: 768px) {
  .about-teaser-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-overlay { right: 0; bottom: -16px; }
  .about-teaser-text .section-title, .about-teaser-text .section-label { text-align: center; }
  .about-teaser-text { text-align: center; }
}

/* -- PRODUCTS -- */
.products-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px;
}
.product-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-card-badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--saffron); color: white;
  font-size: 11px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; padding: 4px 10px; border-radius: 50px;
}
.product-card-unavailable { opacity: 0.55; filter: grayscale(30%); }
.product-card-img {
  height: 220px; background: linear-gradient(135deg, var(--cream-d), var(--cream));
  display: flex; align-items: center; justify-content: center;
  font-size: 72px;
}
.product-card-body { padding: 20px 24px 24px; }
.product-card-body h3 { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
.product-card-body p  { font-size: 15px; color: var(--text-light); line-height: 1.6; margin-bottom: 16px; }
.product-card-footer  { display: flex; align-items: center; justify-content: space-between; }
.product-price  { font-size: 18px; font-weight: 700; color: var(--saffron); }
.product-unit   { font-size: 13px; color: var(--text-light); margin-top: 2px; }
.product-status-badge {
  display: inline-block; padding: 4px 12px; border-radius: 50px;
  font-size: 12px; font-weight: 600;
}
.product-status-badge.available   { background: #E8F5E9; color: #2E7D32; }
.product-status-badge.unavailable { background: #FFEBEE; color: #C62828; }
.product-card-clickable { cursor: pointer; }
.product-card-actions { display: flex; gap: 10px; margin-top: 16px; }
.product-card-btn {
  flex: 1; border-radius: 999px; padding: 11px 14px; border: none;
  font-family: var(--font-body); font-size: 13px; font-weight: 700; cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
}
.product-card-btn:hover { transform: translateY(-1px); }
.product-card-btn-secondary { background: transparent; color: var(--saffron); border: 1.5px solid var(--saffron); }
.product-card-btn-secondary:hover { background: rgba(200, 121, 26, 0.08); }
.product-card-btn-primary { background: var(--saffron); color: var(--white); box-shadow: 0 8px 18px rgba(200, 121, 26, 0.2); }
.product-card-btn-primary:hover { background: var(--saffron-d); }
.product-card-btn:disabled { background: #d7d1c8; color: #6f6658; border-color: transparent; cursor: not-allowed; box-shadow: none; transform: none; }
.home-card-qty-wrap {
  display: flex; align-items: center; flex: 1; gap: 0; background: var(--saffron);
  border-radius: 999px; overflow: hidden; height: 44px; box-shadow: 0 8px 18px rgba(200, 121, 26, 0.2);
}
.home-card-qty-btn {
  width: 42px; height: 44px; border: none; background: transparent; color: var(--white);
  font-size: 22px; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.home-card-qty-btn:hover { background: rgba(0, 0, 0, 0.14); }
.home-card-qty-btn.remove-btn { background: rgba(0, 0, 0, 0.12); }
.home-card-qty-mid {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 4px; color: var(--white); font-size: 12px; font-weight: 600;
}
.home-card-qty-mid .hcqn { font-size: 16px; font-weight: 800; min-width: 18px; text-align: center; }
.home-product-modal {
  position: fixed; inset: 0; display: none; align-items: center; justify-content: center;
  padding: 24px; background: rgba(26, 18, 8, 0.58); z-index: 2200; backdrop-filter: blur(4px);
}
.home-product-modal.open { display: flex; }
.home-product-modal-box {
  width: min(920px, 100%); max-height: 90vh; overflow: auto; background: var(--white);
  border-radius: 24px; box-shadow: 0 32px 80px rgba(0, 0, 0, 0.28);
  display: grid; grid-template-columns: minmax(280px, 1fr) minmax(320px, 1fr); position: relative;
}
.home-product-modal-close {
  position: absolute; top: 16px; right: 16px; width: 38px; height: 38px; border: none;
  border-radius: 50%; background: rgba(0, 0, 0, 0.08); color: var(--dark); font-size: 24px; cursor: pointer; z-index: 1;
}
.home-product-modal-media {
  min-height: 360px; background: linear-gradient(135deg, var(--cream-d), var(--cream));
  border-radius: 24px 0 0 24px; overflow: hidden;
}
.home-product-modal-media img {
  display: block; width: 100%; height: 100%; object-fit: cover;
}
.home-product-modal-fallback {
  width: 100%; height: 100%; min-height: 360px; display: flex; align-items: center; justify-content: center;
  font-size: 84px;
}
.home-product-modal-content { padding: 36px 30px 30px; display: flex; flex-direction: column; }
.home-product-modal-origin {
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--saffron); margin-bottom: 8px;
}
.home-product-modal-title { font-family: var(--font-display); font-size: 32px; line-height: 1.1; margin-bottom: 6px; color: var(--dark); }
.home-product-modal-local { font-size: 15px; color: var(--text-light); font-style: italic; margin-bottom: 16px; }
.home-product-modal-status {
  display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; border-radius: 999px;
  font-size: 12px; font-weight: 700; margin-bottom: 16px;
}
.home-product-modal-status.available { background: #E8F5E9; color: #2E7D32; }
.home-product-modal-status.unavailable { background: #FFEBEE; color: #C62828; }
.home-product-modal-desc { font-size: 16px; color: var(--text-light); line-height: 1.8; margin-bottom: 16px; }
.home-product-modal-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.home-product-modal-chip {
  padding: 6px 12px; border-radius: 999px; background: var(--cream-d); color: var(--text-light); font-size: 12px; font-weight: 500;
}
.home-product-modal-best { font-size: 13px; color: var(--text-light); margin-bottom: 22px; }
.home-product-modal-price { font-size: 30px; font-weight: 700; color: var(--saffron); font-family: var(--font-display); }
.home-product-modal-unit { font-size: 13px; color: var(--text-light); margin-top: 4px; margin-bottom: 18px; }
.home-product-modal-actions { display: flex; gap: 12px; align-items: center; margin-top: auto; }
.home-product-qty {
  display: flex; align-items: center; border: 1.5px solid #E0D0B8; border-radius: 999px; overflow: hidden; flex-shrink: 0;
}
.home-product-qty button {
  width: 38px; height: 38px; border: none; background: transparent; color: var(--saffron); font-size: 22px; font-weight: 700; cursor: pointer;
}
.home-product-qty span { min-width: 40px; text-align: center; font-weight: 700; color: var(--dark); }
.home-product-modal-add {
  flex: 1; border: none; border-radius: 999px; background: var(--saffron); color: var(--white);
  padding: 13px 18px; font-family: var(--font-body); font-size: 15px; font-weight: 700; cursor: pointer;
  box-shadow: 0 10px 22px rgba(200, 121, 26, 0.22);
}
.home-product-modal-add:disabled { background: #d7d1c8; color: #6f6658; box-shadow: none; cursor: not-allowed; }
.products-cta { text-align: center; margin-top: 48px; }

@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 700px) {
  .products-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .home-product-modal { padding: 16px; }
  .home-product-modal-box { grid-template-columns: 1fr; }
  .home-product-modal-media { min-height: 240px; border-radius: 24px 24px 0 0; }
  .home-product-modal-fallback { min-height: 240px; }
  .home-product-modal-content { padding: 24px 20px 22px; }
  .home-product-modal-title { font-size: 28px; }
  .home-product-modal-actions { flex-wrap: wrap; }
  .home-product-qty { width: 100%; justify-content: center; }
  .home-product-modal-add { width: 100%; }
}

/* -- HOW IT WORKS -- */
.how-steps {
  display: flex; align-items: flex-start; gap: 24px; justify-content: center;
  max-width: 900px; margin: 0 auto 48px;
}
.how-step {
  flex: 1; text-align: center; padding: 40px 32px;
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); position: relative;
}
.step-num {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  background: var(--saffron); color: white;
  font-size: 12px; font-weight: 700; letter-spacing: 1px;
  padding: 4px 12px; border-radius: 50px;
}
.step-icon { font-size: 40px; margin-bottom: 16px; }
.how-step h3 { font-family: var(--font-display); font-size: 22px; color: var(--dark); margin-bottom: 10px; }
.how-step p  { font-size: 15px; color: var(--text-light); line-height: 1.65; }
.how-arrow { font-size: 28px; color: var(--gold); margin-top: 60px; flex-shrink: 0; }
.how-cta   { text-align: center; }

@media (max-width: 768px) {
  .how-steps { flex-direction: column; align-items: center; }
  .how-arrow { transform: rotate(90deg); margin: 0; }
  .how-step  { width: 100%; max-width: 400px; }
}

/* -- RECIPES TEASER -- */
.recipes-grid {
  display: grid; grid-template-columns: 1fr 2fr 1fr; gap: 24px;
  max-width: 1380px; margin: 0 auto;
}
.recipe-card {
  display: flex; flex-direction: column; border-radius: var(--radius-lg);
  overflow: hidden; background: var(--white); box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.recipe-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.recipe-card-img   { height: 200px; background-size: cover; background-position: center; }
.recipe-card-large .recipe-card-img { height: 280px; }
.recipe-card-body  { padding: 20px; }
.recipe-tag { font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--saffron); }
.recipe-card-body h3 { font-family: var(--font-display); font-size: 22px; color: var(--dark); margin: 6px 0 6px; }
.recipe-card-body p  { font-size: 15px; color: var(--text-light); }

@media (max-width: 900px) {
  .recipes-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .recipes-list { grid-template-columns: 1fr; }
}

/* -- TESTIMONIALS -- */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; max-width: 1260px; margin: 0 auto;
}
.testimonial-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px; box-shadow: var(--shadow);
}
.testimonial-featured {
  background: var(--dark); color: var(--white);
}
.testimonial-featured p { color: rgba(255,255,255,0.8); }
.stars { color: var(--gold); font-size: 18px; margin-bottom: 16px; }
.testimonial-card p  { font-size: 16px; color: var(--text-light); line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.testimonial-author  { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--saffron); color: white;
  font-weight: 700; font-size: 13px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 14px; color: var(--dark); }
.testimonial-featured .testimonial-author strong { color: white; }
.testimonial-author span { font-size: 12px; color: var(--text-light); }
.testimonial-featured .testimonial-author span { color: rgba(255,255,255,0.5); }

@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* -- FOOTER -- */
.footer { background: var(--dark); color: var(--white); }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px;
  max-width: 1200px; margin: 0 auto; padding: 64px 24px 48px;
}
.footer-logo { height: 60px; margin-bottom: 16px; }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 15px; line-height: 1.75; margin-bottom: 20px; }
.footer-contact { display: flex; flex-direction: column; gap: 6px; }
.footer-contact a { color: var(--gold-l); font-size: 15px; transition: color var(--transition); }
.footer-contact a:hover { color: var(--white); }
.footer-nav h4 { font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.footer-nav a, .footer-nav p { display: block; color: rgba(255,255,255,0.6); font-size: 15px; margin-bottom: 8px; transition: color var(--transition); }
.footer-nav a:hover { color: var(--white); }
.footer-subscribe h4 { font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.footer-subscribe p  { color: rgba(255,255,255,0.6); font-size: 15px; margin-bottom: 16px; }
.subscribe-form { display: flex; gap: 0; border-radius: 50px; overflow: hidden; border: 1px solid rgba(255,255,255,0.15); }
.subscribe-form input { flex: 1; padding: 12px 16px; background: rgba(255,255,255,0.08); border: none; color: white; font-size: 14px; outline: none; font-family: var(--font-body); }
.subscribe-form input::placeholder { color: rgba(255,255,255,0.4); }
.subscribe-form button { padding: 12px 20px; background: var(--saffron); color: white; border: none; font-family: var(--font-body); font-size: 14px; font-weight: 600; cursor: pointer; transition: background var(--transition); white-space: nowrap; }
.subscribe-form button:hover { background: var(--saffron-d); }
.subscribe-form button:disabled { background: #7f633c; cursor: wait; }
.subscribe-consent {
  margin-top: 10px;
  margin-bottom: 0;
  font-size: 12px;
  line-height: 1.55;
  color: rgba(255,255,255,0.5);
}
.subscribe-message {
  min-height: 20px;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 500;
}
.subscribe-message.success { color: #9fe2a4; }
.subscribe-message.error { color: #ffb3b3; }
.subscribe-message.info { color: #f6d287; }
.footer-bottom {
  max-width: 1200px; margin: 0 auto; padding: 20px 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: rgba(255,255,255,0.4);
  flex-wrap: wrap; gap: 12px;
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: rgba(255,255,255,0.4); transition: color var(--transition); }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
}
@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .subscribe-form { flex-direction: column; border-radius: 18px; overflow: visible; border: none; gap: 10px; }
  .subscribe-form input { border-radius: 16px; border: 1px solid rgba(255,255,255,0.15); }
  .subscribe-form button { border-radius: 16px; }
}

/* -- PAGE HERO (inner pages) -- */
.page-hero {
  background: linear-gradient(135deg, var(--dark), var(--dark-m));
  padding: 56px 24px 40px;
  text-align: center; position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(200,121,26,0.2), transparent 70%);
  pointer-events: none;
}
.page-hero h1 {
  font-family: var(--font-display); font-size: clamp(2.5rem,5vw,4rem);
  font-weight: 600; color: var(--white); position: relative; z-index: 1;
}
.page-hero h1 em { color: var(--gold-l); font-style: italic; }
.page-hero p {
  color: rgba(255,255,255,0.65); max-width: 620px; margin: 16px auto 0;
  font-size: 18px; position: relative; z-index: 1;
}

/* -- ORDER PAGE -- */
.order-layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; max-width: 1320px; margin: 0 auto; padding: 80px 24px; }
.order-form-wrap { }
.order-sidebar { }
.order-card   { background: var(--white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow); }
.order-card h2 { font-family: var(--font-display); font-size: 28px; color: var(--dark); margin-bottom: 8px; }
.order-card .subtitle { color: var(--text-light); font-size: 15px; margin-bottom: 32px; }

.form-group    { margin-bottom: 24px; }
.form-label    { display: block; font-size: 14px; font-weight: 600; letter-spacing: 0.5px; color: var(--dark); margin-bottom: 8px; }
.form-label .req { color: var(--saffron); }
.form-control  {
  width: 100%; padding: 13px 16px; border-radius: var(--radius);
  border: 1.5px solid #E0D0B8; background: var(--cream);
  font-size: 16px; font-family: var(--font-body); color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-control:focus { border-color: var(--saffron); box-shadow: 0 0 0 3px rgba(200,121,26,0.1); }
.form-control.error { border-color: #C62828; }
.form-error { color: #C62828; font-size: 12px; margin-top: 5px; display: none; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.product-selector { display: flex; flex-direction: column; gap: 12px; }
.product-option {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px; border-radius: var(--radius);
  border: 1.5px solid #E0D0B8; background: var(--cream);
  cursor: pointer; transition: all var(--transition);
}
.product-option:hover:not(.unavail-opt) { border-color: var(--saffron); background: rgba(200,121,26,0.04); }
.product-option input[type=radio] { accent-color: var(--saffron); width: 18px; height: 18px; flex-shrink: 0; }
.product-option-info { flex: 1; }
.product-option-name  { font-size: 15px; font-weight: 600; color: var(--dark); }
.product-option-price { font-size: 13px; color: var(--saffron); font-weight: 600; }
.product-option-desc  { font-size: 12px; color: var(--text-light); margin-top: 2px; }
.product-option.selected { border-color: var(--saffron); background: rgba(200,121,26,0.06); }
.unavail-opt { opacity: 0.45; cursor: not-allowed; }
.unavail-tag {
  background: #FFEBEE; color: #C62828; font-size: 10px;
  font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  padding: 3px 8px; border-radius: 50px; white-space: nowrap;
}

.submit-btn {
  width: 100%; padding: 16px; background: var(--saffron); color: white;
  border: none; border-radius: 50px; font-family: var(--font-body);
  font-size: 16px; font-weight: 700; cursor: pointer;
  transition: var(--transition); letter-spacing: 0.5px;
  margin-top: 8px;
}
.submit-btn:hover { background: var(--saffron-d); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,121,26,0.35); }
.submit-btn:disabled { background: #ccc; cursor: not-allowed; transform: none; box-shadow: none; }

.form-note { font-size: 13px; color: var(--text-light); text-align: center; margin-top: 12px; }

/* success screen */
.success-screen { display: none; text-align: center; padding: 40px 0; }
.success-icon { font-size: 64px; margin-bottom: 16px; }
.success-screen h3 { font-family: var(--font-display); font-size: 32px; color: var(--dark); margin-bottom: 12px; }
.success-screen p  { color: var(--text-light); max-width: 400px; margin: 0 auto 24px; }
.order-num { display: inline-block; background: var(--cream-d); border-radius: var(--radius); padding: 10px 20px; font-size: 18px; font-weight: 700; color: var(--saffron); margin-bottom: 24px; }

/* sidebar info cards */
.sidebar-card { background: var(--white); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow); margin-bottom: 24px; }
.sidebar-card h4 { font-family: var(--font-display); font-size: 20px; color: var(--dark); margin-bottom: 16px; }
.info-item { display: flex; gap: 12px; margin-bottom: 14px; font-size: 15px; }
.info-item .info-icon { font-size: 20px; flex-shrink: 0; }
.info-item strong { display: block; color: var(--dark); font-weight: 600; margin-bottom: 2px; }
.info-item span { color: var(--text-light); }

@media (max-width: 900px) {
  .order-layout { grid-template-columns: 1fr; padding: 48px 20px; }
}
@media (max-width: 500px) {
  .form-row { grid-template-columns: 1fr; }
}

/* -- SHOP PAGE -- */
.shop-filters { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
.filter-btn {
  padding: 8px 20px; border-radius: 50px; border: 1.5px solid var(--cream-d);
  background: var(--white); font-family: var(--font-body); font-size: 14px;
  font-weight: 500; cursor: pointer; transition: var(--transition); color: var(--text-light);
}
.filter-btn.active, .filter-btn:hover { background: var(--saffron); color: white; border-color: var(--saffron); }

/* -- RECIPES PAGE -- */
.recipes-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 40px; max-width: 1440px; margin: 0 auto; }
.recipe-full-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow);
}
.recipe-full-img { height: 220px; object-fit: cover; width: 100%; }
.recipe-full-body { padding: 28px 32px 32px; }
.recipe-meta { display: flex; gap: 16px; margin-bottom: 16px; }
.recipe-meta span { font-size: 12px; color: var(--text-light); font-weight: 500; background: var(--cream-d); padding: 4px 10px; border-radius: 50px; }
.recipe-full-body h2 { font-family: var(--font-display); font-size: 26px; color: var(--dark); margin-bottom: 20px; }
.recipe-section { margin-bottom: 20px; }
.recipe-section h4 { font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--saffron); margin-bottom: 10px; }
.recipe-section ul, .recipe-section ol { padding-left: 18px; }
.recipe-section li { font-size: 15px; color: var(--text-light); margin-bottom: 6px; line-height: 1.7; }
.recipe-nutrition { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 16px; }
.nutrition-pill { background: var(--cream-d); border-radius: 50px; padding: 4px 12px; font-size: 12px; color: var(--text-light); font-weight: 500; }

/* -- ABOUT PAGE -- */
.about-story { max-width: 1440px; margin: 0 auto; padding: 80px 24px; }
.about-story h2 { font-family: var(--font-display); font-size: 36px; color: var(--dark); margin-bottom: 24px; }
.about-story p  { color: var(--text-light); font-size: 18px; line-height: 1.9; margin-bottom: 24px; }
.about-story strong { color: var(--dark); }
.about-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1480px; margin: 0 auto; padding: 0 24px 80px; }
.about-gallery img { border-radius: var(--radius-lg); width: 100%; aspect-ratio: 4/3; object-fit: cover; }

/* -- CONTACT PAGE -- */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; max-width: 1480px; margin: 0 auto; padding: 80px 24px; }
.contact-info h2 { font-family: var(--font-display); font-size: 32px; color: var(--dark); margin-bottom: 16px; }
.contact-info p  { color: var(--text-light); margin-bottom: 32px; font-size: 17px; }
.contact-detail { display: flex; gap: 14px; margin-bottom: 20px; }
.contact-detail .cd-icon { font-size: 22px; }
.contact-detail strong { display: block; font-size: 15px; color: var(--dark); margin-bottom: 3px; }
.contact-detail span   { font-size: 15px; color: var(--text-light); }

@media (max-width: 768px) {
  .contact-layout { grid-template-columns: 1fr; }
  .about-gallery  { grid-template-columns: 1fr; }
}

/* -- ADMIN PAGE -- */
.admin-login { max-width: 400px; margin: 80px auto; padding: 0 24px; }
.admin-page  { max-width: 1100px; margin: 0 auto; padding: 40px 24px; }
.admin-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 36px; flex-wrap: wrap; gap: 16px; }
.admin-header h1 { font-family: var(--font-display); font-size: 32px; color: var(--dark); }
.admin-tabs { display: flex; gap: 8px; margin-bottom: 32px; }
.admin-tab { padding: 9px 20px; border-radius: 50px; border: 1.5px solid var(--cream-d); background: var(--white); font-family: var(--font-body); font-size: 14px; font-weight: 500; cursor: pointer; transition: var(--transition); color: var(--text-light); }
.admin-tab.active { background: var(--saffron); color: white; border-color: var(--saffron); }

.orders-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.orders-table th { padding: 14px 16px; text-align: left; font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--text-light); background: var(--cream-d); }
.orders-table td { padding: 16px; font-size: 14px; color: var(--text); border-top: 1px solid rgba(0,0,0,0.04); }
.orders-table tr:hover td { background: rgba(200,121,26,0.03); }
.order-status { display: inline-block; padding: 4px 10px; border-radius: 50px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.status-pending   { background: #FFF8E1; color: #F57F17; }
.status-fulfilled { background: #E8F5E9; color: #2E7D32; }
.status-cancelled { background: #FFEBEE; color: #C62828; }
.action-btn { padding: 5px 12px; border-radius: 50px; border: 1.5px solid; font-size: 12px; font-weight: 600; cursor: pointer; font-family: var(--font-body); transition: var(--transition); }
.btn-fulfill { border-color: #2E7D32; color: #2E7D32; background: transparent; }
.btn-fulfill:hover { background: #2E7D32; color: white; }
.btn-cancel  { border-color: #C62828; color: #C62828; background: transparent; }
.btn-cancel:hover  { background: #C62828; color: white; }

.product-manage-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.product-manage-card { background: var(--white); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow); display: flex; align-items: center; gap: 16px; }
.product-manage-emoji { font-size: 36px; }
.product-manage-info { flex: 1; }
.product-manage-info h4 { font-size: 16px; font-weight: 600; color: var(--dark); margin-bottom: 4px; }
.product-manage-info p  { font-size: 13px; color: var(--text-light); }
.toggle-switch { position: relative; display: inline-block; width: 48px; height: 26px; flex-shrink: 0; }
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute; inset: 0; background: #ccc; border-radius: 50px;
  cursor: pointer; transition: var(--transition);
}
.toggle-slider::before {
  content: ''; position: absolute; width: 20px; height: 20px;
  left: 3px; top: 3px; background: white; border-radius: 50%;
  transition: var(--transition);
}
.toggle-switch input:checked + .toggle-slider { background: var(--saffron); }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(22px); }

.admin-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 36px; }
.admin-stat-card { background: var(--white); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow); }
.admin-stat-card .stat-label { font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--text-light); margin-bottom: 8px; }
.admin-stat-card .stat-value { font-family: var(--font-display); font-size: 32px; font-weight: 700; color: var(--dark); }
.admin-stat-card .stat-value.accent { color: var(--saffron); }
.admin-logout { padding: 9px 20px; background: transparent; border: 1.5px solid var(--cream-d); border-radius: 50px; font-family: var(--font-body); font-size: 14px; cursor: pointer; color: var(--text-light); transition: var(--transition); }
.admin-logout:hover { border-color: #C62828; color: #C62828; }

@media (max-width: 768px) {
  .admin-stats { grid-template-columns: 1fr 1fr; }
  .orders-table { display: block; overflow-x: auto; }
}
