/* ===========================
   EUMBI KITCHEN — SPICE ROUTE
   =========================== */

:root {
  --primary-dark: #2d0845;
  --primary-mid: #5a1a7a;
  --spice: #8b3a00;
  --accent: #e8961a;
  --accent-light: #f0b050;
  --btn-color: #e8961a;
  --btn-hover: #c07010;
  --bg: #faf5f0;
  --bg-card: #ffffff;
  --text-dark: #2d0845;
  --text-mid: #4a3060;
  --text-light: #7a5a90;
  --border: #e0d0f0;
  --heading-font: 'Cormorant Garamond', Georgia, serif;
  --body-font: 'Poppins', sans-serif;
  --shadow-sm: 0 2px 16px rgba(45,8,69,0.07);
  --shadow-md: 0 8px 36px rgba(45,8,69,0.13);
  --shadow-lg: 0 20px 60px rgba(45,8,69,0.2);
  --radius: 14px;
  --radius-lg: 22px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  font-size: 18px;
  line-height: 1.7;
  background: var(--bg);
  color: var(--text-dark);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ===========================
   NAVBAR
   =========================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(45, 8, 69, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(232,150,26,0.25);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--heading-font);
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.3px;
}

.logo-spice {
  font-size: 26px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-links a {
  color: rgba(255,255,255,0.78);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.2s;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  background: linear-gradient(135deg, #2d0845 0%, #8b3a00 100%);
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 15% 85%, rgba(232,150,26,0.15) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 15%, rgba(139,58,0,0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(45,8,69,0.3) 0%, transparent 70%);
  pointer-events: none;
}

.hero-ornament {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(232,150,26,0.12);
  pointer-events: none;
}

.hero-ornament::before,
.hero-ornament::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(232,150,26,0.08);
}

.hero-ornament::before {
  inset: 40px;
}

.hero-ornament::after {
  inset: 80px;
}

.hero-ornament--left {
  left: -250px;
}

.hero-ornament--right {
  right: -250px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 80px 40px 80px 80px;
}

.hero-tagline {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 22px;
}

.hero-h1 {
  font-family: var(--heading-font);
  font-size: clamp(52px, 7vw, 92px);
  line-height: 1.04;
  color: #ffffff;
  margin-bottom: 30px;
  letter-spacing: -1px;
  font-weight: 700;
}

.hero-h1 em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}

.hero-desc {
  font-size: 18px;
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
  max-width: 580px;
  margin-bottom: 44px;
  font-weight: 300;
}

.hero-cta {
  display: inline-block;
  background: var(--accent);
  color: #ffffff;
  padding: 17px 40px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.5px;
  transition: background 0.25s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 28px rgba(232,150,26,0.4);
  text-transform: uppercase;
}

.hero-cta:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(232,150,26,0.55);
}

/* ===========================
   SHAPEON SECTION
   =========================== */
