:root {
  --black: #0f0f0f;
  --charcoal: #222222;
  --cream: #fff7e6;
  --warm-white: #fcfaf5;
  --gold: #c9a86a;
  --soft-gold: #ead7a6;
  --gray: #777777;
}

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

body {
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  background: var(--warm-white);
  color: var(--black);
  line-height: 1.8;
  font-size: 20px;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ── Navbar ──────────────────────────────────────── */

.navbar {
  width: 100%;
  padding: 24px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(252, 250, 245, 0.9);
  backdrop-filter: blur(12px);
  z-index: 10;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
}

.brand-wordmark {
  height: 26px;
  width: auto;
  display: block;
}

footer .brand-wordmark {
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.mark {
  width: 34px;
  height: 34px;
}

.mark svg {
  width: 100%;
  height: 100%;
  display: block;
}

.mark svg polygon {
  fill: var(--black);
}

footer .mark svg polygon {
  fill: var(--soft-gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-links > a:hover {
  color: var(--gold);
}

/* Right-side nav cluster (links + language toggle) */
.nav-right {
  display: flex;
  align-items: center;
  gap: 28px;
}

/* Language toggle */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 999px;
  overflow: hidden;
  background: transparent;
  font-family: inherit;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.lang-toggle span {
  padding: 6px 13px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--gray);
  transition: 0.2s ease;
}

.lang-toggle span.active {
  background: var(--black);
  color: #fff;
}

/* Product dropdown */

.nav-dropdown {
  position: relative;
}

.nav-dropdown > a::after {
  content: ' ↓';
  font-size: 10px;
  opacity: 0.5;
}

.nav-dropdown > a:hover {
  color: var(--gold);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: rgba(252, 250, 245, 0.97);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 6px;
  min-width: 130px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 9px 16px;
  border-radius: 8px;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
}

.dropdown-menu a:hover {
  background: var(--cream);
  color: var(--gold);
}

/* ── Shared ──────────────────────────────────────── */

section {
  padding: 130px 8%;
}

.section-title {
  font-size: 15px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  padding: 20px 48px;
  border-radius: 999px;
  background: var(--black);
  color: white;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: 0.3s ease;
}

.btn:hover {
  background: var(--gold);
  color: var(--black);
}

.image-box {
  min-height: 480px;
  background: linear-gradient(135deg, var(--black), #343434);
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--soft-gold);
  font-size: 15px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* ── Hero ────────────────────────────────────────── */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 8% 80px;
  background: radial-gradient(circle at top, #fffdf7 0%, var(--cream) 42%, var(--warm-white) 100%);
}

.hero-content {
  max-width: 980px;
}

.emblem {
  width: 160px;
  height: 130px;
  margin: 0 auto 36px;
}

.emblem svg {
  width: 100%;
  height: 100%;
  display: block;
}

.emblem svg polygon {
  fill: var(--black);
}

.rs-logo {
  width: clamp(180px, 42vw, 400px);
  margin: 0 auto 28px;
}

.rs-logo img {
  width: 100%;
  height: auto;
  display: block;
}

.hero h1 {
  font-size: clamp(52px, 6vw, 64px);
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 26px;
}

.hero p {
  max-width: 680px;
  margin: 0 auto 40px;
  font-size: 22px;
  line-height: 1.8;
  color: var(--charcoal);
}

/* ── About ───────────────────────────────────────── */

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  background: white;
}

.about h2,
.product h2,
.support h2 {
  font-size: clamp(40px, 4vw, 46px);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1.5px;
}

.about p {
  font-size: 22px;
  line-height: 1.8;
  color: var(--charcoal);
  max-width: 680px;
}

/* ── Product ─────────────────────────────────────── */

.product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  background: var(--cream);
}

.product-image {
  min-height: 480px;
  background: linear-gradient(135deg, var(--black), #343434);
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--soft-gold);
  font-size: 15px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.product-info p {
  font-size: 22px;
  line-height: 1.8;
  color: var(--charcoal);
  max-width: 620px;
  margin-bottom: 32px;
}

/* ── Support ─────────────────────────────────────── */

.support {
  background: var(--warm-white);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 50px;
}

.support-card {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 22px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: 0.3s ease;
}

.support-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
}

.support-icon {
  width: 48px;
  height: 48px;
  background: var(--cream);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.support-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--black);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.support-card h3 {
  font-size: 24px;
  letter-spacing: -0.3px;
}

.support-card p {
  font-size: 18px;
  color: var(--charcoal);
  flex: 1;
  line-height: 1.7;
}

.support-link {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}

.support-link:hover {
  color: var(--black);
}

/* ── Buttons (ghost variant) ─────────────────────── */

.btn-ghost {
  background: transparent;
  color: var(--black);
  border: 1px solid var(--black);
  margin-left: 12px;
}

.btn-ghost:hover {
  background: var(--black);
  color: white;
  border-color: var(--black);
}

/* ── Generic page hero ───────────────────────────── */

.page-hero {
  padding: 160px 8% 70px;
  background: radial-gradient(circle at top, #fffdf7 0%, var(--cream) 55%, var(--warm-white) 100%);
}

.page-hero-content {
  max-width: 820px;
}

.page-hero h1 {
  font-size: clamp(44px, 5vw, 60px);
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.page-hero p {
  font-size: 20px;
  line-height: 1.75;
  color: var(--charcoal);
  max-width: 620px;
}

.breadcrumb a:hover {
  color: var(--gold);
}

/* ── Product grid ────────────────────────────────── */

.product-grid-section {
  background: white;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.product-card {
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 24px;
  overflow: hidden;
  background: var(--warm-white);
  display: flex;
  flex-direction: column;
  transition: 0.3s ease;
}

.product-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
}

.product-card-media {
  background: #fff;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 90px;
  overflow: hidden;
}

.product-card-media img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: contain;
  display: block;
}

.product-card-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.product-card-body h2 {
  font-size: 28px;
  letter-spacing: -0.8px;
}

.product-card-body p {
  font-size: 19px;
  line-height: 1.7;
  color: var(--charcoal);
  flex: 1;
}

.product-card-link {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
}

.product-card:hover .product-card-link {
  color: var(--black);
}

/* ── Recipes hero ────────────────────────────────── */

.recipes-hero {
  padding: 160px 8% 70px;
  background: radial-gradient(circle at top, #fffdf7 0%, var(--cream) 55%, var(--warm-white) 100%);
}

.recipes-hero-content {
  max-width: 820px;
}

.breadcrumb {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 26px;
}

.recipes-hero h1 {
  font-size: clamp(44px, 5vw, 60px);
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.recipes-hero .lede {
  font-size: 21px;
  color: var(--black);
  font-weight: 600;
  margin-bottom: 16px;
}

.recipes-hero p {
  font-size: 20px;
  line-height: 1.75;
  color: var(--charcoal);
  max-width: 640px;
}

.recipes-hero .btn {
  margin-top: 30px;
}

/* ── Recipe list ─────────────────────────────────── */

.recipes {
  background: white;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.recipe-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.recipe-toggle-all {
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: #fff;
  color: var(--black);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.recipe-toggle-all:hover {
  background: var(--black);
  border-color: var(--black);
  color: #fff;
}

.recipe-toggle-all [data-toggle] {
  display: none;
}

.recipe-toggle-all.is-open [data-toggle="open"],
.recipe-toggle-all.is-closed [data-toggle="closed"] {
  display: inline;
}

.recipe {
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 32px;
  overflow: hidden;
  background: var(--warm-white);
  box-shadow: 0 26px 60px -34px rgba(0, 0, 0, 0.45);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.recipe:hover {
  transform: translateY(-6px);
  box-shadow: 0 40px 80px -32px rgba(0, 0, 0, 0.5);
}

/* Clickable header bar (the dropdown toggle) */
.recipe-summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 18px;
  padding: 24px clamp(24px, 3vw, 40px);
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  transition: background 0.25s ease;
}

/* keep the divider only while the card is open */
.recipe:not([open]) .recipe-summary {
  border-bottom-color: transparent;
}

.recipe-summary::-webkit-details-marker {
  display: none;
}

.recipe-summary:hover {
  background: var(--warm-white);
}

.recipe-head-num {
  flex: none;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--cream);
  color: var(--black);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.recipe-head-title {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin-right: auto;
}

.recipe-summary .recipe-time,
.recipe-summary .recipe-serves {
  margin: 0;
}

.recipe-chevron {
  flex: none;
  font-size: 16px;
  color: var(--gray);
  transition: transform 0.3s ease;
}

.recipe[open] .recipe-chevron {
  transform: rotate(180deg);
}

.recipe-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.recipe-media {
  position: relative;
  overflow: hidden;
  min-height: clamp(340px, 40vw, 560px);
  background: linear-gradient(135deg, var(--black), #343434);
}

.recipe-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.2, 0.6, 0.2, 1);
}

.recipe:hover .recipe-media img {
  transform: scale(1.06);
}

/* depth gradient so overlaid badge stays legible on light photos */
.recipe-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.30), rgba(0, 0, 0, 0) 42%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0) 30%);
  pointer-events: none;
}

/* alternate the image to the opposite side on every second card */
.recipe:nth-child(even) .recipe-media {
  order: 2;
}

.recipe-body {
  padding: clamp(34px, 3.5vw, 60px);
  display: flex;
  flex-direction: column;
}

.recipe-body h2 {
  font-size: clamp(26px, 3vw, 40px);
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 14px;
}

.recipe-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.recipe-time {
  display: inline-block;
  background: var(--cream);
  color: var(--charcoal);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
}

.recipe-serves {
  display: inline-block;
  background: var(--black);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
}

.nutrition {
  max-width: 480px;
  margin-bottom: 28px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 14px;
  overflow: hidden;
}

.nutrition summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 18px;
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  background: var(--warm-white);
}

.nutrition summary::-webkit-details-marker {
  display: none;
}

.nutrition summary::after {
  content: "▾";
  font-size: 13px;
  color: var(--gray);
  transition: transform 0.25s ease;
}

.nutrition[open] summary::after {
  transform: rotate(180deg);
}

.nutrition-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(84px, 1fr));
  gap: 1px;
  background: rgba(0, 0, 0, 0.08);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.nutri-item {
  background: white;
  padding: 14px 10px;
  text-align: center;
}

