/* ====== onakia.com Stylesheet (Spanish Mediterranean) ====== */
:root {
  --primary-deep: #5e2410;   /* deep terracotta brown */
  --primary-dark: #7a2e15;   /* terracotta */
  --primary-mid: #b1492a;    /* warm clay */
  --accent: #e0901f;         /* saffron gold */
  --accent-light: #f4c45c;   /* light saffron */
  --blue: #1f5673;           /* Mediterranean deep blue */
  --blue-deep: #143a4f;
  --blue-soft: #eaf1f4;
  --bg-cream: #faf4ea;
  --bg-cream-2: #f4ead9;
  --text-dark: #3a2014;      /* warm espresso */
  --heading-font: 'Fraunces', Georgia, 'Times New Roman', serif;
  --body-font: 'Mulish', system-ui, -apple-system, sans-serif;
  --btn-radius: 5px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body-font);
  color: var(--text-dark);
  background: var(--bg-cream);
  line-height: 1.65;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: var(--blue); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--primary-mid); }
img { max-width: 100%; height: auto; display: block; }
h1,h2,h3,h4 {
  font-family: var(--heading-font);
  color: var(--text-dark);
  line-height: 1.18;
  font-weight: 600;
  font-optical-sizing: auto;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* progressive-enhancement reveal (visible without JS) */
.reveal { opacity: 1; transform: none; }
.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s cubic-bezier(.2,.65,.3,1), transform 0.7s cubic-bezier(.2,.65,.3,1);
  will-change: opacity, transform;
}
.js .reveal.in { opacity: 1; transform: none; }

