/* ═══════════════════════════════════════════════════════
   FARM DIAMOND — Individual Product Pages (shared CSS)
   Scoped to .fd-pp-* — won't collide with other styles.
   ═══════════════════════════════════════════════════════ */

/* ─── Shared helpers ─── */
.fd-pp-tag {
  display: inline-block;
  background: rgba(255,107,53,0.1);
  color: #FF6B35;
  border: 1px solid rgba(255,107,53,0.25);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.fd-pp-tag-light {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.95);
  border-color: rgba(255,255,255,0.22);
}
.fd-pp-tag-green {
  background: rgba(59,109,17,0.1);
  color: #3B6D11;
  border-color: rgba(59,109,17,0.3);
}
.fd-pp-h2 {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(30px, 4.2vw, 48px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  color: #2D2D2D;
  margin: 0 0 16px;
}
.fd-pp-h2-light { color: #fff; }
.fd-pp-h2 em {
  font-style: normal;
  color: #FF6B35;
  position: relative;
  white-space: nowrap;
}
.fd-pp-h2 em.green { color: #3B6D11; }
.fd-pp-h2 em::after {
  content: '';
  position: absolute;
  left: 2%; right: 2%; bottom: -2px;
  height: 10px;
  background: rgba(255,107,53,0.18);
  border-radius: 10px;
  z-index: -1;
}
.fd-pp-h2 em.green::after { background: rgba(59,109,17,0.18); }
.fd-pp-text-soft { color: rgba(255,255,255,0.72); }

/* ═══════════════════════════════════════════════
   HERO (shared structure, page-specific bg)
   ═══════════════════════════════════════════════ */
.fd-pp-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(70px, 9vw, 120px) clamp(20px, 5vw, 80px);
}
.fd-pp-classic-hero {
  background:
    radial-gradient(ellipse at top right, rgba(255,107,53,0.12) 0%, transparent 55%),
    linear-gradient(135deg, #FFF8F3 0%, #FFF3EA 60%, #FFEDD8 100%);
}
.fd-pp-premium-hero {
  background:
    radial-gradient(ellipse at top right, rgba(255,107,53,0.22) 0%, transparent 55%),
    linear-gradient(180deg, #1A4E8F 0%, #1E5CA8 50%, #173E73 100%);
}
.fd-pp-heritage-hero {
  background:
    radial-gradient(ellipse at top right, rgba(136,194,90,0.15) 0%, transparent 55%),
    linear-gradient(135deg, #F5F2E8 0%, #EBE5D2 60%, #DCD3BB 100%);
}
.fd-pp-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.95;
}
.fd-pp-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}

/* Hero content */
.fd-pp-hero-content { max-width: 540px; }
.fd-pp-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(45,45,45,0.5);
  text-decoration: none;
  margin-bottom: 24px;
  transition: color 0.2s, transform 0.2s;
}
.fd-pp-back:hover {
  color: #FF6B35;
  transform: translateX(-3px);
}
.fd-pp-back-light { color: rgba(255,255,255,0.6); }
.fd-pp-back-light:hover { color: #fff; }

.fd-pp-badge-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.fd-pp-badge {
  display: inline-block;
  padding: 7px 14px;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}
.fd-pp-badge-orange { background: #FF6B35; color: #fff; }
.fd-pp-badge-blue   { background: rgba(255,255,255,0.15); color: #fff; border: 1px solid rgba(255,255,255,0.3); }
.fd-pp-badge-green  { background: #3B6D11; color: #fff; }
.fd-pp-num {
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  color: rgba(45,45,45,0.3);
}
.fd-pp-num-light { color: rgba(255,255,255,0.4); }

.fd-pp-title {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -1.5px;
  color: #2D2D2D;
  margin: 0 0 14px;
}
.fd-pp-title-light { color: #fff; }
.fd-pp-title em {
  font-style: normal;
  color: #FF6B35;
  position: relative;
  white-space: nowrap;
}
.fd-pp-title-light em { color: #FFB088; }
.fd-pp-title em.green { color: #3B6D11; }
.fd-pp-title em::after {
  content: '';
  position: absolute;
  left: 2%; right: 2%; bottom: 4px;
  height: 12px;
  background: rgba(255,107,53,0.2);
  border-radius: 12px;
  z-index: -1;
}
.fd-pp-title-light em::after { background: rgba(255,176,136,0.22); }
.fd-pp-title em.green::after { background: rgba(59,109,17,0.2); }

.fd-pp-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,107,53,0.85);
  margin: 0 0 24px;
}
.fd-pp-tagline-light { color: rgba(255,176,136,0.9); }

.fd-pp-desc {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(45,45,45,0.75);
  margin: 0 0 32px;
  max-width: 500px;
}
.fd-pp-desc-light { color: rgba(255,255,255,0.78); }

/* Key stats */
.fd-pp-key-stats {
  display: flex;
  gap: 24px;
  padding: 20px 22px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,107,53,0.15);
  border-radius: 18px;
  margin-bottom: 32px;
}
.fd-pp-key-stats-light {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.16);
}
.fd-pp-key {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.fd-pp-key + .fd-pp-key {
  border-left: 1px solid rgba(0,0,0,0.08);
  padding-left: 24px;
}
.fd-pp-key-stats-light .fd-pp-key + .fd-pp-key {
  border-left-color: rgba(255,255,255,0.15);
}
.fd-pp-key-n {
  font-family: 'Nunito', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: #FF6B35;
  line-height: 1;
  letter-spacing: -0.5px;
}
.fd-pp-key-stats-light .fd-pp-key-n { color: #FFB088; }
.fd-pp-key.green .fd-pp-key-n { color: #3B6D11; }
.fd-pp-key-n small { font-size: 0.5em; margin-left: 1px; }
.fd-pp-key-l {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(45,45,45,0.55);
  margin-top: 6px;
}
.fd-pp-key-stats-light .fd-pp-key-l { color: rgba(255,255,255,0.55); }

/* CTA row */
.fd-pp-cta-row { display: flex; flex-wrap: wrap; gap: 12px; }
.fd-pp-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 100px;
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s, color 0.25s;
}
.fd-pp-cta svg { transition: transform 0.25s; }
.fd-pp-cta:hover { transform: translateY(-2px); }
.fd-pp-cta:hover svg { transform: translateX(4px); }
.fd-pp-cta-primary { background: #FF6B35; color: #fff; box-shadow: 0 6px 20px rgba(255,107,53,0.4); }
.fd-pp-cta-primary:hover { background: #E94E1B; color: #fff; box-shadow: 0 12px 30px rgba(255,107,53,0.5); }
.fd-pp-cta-green { background: #3B6D11; color: #fff; box-shadow: 0 6px 20px rgba(59,109,17,0.4); }
.fd-pp-cta-green:hover { background: #2D5409; color: #fff; }
.fd-pp-cta-ghost {
  background: transparent;
  color: #2D2D2D;
  border: 2px solid rgba(45,45,45,0.15);
}
.fd-pp-cta-ghost:hover { border-color: #FF6B35; color: #FF6B35; }
.fd-pp-cta-glass {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
}
.fd-pp-cta-glass:hover { background: rgba(255,255,255,0.2); color: #fff; }

/* ─── Hero visual (shared egg) ─── */
.fd-pp-visual {
  position: relative;
  width: 100%;
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fd-pp-egg-orbit {
  position: absolute;
  top: 50%; left: 50%;
  border-radius: 50%;
  border: 1.5px dashed rgba(255,107,53,0.25);
  pointer-events: none;
  animation: orbit-rot 22s linear infinite;
}
.fd-pp-egg-orbit.light { border-color: rgba(255,176,136,0.3); }
.fd-pp-egg-orbit-outer {
  width: 380px; height: 380px;
  transform: translate(-50%, -50%);
}
.fd-pp-egg-orbit-inner {
  width: 290px; height: 290px;
  transform: translate(-50%, -50%);
  animation-direction: reverse;
  animation-duration: 28s;
  border-color: rgba(0,0,0,0.08);
}
.fd-pp-egg-orbit-inner.light { border-color: rgba(255,255,255,0.15); }
@keyframes orbit-rot {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.fd-pp-egg {
  position: relative;
  width: 220px;
  height: 250px;
  animation: egg-bob 5s ease-in-out infinite;
  z-index: 2;
}
@keyframes egg-bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
.fd-pp-egg-glow::before {
  content: '';
  position: absolute;
  inset: -30px;
  background: radial-gradient(circle, rgba(255,154,60,0.35) 0%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
  animation: pulse-aura 3s ease-in-out infinite;
}
@keyframes pulse-aura {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50%      { opacity: 0.9; transform: scale(1.08); }
}
.fd-pp-egg-shell {
  position: absolute;
  inset: 0;
  border-radius: 50% 50% 50% 50% / 58% 58% 42% 42%;
  box-shadow:
    inset -16px -24px 44px rgba(120,90,50,0.3),
    inset 10px 14px 28px rgba(255,255,255,0.6),
    0 28px 60px rgba(0,0,0,0.35);
}
.shell-white {
  background: radial-gradient(ellipse at 32% 28%, #FFFEF8 0%, #F5E8D0 65%, #D8C09B 100%);
}
.shell-brown {
  background: radial-gradient(ellipse at 32% 28%, #D4A875 0%, #A87147 60%, #6F4628 100%);
}
.fd-pp-egg-yolk {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  z-index: 2;
}
.yolk-vivid {
  background: radial-gradient(circle at 32% 30%, #FFD27A 0%, #FF9A3C 50%, #E66B1A 100%);
  box-shadow:
    inset -7px -10px 22px rgba(150,50,5,0.55),
    inset 4px 6px 14px rgba(255,230,160,0.6),
    0 6px 22px rgba(255,107,53,0.5);
}
.yolk-deep {
  background: radial-gradient(circle at 32% 30%, #FFC960 0%, #FF7A1F 50%, #B84500 100%);
  box-shadow:
    inset -7px -10px 22px rgba(120,40,5,0.65),
    inset 4px 6px 14px rgba(255,220,140,0.55),
    0 8px 28px rgba(255,107,53,0.6);
  animation: yolk-pulse 3s ease-in-out infinite;
}
@keyframes yolk-pulse {
  0%, 100% { box-shadow: inset -7px -10px 22px rgba(120,40,5,0.65), inset 4px 6px 14px rgba(255,220,140,0.55), 0 8px 28px rgba(255,107,53,0.6); }
  50%      { box-shadow: inset -7px -10px 22px rgba(120,40,5,0.65), inset 4px 6px 14px rgba(255,220,140,0.55), 0 12px 40px rgba(255,107,53,0.85); }
}
.fd-pp-yolk-shine {
  position: absolute;
  top: 18%; left: 24%;
  width: 26px; height: 16px;
  border-radius: 50%;
  background: rgba(255,255,255,0.55);
  filter: blur(2px);
}

/* Floating chips */
.fd-pp-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(255,107,53,0.2);
  border-radius: 100px;
  padding: 8px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #2D2D2D;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  white-space: nowrap;
  animation: chip-float 6s ease-in-out infinite;
  z-index: 3;
}
.fd-pp-chip.glass {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border-color: rgba(255,255,255,0.25);
  color: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.fd-pp-chip.green-chip {
  border-color: rgba(59,109,17,0.25);
}
.fd-pp-chip .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #FF6B35;
  box-shadow: 0 0 8px rgba(255,107,53,0.6);
}
.fd-pp-chip .dot.orange { background: #FF6B35; }
.fd-pp-chip .dot.green { background: #3B6D11; }
.fd-pp-chip-1 { top: 10%; left: -4%; animation-delay: 0s; }
.fd-pp-chip-2 { top: 50%; right: -8%; animation-delay: -2s; }
.fd-pp-chip-3 { bottom: 14%; left: 4%; animation-delay: -4s; }
@keyframes chip-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

/* Heritage leaves */
.fd-pp-leaves { position: absolute; inset: 0; pointer-events: none; }
.fd-pp-leaf {
  position: absolute;
  font-size: 28px;
  animation: leaf-drift 8s ease-in-out infinite;
}
.fd-pp-leaf-1 { top: 12%; left: 18%; animation-delay: 0s; }
.fd-pp-leaf-2 { top: 60%; right: 14%; animation-delay: -2.5s; font-size: 32px; }
.fd-pp-leaf-3 { bottom: 18%; left: 32%; animation-delay: -5s; }
@keyframes leaf-drift {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50%      { transform: translate(-12px, -18px) rotate(-15deg); }
}

/* Certified stamp (heritage page) */
.fd-pp-cert-stamp {
  position: absolute;
  top: 14%;
  right: 6%;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: #3B6D11;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(59,109,17,0.4);
  transform: rotate(-12deg);
  animation: stamp-bob 5s ease-in-out infinite;
  z-index: 4;
}
@keyframes stamp-bob {
  0%, 100% { transform: rotate(-12deg) translateY(0); }
  50%      { transform: rotate(-12deg) translateY(-6px); }
}
.fd-pp-cert-stamp-inner {
  text-align: center;
  color: #fff;
  font-family: 'Nunito', sans-serif;
  line-height: 1;
}
.stamp-line-1 {
  display: block;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 4px;
  opacity: 0.85;
}
.stamp-line-2 {
  display: block;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════
   FEATURES STRIP (Classic page)
   ═══════════════════════════════════════════════ */
.fd-pp-features {
  background: #fff;
  padding: clamp(60px, 8vw, 100px) clamp(20px, 5vw, 80px);
}
.fd-pp-features-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.fd-pp-feature {
  text-align: center;
  padding: 28px 22px;
  border: 1px solid rgba(255,107,53,0.12);
  border-radius: 18px;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  background: linear-gradient(180deg, #FFF8F3 0%, #fff 100%);
}
.fd-pp-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(255,107,53,0.12);
  border-color: rgba(255,107,53,0.3);
}
.fd-pp-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(255,107,53,0.12);
  color: #FF6B35;
  margin-bottom: 16px;
}
.fd-pp-feature h3 {
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: #2D2D2D;
  margin: 0 0 8px;
}
.fd-pp-feature p {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.65;
  color: rgba(45,45,45,0.65);
  margin: 0;
}

/* ═══════════════════════════════════════════════
   PERFORMANCE STRIP (Premium page)
   ═══════════════════════════════════════════════ */
.fd-pp-perf {
  background: linear-gradient(180deg, #FFF8F3 0%, #fff 100%);
  padding: clamp(60px, 8vw, 100px) clamp(20px, 5vw, 80px);
}
.fd-pp-perf-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.fd-pp-perf-card {
  background: #fff;
  border: 1.5px solid rgba(255,107,53,0.12);
  border-radius: 20px;
  padding: 30px 24px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.fd-pp-perf-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(255,107,53,0.14);
}
.fd-pp-perf-card.highlighted {
  background: linear-gradient(135deg, #FF6B35 0%, #E94E1B 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 16px 40px rgba(255,107,53,0.4);
}
.fd-pp-perf-num {
  font-family: 'Nunito', sans-serif;
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
  color: #FF6B35;
  letter-spacing: -1px;
  margin-bottom: 12px;
}
.fd-pp-perf-card.highlighted .fd-pp-perf-num { color: #fff; }
.fd-pp-perf-num small { font-size: 0.45em; margin-left: 2px; }
.fd-pp-perf-card h3 {
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: #2D2D2D;
  margin: 0 0 8px;
}
.fd-pp-perf-card.highlighted h3 { color: #fff; }
.fd-pp-perf-card p {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(45,45,45,0.65);
  margin: 0;
}
.fd-pp-perf-card.highlighted p { color: rgba(255,255,255,0.85); }

/* ═══════════════════════════════════════════════
   NUTRITION BLOCK
   ═══════════════════════════════════════════════ */
.fd-pp-nut {
  background: linear-gradient(180deg, #fff 0%, #FFF8F3 100%);
  padding: clamp(70px, 9vw, 120px) clamp(20px, 5vw, 80px);
}
.fd-pp-nut-dark {
  background: linear-gradient(180deg, #1A4E8F 0%, #173E73 100%);
}
.fd-pp-nut-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.fd-pp-nut-text p {
  font-family: 'Inter', sans-serif;
  font-size: 15.5px;
  line-height: 1.75;
  color: rgba(45,45,45,0.7);
  margin: 0 0 22px;
}
.fd-pp-nut-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.fd-pp-nut-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  color: rgba(45,45,45,0.85);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.fd-pp-nut-list-light li {
  color: rgba(255,255,255,0.85);
  border-bottom-color: rgba(255,255,255,0.08);
}
.fd-pp-nut-list li::before {
  content: '';
  flex-shrink: 0;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #FF6B35;
}

/* Nutrition card */
.fd-pp-nut-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 20px 50px rgba(20,20,40,0.08);
  position: relative;
}
.fd-pp-nut-card-glass {
  background: linear-gradient(165deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.04) 100%);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.3);
}
.fd-pp-nut-card-header { margin-bottom: 18px; }
.fd-pp-nut-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,107,53,0.85);
  margin: 0 0 4px;
}
.fd-pp-nut-serving {
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #2D2D2D;
  margin: 0;
}
.fd-pp-nut-serving-light { color: #fff; }
.fd-pp-nut-cal {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(255,107,53,0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #FF6B35;
}
.fd-pp-nut-cal-orange {
  background: linear-gradient(135deg, #FF6B35 0%, #E94E1B 100%);
  color: #fff;
  box-shadow: 0 8px 22px rgba(255,107,53,0.45);
}
.fd-pp-cal-num {
  font-family: 'Nunito', sans-serif;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}
.fd-pp-cal-lbl {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 2px;
  opacity: 0.85;
}
.fd-pp-nut-rows {
  border-top: 2px solid rgba(0,0,0,0.08);
  padding-top: 16px;
}
.fd-pp-nut-rows-light { border-top-color: rgba(255,255,255,0.12); }
.fd-pp-nut-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(45,45,45,0.85);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.fd-pp-nut-rows-light .fd-pp-nut-row {
  color: rgba(255,255,255,0.88);
  border-bottom-color: rgba(255,255,255,0.07);
}
.fd-pp-nut-row:last-child { border-bottom: none; }
.fd-pp-nut-row strong {
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: #2D2D2D;
}
.fd-pp-nut-rows-light .fd-pp-nut-row strong { color: #fff; }
.fd-pp-nut-row strong small {
  font-size: 0.6em;
  font-weight: 600;
  color: rgba(45,45,45,0.55);
  margin-left: 2px;
}
.fd-pp-nut-rows-light .fd-pp-nut-row strong small { color: rgba(255,255,255,0.6); }
.fd-pp-nut-row.hero {
  background: linear-gradient(90deg, rgba(255,107,53,0.1) 0%, transparent 100%);
  border-radius: 8px;
  padding: 12px;
  margin: 0 -12px;
}
.fd-pp-nut-row.hero strong { color: #FFB088; }

/* ═══════════════════════════════════════════════
   COOKING IDEAS (Classic)
   ═══════════════════════════════════════════════ */
.fd-pp-cook {
  background: #fff;
  padding: clamp(70px, 9vw, 120px) clamp(20px, 5vw, 80px);
}
.fd-pp-cook-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 56px;
}
.fd-pp-cook-header p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: rgba(45,45,45,0.7);
  margin: 0;
}
.fd-pp-cook-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.fd-pp-cook-card {
  text-align: center;
  padding: 32px 22px;
  background: linear-gradient(180deg, #FFF8F3 0%, #fff 100%);
  border: 1px solid rgba(255,107,53,0.1);
  border-radius: 20px;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.fd-pp-cook-card:hover {
  transform: translateY(-6px) rotate(-1deg);
  box-shadow: 0 20px 44px rgba(255,107,53,0.14);
  border-color: rgba(255,107,53,0.3);
}
.fd-pp-cook-emoji {
  font-size: 44px;
  display: block;
  margin-bottom: 14px;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}
.fd-pp-cook-card h4 {
  font-family: 'Nunito', sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: #2D2D2D;
  margin: 0 0 8px;
}
.fd-pp-cook-card p {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.65;
  color: rgba(45,45,45,0.65);
  margin: 0;
}

/* ═══════════════════════════════════════════════
   STORY + STATS (Heritage)
   ═══════════════════════════════════════════════ */
.fd-pp-story {
  background: #fff;
  padding: clamp(70px, 9vw, 120px) clamp(20px, 5vw, 80px);
}
.fd-pp-story-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
.fd-pp-story-text p {
  font-family: 'Inter', sans-serif;
  font-size: 15.5px;
  line-height: 1.8;
  color: rgba(45,45,45,0.7);
  margin: 0 0 20px;
}
.fd-pp-cert-row {
  display: flex;
  gap: 16px;
  margin-top: 28px;
}
.fd-pp-cert {
  flex: 1;
  background: rgba(59,109,17,0.06);
  border: 1px solid rgba(59,109,17,0.2);
  border-radius: 14px;
  padding: 16px 18px;
}
.fd-pp-cert strong {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: #3B6D11;
  margin-bottom: 4px;
}
.fd-pp-cert span {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: rgba(45,45,45,0.6);
}

.fd-pp-story-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.fd-pp-stat-tile {
  background: linear-gradient(180deg, #F5F2E8 0%, #EBE5D2 100%);
  border: 1px solid rgba(59,109,17,0.15);
  border-radius: 18px;
  padding: 28px 22px;
  text-align: center;
}
.fd-pp-stat-tile.dark {
  background: linear-gradient(135deg, #3B6D11 0%, #2D5409 100%);
  color: #fff;
  border-color: transparent;
}
.fd-pp-stat-tile-n {
  display: inline;
  font-family: 'Nunito', sans-serif;
  font-size: 42px;
  font-weight: 900;
  color: #3B6D11;
  line-height: 1;
  letter-spacing: -1px;
}
.fd-pp-stat-tile.dark .fd-pp-stat-tile-n { color: #fff; }
.fd-pp-stat-tile-u {
  display: inline;
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: rgba(59,109,17,0.7);
  margin-left: 4px;
}
.fd-pp-stat-tile.dark .fd-pp-stat-tile-u { color: rgba(255,255,255,0.7); }
.fd-pp-stat-tile-l {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(45,45,45,0.55);
  margin-top: 10px;
}
.fd-pp-stat-tile.dark .fd-pp-stat-tile-l { color: rgba(255,255,255,0.65); }

/* Why brown */
.fd-pp-why-brown {
  background: linear-gradient(180deg, #F5F2E8 0%, #EBE5D2 100%);
  padding: clamp(70px, 9vw, 120px) clamp(20px, 5vw, 80px);
  text-align: center;
}
.fd-pp-why-brown-inner {
  max-width: 760px;
  margin: 0 auto;
}
.fd-pp-why-brown p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(45,45,45,0.7);
  margin: 0 auto 40px;
  max-width: 600px;
}
.fd-pp-myth-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.fd-pp-myth {
  background: #fff;
  border: 1.5px solid rgba(163,45,45,0.15);
  border-radius: 18px;
  padding: 24px;
  text-align: left;
}
.fd-pp-myth.truth { border-color: rgba(59,109,17,0.3); }
.fd-pp-myth h4 {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(163,45,45,0.7);
  margin: 0 0 10px;
}
.fd-pp-myth.truth h4 { color: #3B6D11; }
.fd-pp-myth p {
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(45,45,45,0.85);
  margin: 0;
}
.fd-pp-myth strong { color: #3B6D11; }

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .fd-pp-hero-inner,
  .fd-pp-nut-inner,
  .fd-pp-story-inner { grid-template-columns: 1fr; gap: 48px; }
  .fd-pp-hero-content { max-width: 600px; margin: 0 auto; text-align: center; }
  .fd-pp-key-stats { max-width: 540px; margin-left: auto; margin-right: auto; }
  .fd-pp-cta-row { justify-content: center; }
  .fd-pp-visual { max-width: 480px; margin: 0 auto; height: 400px; }
  .fd-pp-features-grid,
  .fd-pp-perf-grid,
  .fd-pp-cook-grid { grid-template-columns: repeat(2, 1fr); }
  .fd-pp-nut-card { max-width: 480px; margin: 0 auto; }
}
@media (max-width: 640px) {
  .fd-pp-key-stats { flex-direction: column; gap: 16px; }
  .fd-pp-key + .fd-pp-key { border-left: none; border-top: 1px solid rgba(0,0,0,0.08); padding-left: 0; padding-top: 16px; }
  .fd-pp-key-stats-light .fd-pp-key + .fd-pp-key { border-top-color: rgba(255,255,255,0.15); }
  .fd-pp-features-grid,
  .fd-pp-perf-grid,
  .fd-pp-cook-grid,
  .fd-pp-myth-grid,
  .fd-pp-cert-row,
  .fd-pp-story-stats { grid-template-columns: 1fr; }
  .fd-pp-cert-row { flex-direction: column; }
  .fd-pp-visual { height: 340px; }
  .fd-pp-egg { width: 180px; height: 200px; }
  .fd-pp-egg-orbit-outer { width: 300px; height: 300px; }
  .fd-pp-egg-orbit-inner { width: 240px; height: 240px; }
  .fd-pp-chip { font-size: 11px; padding: 6px 11px; }
}
@media (prefers-reduced-motion: reduce) {
  .fd-pp-egg,
  .fd-pp-egg-orbit,
  .fd-pp-chip,
  .fd-pp-leaf,
  .fd-pp-cert-stamp,
  .fd-pp-egg-glow::before,
  .yolk-deep { animation: none !important; }
}