/* =============================================
   GOH-GOH — Inner Pages Stylesheet
   pages.css
   ============================================= */

/* ---- Breadcrumb ---- */
.breadcrumb {
  padding: 100px 0 0;
  background: var(--white);
}
.breadcrumb-inner {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-nav); font-size: 0.8rem;
  color: var(--text-muted); padding: 16px 0;
  border-bottom: 1px solid #eeeeee;
}
.breadcrumb-inner a { color: var(--nav-green); }
.breadcrumb-inner a:hover { text-decoration: underline; }
.breadcrumb-inner span { color: var(--nav-pipe); }

/* ---- Product Hero ---- */
.product-hero {
  padding: 60px 0 80px;
  background: var(--mint);
}
.product-hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 60px;
}
.product-hero-text .product-type {
  font-family: var(--font-nav); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 8px;
}
.product-hero-text h1 {
  font-family: var(--font-logo); font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 900; color: var(--text-dark);
  line-height: 1.1; margin-bottom: 8px; letter-spacing: -1px;
}
.product-hero-text .product-sub {
  font-family: var(--font-body); font-style: italic;
  font-size: 1.1rem; color: var(--red-text); margin-bottom: 24px;
}
.product-hero-text .product-tagline {
  font-size: 1rem; color: var(--text-muted);
  line-height: 1.7; margin-bottom: 32px; max-width: 480px;
}
.product-hero-img {
  border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow-card); aspect-ratio: 4/3;
}
.product-hero-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.product-hero-img:hover img { transform: scale(1.04); }

/* ---- Flavour Description ---- */
.product-story {
  padding: 80px 0;
  background: var(--white);
}
.product-story-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: start;
}
.product-story-text .section-tag {
  font-family: var(--font-nav); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--green-btn); margin-bottom: 12px; display: block;
}
.product-story-text h2 {
  font-family: var(--font-logo); font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 800; color: var(--text-dark); margin-bottom: 20px; line-height: 1.2;
}
.product-story-text p {
  font-size: 0.95rem; color: var(--text-muted);
  line-height: 1.8; margin-bottom: 16px;
}
.product-story-img {
  border-radius: 16px; overflow: hidden;
  box-shadow: var(--shadow-card); aspect-ratio: 1;
}
.product-story-img img { width: 100%; height: 100%; object-fit: cover; }

/* ---- Nutrition Facts ---- */
.product-nutrition {
  padding: 80px 0;
  background: var(--mint);
}
.nutrition-facts-box {
  background: var(--white);
  border-radius: 16px; padding: 36px 40px;
  max-width: 520px;
  box-shadow: var(--shadow-card);
  border-top: 8px solid var(--text-dark);
}
.nutrition-facts-box h2 {
  font-family: var(--font-logo); font-size: 1.8rem; font-weight: 900;
  color: var(--text-dark); margin-bottom: 4px;
}
.nutrition-facts-box .serving {
  font-size: 0.8rem; color: var(--text-muted);
  border-bottom: 8px solid var(--text-dark);
  padding-bottom: 8px; margin-bottom: 8px;
}
.nf-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 4px 0; border-bottom: 1px solid #e0e0e0;
  font-family: var(--font-nav); font-size: 0.88rem;
}
.nf-row.thick { border-bottom: 4px solid var(--text-dark); }
.nf-row.bold  { font-weight: 700; }
.nf-row.indent { padding-left: 16px; font-size: 0.82rem; }
.nf-row .pct { font-weight: 700; font-size: 0.88rem; }

