:root {
  --brown-earth: #4a2c0a;
  --deep-earth: #2f1a06;
  --forest-amber: #c87d0a;
  --cupuaçu-gold: #f5c070;
  --amazon-cream: #fdf6ec;
  --forest-green: #3a7010;
  --soft-cream: #fffdf7;
  --card-cream: #fff2df;
  --line-cream: #f3dfbd;
  --text-muted: #746656;
  --shadow-card: 0 12px 28px rgba(74, 44, 10, 0.1);
  --shadow-soft: 0 8px 20px rgba(74, 44, 10, 0.075);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  max-width: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  max-width: 100%;
  margin: 0;
  overflow-x: hidden;
  color: var(--brown-earth);
  font-family: "Inter", Arial, sans-serif;
  background:
    radial-gradient(circle at 50% 0%, rgba(245, 192, 112, 0.18), transparent 34%),
    repeating-linear-gradient(105deg, rgba(200, 125, 10, 0.012) 0 1px, transparent 1px 20px),
    repeating-linear-gradient(15deg, rgba(74, 44, 10, 0.01) 0 1px, transparent 1px 24px),
    var(--amazon-cream);
}

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

img,
svg {
  display: block;
  max-width: 100%;
}

/* FUNDO ARTESANAL */
.page-texture {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: radial-gradient(rgba(74, 44, 10, 0.04) 0.6px, transparent 0.8px);
  background-size: 30px 30px;
  opacity: 0.18;
}

/* ESTRUTURA DA PÁGINA */
.product-page {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 24px clamp(18px, 4vw, 46px) 0;
}

.product-narrow {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
}

/* HEADER DO PRODUTO */
.product-header {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(74, 44, 10, 0.12);
}

.product-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.4vw, 30px);
}

.product-nav a {
  position: relative;
  padding: 10px 0;
  color: rgba(74, 44, 10, 0.78);
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
}

.product-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: var(--forest-amber);
  content: "";
  transform: scaleX(0);
  transition: transform 220ms ease;
}

.product-nav a:hover::after,
.product-nav a:focus-visible::after,
.product-nav a.is-active::after {
  transform: scaleX(1);
}

.product-menu-mobile {
  display: none;
}

.product-logo-frame {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  justify-self: start;
  overflow: hidden;
  border-radius: 50%;
  background: var(--amazon-cream);
  box-shadow: 0 12px 24px rgba(74, 44, 10, 0.11);
}

.product-logo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  min-height: 42px;
  justify-self: end;
  margin: 0;
  padding: 9px 15px;
  border: 1px solid rgba(74, 44, 10, 0.22);
  border-radius: 999px;
  color: var(--brown-earth);
  background: rgba(255, 253, 247, 0.72);
  box-shadow: 0 7px 18px rgba(74, 44, 10, 0.06);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.2;
}

.back-link span {
  color: var(--forest-amber);
  font-size: 1.35rem;
  line-height: 1;
  transform: translateY(-1px);
}

/* HERO DO PRODUTO */
.product-hero {
  position: relative;
  display: grid;
  grid-template-columns: 58% minmax(0, 42%);
  align-items: center;
  isolation: isolate;
  aspect-ratio: 23 / 10;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(243, 223, 189, 0.9);
  border-radius: var(--radius);
  background: var(--amazon-cream);
  box-shadow: 0 18px 42px rgba(74, 44, 10, 0.13);
}

.product-hero::before,
.product-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.product-hero::before {
  z-index: 1;
  background:
    radial-gradient(ellipse at 59% 50%, rgba(255, 250, 240, 0.72), transparent 20%),
    linear-gradient(90deg, transparent 0%, transparent 46%, rgba(255, 248, 238, 0.28) 52%, rgba(255, 248, 238, 0.72) 61%, var(--amazon-cream) 74%, var(--amazon-cream) 100%);
}

.product-hero::after {
  z-index: 2;
  opacity: 0.5;
  background:
    radial-gradient(ellipse at 57% 72%, rgba(255, 253, 247, 0.7), transparent 22%),
    linear-gradient(90deg, transparent 0%, transparent 50%, rgba(255, 253, 247, 0.48) 62%, var(--amazon-cream) 86%);
}

