/* ===========================
   JUVREX KITCHEN — NORDIC FOREST
   =========================== */

:root {
  --primary-dark: #0d2d1e;
  --primary-mid: #1e5c3a;
  --accent: #7ac8a0;
  --accent-light: #a8dbbf;
  --btn-color: #1e5c3a;
  --btn-hover: #0d3d28;
  --bg: #f2f7f4;
  --bg-card: #ffffff;
  --text-dark: #0d2d1e;
  --text-mid: #2a4e38;
  --text-light: #5a7a69;
  --border: #c8ddd4;
  --heading-font: 'DM Serif Display', Georgia, serif;
  --body-font: 'DM Sans', sans-serif;
  --shadow-sm: 0 2px 12px rgba(13,45,30,0.07);
  --shadow-md: 0 6px 32px rgba(13,45,30,0.12);
  --shadow-lg: 0 16px 56px rgba(13,45,30,0.18);
  --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(13, 45, 30, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(122, 200, 160, 0.2);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--heading-font);
  font-size: 22px;
  color: #ffffff;
  letter-spacing: -0.3px;
}

.logo-leaf {
  font-size: 24px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-links a {
  color: rgba(255,255,255,0.82);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.3px;
  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, #0d2d1e 0%, #1e5c3a 100%);
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(122,200,160,0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(122,200,160,0.08) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%237ac8a0' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 80px 40px 80px 80px;
}

.hero-tagline {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero-h1 {
  font-family: var(--heading-font);
  font-size: clamp(46px, 6vw, 80px);
  line-height: 1.08;
  color: #ffffff;
  margin-bottom: 28px;
  letter-spacing: -1px;
}

.hero-h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero-desc {
  font-size: 19px;
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  max-width: 580px;
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-cta {
  display: inline-block;
  background: var(--accent);
  color: var(--primary-dark);
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.3px;
  transition: background 0.25s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(122,200,160,0.35);
}

.hero-cta:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(122,200,160,0.5);
}

.hero-deco {
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
}

.deco-circle {
  border-radius: 50%;
  position: absolute;
}

.c1 {
  width: 520px;
  height: 520px;
  border: 80px solid rgba(122,200,160,0.06);
  top: -260px;
  right: 0;
}

.c2 {
  width: 320px;
  height: 320px;
  border: 50px solid rgba(122,200,160,0.1);
  top: -160px;
  right: 100px;
}

/* ===========================
   SHAPEON SECTION
   =========================== */
.shapeon-section {
  background: linear-gradient(180deg, #0d2d1e 0%, #1a4a2e 100%);
  padding: 80px 24px;
}

.shapeon-section--bottom {
  background: linear-gradient(180deg, #112a1e 0%, #0d2d1e 100%);
}

.shapeon-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.shapeon-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.shapeon-title {
  font-family: var(--heading-font);
  font-size: clamp(26px, 4vw, 42px);
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.2;
}

.shapeon-subtitle {
  font-size: 20px;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 16px;
}

.shapeon-desc {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  max-width: 640px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.product-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(122,200,160,0.2);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  position: relative;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(122,200,160,0.5);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.product-card--featured {
  background: rgba(122,200,160,0.08);
  border-color: rgba(122,200,160,0.45);
  transform: scale(1.03);
}

.product-card--featured:hover {
  transform: scale(1.03) translateY(-6px);
}

.product-card--best {
  background: rgba(122,200,160,0.1);
  border-color: var(--accent);
}

.product-label {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(13,45,30,0.9);
  color: var(--accent);
  border: 1px solid var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 4px 16px;
  border-radius: 50px;
  white-space: nowrap;
}

.product-label.popular {
  background: var(--accent);
  color: var(--primary-dark);
  border-color: var(--accent);
}

.product-label.best {
  background: #ffd700;
  color: #3a2a00;
  border-color: #ffd700;
}

.product-save-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #e8f5f0;
  color: var(--primary-dark);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
}

.product-img {
  width: 160px;
  height: 200px;
  object-fit: contain;
  margin: 12px auto 20px;
}

.product-name {
  font-family: var(--heading-font);
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 8px;
}

.product-price-per {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
}

.product-total {
  font-size: 22px;
  color: #ffffff;
  margin-bottom: 10px;
}

.product-total s {
  color: rgba(255,255,255,0.4);
  font-size: 18px;
  margin-right: 6px;
}

.product-total strong {
  color: var(--accent);
}

.product-shipping {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.product-btn {
  display: block;
  width: 100%;
  background: var(--btn-color);
  color: #ffffff;
  padding: 14px 0;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  transition: background 0.25s, transform 0.2s, box-shadow 0.2s;
  border: 2px solid transparent;
  letter-spacing: 0.3px;
}

.product-btn:hover {
  background: var(--btn-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13,45,30,0.4);
}

.product-btn--best {
  background: var(--accent);
  color: var(--primary-dark);
}

.product-btn--best:hover {
  background: var(--accent-light);
  box-shadow: 0 6px 20px rgba(122,200,160,0.5);
}

/* Trust Badges */
.trust-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  padding: 24px 0;
  border-top: 1px solid rgba(122,200,160,0.15);
  border-bottom: 1px solid rgba(122,200,160,0.15);
}

.trust-badge {
  height: 50px;
  width: auto;
  opacity: 0.8;
  filter: brightness(1.2);
  transition: opacity 0.2s;
}

.trust-badge:hover {
  opacity: 1;
}

/* Guarantee Box */
.guarantee-box {
  display: flex;
  align-items: center;
  gap: 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(122,200,160,0.25);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}

.guarantee-seal {
  width: 100px;
  height: 100px;
  object-fit: contain;
  flex-shrink: 0;
}

.guarantee-text h4 {
  font-family: var(--heading-font);
  font-size: 22px;
  color: #ffffff;
  margin-bottom: 8px;
}

.guarantee-text p {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

/* ===========================
   RECIPES SECTION
   =========================== */
.recipes-section {
  padding: 96px 24px;
  background: var(--bg);
}

.recipes-container {
  max-width: 1200px;
  margin: 0 auto;
}

.recipes-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary-mid);
  margin-bottom: 16px;
  padding: 6px 20px;
  background: rgba(30,92,58,0.1);
  border-radius: 50px;
  border: 1px solid rgba(30,92,58,0.2);
}

.recipes-title {
  font-family: var(--heading-font);
  font-size: clamp(36px, 5vw, 60px);
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.recipes-desc {
  font-size: 19px;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Recipe Cards Grid */
.recipe-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.recipe-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  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(-4px);
}

.recipe-img-wrap {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.recipe-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.recipe-card:hover .recipe-img {
  transform: scale(1.05);
}

.recipe-time-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(13,45,30,0.85);
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}

.recipe-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.recipe-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary-mid);
  margin-bottom: 10px;
}

.recipe-name {
  font-family: var(--heading-font);
  font-size: 22px;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.recipe-desc-short {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 18px;
  flex: 1;
}

.recipe-meta {
  display: flex;
  gap: 16px;
  font-size: 14px;
  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(--btn-color);
  color: var(--btn-color);
  border-radius: 50px;
  font-family: var(--body-font);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, transform 0.2s;
  letter-spacing: 0.3px;
}

.recipe-toggle-btn:hover {
  background: var(--btn-color);
  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: #f7faf8;
  border-right: 1px solid var(--border);
}

.ingredients-block h4,
.instructions-block h4 {
  font-family: var(--heading-font);
  font-size: 18px;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.ingredients-block h5 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-mid);
  margin-top: 16px;
  margin-bottom: 8px;
}

.ingredients-block ul {
  list-style: none;
  padding: 0;
}

.ingredients-block ul li {
  font-size: 16px;
  color: var(--text-mid);
  padding: 5px 0 5px 20px;
  position: relative;
  line-height: 1.5;
  border-bottom: 1px solid rgba(122,200,160,0.15);
}

.ingredients-block ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 13px;
  top: 7px;
}

.instructions-block ol {
  padding-left: 22px;
}

.instructions-block ol li {
  font-size: 16px;
  color: var(--text-mid);
  padding: 8px 0;
  line-height: 1.65;
}

.instructions-block ol li + li {
  border-top: 1px solid rgba(122,200,160,0.12);
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: #0a1f14;
  padding: 64px 24px 40px;
  color: rgba(255,255,255,0.7);
}

.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(122,200,160,0.15);
  margin-bottom: 8px;
}

.footer-logo {
  font-family: var(--heading-font);
  font-size: 24px;
  color: #ffffff;
}

.footer-tagline {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  font-style: italic;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-company p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
}

.footer-company strong {
  color: rgba(255,255,255,0.85);
  font-size: 16px;
}

.footer-disclaimer {
  grid-column: 1 / -1;
  padding-top: 24px;
  border-top: 1px solid rgba(122,200,160,0.12);
}

.footer-disclaimer p {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  line-height: 1.65;
  margin-bottom: 8px;
}

/* ===========================
   LEGAL PAGES
   =========================== */
.legal-main {
  max-width: 860px;
  margin: 60px auto;
  padding: 0 24px;
}

.legal-main h1 {
  font-family: var(--heading-font);
  font-size: 42px;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.legal-meta {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.legal-main h2 {
  font-family: var(--heading-font);
  font-size: 26px;
  color: var(--text-dark);
  margin: 36px 0 14px;
}

.legal-main p,
.legal-main li {
  font-size: 18px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 12px;
}

.legal-main ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-main a {
  color: var(--primary-mid);
  text-decoration: underline;
}

.fda-warning-box {
  background: #fff8e6;
  border: 2px solid #e6b800;
  border-radius: var(--radius);
  padding: 24px 28px;
  margin: 32px 0;
}

.fda-warning-box strong {
  color: #b35900;
  display: block;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.fda-warning-box p {
  color: #7a5200;
  font-size: 17px;
  margin: 0;
}

.company-contact-box {
  background: #f2f7f4;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin: 32px 0;
}

.company-contact-box h3 {
  font-family: var(--heading-font);
  font-size: 22px;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.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: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(13,45,30,0.98);
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid rgba(122,200,160,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: 380px;
    margin: 0 auto 48px;
  }

  .product-card--featured {
    grid-column: auto;
    max-width: 100%;
    order: 0;
  }

  .guarantee-box {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }

  .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: 38px;
  }

  .shapeon-title {
    font-size: 24px;
  }
}
