/* =========================================================
   Perfection - Product Page
   product/chicken/index.html
   ========================================================= */

:root {
  --product-cream: #f2efe8;
  --product-cream-deep: #e8e3d9;
  --product-paper: #faf8f3;
  --product-ink: #171715;
  --product-muted: #6f6c64;
  --product-line: rgba(23, 23, 21, 0.16);
  --product-green: #4f6549;
  --product-green-deep: #344331;
  --product-white: #f7f5ef;
}

.product-page {
  background: var(--product-cream);
  color: var(--product-ink);
}

.product-page .site-header {
  background: rgba(242, 239, 232, 0.9);
  border-bottom: 1px solid rgba(23, 23, 21, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.product-page .site-header .brand,
.product-page .site-header .site-nav a,
.product-page .site-header .language,
.product-page .site-header .mobile-shop,
.product-page .site-header .mobile-menu-toggle {
  color: var(--product-ink);
}

.product-page .site-header .site-nav a:hover,
.product-page .site-header .language:hover {
  opacity: 0.55;
}

.product-content-wide,
.product-hero-inner,
.product-story-grid {
  width: min(1240px, calc(100% - 80px));
  margin: 0 auto;
}

.product-kicker {
  margin: 0 0 24px;
  font-size: 11px;
  line-height: 1.4;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--product-muted);
}

.product-kicker-light {
  color: rgba(247, 245, 239, 0.64);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 8px;
  color: inherit;
  border-bottom: 1px solid currentColor;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.12em;
  transition:
    opacity 0.25s ease,
    gap 0.25s ease;
}

.text-link:hover {
  gap: 24px;
  opacity: 0.58;
}

.text-link-dark {
  color: var(--product-ink);
}

/* HERO */

.product-hero {
  min-height: 100svh;
  padding: 116px 0 72px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(
      90deg,
      var(--product-cream-deep) 0%,
      var(--product-cream-deep) 50%,
      var(--product-paper) 50%,
      var(--product-paper) 100%
    );
}

.product-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 680px;
}

.product-visual,
.product-intro {
  position: relative;
  min-width: 0;
}

.product-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 8%;
}

.product-number {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: rgba(23, 23, 21, 0.5);
}