/* ===== NAVBAR ===== */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,244,234,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(94,36,16,0.10);
  transition: background 0.3s, box-shadow 0.3s;
}
.navbar.scrolled { background: rgba(250,244,234,0.98); box-shadow: 0 4px 22px rgba(94,36,16,0.10); }
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 74px;
}
.nav-logo {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--heading-font);
  font-size: 23px; font-weight: 700;
  color: var(--primary-dark);
  letter-spacing: -0.4px;
}
.nav-logo:hover { color: var(--primary-mid); }
.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  padding: 6px 8px; font-size: 26px; color: var(--primary-dark);
  line-height: 1;
}
.nav-links { list-style: none; display: flex; gap: 30px; align-items: center; }
.nav-links a {
  color: var(--text-dark);
  font-size: 15px; font-weight: 600;
  transition: color 0.2s, border-color 0.2s;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  letter-spacing: 0.2px;
}
.nav-links a:hover { color: var(--primary-mid); border-bottom-color: var(--accent); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: center;
  overflow: hidden;
  padding: 96px 24px;
  background-size: cover;
  background-position: center 38%;
  background-repeat: no-repeat;
}
.hero::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -1px; height: 120px;
  background: linear-gradient(180deg, rgba(250,244,234,0) 0%, var(--bg-cream) 96%);
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 880px; margin: 0 auto;
  text-align: center;
  padding: 30px 0;
  animation: heroIn 1s cubic-bezier(.2,.65,.3,1) both;
}
@keyframes heroIn { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }
.hero-tagline {
  display: inline-block;
  font-family: var(--heading-font);
  font-style: italic;
  font-size: 17px; font-weight: 500;
  letter-spacing: 2px;
  color: var(--accent-light);
  margin-bottom: 22px;
  position: relative;
}
.hero-tagline::before, .hero-tagline::after {
  content: ""; display: inline-block; width: 34px; height: 1px;
  background: var(--accent); vertical-align: middle; margin: 0 14px 4px;
  opacity: 0.8;
}
.hero h1 {
  font-family: var(--heading-font);
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 600;
  line-height: 1.04;
  color: #fff;
  margin-bottom: 26px;
  letter-spacing: -0.6px;
  text-shadow: 0 2px 30px rgba(20,9,4,0.5);
}
.hero h1 em { font-style: italic; color: var(--accent-light); font-weight: 500; }
.hero-content p {
  font-size: 20px;
  color: rgba(255,255,255,0.92);
  line-height: 1.7;
  max-width: 660px;
  margin: 0 auto 38px;
  font-weight: 400;
  text-shadow: 0 1px 16px rgba(20,9,4,0.4);
}
.btn-hero {
  display: inline-block;
  background: var(--accent);
  color: var(--primary-deep);
  padding: 17px 42px;
  border-radius: var(--btn-radius);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.4px;
  transition: all 0.25s;
  box-shadow: 0 10px 34px rgba(20,9,4,0.34);
}
.btn-hero:hover {
  background: var(--accent-light);
  color: var(--primary-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(20,9,4,0.42);
}

/* ===== SHAPEON / PRODUCT SECTION ===== */
.shapeon-section {
  background:
    radial-gradient(circle at 12% 8%, rgba(224,144,31,0.16) 0%, transparent 42%),
    radial-gradient(circle at 88% 92%, rgba(31,86,115,0.30) 0%, transparent 46%),
    linear-gradient(160deg, var(--primary-dark) 0%, var(--primary-mid) 58%, var(--primary-deep) 100%);
  padding: 92px 24px;
  color: #fff;
}
#wellness {
  background:
    radial-gradient(circle at 85% 10%, rgba(224,144,31,0.16) 0%, transparent 44%),
    radial-gradient(circle at 10% 90%, rgba(31,86,115,0.30) 0%, transparent 46%),
    linear-gradient(160deg, var(--primary-deep) 0%, var(--primary-mid) 50%, var(--primary-dark) 100%);
}
.shapeon-header { max-width: 820px; margin: 0 auto 52px; text-align: center; }
.shapeon-badge {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  color: var(--accent-light);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  border: 1px solid rgba(244,196,92,0.35);
}
.shapeon-header h2 {
  font-family: var(--heading-font);
  font-size: clamp(30px, 4.2vw, 48px);
  font-weight: 600;
  color: #fff;
  margin-bottom: 18px;
  line-height: 1.16;
}
.shapeon-header p {
  font-size: 19px;
  color: rgba(255,255,255,0.84);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== PRODUCT CARDS ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  max-width: 1100px;
  margin: 52px auto;
}
.product-card {
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.14);
  border-radius: 16px;
  padding: 34px 26px 30px;
  text-align: center;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  backdrop-filter: blur(3px);
}
.product-card:hover {
  transform: translateY(-7px);
  border-color: rgba(244,196,92,0.55);
  box-shadow: 0 18px 48px rgba(20,9,4,0.4);
}
.product-card.featured {
  background: rgba(255,255,255,0.12);
  border-color: var(--accent);
  transform: scale(1.045);
  box-shadow: 0 14px 40px rgba(20,9,4,0.36);
}
.product-card.featured:hover { transform: scale(1.045) translateY(-7px); }
.product-label {
  display: inline-block;
  background: rgba(255,255,255,0.16);
  color: #fff;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-bottom: 18px;
  border: 1px solid rgba(255,255,255,0.22);
}
.product-card.featured .product-label { background: var(--accent); color: var(--primary-deep); border-color: var(--accent); }
.product-img { width: 168px; height: 208px; object-fit: contain; margin: 10px auto 20px; filter: drop-shadow(0 12px 24px rgba(0,0,0,0.4)); }
.product-bottles { font-family: var(--heading-font); color: #fff; font-size: 29px; margin-bottom: 14px; font-weight: 600; }
.product-price-old { color: rgba(255,255,255,0.5); font-size: 15px; text-decoration: line-through; margin-bottom: 6px; }
.product-price { color: var(--accent-light); font-size: 38px; font-weight: 800; margin-bottom: 6px; line-height: 1; font-family: var(--heading-font); }
.product-price span { font-size: 14px; color: rgba(255,255,255,0.72); font-weight: 400; margin-left: 4px; font-family: var(--body-font); }
.product-total { color: rgba(255,255,255,0.88); font-size: 15px; margin-bottom: 8px; font-weight: 700; }
.product-savings { color: #6ee7a0; font-size: 14px; font-weight: 700; margin-bottom: 12px; }
.product-shipping { color: rgba(255,255,255,0.8); font-size: 13.5px; margin-bottom: 22px; }
.btn-order {
  display: block;
  width: 100%;
  background: var(--accent);
  color: var(--primary-deep);
  padding: 15px 20px;
  border-radius: var(--btn-radius);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-order:hover { background: var(--accent-light); color: var(--primary-deep); transform: translateY(-1px); box-shadow: 0 8px 22px rgba(20,9,4,0.4); }

/* ===== TRUST BADGES + GUARANTEE ===== */
.trust-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
  margin: 36px auto;
  max-width: 800px;
}
.trust-badges img { height: 50px; width: auto; opacity: 0.9; filter: brightness(0) invert(1); }
.guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(244,196,92,0.28);
  border-radius: 14px;
  padding: 26px 34px;
  max-width: 720px;
  margin: 36px auto 0;
}
.guarantee img { width: 84px; height: 84px; flex-shrink: 0; }
.guarantee p { color: rgba(255,255,255,0.9); font-size: 16px; margin: 0; }

/* ===== RECIPES ===== */
.recipes-section {
  padding: 96px 24px;
  background: var(--bg-cream);
}
.recipes-header { text-align: center; max-width: 740px; margin: 0 auto 60px; }
.recipes-kicker {
  display: inline-block;
  font-family: var(--heading-font);
  font-style: italic;
  font-size: 16px;
  letter-spacing: 1px;
  color: var(--blue);
  margin-bottom: 12px;
}
.recipes-header h2 {
  font-family: var(--heading-font);
  font-size: clamp(34px, 4.4vw, 52px);
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 18px;
  line-height: 1.14;
  letter-spacing: -0.4px;
}
.recipes-header p { font-size: 19px; color: var(--text-dark); opacity: 0.8; line-height: 1.7; }
.recipes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}
.recipe-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 26px rgba(94,36,16,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(94,36,16,0.05);
}
.recipe-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 48px rgba(94,36,16,0.16);
}
.recipe-img-wrap { position: relative; overflow: hidden; }
.recipe-img { width: 100%; height: 230px; object-fit: cover; display: block; transition: transform 0.6s cubic-bezier(.2,.65,.3,1); }
.recipe-card:hover .recipe-img { transform: scale(1.07); }
.recipe-cat {
  position: absolute; top: 14px; left: 14px;
  background: var(--blue);
  color: #fff;
  font-size: 11px; font-weight: 800;
  letter-spacing: 1.2px; text-transform: uppercase;
  padding: 6px 13px; border-radius: 50px;
  box-shadow: 0 4px 14px rgba(20,40,55,0.35);
}
.recipe-info { padding: 26px 26px 28px; flex: 1; display: flex; flex-direction: column; }
.recipe-info h3 {
  font-family: var(--heading-font);
  font-size: 23px;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 12px;
  line-height: 1.25;
}
.recipe-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--text-dark);
  opacity: 0.66;
  font-size: 13.5px;
  margin-bottom: 16px;
  font-weight: 600;
}
.recipe-meta span { white-space: nowrap; }
.recipe-desc {
  color: var(--text-dark);
  opacity: 0.82;
  font-size: 15.5px;
  line-height: 1.65;
  margin-bottom: 20px;
  flex-grow: 1;
}
.btn-expand {
  background: var(--primary-dark);
  color: #fff;
  border: none;
  padding: 13px 20px;
  border-radius: var(--btn-radius);
  font-family: var(--body-font);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.2s;
  width: 100%;
  text-align: center;
}
.btn-expand:hover { background: var(--primary-mid); transform: translateY(-1px); }
.recipe-details {
  display: none;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 2px solid var(--bg-cream-2);
  animation: fadeIn 0.35s ease;
}
.recipe-details.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }
.recipe-details h4 {
  font-family: var(--heading-font);
  color: var(--blue);
  font-size: 18px;
  font-weight: 600;
  margin: 18px 0 10px;
}
.recipe-details h4:first-child { margin-top: 0; }
.recipe-details ul, .recipe-details ol {
  padding-left: 22px;
  color: var(--text-dark);
  font-size: 15px;
  line-height: 1.75;
}
.recipe-details ul li, .recipe-details ol li { margin-bottom: 6px; }