.product-hero img {
  position: relative;
  grid-column: 1;
  z-index: 0;
  width: 100%;
  max-width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
  transform: none;
}

.product-hero-copy {
  position: relative;
  grid-column: 2;
  z-index: 3;
  width: 100%;
  margin: 0;
  padding: 0 clamp(24px, 3vw, 38px) 0 clamp(26px, 3vw, 42px);
}

/* APRESENTAÇÃO */
.product-intro {
  margin-top: 20px;
}

.product-intro h1 {
  max-width: 100%;
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 0.95;
  font-weight: 700;
  overflow-wrap: normal;
}

.product-subtitle {
  margin: 8px 0 0;
  color: var(--forest-amber);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.3;
}

.product-support {
  max-width: 760px;
  margin: 12px 0 0;
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.55;
}

.product-hero-copy {
  margin-top: 0;
}

.product-hero-copy h1 {
  font-size: clamp(2.35rem, 3.7vw, 3.55rem);
  text-wrap: balance;
}

.product-hero-copy .product-support {
  max-width: 340px;
}

/* BLOCOS DE CONTEÚDO */
.story-card,
.info-card,
.cta-card {
  margin-top: 24px;
  border: 1px solid rgba(218, 169, 91, 0.58);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 250, 240, 0.96), var(--card-cream));
  box-shadow: 0 10px 24px rgba(74, 44, 10, 0.095);
}

.story-card {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  overflow: hidden;
  padding: 20px 24px;
}

.story-card::after,
.info-card::after,
.cta-card::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 14px;
  width: 120px;
  height: 90px;
  pointer-events: none;
  opacity: 0.08;
  background:
    radial-gradient(ellipse at 50% 100%, transparent 38%, var(--forest-amber) 39% 41%, transparent 42%),
    linear-gradient(45deg, transparent 47%, var(--forest-amber) 48% 51%, transparent 52%);
  transform: rotate(-18deg);
}

.leaf-mark {
  display: grid;
  place-items: start center;
  color: #758c2f;
}

.leaf-mark svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.story-card p,
.connection-block p,
.cta-card p {
  max-width: 100%;
  margin: 0;
  color: var(--brown-earth);
  font-size: 0.98rem;
  line-height: 1.55;
  overflow-wrap: break-word;
}

.story-card p + p {
  margin-top: 10px;
}

.section-title {
  display: grid;
  grid-template-columns: minmax(28px, 1fr) auto minmax(28px, 1fr);
  align-items: center;
  gap: 14px;
  margin: 28px 0 14px;
  text-align: center;
}

.section-title::before,
.section-title::after {
  content: "";
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--forest-amber), transparent);
}

.section-title h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.55rem, 4vw, 2.15rem);
  line-height: 1;
  font-weight: 700;
}

/* DIFERENCIAIS */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.feature-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  min-height: 104px;
  padding: 14px 16px;
  border: 1px solid rgba(218, 169, 91, 0.58);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 250, 240, 0.96), var(--card-cream));
  box-shadow: 0 8px 20px rgba(74, 44, 10, 0.085);
}

.feature-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1.5px solid var(--forest-amber);
  border-radius: 50%;
  color: var(--forest-amber);
}

.feature-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h3,
.info-card h2,
.connection-block h2,
.cta-card h2,
.related-section h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
}

.feature-card h3 {
  font-size: 1.35rem;
  line-height: 1;
}

.feature-card p {
  margin: 5px 0 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.38;
}

/* INFORMAÇÕES DO PRODUTO */
.info-card {
  position: relative;
  overflow: hidden;
  padding: 22px 24px;
}

.info-content {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  position: relative;
  z-index: 1;
}

.info-card h2 {
  font-size: 1.9rem;
  line-height: 1;
}

.info-list {
  display: grid;
  margin-top: 12px;
}

.info-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 14px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(243, 223, 189, 0.72);
  font-size: 0.95rem;
  line-height: 1.35;
}

.info-row dt {
  color: var(--brown-earth);
  font-weight: 800;
}

.info-row dd {
  margin: 0;
  color: var(--text-muted);
}

.info-note {
  margin-top: 12px;
  color: var(--forest-amber);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.4;
}