.product-image-wrap {
  width: min(470px, 92%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image {
  width: 100%;
  max-height: 650px;
  object-fit: contain;
  filter: drop-shadow(0 30px 38px rgba(34, 37, 28, 0.15));
}

.product-intro {
  padding: 72px 8% 72px 12%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-intro h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(64px, 8vw, 126px);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: -0.055em;
}

.product-name-ja {
  margin: 20px 0 64px;
  font-size: 13px;
  letter-spacing: 0.22em;
  color: var(--product-muted);
}

.product-lead {
  margin: 0 0 28px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(27px, 2vw, 35px);
  line-height: 1.7;
  letter-spacing: 0.035em;
  white-space: nowrap;
}

.product-summary {
  max-width: 520px;
  margin: 0 0 48px;
  color: var(--product-muted);
  font-size: 14px;
  line-height: 2.15;
}

/* =========================================
   RECIPE SWITCHER
========================================= */

.recipe-switcher {
  position: sticky;
  top: var(--header-height);
  z-index: 900;

  width: min(1240px, calc(100% - 80px));
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr);

  border-top: 1px solid rgba(23, 23, 21, .12);
  border-bottom: 1px solid rgba(23, 23, 21, .12);

  background: rgba(250, 248, 243, .94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  transition:
    width 320ms cubic-bezier(.22, 1, .36, 1),
    box-shadow 320ms ease;
}

.recipe-switcher a {
  position: relative;
  min-height: 92px;
  padding: 22px 28px;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 18px;
  align-content: center;
  color: var(--product-muted);
  text-decoration: none;
  transition:
    color 280ms ease,
    background-color 280ms ease;
}

.recipe-switcher a + a {
  border-left: 1px solid rgba(23, 23, 21, .10);
}

.recipe-switcher a > span {
  grid-row: 1 / 3;
  align-self: center;
  font-size: 10px;
  letter-spacing: .12em;
  opacity: .55;
}

.recipe-switcher strong {
  font-family: "Times New Roman", serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.15;
}

.recipe-switcher small {
  margin-top: 5px;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: .12em;
  opacity: .65;
}

.recipe-switcher a:hover {
  color: var(--product-ink);
  background: rgba(23, 23, 21, .025);
}

.recipe-switcher a.is-current {
  color: var(--product-ink);
}

.recipe-switcher a.is-current::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: -1px;
  height: 2px;
  background: var(--product-green);
}
/* STICKY COMPACT STATE */

.recipe-switcher.is-compact {
  width: 100%;
  box-shadow: 0 10px 28px rgba(20, 18, 15, .06);
}

.recipe-switcher.is-compact a {
  min-height: 48px;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.recipe-switcher.is-compact a > span,
.recipe-switcher.is-compact small {
  display: none;
}

.recipe-switcher.is-compact strong {
  font-size: 13px;
  letter-spacing: .04em;
}

.recipe-switcher.is-compact a.is-current::after {
  left: 28%;
  right: 28%;
}

/* MOBILE */

@media (max-width: 720px) {

  .recipe-switcher {
    width: calc(100% - 36px);
  }

  .recipe-switcher a {
    min-height: 78px;
    padding: 16px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
  }

  .recipe-switcher a > span {
    font-size: 8px;
  }

  .recipe-switcher strong {
    font-size: 14px;
  }

  .recipe-switcher small {
    margin-top: 0;
    font-size: 8px;
  }

  .recipe-switcher a.is-current::after {
    left: 10px;
    right: 10px;
  }

}

/* STANDARD */

.product-standard {
  padding: 150px 0 138px;
  background: var(--product-paper);
}

.section-heading {
  display: grid;
  grid-template-columns: 0.8fr 1.8fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 92px;
}

.section-heading h2 {
  margin: 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(36px, 4.3vw, 66px);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.025em;
}

.standard-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--product-line);
}

.standard-item {
  min-height: 270px;
  padding: 28px 30px 36px 0;
  border-bottom: 1px solid var(--product-line);
}

.standard-item + .standard-item {
  padding-left: 30px;
  border-left: 1px solid var(--product-line);
}

.standard-item span {
  display: block;
  margin-bottom: 74px;
  color: var(--product-muted);
  font-size: 10px;
  letter-spacing: 0.18em;
}

.standard-item h3 {
  margin: 0 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.35;
  white-space: nowrap;
}
.standard-item p {
  margin: 0;
  color: var(--product-muted);
  font-size: 13px;
  line-height: 1.9;
}

/* STORY */

.product-story {
  padding: 160px 0;
  color: var(--product-white);
  background:
    radial-gradient(circle at 8% 25%, rgba(108, 133, 94, 0.28), transparent 32%),
    var(--product-green-deep);
}

.product-story-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 120px;
  align-items: end;
}

.story-title h2 {
  max-width: none;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 5.6vw, 84px);
  font-weight: 400;
  line-height: 1.14;
  letter-spacing: -0.045em;
  white-space: nowrap;
}

.story-copy {
  padding-bottom: 8px;
}

.story-copy p {
  margin: 0;
  color: rgba(247, 245, 239, 0.74);
  font-size: 14px;
  line-height: 2.2;
}

.story-copy p + p {
  margin-top: 28px;
}

/* INFORMATION */

.product-information {
  padding: 150px 0 160px;
  background: var(--product-cream);
}

.information-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: end;
  margin-bottom: 100px;
}

.information-top h2 {
  margin: 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(48px, 5.8vw, 82px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.03em;
}

.information-intro {
  max-width: 520px;
  margin: 0;
  color: var(--product-muted);
  font-size: 14px;
  line-height: 2.2;
}


/* BASIC FACTS */

.product-facts {
  border-top: 1px solid var(--product-line);
}

.fact-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  padding: 30px 0;
  border-bottom: 1px solid var(--product-line);
}