.shapeon-section {
  background: linear-gradient(160deg, #1e0330 0%, #5a1f00 100%);
  padding: 84px 24px;
  position: relative;
  overflow: hidden;
}

.shapeon-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.shapeon-section--bottom {
  background: linear-gradient(160deg, #16021f 0%, #3d1200 100%);
}

.shapeon-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.shapeon-badge {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  color: #1a0010;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 7px 22px;
  border-radius: 4px;
  margin-bottom: 22px;
}

.shapeon-title {
  font-family: var(--heading-font);
  font-size: clamp(28px, 4vw, 46px);
  color: #ffffff;
  margin-bottom: 14px;
  line-height: 1.2;
  font-weight: 700;
}

.shapeon-subtitle {
  font-size: 20px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.3px;
}

.shapeon-desc {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  max-width: 640px;
  margin: 0 auto 52px;
  line-height: 1.7;
  font-weight: 300;
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 52px;
}

.product-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(232,150,26,0.2);
  border-radius: var(--radius);
  padding: 34px 22px;
  position: relative;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s, background 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(232,150,26,0.5);
  box-shadow: 0 16px 50px rgba(0,0,0,0.35);
  background: rgba(255,255,255,0.06);
}

.product-card--featured {
  background: rgba(232,150,26,0.07);
  border-color: rgba(232,150,26,0.4);
  transform: scale(1.03);
}

.product-card--featured:hover {
  transform: scale(1.03) translateY(-6px);
}

.product-card--best {
  background: rgba(232,150,26,0.1);
  border-color: var(--accent);
}

.product-label {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(30,3,48,0.92);
  color: var(--accent);
  border: 1px solid var(--accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  padding: 4px 16px;
  border-radius: 3px;
  white-space: nowrap;
  font-family: var(--body-font);
}

.product-label.popular {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
}

.product-label.best {
  background: linear-gradient(90deg, #e8961a, #f0b050);
  color: #1a0010;
  border-color: #e8961a;
}

.product-save-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(232,150,26,0.2);
  color: var(--accent-light);
  border: 1px solid rgba(232,150,26,0.35);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 3px;
  letter-spacing: 0.5px;
}

.product-img {
  width: 155px;
  height: 195px;
  object-fit: contain;
  margin: 14px auto 22px;
}

.product-name {
  font-family: var(--heading-font);
  font-size: 26px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.product-price-per {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 8px;
  font-weight: 300;
}

.product-total {
  font-size: 22px;
  color: #ffffff;
  margin-bottom: 12px;
}

.product-total s {
  color: rgba(255,255,255,0.35);
  font-size: 17px;
  margin-right: 6px;
}

.product-total strong {
  color: var(--accent);
}

.product-shipping {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  margin-bottom: 22px;
  letter-spacing: 0.5px;
}

.product-btn {
  display: block;
  width: 100%;
  background: var(--btn-color);
  color: #ffffff;
  padding: 14px 0;
  border-radius: 4px;
  font-weight: 600;
  font-size: 15px;
  text-align: center;
  transition: background 0.25s, transform 0.2s, box-shadow 0.2s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-btn:hover {
  background: var(--btn-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,150,26,0.4);
}

.product-btn--best {
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  color: #ffffff;
}

.product-btn--best:hover {
  background: linear-gradient(90deg, var(--accent-light), var(--accent));
  box-shadow: 0 8px 28px rgba(232,150,26,0.55);
}

/* Trust Badges */
.trust-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
  margin-bottom: 52px;
  padding: 28px 0;
  border-top: 1px solid rgba(232,150,26,0.15);
  border-bottom: 1px solid rgba(232,150,26,0.15);
}

.trust-badge {
  height: 52px;
  width: auto;
  opacity: 0.8;
  filter: brightness(1.2) saturate(0.9);
  transition: opacity 0.2s, filter 0.2s;
}

.trust-badge:hover {
  opacity: 1;
  filter: brightness(1.4) saturate(1);
}

/* Guarantee Box */
.guarantee-box {
  display: flex;
  align-items: center;
  gap: 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(232,150,26,0.25);
  border-radius: var(--radius);
  padding: 32px 38px;
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}

.guarantee-seal {
  width: 105px;
  height: 105px;
  object-fit: contain;
  flex-shrink: 0;
}

.guarantee-text h4 {
  font-family: var(--heading-font);
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.guarantee-text p {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  font-weight: 300;
}

/* ===========================
   RECIPES SECTION
   =========================== */
.recipes-section {
  padding: 100px 24px;
  background: var(--bg);
  position: relative;
}

.recipes-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.4;
}

.recipes-container {
  max-width: 1200px;
  margin: 0 auto;
}

.recipes-header {
  text-align: center;
  margin-bottom: 68px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--spice);
  margin-bottom: 18px;
  padding: 7px 22px;
  background: rgba(139,58,0,0.08);
  border-radius: 3px;
  border: 1px solid rgba(139,58,0,0.2);
}

.recipes-title {
  font-family: var(--heading-font);
  font-size: clamp(38px, 5.5vw, 66px);
  color: var(--text-dark);
  line-height: 1.08;
  margin-bottom: 22px;
  letter-spacing: -0.5px;
  font-weight: 700;
}

.recipes-desc {
  font-size: 18px;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
  font-weight: 300;
}

/* Recipe Cards Grid */
.recipe-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.recipe-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: box-shadow 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
}

.recipe-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.recipe-img-wrap {
  position: relative;
  overflow: hidden;
  height: 225px;
}

.recipe-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.recipe-card:hover .recipe-img {
  transform: scale(1.07);
}

.recipe-time-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(45,8,69,0.87);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 3px;
  backdrop-filter: blur(4px);
  letter-spacing: 0.3px;
}

.recipe-card-body {
  padding: 26px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.recipe-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--spice);
  margin-bottom: 10px;
}

.recipe-name {
  font-family: var(--heading-font);
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 13px;
  letter-spacing: -0.3px;
}

.recipe-desc-short {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 18px;
  flex: 1;
  font-weight: 300;
}