/* CONEXÃO COM A MARCA */
.connection-band {
  margin: 28px calc(50% - 50vw) 0;
  padding: 26px max(18px, calc((100vw - 980px) / 2 + 18px));
  background:
    linear-gradient(90deg, rgba(74, 44, 10, 0.05), transparent 44%),
    rgba(245, 192, 112, 0.12);
  border-top: 1px solid rgba(243, 223, 189, 0.72);
  border-bottom: 1px solid rgba(243, 223, 189, 0.72);
}

.connection-block {
  display: grid;
  grid-template-columns: minmax(270px, 0.86fr) minmax(0, 1fr);
  align-items: center;
  gap: 26px;
  width: min(100%, 900px);
  margin: 0 auto;
}

.product-showcase {
  min-height: 214px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--amazon-cream);
  border: 1px solid rgba(222, 177, 112, 0.38);
  box-shadow: 0 18px 40px rgba(74, 44, 10, 0.08);
}

.showcase-scene {
  display: block;
  width: 100%;
  min-height: 214px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}

.connection-block h2 {
  font-size: 2rem;
  line-height: 1;
}

.connection-divider {
  width: 220px;
  max-width: 100%;
  height: 1px;
  margin: 12px 0;
  background: var(--forest-amber);
}

.connection-block p + p {
  margin-top: 10px;
}

/* CTA FINAL */
.cta-card {
  position: relative;
  display: grid;
  grid-template-columns: 160px 1fr;
  align-items: center;
  gap: 22px;
  overflow: hidden;
  padding: 26px 28px;
}

.cta-card h2 {
  font-size: 2rem;
  line-height: 1;
}

.cta-card p {
  margin-top: 8px;
  color: var(--text-muted);
}

.whatsapp-button {
  min-height: 54px;
  display: inline-grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 10px;
  width: min(100%, 480px);
  margin-top: 16px;
  padding: 10px 22px;
  border-radius: 8px;
  color: var(--amazon-cream);
  background: linear-gradient(180deg, #3f8618 0%, var(--forest-green) 100%);
  box-shadow: 0 12px 24px rgba(58, 112, 16, 0.2);
  font-weight: 800;
  text-align: center;
}

.whatsapp-button img,
.floating-whatsapp img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* PRODUTOS RELACIONADOS */
.related-section {
  margin-top: 28px;
}

.related-section h2 {
  font-size: 2rem;
  line-height: 1;
  text-align: center;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.related-card {
  display: grid;
  grid-template-columns: 42% 1fr 36px;
  align-items: center;
  overflow: hidden;
  min-height: 132px;
  border: 1px solid var(--line-cream);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 250, 240, 0.96), var(--card-cream));
  box-shadow: 0 8px 20px rgba(74, 44, 10, 0.085);
}

.related-card img {
  width: 100%;
  height: 100%;
  min-height: 132px;
  object-fit: cover;
}

.related-copy {
  padding: 14px 10px 14px 16px;
}

.related-copy strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
  line-height: 1;
}

.related-copy small {
  display: block;
  margin-top: 7px;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.35;
}

.related-arrow {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  margin-right: 10px;
  border-radius: 50%;
  color: var(--amazon-cream);
  background: var(--forest-amber);
  font-size: 1.6rem;
  line-height: 1;
}

/* RODAPÉ */
.brand-footer {
  width: auto;
  margin: 34px calc(50% - 50vw) 0;
  padding: 32px max(20px, calc((100vw - 430px) / 2 + 16px)) 36px;
  text-align: center;
  color: var(--amazon-cream);
  background:
    linear-gradient(180deg, rgba(245, 192, 112, 0.08), transparent 28%),
    linear-gradient(180deg, var(--brown-earth) 0%, var(--deep-earth) 100%);
  border-top: 1px solid rgba(245, 192, 112, 0.36);
}

.brand-footer-inner {
  width: min(100%, 430px);
  margin: 0 auto;
}

.brand-footer p {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.65rem;
  line-height: 1.08;
  font-weight: 600;
}

.brand-footer strong {
  color: var(--cupuaçu-gold);
}

.footer-handle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 18px;
  color: rgba(253, 246, 236, 0.86);
  font-size: 0.96rem;
  font-weight: 600;
}