.fact-label {
  padding-top: 4px;
  color: var(--product-muted);
  font-size: 11px;
  letter-spacing: 0.14em;
}

.fact-value strong {
  display: block;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.fact-value small {
  display: block;
  margin-top: 8px;
  color: var(--product-muted);
  font-size: 12px;
  line-height: 1.8;
}


/* GUARANTEED ANALYSIS */

.analysis-section {
  margin-top: 130px;
}

.analysis-heading,
.ingredients-heading {
  margin-bottom: 48px;
}

.analysis-heading h3,
.ingredients-heading h3 {
  margin: 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 400;
  letter-spacing: 0.04em;
}

.analysis-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--product-line);
  border-left: 1px solid var(--product-line);
}

.analysis-item {
  min-height: 145px;
  padding: 28px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--product-line);
  border-bottom: 1px solid var(--product-line);
}

.analysis-item span {
  color: var(--product-muted);
  font-size: 12px;
  letter-spacing: 0.06em;
}

.analysis-item strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.analysis-energy {
  background: rgba(79, 101, 73, 0.06);
}


/* FEEDING GUIDE */

.feeding-section {
  margin-top: 130px;
  padding-top: 70px;
  border-top: 1px solid var(--product-line);
}

.feeding-heading {
  margin-bottom: 42px;
}

.feeding-heading h3 {
  margin: 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 400;
  letter-spacing: 0.04em;
}

.feeding-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  margin-bottom: 22px;
  color: var(--product-muted);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.feeding-table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.feeding-table {
  width: 100%;
  min-width: 960px;
  border-collapse: collapse;
  border-top: 1px solid var(--product-line);
  border-left: 1px solid var(--product-line);
  background: rgba(255, 255, 255, 0.12);
}

.feeding-table th,
.feeding-table td {
  min-width: 76px;
  padding: 21px 16px;
  border-right: 1px solid var(--product-line);
  border-bottom: 1px solid var(--product-line);
  text-align: center;
  white-space: nowrap;
}

