.product-hero-top {
  background: var(--green);
  padding: 100px 0 36px;
}
.product-hero-top .product-breadcrumb {
  font-size: .78rem;
  color: rgba(255,255,255,.4);
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: 0;
}
.product-hero-top .product-breadcrumb a { color: var(--orange-lt); }
.product-hero-top .product-breadcrumb span { opacity: .5; }

.product-page { background: var(--bg); padding: 48px 0 90px; min-height: 60vh; }
.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.product-photo-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  transform: translateY(-28px);
}
.product-photo-frame {
  position: relative;
  width: 100%;
  max-width: 552px;
  aspect-ratio: 1;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  background: var(--cream);
}
.product-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-photo-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 82% 82% at 50% 50%,
      transparent 32%,
      rgba(250,246,238,.22) 50%,
      rgba(245,228,195,.45) 68%,
      rgba(232,114,28,.55) 85%,
      rgba(232,114,28,.72) 100%
    );
  pointer-events: none;
}

.product-info { max-width: 520px; }
.product-cat {
  font-size: .72rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--orange); margin-bottom: .6rem;
}
.product-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900; color: var(--green);
  letter-spacing: -.03em; line-height: 1.05;
  margin-bottom: .5rem;
}
.product-meta {
  display: flex; align-items: baseline; gap: 1.2rem;
  margin-bottom: 2rem; flex-wrap: wrap;
}
.product-weight {
  font-family: var(--visuelt);
  font-size: 1rem; color: var(--ink-muted); font-weight: 400;
}
.product-price {
  font-family: var(--visuelt);
  font-size: 2.2rem; font-weight: 400; color: var(--orange);
  line-height: 1;
}
.product-portions {
  font-family: var(--visuelt);
  font-size: .88rem; color: var(--ink-muted); width: 100%; font-weight: 400;
}
.product-subtitle {
  font-family: var(--visuelt);
  font-size: 1rem; color: var(--ink-muted); font-style: italic;
  margin: -.25rem 0 1rem; font-weight: 400;
}
.product-description {
  font-family: var(--visuelt);
  font-size: 1.094rem; color: var(--ink-soft); line-height: 1.65; font-weight: 400;
}
.product-intro {
  font-family: var(--visuelt);
  font-size: .95rem; line-height: 1.65; color: var(--ink-soft);
  margin-bottom: 1.5rem; font-weight: 400;
}
.product-cooking {
  background: rgba(36,61,40,.06);
  border-radius: var(--r);
  padding: 1rem 1.2rem;
  margin-bottom: 2rem;
  font-family: var(--visuelt);
  font-size: .92rem; line-height: 1.65; color: var(--ink-soft); font-weight: 400;
}
.product-cooking strong {
  display: block; color: var(--green); margin-bottom: .35rem;
  font-size: .78rem; letter-spacing: .1em; text-transform: uppercase;
  font-family: var(--sans); font-weight: 700;
}
.product-promo {
  background: rgba(232,114,28,.1);
  border: 1.5px solid rgba(232,114,28,.25);
  border-radius: var(--r);
  padding: 1rem 1.2rem;
  margin-bottom: 2rem;
  font-family: var(--visuelt);
  font-size: .92rem;
  line-height: 1.65;
  color: var(--ink-soft);
  font-weight: 400;
}
.product-promo strong { color: var(--orange); display: block; margin-bottom: .35rem; font-family: var(--sans); }
.product-note {
  font-family: var(--visuelt);
  font-size: .92rem; line-height: 1.65; color: var(--ink-muted);
  margin-top: .75rem; font-style: italic; font-weight: 400;
}
.product-block { margin-bottom: 2rem; }
.product-block h3 {
  font-family: var(--serif);
  font-size: 1.15rem; font-weight: 700; color: var(--green);
  margin-bottom: .9rem;
}
.ingredients-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .35rem .8rem;
  list-style: none;
}
.ingredients-list li {
  font-family: var(--visuelt);
  font-size: 1.094rem; color: var(--ink-soft);
  padding-left: 1.1rem; position: relative; line-height: 1.55; font-weight: 400;
}
.ingredients-list li::before {
  content: '';
  position: absolute; left: 0; top: .55em;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--orange);
}
.nutrition-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem;
}
.nutrition-item {
  background: var(--white);
  border: 1.5px solid var(--bg-warm);
  border-radius: var(--r);
  padding: .85rem 1rem;
}
.nutrition-item span {
  display: block; font-size: .72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--ink-faint); margin-bottom: .2rem;
  font-family: var(--sans);
}
.nutrition-item strong {
  font-family: var(--visuelt);
  font-size: 1.25rem; color: var(--green); font-weight: 400;
}
.product-actions {
  display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2.2rem;
}
.product-actions .btn { min-width: 180px; }

@media (max-width: 900px) {
  .product-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .product-photo-wrap { transform: translateY(-12px); }
  .product-photo-frame { max-width: 100%; }
  .product-info { max-width: none; }
}
@media (max-width: 480px) {
  .ingredients-list { grid-template-columns: 1fr; }
}