.nutri-val {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
}

.nutri-key {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray);
}

/* Subtle nutrition disclaimer — present but understated */
.nutrition-disclaimer {
  max-width: 720px;
  margin: 40px auto 0;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 13px;
  line-height: 1.6;
  font-style: italic;
  text-align: center;
  color: var(--gray);
  opacity: 0.85;
}

.nutrition-disclaimer::before {
  content: "ⓘ ";
  font-style: normal;
  color: var(--gold);
}

.recipe-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.recipe-ingredients {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 18px;
  padding: 22px 26px;
}

.recipe-cols h3 {
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.recipe-cols ul,
.recipe-cols ol {
  padding-left: 22px;
  color: var(--charcoal);
  font-size: 20px;
  line-height: 1.75;
}

.recipe-cols li {
  margin-bottom: 12px;
}

.recipe-cols ol li {
  padding-left: 4px;
}

.recipe-cols ol li::marker {
  color: var(--gold);
  font-weight: 700;
}

/* ── Why use ─────────────────────────────────────── */

.why-cutter {
  background: var(--cream);
  text-align: center;
}

.why-cutter h2 {
  font-size: clamp(46px, 5vw, 58px);
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 44px;
}

.why-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
  text-align: left;
}

.why-list li {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  padding: 20px 24px;
  font-size: 20px;
  color: var(--charcoal);
}