.feeding-table th {
  color: var(--product-muted);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.feeding-table td {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
}

.feeding-table th:first-child {
  min-width: 120px;
  text-align: left;
}

.feeding-guidance {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 46px;
  border-top: 1px solid var(--product-line);
}

.feeding-guidance-item {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 18px;
  padding: 30px 28px 4px 0;
}

.feeding-guidance-item + .feeding-guidance-item {
  padding-left: 28px;
  border-left: 1px solid var(--product-line);
}

.feeding-guidance-item > span {
  padding-top: 4px;
  color: var(--product-muted);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.feeding-guidance-item h4 {
  margin: 0 0 12px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.feeding-guidance-item p {
  margin: 0;
  color: #4f4d47;
  font-size: 12px;
  line-height: 2;
}

.feeding-note {
  margin: 38px 0 0;
  color: var(--product-muted);
  font-size: 11px;
  line-height: 1.9;
  letter-spacing: 0.03em;
}


/* INGREDIENTS */

.ingredients-section {
  margin-top: 130px;
  padding-top: 70px;
  border-top: 1px solid var(--product-line);
}

.ingredients-copy {
  max-width: 1000px;
  margin: 0;
  color: #4f4d47;
  font-size: 13px;
  line-height: 2.25;
  letter-spacing: 0.025em;
}

.ingredients-note {
  margin: 24px 0 0;
  color: var(--product-muted);
  font-size: 11px;
  letter-spacing: 0.04em;
}


/* MOBILE */

@media (max-width: 720px) {

  .product-information {
    padding: 96px 0 104px;
  }

  .information-top {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 68px;
  }

  .information-top h2 {
    font-size: 44px;
  }

  .fact-row {
    grid-template-columns: 92px 1fr;
    gap: 22px;
    padding: 24px 0;
  }

  .fact-value strong {
    font-size: 17px;
  }

  .analysis-section {
    margin-top: 90px;
  }

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

  .analysis-item {
    min-height: 120px;
    padding: 22px 18px;
  }

  .analysis-item strong {
    font-size: 21px;
  }

  .feeding-section {
    margin-top: 90px;
    padding-top: 54px;
  }

  .feeding-heading {
    margin-bottom: 34px;
  }

  .feeding-meta {
    margin-bottom: 16px;
  }

  .feeding-table-wrap {
    margin-right: -24px;
    padding-right: 24px;
  }

  .feeding-table {
    min-width: 900px;
  }

  .feeding-table th,
  .feeding-table td {
    padding: 18px 14px;
  }

  .feeding-guidance {
    grid-template-columns: 1fr;
    margin-top: 36px;
  }

  .feeding-guidance-item,
  .feeding-guidance-item + .feeding-guidance-item {
    padding: 24px 0;
    border-left: 0;
    border-bottom: 1px solid var(--product-line);
  }

  .feeding-note {
    margin-top: 28px;
  }

  .ingredients-section {
    margin-top: 90px;
    padding-top: 54px;
  }

  .ingredients-copy {
    font-size: 12px;
    line-height: 2.15;
  }
}

/* PURCHASE */

.purchase-section {
  padding: 142px 40px;
  text-align: center;
  background: var(--product-paper);
}

.purchase-inner {
  width: min(760px, 100%);
  margin: 0 auto;
}

.purchase-inner h2 {
  margin: 0 0 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 6vw, 82px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.045em;
}

.purchase-inner > p:not(.product-kicker) {
  margin: 0 0 50px;
  color: var(--product-muted);
  font-size: 14px;
}

.purchase-links {
  display: grid;
  grid-template-columns: minmax(0, 420px);
  justify-content: center;
  gap: 12px;
}

.purchase-links a {
  min-height: 64px;
  padding: 0 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  color: #fff;
  background: #1b1815;
  border: 1px solid #1b1815;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.08em;
  transition:
    background-color 280ms ease,
    border-color 280ms ease,
    transform 280ms ease,
    opacity 280ms ease;
}

.purchase-links a b {
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  transition: transform 280ms ease;
}

.purchase-links a:hover {
  background: #514036;
  border-color: #514036;
  color: #fff;
  opacity: 1;
  transform: translateY(-2px);
}

.purchase-links a:hover b {
  transform: translate(3px, -3px);
}

/* OTHER RECIPES */

.other-recipes {
  padding: 140px 0 150px;
  background: var(--product-cream);
}

.other-recipes-head {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: end;
  margin-bottom: 72px;
}

.other-recipes-head h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 6vw, 82px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.045em;
}

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

.recipe-card {
  display: block;
  color: var(--product-ink);
  text-decoration: none;
}

.recipe-image-wrap {
  min-height: 620px;
  padding: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--product-paper);
  overflow: hidden;
}

.recipe-card img {
  width: min(390px, 88%);
  max-height: 520px;
  object-fit: contain;
  transition: transform 0.45s ease;
  filter: drop-shadow(0 28px 34px rgba(23, 23, 21, 0.12));
}

.recipe-card:hover img {
  transform: translateY(-8px) scale(1.015);
}

.recipe-meta {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  padding-top: 24px;
}

.recipe-meta > span {
  padding-top: 5px;
  color: var(--product-muted);
  font-size: 10px;
  letter-spacing: 0.16em;
}

.recipe-meta h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 400;
}

.recipe-meta p {
  margin: 7px 0 0;
  color: var(--product-muted);
  font-size: 11px;
  letter-spacing: 0.18em;
}

/* FOOTER OVERRIDE */

.product-page .site-footer {
  color: rgba(247, 245, 239, 0.72);
  background: var(--product-ink);
}

.product-page .site-footer .footer-brand {
  color: var(--product-white);
}

/* RESPONSIVE */