.footer-handle svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: var(--cupuaçu-gold);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-footer small {
  display: block;
  margin-top: 14px;
  color: rgba(253, 246, 236, 0.74);
  font-size: 0.78rem;
  line-height: 1.45;
}

/* WHATSAPP FLUTUANTE */
.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 5;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  padding: 12px;
  border: 4px solid rgba(255, 253, 247, 0.92);
  border-radius: 50%;
  background: var(--forest-green);
  box-shadow: 0 9px 20px rgba(58, 112, 16, 0.2);
}

/* ESTADOS INTERATIVOS */
.back-link,
.whatsapp-button,
.related-card,
.floating-whatsapp,
.footer-handle {
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.back-link:hover,
.whatsapp-button:hover,
.related-card:hover,
.floating-whatsapp:hover,
.footer-handle:hover {
  transform: translateY(-2px);
}

.back-link:hover {
  border-color: rgba(200, 125, 10, 0.48);
  background: var(--soft-cream);
  box-shadow: 0 10px 22px rgba(74, 44, 10, 0.1);
}

.related-card:hover {
  border-color: rgba(200, 125, 10, 0.5);
}

.back-link:focus-visible,
.whatsapp-button:focus-visible,
.related-card:focus-visible,
.floating-whatsapp:focus-visible,
.footer-handle:focus-visible {
  outline: 3px solid rgba(245, 192, 112, 0.82);
  outline-offset: 3px;
}

/* RESPONSIVIDADE */
@media (max-width: 760px) {
  html,
  body {
    width: 100%;
    max-width: 100vw;
  }

  .product-page {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    padding: 18px 10px 0;
  }

  .product-narrow,
  .product-hero,
  .story-card,
  .info-card,
  .cta-card,
  .feature-card,
  .related-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .product-narrow {
    max-width: calc(100vw - 20px);
  }

  .product-header {
    grid-template-columns: auto 1fr;
    gap: 12px;
    margin-bottom: 14px;
    padding-bottom: 12px;
  }

  .product-nav {
    display: none;
  }

  .product-menu-mobile {
    justify-self: end;
    display: block;
  }

  .product-menu-mobile summary {
    min-width: 86px;
    padding: 11px 16px;
    border: 1px solid rgba(74, 44, 10, 0.2);
    border-radius: 999px;
    color: var(--brown-earth);
    background: rgba(255, 253, 247, 0.9);
    box-shadow: var(--shadow-soft);
    font-size: 0.8rem;
    font-weight: 700;
    list-style: none;
    text-align: center;
    cursor: pointer;
  }

  .product-menu-mobile summary::-webkit-details-marker {
    display: none;
  }

  .product-menu-mobile nav {
    position: absolute;
    top: 72px;
    right: 0;
    z-index: 20;
    width: min(270px, calc(100vw - 20px));
    padding: 10px;
    display: grid;
    gap: 2px;
    border: 1px solid rgba(74, 44, 10, 0.13);
    border-radius: 14px;
    background: rgba(253, 246, 236, 0.98);
    box-shadow: 0 20px 48px rgba(47, 26, 6, 0.2);
  }

  .product-menu-mobile nav a {
    padding: 11px 13px;
    border-radius: 9px;
    font-size: 0.86rem;
    font-weight: 600;
  }

  .product-menu-mobile nav a:hover,
  .product-menu-mobile nav a:focus-visible {
    color: var(--forest-green);
    background: rgba(245, 192, 112, 0.18);
    outline: none;
  }

  .product-logo-frame {
    width: 88px;
    height: 88px;
  }

  .back-link {
    justify-self: end;
    font-size: 0.78rem;
    gap: 6px;
  }

  .product-hero {
    display: block;
    aspect-ratio: auto;
    min-height: 0;
    overflow: visible;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .product-hero::before,
  .product-hero::after {
    display: none;
  }

  .product-hero img {
    position: static;
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center;
    transform: none;
    border: 1px solid rgba(243, 223, 189, 0.9);
    border-radius: var(--radius);
    background: #f7dfbd;
    box-shadow: var(--shadow-card);
  }

  .product-hero-copy {
    width: 100%;
    max-width: calc(100vw - 20px);
    margin: 16px auto 0;
    padding: 0 2px;
  }

  .product-intro {
    margin-top: 16px;
    padding: 0 2px;
    min-width: 0;
  }

  .product-intro h1 {
    font-size: clamp(1.58rem, 6.2vw, 1.92rem);
    line-height: 1.02;
    text-wrap: balance;
    overflow-wrap: break-word;
  }

  .product-subtitle {
    margin-top: 6px;
    font-size: 0.94rem;
    line-height: 1.25;
  }

  .product-support {
    max-width: 100%;
    margin-top: 10px;
    font-size: 0.9rem;
    line-height: 1.5;
    overflow-wrap: break-word;
  }

  .story-card > div,
  .product-hero-copy,
  .feature-card > div,
  .info-content > div,
  .cta-card > div,
  .related-copy,
  .connection-block > div {
    min-width: 0;
    max-width: 100%;
  }

  .story-card,
  .info-content,
  .cta-card,
  .connection-block {
    grid-template-columns: 1fr;
  }

  .leaf-mark {
    display: none;
  }

  .product-showcase {
    min-height: 170px;
    order: -1;
  }

  .showcase-scene {
    min-height: 170px;
  }

  .feature-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    grid-template-columns: 46px 1fr;
    gap: 12px;
  }

  .feature-icon {
    width: 46px;
    height: 46px;
  }

  .feature-icon svg {
    width: 25px;
    height: 25px;
  }

  .feature-card h3 {
    font-size: 1.2rem;
  }

  .feature-card p {
    font-size: 0.84rem;
    line-height: 1.35;
  }

  .info-row {
    grid-template-columns: 110px 1fr;
  }

  .story-card {
    margin-top: 18px;
    padding: 17px 16px;
  }

  .story-card p,
  .connection-block p,
  .cta-card p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .section-title {
    margin: 24px 0 12px;
  }

  .section-title h2 {
    font-size: 1.6rem;
    line-height: 1.05;
    text-wrap: balance;
  }

  .cta-card {
    padding: 24px 18px;
  }

  .whatsapp-button {
    width: 100%;
  }

  .related-card {
    grid-template-columns: 38% 1fr 32px;
  }

  .floating-whatsapp {
    width: 50px;
    height: 50px;
    right: 12px;
    bottom: 12px;
    padding: 10px;
  }
}

@media (max-width: 390px) {
  .product-page {
    padding-right: 8px;
    padding-left: 8px;
  }

  .product-narrow {
    max-width: calc(100vw - 16px);
  }

  .product-hero-copy {
    max-width: calc(100vw - 16px);
  }

  .product-intro h1 {
    font-size: 1.5rem;
    line-height: 1;
  }

  .product-subtitle {
    font-size: 0.92rem;
  }

  .story-card,
  .info-card {
    padding: 15px 14px;
  }

  .section-title {
    gap: 9px;
  }

  .feature-card {
    padding: 12px 12px;
  }

  .info-row {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .related-copy strong {
    font-size: 1.26rem;
  }

  .related-copy small {
    font-size: 0.8rem;
  }

  .brand-footer p {
    font-size: 1.45rem;
  }
}

@media (max-width: 320px) {
  .product-logo-frame {
    width: 76px;
    height: 76px;
  }

  .back-link {
    font-size: 0.72rem;
  }

  .product-intro h1 {
    font-size: 1.48rem;
  }

  .product-subtitle {
    font-size: 0.84rem;
  }

  .product-support,
  .story-card p,
  .connection-block p,
  .cta-card p {
    font-size: 0.82rem;
  }

  .section-title h2 {
    font-size: 1.35rem;
  }

  .feature-card {
    grid-template-columns: 38px 1fr;
    gap: 10px;
  }

  .feature-icon {
    width: 38px;
    height: 38px;
  }

  .feature-icon svg {
    width: 22px;
    height: 22px;
  }

  .feature-card h3 {
    font-size: 1.04rem;
  }

  .feature-card p,
  .related-copy small {
    font-size: 0.76rem;
  }

  .related-card {
    grid-template-columns: 36% 1fr 28px;
  }
}