/* ===== ABOUT / OUR KITCHEN ===== */
.about-section {
  background: linear-gradient(180deg, var(--bg-cream) 0%, var(--bg-cream-2) 100%);
  padding: 30px 24px 96px;
}
.about-grid {
  max-width: 1120px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.about-media { position: relative; }
.about-media img {
  width: 100%; height: 480px; object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 22px 60px rgba(94,36,16,0.22);
}
.about-media::after {
  content: "";
  position: absolute; right: -16px; bottom: -16px; width: 130px; height: 130px;
  border: 3px solid var(--accent); border-radius: 18px; z-index: -1;
}
.about-kicker {
  display: inline-block;
  font-family: var(--heading-font);
  font-style: italic;
  font-size: 16px;
  letter-spacing: 1px;
  color: var(--blue);
  margin-bottom: 14px;
}
.about-text h2 {
  font-family: var(--heading-font);
  font-size: clamp(30px, 3.8vw, 46px);
  font-weight: 600;
  color: var(--primary-dark);
  line-height: 1.16;
  margin-bottom: 22px;
  letter-spacing: -0.4px;
}
.about-text p {
  font-size: 18px; line-height: 1.78; color: var(--text-dark);
  opacity: 0.9; margin-bottom: 18px;
}
.about-values {
  display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px;
}
.about-values span {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid rgba(94,36,16,0.1);
  border-radius: 50px; padding: 9px 18px;
  font-size: 14px; font-weight: 700; color: var(--primary-dark);
  box-shadow: 0 4px 14px rgba(94,36,16,0.06);
}

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(165deg, var(--primary-deep) 0%, #401709 100%);
  color: rgba(255,255,255,0.85);
  padding: 70px 24px 34px;
}
.footer .container { max-width: 1200px; margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 44px;
}
.footer-logo {
  font-family: var(--heading-font);
  font-size: 25px;
  font-weight: 700;
  color: #fff;
  display: inline-block;
  margin-bottom: 16px;
}
.footer-brand p { color: rgba(255,255,255,0.7); font-size: 15.5px; line-height: 1.65; }
.footer-links h4, .footer-company h4 { color: var(--accent-light); font-size: 14px; text-transform: uppercase; letter-spacing: 1.6px; margin-bottom: 16px; font-weight: 800; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,0.72); font-size: 15px; transition: color 0.2s; display: inline-block; padding: 3px 0; }
.footer-links a:hover { color: var(--accent-light); }
.footer-company p { color: rgba(255,255,255,0.72); font-size: 14.5px; line-height: 1.7; }
.footer-company strong { color: #fff; }
.footer-disclaimer {
  border-top: 1px solid rgba(255,255,255,0.13);
  padding-top: 30px;
  margin-bottom: 22px;
}
.footer-disclaimer p { color: rgba(255,255,255,0.56); font-size: 13px; line-height: 1.7; max-width: 1100px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.09);
  padding-top: 22px;
  text-align: center;
}
.footer-bottom p { color: rgba(255,255,255,0.5); font-size: 13px; margin: 0; }