@media (max-width: 960px) {
  .product-content-wide,
  .product-hero-inner,
  .product-story-grid {
    width: min(100% - 48px, 900px);
  }

  .product-hero {
    min-height: auto;
    background: var(--product-paper);
  }

  .product-hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .product-visual {
    min-height: 650px;
    margin: 0 -24px;
    background: var(--product-cream-deep);
  }

  .product-number {
    top: 28px;
    left: 24px;
  }

  .product-intro {
    padding: 88px 0 100px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .standard-item:nth-child(3) {
    border-left: none;
  }

  .product-story-grid,
  .information-grid {
    grid-template-columns: 1fr;
    gap: 72px;
  }

  .recipe-image-wrap {
    min-height: 500px;
  }
}

@media (max-width: 720px) {
  .product-page .site-header .site-nav {
    display: none;
  }

  .product-content-wide,
  .product-hero-inner,
  .product-story-grid {
    width: calc(100% - 36px);
  }

  .product-hero {
    padding-top: 80px;
  }

  .product-visual {
    min-height: 530px;
    margin: 0 -18px;
    padding: 56px 18px 30px;
  }

  .product-image-wrap {
    width: min(340px, 88vw);
  }

  .product-intro {
    padding: 70px 0 86px;
  }

  .product-name-ja {
    margin-bottom: 46px;
  }

  .product-summary {
    margin-bottom: 40px;
  }

  .product-standard,
  .product-story,
  .product-information,
  .other-recipes {
    padding-top: 94px;
    padding-bottom: 96px;
  }

  .section-heading h2 {
  font-size: 30px;
  line-height: 1.55;
}

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

  .standard-item,
  .standard-item + .standard-item {
    min-height: auto;
    padding: 26px 0 30px;
    border-left: none;
  }

  .standard-item span {
    margin-bottom: 34px;
  }

  .story-title h2 {
    font-size: clamp(46px, 15vw, 70px);
  }

  .information-grid {
    gap: 52px;
  }

  .information-list > div {
    grid-template-columns: 110px 1fr;
    gap: 20px;
  }

  .purchase-section {
    padding: 96px 18px;
  }

  .purchase-links {
    grid-template-columns: 1fr;
  }

  .other-recipes-head {
    display: block;
    margin-bottom: 48px;
  }

  .other-recipes-head .text-link {
    margin-top: 30px;
  }

  .recipe-grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .recipe-image-wrap {
    min-height: 430px;
    padding: 40px;
  }
  .product-lead {
  white-space: normal;
  font-size: 22px;
  line-height: 1.75;
  letter-spacing: 0.01em;
}
.standard-item h3 {
  white-space: normal;
}
.story-title h2 {
  white-space: normal;
}
}

@media (prefers-reduced-motion: reduce) {
  .text-link,
  .purchase-links a,
  .recipe-card img {
    transition: none;
  }
}


/* FINAL PURCHASE CTA — Japanese primary, English secondary */
.purchase-links {
  grid-template-columns: minmax(0, 400px);
}

.purchase-links a.purchase-official {
  min-height: 70px;
  padding: 11px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  text-align: center;
}

.purchase-official-ja {
  display: block;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: .08em;
}

.purchase-official-en {
  display: block;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: .17em;
  opacity: .64;
}

@media (max-width: 700px) {
  .purchase-links {
    grid-template-columns: 1fr;
  }

  .purchase-links a.purchase-official {
    min-height: 68px;
  }
}

/* =========================================================
   REFINED PRODUCT PAGE — CHICKEN PREVIEW
   Keeps the shared product template intact while refining
   the Chicken page before rolling the structure out.
   ========================================================= */

.product-page-refined .product-hero {
  padding-top: 104px;
  padding-bottom: 54px;
}

.product-page-refined .product-hero-inner {
  min-height: 650px;
}

.product-page-refined .product-intro {
  padding-top: 48px;
  padding-bottom: 48px;
}

.product-page-refined .product-intro h1 {
  font-size: clamp(60px, 7.2vw, 112px);
}

.product-page-refined .product-name-ja {
  margin: 16px 0 36px;
}

.product-page-refined .product-lead {
  margin-bottom: 20px;
  font-size: clamp(24px, 1.8vw, 31px);
}

.product-page-refined .product-summary {
  max-width: 500px;
  margin-bottom: 30px;
  line-height: 2;
}

.product-proof {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--product-line);
  border-left: 1px solid var(--product-line);
}