.why-list li::before {
  content: '✔ ';
  color: var(--gold);
  font-weight: 700;
}

/* ── Lifestyle page ──────────────────────────────── */

/* Featured band */
.lifestyle-featured {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: stretch;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 32px;
  overflow: hidden;
  background: var(--warm-white);
  box-shadow: 0 26px 60px -34px rgba(0, 0, 0, 0.45);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.lifestyle-featured:hover {
  transform: translateY(-6px);
  box-shadow: 0 40px 80px -32px rgba(0, 0, 0, 0.5);
}

.lifestyle-featured-media {
  overflow: hidden;
  min-height: clamp(320px, 38vw, 480px);
  background: linear-gradient(135deg, var(--black), #343434);
}

.lifestyle-featured-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.2, 0.6, 0.2, 1);
}

.lifestyle-featured:hover .lifestyle-featured-media img {
  transform: scale(1.06);
}

.lifestyle-featured-body {
  padding: clamp(34px, 4vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lifestyle-featured-body h2 {
  font-size: clamp(34px, 4vw, 48px);
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.lifestyle-featured-body p {
  font-size: 19px;
  line-height: 1.7;
  color: var(--charcoal);
  margin-bottom: 24px;
}

/* Highlights */
.lifestyle-highlights {
  background: white;
}

.lifestyle-highlights h2 {
  font-size: clamp(34px, 4vw, 46px);
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 40px;
}

/* Vegetable-cutter CTA band (shared look with the product-page promo) */
.lifestyle-cta,
.vc-promo {
  background: linear-gradient(135deg, var(--black), #343434);
  color: #fff;
  text-align: center;
}

.lifestyle-cta-inner,
.vc-promo-inner {
  max-width: 760px;
  margin: 0 auto;
}

.lifestyle-cta h2,
.vc-promo .vc-heading {
  color: #fff;
  font-size: clamp(32px, 3.6vw, 44px);
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 18px;
}

.lifestyle-cta p,
.vc-promo .vc-subhead {
  color: #d8d8d8;
  font-size: 19px;
  line-height: 1.7;
  margin: 0 auto 30px;
  max-width: 620px;
}

/* More coming soon */
.lifestyle-soon {
  background: var(--cream);
  text-align: center;
}

.lifestyle-soon h2 {
  font-size: clamp(32px, 3.6vw, 44px);
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.lifestyle-soon p {
  font-size: 19px;
  line-height: 1.7;
  color: var(--charcoal);
  max-width: 620px;
  margin: 0 auto 30px;
}

.lifestyle-soon-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.soon-tag {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 999px;
  background: #fff;
  border: 1px dashed var(--gold);
  color: var(--charcoal);
  font-size: 16px;
  font-weight: 600;
}

@media (max-width: 850px) {
  .lifestyle-featured {
    grid-template-columns: 1fr;
  }
}

/* ── Footer ──────────────────────────────────────── */

footer {
  background: var(--black);
  color: white;
  padding: 70px 8%;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

footer p {
  color: #bdbdbd;
  max-width: 420px;
  margin-top: 16px;
}

.footer-links {
  display: flex;
  gap: 26px;
  color: var(--soft-gold);
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ── Responsive ──────────────────────────────────── */

@media (max-width: 850px) {
  .nav-links {
    display: none;
  }

  .about,
  .product {
    grid-template-columns: 1fr;
  }

  .support-grid {
    grid-template-columns: 1fr 1fr;
  }

  .image-box,
  .product-image {
    min-height: 320px;
  }

  .recipe-inner {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .recipe:nth-child(even) .recipe-media {
    order: 0;
  }

  .recipe-media {
    min-height: 300px;
  }

  .recipe-body {
    padding: 32px;
  }

  .btn-ghost {
    margin-left: 0;
    margin-top: 12px;
  }

  section {
    padding: 80px 6%;
  }
}

@media (max-width: 560px) {
  .recipe-cols {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ── Vegetable Cutter detail page ────────────────── */

/* Shared placeholder tile (swap for real images later) */
.vc-ph {
  background: linear-gradient(135deg, var(--black), #343434);
  color: var(--soft-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Real product photos (swapped in for .vc-ph placeholders) */
.vc-photo-tile {
  background: #fff;
  overflow: hidden;
  padding: 0;
}

.vc-photo-tile img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Hero photo: show in a wide landscape frame (photo stays upright) */
.vc-hero-media .vc-photo-tile {
  aspect-ratio: 16 / 10;
  min-height: 0;
  width: 100%;
}

.included-photo,
.tips-photo {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  background: #fff;
}

.included-photo {
  margin: 18px 0;
}

.tips-photo {
  margin-bottom: 20px;
}

/* Section headings inside the page */
.vc-heading {
  font-size: clamp(38px, 4vw, 46px);
  line-height: 1.1;
  letter-spacing: -1.2px;
  margin-bottom: 18px;
}

.vc-heading-sm {
  font-size: clamp(28px, 3vw, 32px);
  margin-bottom: 6px;
}

.vc-subhead {
  font-size: 20px;
  line-height: 1.8;
  color: var(--charcoal);
  max-width: 760px;
  margin-bottom: 50px;
}

/* Hero extras */
.vc-hero-media {
  position: relative;
}

.vc-mini-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 28px 0 32px;
  max-width: 560px;
}

.vc-mini {
  padding: 18px 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  background: white;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
}

.vc-mini span:first-child {
  display: block;
  margin-bottom: 8px;
  font-size: 24px;
}

.vc-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.floating-card {
  position: absolute;
  right: -18px;
  bottom: 26px;
  width: 230px;
  padding: 20px 22px;
  border-radius: 16px;
  background: white;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.floating-card strong {
  display: block;
  margin-bottom: 6px;
}

.floating-card p {
  color: var(--gray);
  font-size: 15px;
}

/* Blades */
.vc-blades {
  background: white;
}

.blade-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
}

.blade-card {
  flex: 0 1 calc(33.333% - 15px);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 22px;
  background: var(--warm-white);
  padding: 22px;
  text-align: center;
  transition: 0.3s ease;
}

.blade-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
}

.blade-ph {
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  margin-bottom: 16px;
}

.blade-card h3 {
  font-size: 24px;
  letter-spacing: -0.3px;
  margin-bottom: 8px;
}

.blade-card p {
  font-size: 19px;
  color: var(--charcoal);
}

/* Why you'll love it */
.vc-why {
  background: var(--cream);
}

.vc-split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 44px;
  align-items: stretch;
}

.vc-panel {
  padding: 44px;
  border-radius: 24px;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.07);
}

.feature-list {
  display: grid;
  gap: 22px;
  margin-top: 28px;
}

.feature-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
}

.feature-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--gold);
  font-weight: 800;
  font-size: 18px;
  display: grid;
  place-items: center;
}

.feature-item h3 {
  font-size: 24px;
  letter-spacing: -0.3px;
  margin-bottom: 6px;
}

.feature-item p {
  color: var(--charcoal);
  font-size: 20px;
  line-height: 1.8;
}

.vc-media {
  position: relative;
  min-height: 520px;
  border-radius: 24px;
  overflow: hidden;
}

.great-for {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 230px;
  padding: 24px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.great-for h3 {
  margin-bottom: 14px;
  font-size: 24px;
}

.great-for ul {
  list-style: none;
  display: grid;
  gap: 10px;
  font-size: 18px;
  color: var(--charcoal);
}

.great-for li::before {
  content: "✓";
  color: var(--gold);
  font-weight: 800;
  margin-right: 9px;
}

/* How to use + What's included */
.vc-how {
  background: white;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 960px;
}

.step-card {
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 18px;
  overflow: hidden;
  background: var(--warm-white);
}

.step-ph {
  aspect-ratio: 1.4 / 1;
}

.step-body {
  padding: 20px;
}

.step-num {
  color: var(--gold);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.step-card h3 {
  margin: 6px 0;
  font-size: 22px;
}

.step-card p {
  color: var(--charcoal);
  font-size: 19px;
}

/* How-to-use illustrated steps (text baked into the images, EN/DE) */
.how-to-photos {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: none;
}

.step-photo {
  margin: 0;
}

.step-photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  background: #fff;
}

/* Show the image matching the active language (i18n sets <html lang>) */
.step-photo .lang-de {
  display: none;
}

html[lang="de"] .step-photo .lang-en {
  display: none;
}

html[lang="de"] .step-photo .lang-de {
  display: block;
}

/* What's included */
.vc-included {
  background: var(--cream);
}

.included-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 56px;
  align-items: center;
}

.included-figure {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 22px;
  padding: 24px;
}

.included-figure .included-photo {
  margin: 0;
}

.check-list {
  list-style: none;
  display: grid;
  gap: 18px;
  font-size: 23px;
  color: var(--charcoal);
}

.check-list li::before {
  content: "✓";
  color: var(--gold);
  font-weight: 800;
  margin-right: 10px;
}

/* Product details & safety */
.vc-specs {
  background: var(--warm-white);
}

.spec-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.spec-card {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 22px;
  padding: 32px;
}

.spec-card h3 {
  font-size: 24px;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.spec-ph {
  aspect-ratio: 4 / 3;
  border-radius: 15px;
  margin-top: 18px;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
}

.spec-table td {
  padding: 15px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 19px;
  color: var(--charcoal);
  vertical-align: top;
}

.spec-table td:last-child {
  text-align: right;
  font-weight: 700;
  color: var(--black);
}

.safety-grid {
  display: grid;
  gap: 18px;
}

.safety-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 14px;
  align-items: center;
}

.safety-ph {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  font-size: 11px;
  padding: 6px;
}

.safety-item h4 {
  font-size: 18px;
  margin-bottom: 3px;
}

.safety-item p {
  color: var(--charcoal);
  font-size: 17px;
  line-height: 1.6;
}

/* Detailed manual */
.vc-manual-sec {
  background: white;
}

.vc-manual {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: start;
}

.accordion {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  overflow: hidden;
  background: white;
}

.accordion-item + .accordion-item {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.accordion-button {
  width: 100%;
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 0;
  background: white;
  font-family: inherit;
  font-weight: 700;
  font-size: 21px;
  text-align: left;
  color: var(--black);
  cursor: pointer;
  transition: 0.2s ease;
}

.accordion-button:hover,
.accordion-button[aria-expanded="true"] {
  background: var(--cream);
}

.accordion-button span {
  color: var(--gold);
  font-size: 24px;
  line-height: 1;
}

.accordion-content {
  display: none;
  padding: 0 22px 22px;
  color: var(--charcoal);
  font-size: 19px;
  line-height: 1.8;
}

.accordion-content.open {
  display: block;
}

.accordion-content ol,
.accordion-content ul {
  padding-left: 20px;
  display: grid;
  gap: 8px;
}

.accordion-content p {
  margin-bottom: 10px;
}

.tips-card {
  padding: 32px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--cream), white);
  border: 1px solid var(--soft-gold);
}

.tips-card h3 {
  margin-bottom: 18px;
  font-size: 24px;
}

.tips-card ul {
  padding-left: 20px;
  display: grid;
  gap: 12px;
  font-size: 19px;
  line-height: 1.7;
  color: var(--charcoal);
}

.warning {
  margin-top: 22px;
  padding: 16px;
  border-radius: 12px;
  background: white;
  border-left: 4px solid var(--black);
  font-weight: 700;
  font-size: 15px;
}

/* FAQ */
.vc-faq {
  background: var(--warm-white);
}

.faq-wrap {
  max-width: 900px;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 900px) {
  .vc-split,
  .included-grid,
  .vc-manual,
  .spec-grid {
    grid-template-columns: 1fr;
  }

  .blade-card {
    flex-basis: calc(50% - 11px);
  }

  .vc-mini-benefits {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .how-to-photos {
    grid-template-columns: repeat(2, 1fr);
  }

  .vc-media {
    min-height: 360px;
  }

  .great-for {
    position: static;
    width: auto;
    margin-top: 16px;
  }

  .floating-card {
    position: static;
    width: 100%;
    margin-top: 14px;
    right: 0;
  }
}

@media (max-width: 560px) {
  .blade-card {
    flex-basis: 100%;
  }

  .how-to-photos {
    grid-template-columns: 1fr;
  }
}

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