/* ===== LEGAL PAGES ===== */
.legal-main {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 24px;
  line-height: 1.75;
  color: var(--text-dark);
}
.legal-main h1 {
  font-family: var(--heading-font);
  font-size: clamp(38px, 5vw, 54px);
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.legal-main h2 {
  font-family: var(--heading-font);
  font-size: clamp(23px, 3vw, 29px);
  font-weight: 600;
  color: var(--primary-dark);
  margin: 38px 0 14px;
  letter-spacing: -0.3px;
}
.legal-main h3 { font-family: var(--heading-font); font-size: 20px; font-weight: 600; color: var(--primary-dark); margin: 18px 0 10px; }
.legal-main p { margin-bottom: 14px; font-size: 16.5px; color: var(--text-dark); }
.legal-main ul, .legal-main ol { margin: 14px 0 14px 28px; }
.legal-main li { margin-bottom: 8px; font-size: 16.5px; }
.legal-main a { color: var(--blue); text-decoration: underline; }
.legal-main a:hover { color: var(--primary-mid); }
.legal-main strong { color: var(--primary-dark); font-weight: 700; }
.company-contact-box {
  background: var(--blue-soft);
  border-left: 4px solid var(--accent);
  padding: 24px;
  border-radius: 8px;
  margin-top: 24px;
}
.company-contact-box h3 { margin-top: 0; color: var(--primary-dark); }
.company-contact-box p { margin-bottom: 6px; }

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .recipes-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-media img { height: 380px; }
  .about-media { order: 2; }
}
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    top: 74px; left: 0; right: 0;
    background: var(--bg-cream);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    box-shadow: 0 8px 24px rgba(94,36,16,0.14);
    transform: translateY(-220%);
    transition: transform 0.35s;
  }
  .nav-links.open { transform: translateY(0); }
  .product-grid { grid-template-columns: 1fr; max-width: 420px; }
  .product-card.featured { transform: none; }
  .product-card.featured:hover { transform: translateY(-7px); }
  .recipes-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .hero { min-height: 78vh; padding: 70px 20px; }
  .trust-badges { gap: 22px; }
  .trust-badges img { height: 38px; }
  .guarantee { flex-direction: column; padding: 22px; text-align: center; }
}
@media (max-width: 480px) {
  body { font-size: 17px; }
  .hero h1 { font-size: 34px; }
  .hero-content p { font-size: 17px; }
  .recipes-section { padding: 64px 16px; }
  .shapeon-section { padding: 64px 16px; }
  .about-section { padding: 20px 16px 64px; }
  .about-media img { height: 300px; }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .js .reveal { opacity: 1; transform: none; }
  .hero-content { animation: none; }
  .recipe-card:hover .recipe-img { transform: none; }
}