.product-proof > div {
  min-height: 84px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--product-line);
  border-bottom: 1px solid var(--product-line);
}

.product-proof strong {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: .03em;
}

.product-proof small {
  display: block;
  margin-top: 5px;
  color: var(--product-muted);
  font-size: 11px;
  line-height: 1.55;
  letter-spacing: .045em;
}

.product-quick-links {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.product-quick-links > span {
  grid-column: 1 / -1;
  margin-bottom: 3px;
  color: var(--product-muted);
  font-size: 11px;
  letter-spacing: .08em;
}

.product-quick-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 12px;
  border: 1px solid var(--product-line);
  color: var(--product-ink);
  background: rgba(255,255,255,.16);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: .04em;
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    transform 220ms ease;
}

.product-quick-links a:hover {
  background: rgba(255,255,255,.5);
  border-color: rgba(23,23,21,.28);
  transform: translateY(-1px);
}

/* Recipe identity remains, but no longer blocks access to product facts. */
.product-page-refined .product-story-compact {
  padding: clamp(70px, 7vw, 96px) 0;
  background:
    radial-gradient(circle at 10% 30%, rgba(113, 139, 97, .22), transparent 36%),
    var(--product-green-deep);
}

.product-page-refined .product-story-grid {
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(54px, 8vw, 110px);
  align-items: center;
}

.product-page-refined .story-title h2 {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(34px, 3.6vw, 52px);
  line-height: 1.45;
  letter-spacing: .025em;
  white-space: normal;
}

.product-page-refined .story-en {
  margin: 18px 0 0;
  color: rgba(247, 245, 239, .43);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  letter-spacing: .08em;
}

.product-page-refined .story-copy {
  max-width: 520px;
  padding-bottom: 0;
}

.product-page-refined .story-copy p {
  line-height: 2;
}

.product-page-refined .story-copy .story-benefit {
  color: rgba(247, 245, 239, .92);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 16px;
  line-height: 2;
}

.product-page-refined .story-copy p + p {
  margin-top: 18px;
}

.product-page-refined .product-information {
  padding-top: 108px;
}

.product-page-refined .information-top {
  margin-bottom: 72px;
}

.product-page-refined .analysis-section,
.product-page-refined .feeding-section,
.product-page-refined .ingredients-section {
  scroll-margin-top: calc(var(--header-height) + 70px);
}

/* Ingredients: same wording and order, treated as typography rather than a text dump. */
.product-page-refined .ingredients-heading {
  margin-bottom: 28px;
}

.ingredients-disclosure {
  margin: 0 0 30px;
  color: var(--product-muted);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.ingredients-display {
  max-width: 1040px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0;
  border-top: 1px solid var(--product-line);
  padding-top: 28px;
}

.ingredients-display span {
  position: relative;
  display: inline-block;
  margin: 0 24px 14px 0;
  color: #58554e;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: .02em;
}

.ingredients-display span:not(:last-child)::after {
  content: "·";
  position: absolute;
  right: -15px;
  color: rgba(23, 23, 21, .25);
}


.product-page-refined .purchase-section {
  padding-top: 112px;
  padding-bottom: 112px;
}

@media (max-width: 980px) {
  .product-page-refined .product-hero-inner {
    min-height: 600px;
  }

  .product-page-refined .product-intro {
    padding-left: 8%;
  }

.product-proof strong {
    font-size: 12px;
  }
}

@media (max-width: 720px) {
  .product-page-refined .product-hero {
    padding-top: 92px;
    padding-bottom: 34px;
  }

  .product-page-refined .product-intro {
    padding-top: 42px;
    padding-bottom: 38px;
  }

  .product-page-refined .product-name-ja {
    margin-bottom: 28px;
  }

  .product-page-refined .product-lead {
    font-size: 22px;
    white-space: normal;
  }

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

  .product-proof > div {
    min-height: 68px;
  }

  .product-quick-links {
    margin-top: 22px;
    grid-template-columns: 1fr;
  }

  .product-quick-links > span {
    margin-bottom: 4px;
  }

  .product-quick-links a {
    min-height: 44px;
    font-size: 14px;
  }

  .product-page-refined .product-story-compact {
    padding: 64px 0 68px;
  }

  .product-page-refined .product-story-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .product-page-refined .story-title h2 {
    font-size: 34px;
  }

  .product-page-refined .product-information {
    padding-top: 78px;
  }

  .product-page-refined .information-top {
    margin-bottom: 54px;
  }

  .ingredients-display {
    padding-top: 22px;
  }

  .ingredients-display span {
    margin-right: 19px;
    margin-bottom: 12px;
    font-size: 13px;
  }

  .ingredients-display span:not(:last-child)::after {
    right: -12px;
  }

}


/* Chicken refined: editorial typography + precision navigation */
.product-page-refined .product-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 40px;
  margin-top: 32px;
}