.recipe-meta {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: var(--text-light);
  font-weight: 500;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.recipe-toggle-btn {
  width: 100%;
  padding: 13px 20px;
  background: transparent;
  border: 2px solid var(--primary-dark);
  color: var(--primary-dark);
  border-radius: 4px;
  font-family: var(--body-font);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.2s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.recipe-toggle-btn:hover {
  background: var(--primary-dark);
  color: #ffffff;
  transform: translateY(-1px);
}

/* Recipe Details */
.recipe-details {
  display: none;
  border-top: 1px solid var(--border);
}

.recipe-details.active {
  display: block;
  animation: slideDown 0.35s ease;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.recipe-details-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.ingredients-block,
.instructions-block {
  padding: 28px 24px;
}

.ingredients-block {
  background: #fdf6f0;
  border-right: 1px solid var(--border);
}

.ingredients-block h4,
.instructions-block h4 {
  font-family: var(--heading-font);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.ingredients-block h5 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--spice);
  margin-top: 18px;
  margin-bottom: 8px;
}

.ingredients-block ul {
  list-style: none;
  padding: 0;
}

.ingredients-block ul li {
  font-size: 15px;
  color: var(--text-mid);
  padding: 5px 0 5px 22px;
  position: relative;
  line-height: 1.5;
  border-bottom: 1px solid rgba(232,150,26,0.1);
  font-weight: 400;
}

.ingredients-block ul li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 8px;
  top: 9px;
}

.instructions-block ol {
  padding-left: 22px;
}

.instructions-block ol li {
  font-size: 15px;
  color: var(--text-mid);
  padding: 8px 0;
  line-height: 1.7;
  font-weight: 400;
}

.instructions-block ol li + li {
  border-top: 1px solid rgba(232,150,26,0.1);
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: #120018;
  padding: 68px 24px 44px;
  color: rgba(255,255,255,0.65);
  border-top: 1px solid rgba(232,150,26,0.2);
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 48px;
}

.footer-brand {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(232,150,26,0.15);
  margin-bottom: 8px;
}

.footer-logo {
  font-family: var(--heading-font);
  font-size: 26px;
  font-weight: 700;
  color: #ffffff;
}

.footer-tagline {
  font-size: 15px;
  color: rgba(255,255,255,0.45);
  font-style: italic;
  font-weight: 300;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
  font-weight: 400;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-company p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  font-weight: 300;
}

.footer-company strong {
  color: rgba(255,255,255,0.82);
  font-size: 16px;
  font-weight: 600;
}

.footer-disclaimer {
  grid-column: 1 / -1;
  padding-top: 24px;
  border-top: 1px solid rgba(232,150,26,0.1);
}

.footer-disclaimer p {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  line-height: 1.65;
  margin-bottom: 8px;
  font-weight: 300;
}

/* ===========================
   LEGAL PAGES
   =========================== */
.legal-main {
  max-width: 860px;
  margin: 60px auto;
  padding: 0 24px;
}

.legal-main h1 {
  font-family: var(--heading-font);
  font-size: 48px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.legal-meta {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 44px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
  font-weight: 300;
}

.legal-main h2 {
  font-family: var(--heading-font);
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 38px 0 14px;
}

.legal-main p,
.legal-main li {
  font-size: 18px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 12px;
  font-weight: 400;
}

.legal-main ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-main a {
  color: var(--spice);
  text-decoration: underline;
}

.fda-warning-box {
  background: #fff8e6;
  border: 2px solid #e6a800;
  border-radius: var(--radius);
  padding: 26px 30px;
  margin: 34px 0;
}

.fda-warning-box strong {
  color: #7a3300;
  display: block;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.fda-warning-box p {
  color: #6b4400;
  font-size: 17px;
  margin: 0;
  line-height: 1.7;
}

.company-contact-box {
  background: #fdf6f0;
  border: 1px solid rgba(139,58,0,0.2);
  border-radius: var(--radius);
  padding: 26px 30px;
  margin: 34px 0;
}

.company-contact-box h3 {
  font-family: var(--heading-font);
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.company-contact-box p {
  font-size: 17px;
  color: var(--text-mid);
  margin-bottom: 6px;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .recipe-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-card--featured {
    transform: none;
    order: -1;
    grid-column: 1 / -1;
    max-width: 420px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(45,8,69,0.98);
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid rgba(232,150,26,0.2);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-content {
    padding: 60px 24px;
  }

  .hero {
    min-height: auto;
    padding-bottom: 60px;
  }

  .recipe-cards-grid {
    grid-template-columns: 1fr;
  }

  .recipe-details-inner {
    grid-template-columns: 1fr;
  }

  .ingredients-block {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .product-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto 52px;
  }

  .product-card--featured {
    grid-column: auto;
    max-width: 100%;
    order: 0;
  }

  .guarantee-box {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-brand {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .hero-h1 {
    font-size: 42px;
  }

  .shapeon-title {
    font-size: 24px;
  }

  .recipes-title {
    font-size: 34px;
  }
}