.nutrition-section-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: start;
}
.nutrition-text .section-tag {
  font-family: var(--font-nav); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--green-btn); margin-bottom: 12px; display: block;
}
.nutrition-text h2 {
  font-family: var(--font-logo); font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 800; color: var(--text-dark); margin-bottom: 20px;
}
.nutrition-highlights {
  display: flex; flex-direction: column; gap: 10px; margin-top: 28px;
}
.nh-item {
  display: flex; align-items: center; gap: 12px;
  background: var(--white); border-radius: 8px; padding: 12px 16px;
  box-shadow: var(--shadow);
}
.nh-icon {
  width: 32px; height: 32px; background: var(--green-btn);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nh-icon svg { width: 16px; height: 16px; stroke: #fff; fill: none; stroke-width: 2.5; }
.nh-text { font-family: var(--font-logo); font-size: 0.88rem; font-weight: 700; color: var(--text-dark); }
.nh-text span { font-weight: 400; color: var(--text-muted); display: block; font-size: 0.78rem; }

/* ---- Ingredients list ---- */
.product-ingredients {
  padding: 80px 0;
  background: var(--white);
}
.product-ingredients h2 {
  font-family: var(--font-logo); font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 800; color: var(--text-dark); margin-bottom: 24px;
}
.ingredients-tag-list {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.ing-tag {
  background: var(--mint); border-radius: 24px;
  padding: 8px 18px; font-family: var(--font-nav);
  font-size: 0.82rem; font-weight: 600; color: var(--text-dark);
  border: 1px solid var(--mint-dark);
  transition: background var(--transition), transform var(--transition);
}
.ing-tag:hover { background: var(--mint-dark); transform: translateY(-2px); }

/* ---- Other flavours ---- */
.other-flavours {
  padding: 80px 0;
  background: var(--mint);
}
.other-flavours h2 {
  font-family: var(--font-logo); font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-weight: 800; color: var(--text-dark); margin-bottom: 36px; text-align: center;
}
.other-flavours-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.of-card {
  background: var(--white); border-radius: 14px;
  overflow: hidden; box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}
.of-card:hover { transform: translateY(-4px); box-shadow: 0 10px 36px rgba(0,0,0,0.14); }
.of-img { aspect-ratio: 4/3; overflow: hidden; }
.of-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.of-card:hover .of-img img { transform: scale(1.05); }
.of-info { padding: 18px 20px; }
.of-type { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--red-text); margin-bottom: 4px;
  font-family: var(--font-nav); }
.of-name { font-family: var(--font-logo); font-size: 1.1rem; font-weight: 800;
  color: var(--text-dark); margin-bottom: 12px; }
.of-card .btn { font-size: 0.75rem; padding: 9px 20px; }

/* ---- Simple page (About / Contact / FAQs) ---- */
.simple-hero {
  padding: 120px 0 60px;
  background: var(--mint);
  text-align: center;
}
.simple-hero h1 {
  font-family: var(--font-logo); font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 900; color: var(--text-dark); margin-bottom: 12px;
  letter-spacing: -1px;
}
.simple-hero p {
  font-size: 1.05rem; color: var(--text-muted); max-width: 560px; margin: 0 auto;
}
.simple-body {
  padding: 72px 0;
  background: var(--white);
}
.simple-body .prose {
  max-width: 780px; margin: 0 auto;
  font-size: 0.95rem; color: var(--text-muted); line-height: 1.85;
}
.simple-body .prose h2 {
  font-family: var(--font-logo); font-size: 1.5rem; font-weight: 800;
  color: var(--text-dark); margin: 40px 0 12px;
}
.simple-body .prose h3 {
  font-family: var(--font-logo); font-size: 1.1rem; font-weight: 700;
  color: var(--text-dark); margin: 28px 0 8px;
}
.simple-body .prose p  { margin-bottom: 16px; }
.simple-body .prose ul { list-style: disc; padding-left: 20px; margin-bottom: 16px; }
.simple-body .prose ul li { margin-bottom: 6px; }
.simple-body .prose a  { color: var(--nav-green); }
.simple-body .prose a:hover { text-decoration: underline; }

/* Contact form */
.contact-form { max-width: 600px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%; padding: 13px 16px;
  border: 2px solid #e0e0e0; border-radius: 8px;
  font-family: var(--font-body); font-size: 0.9rem; color: var(--text-dark);
  background: var(--white); outline: none;
  transition: border-color var(--transition);
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--green-btn); }
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form .btn { align-self: flex-start; }

/* FAQs accordion */
.faq-item { border-bottom: 1px solid #eeeeee; }
.faq-question {
  width: 100%; text-align: left; padding: 18px 0;
  font-family: var(--font-logo); font-size: 1rem; font-weight: 700;
  color: var(--text-dark); display: flex; justify-content: space-between;
  align-items: center; gap: 12px; cursor: pointer;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--nav-green); }
.faq-icon {
  width: 20px; height: 20px; flex-shrink: 0;
  color: var(--nav-green); transition: transform 0.3s ease;
  font-size: 1.2rem; line-height: 1;
}
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  font-size: 0.92rem; color: var(--text-muted); line-height: 1.75;
}
.faq-item.open .faq-answer { max-height: 500px; padding-bottom: 18px; }
.faq-item.open .faq-icon   { transform: rotate(45deg); }

/* ---- Responsive inner pages ---- */
@media (max-width: 900px) {
  .product-hero-inner  { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .product-hero-text .product-tagline { margin: 0 auto 32px; }
  .product-story-inner { grid-template-columns: 1fr; gap: 40px; }
  .product-story-img   { aspect-ratio: 16/9; }
  .nutrition-section-inner { grid-template-columns: 1fr; gap: 40px; }
  .nutrition-facts-box { max-width: 100%; }
  .other-flavours-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .product-hero-text h1 { font-size: 2.2rem; }
  .other-flavours-grid  { grid-template-columns: 1fr; }
  .nutrition-facts-box  { padding: 24px 20px; }
}