.product-page-refined .product-proof > div {
  padding: 0;
}

.product-page-refined .product-proof strong {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
}
.product-page-refined .product-proof small {
  display: block;
  margin: 0;
  color: #5c5952;
  font-size: 13.5px;
  font-weight: 400;
  line-height: 1.72;
  letter-spacing: .025em;
}

.product-page-refined .product-quick-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 34px;
  margin-top: 44px;
}

.product-page-refined .product-quick-links > span {
  flex: 0 0 100%;
  margin: 0 0 2px;
  color: #625f58;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .075em;
}

.product-page-refined .product-quick-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 0;
  padding: 0 0 10px;
  border: 0;
  background: transparent;
  color: var(--product-ink);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 15.5px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: .025em;
  text-decoration: none;
  transition: color 220ms ease;
}

.product-page-refined .product-quick-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(23, 23, 21, .22);
  transform-origin: left center;
  transition: background-color 220ms ease, transform 280ms cubic-bezier(.22, 1, .36, 1);
}

.product-page-refined .quick-link-icon {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.15;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: .58;
  transform: translateY(-1px);
  transition: transform 260ms cubic-bezier(.22, 1, .36, 1), opacity 220ms ease;
}

.product-page-refined .product-quick-links a:hover {
  background: transparent;
  transform: none;
}

.product-page-refined .product-quick-links a:hover::after {
  background: rgba(23, 23, 21, .62);
  transform: scaleX(.92);
}

.product-page-refined .product-quick-links a:hover .quick-link-icon {
  opacity: .9;
  transform: translateY(2px);
}

.product-page-refined .section-deep-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-top: 36px;
  padding: 0 0 9px;
  border: 0;
  color: var(--product-ink);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: .025em;
  text-decoration: none;
}

.product-page-refined .section-deep-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(23, 23, 21, .24);
  transition: background-color 220ms ease;
}

.product-page-refined .deep-link-icon {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.15;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: .6;
  transition: transform 260ms cubic-bezier(.22, 1, .36, 1), opacity 220ms ease;
}

.product-page-refined .section-deep-link:hover::after {
  background: rgba(23, 23, 21, .62);
}

.product-page-refined .section-deep-link:hover .deep-link-icon {
  opacity: .92;
  transform: translateX(4px);
}

@media (max-width: 980px) {
  .product-page-refined .product-proof {
    gap: 36px 44px;
  }

  .product-page-refined .product-proof strong {
    font-size: 17px;
  }

  .product-page-refined .product-proof small {
    font-size: 13px;
  }
}

@media (max-width: 720px) {
  .product-page-refined .product-proof {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 34px;
  }

  .product-page-refined .product-proof > div {
    grid-template-rows: auto auto;
    row-gap: 7px;
  }

  .product-page-refined .product-proof strong {
    font-size: 17px;
  }

  .product-page-refined .product-proof small {
    font-size: 13.5px;
  }

  .product-page-refined .product-quick-links {
    gap: 15px 26px;
    margin-top: 38px;
  }

  .product-page-refined .product-quick-links a {
    padding-bottom: 9px;
    font-size: 15px;
  }

  .product-page-refined .section-deep-link {
    margin-top: 30px;
    font-size: 14px;
  }
}


/* Rescue refinement: simplify hero proof + quick links */
.product-page-refined .product-proof {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 28px;
  max-width: 640px;
}

product-page-refined .product-proof > div {
  display: grid;
  grid-template-columns: minmax(250px, 290px) 1fr;
  gap: 18px;
  align-items: baseline;
  padding: 11px 0;
  border-top: 1px solid rgba(23, 23, 21, 0.08);
}

.product-page-refined .product-proof > div:last-child {
  border-bottom: 1px solid rgba(23, 23, 21, 0.08);
}

.product-page-refined .product-proof strong {
  display: block;
  max-width: none;
  margin: 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.55;
  letter-spacing: 0.02em;
  color: var(--product-ink);
}

.product-page-refined .product-proof small {
  display: block;
  margin: 0;
  color: #615d55;
  font-size: 13.5px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.02em;
}

.product-page-refined .product-quick-nav {
  margin-top: 22px;
}

.product-page-refined .product-quick-title {
  margin: 0 0 16px;
  color: #68645d;
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.08em;
}

.product-page-refined .product-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 34px;
  align-items: center;
  margin-top: 0;
}

.product-page-refined .product-quick-links > span,
.product-page-refined .quick-link-icon {
  display: none !important;
}

.product-page-refined .product-quick-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0 0 10px;
  border: 0;
  background: transparent;
  color: var(--product-ink);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: opacity 0.22s ease;
}

.product-page-refined .product-quick-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(23, 23, 21, 0.22);
  transition: background-color 0.22s ease, transform 0.28s cubic-bezier(.22,1,.36,1);
  transform-origin: left center;
}

.product-page-refined .product-quick-links a:hover {
  background: transparent;
  transform: none;
  opacity: 0.72;
}

.product-page-refined .product-quick-links a:hover::after {
  background: rgba(23, 23, 21, 0.58);
  transform: scaleX(0.92);
}

@media (max-width: 980px) {
  .product-page-refined .product-proof > div {
    grid-template-columns: minmax(220px, 250px) 1fr;
    gap: 24px;
  }

  .product-page-refined .product-proof strong {
    font-size: 16.5px;
  }
}

@media (max-width: 720px) {
  .product-page-refined .product-proof {
    margin-top: 34px;
  }

  .product-page-refined .product-proof > div {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px 0;
  }

  .product-page-refined .product-proof strong {
    font-size: 16px;
  }

  .product-page-refined .product-proof small {
    font-size: 13px;
  }

  .product-page-refined .product-quick-nav {
    margin-top: 30px;
  }

  .product-page-refined .product-quick-title {
    margin-bottom: 13px;
    font-size: 11px;
  }

  .product-page-refined .product-quick-links {
    gap: 14px 24px;
  }

  .product-page-refined .product-quick-links a {
    padding-bottom: 9px;
    font-size: 15px;
  }
}

/* Chicken 品質ポイント：コンパクト版 */
.product-page-refined .product-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 26px;

  max-width: 620px;
  margin-top: 22px;

  border: 0;
}

.product-page-refined .product-proof > div {
  flex: 0 0 calc(50% - 13px);

  display: block;

  min-height: 0;
  margin: 0;
  padding: 0;

  border: 0 !important;
  background: transparent !important;
}

.product-page-refined .product-proof strong {
  display: block;

  margin: 0;

  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;

  color: var(--product-ink);
}

/* 小さい説明文は消す */
.product-page-refined .product-proof small {
  display: none;
}

/* 下のリンクも上へ詰める */
.product-page-refined .product-quick-nav {
  margin-top: 20px;
}