/* 大福食品 · 企业官网（独立静态站，与 CORNERSTONE ERP 分离） */

:root {
  --color-brand: #156b37;
  --color-brand-dark: #0c3d20;
  --color-brand-light: #22804a;
  --color-accent: #d4921a;
  --color-accent-soft: #f0d48a;
  --color-bg: #faf7f2;
  --color-bg-alt: #f0ebe3;
  --color-surface: #ffffff;
  --color-text: #152019;
  --color-text-muted: #5a645e;
  --color-border: rgba(21, 107, 55, 0.12);
  --font-sans: "PingFang SC", "Hiragino Sans GB", "Noto Sans SC", "Microsoft YaHei", sans-serif;
  --font-display: "STSong", "Songti SC", "Noto Serif SC", Georgia, serif;
  --shadow-sm: 0 1px 3px rgba(12, 61, 32, 0.06);
  --shadow-md: 0 12px 40px rgba(12, 61, 32, 0.12);
  --shadow-lg: 0 24px 64px rgba(12, 61, 32, 0.14);
  --radius: 14px;
  --radius-sm: 10px;
  --max-width: 1140px;
  --header-h: 72px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-brand);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--color-brand-dark);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: var(--color-brand);
  color: #fff;
  border-radius: var(--radius-sm);
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal--delay {
  transition-delay: 0.12s;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(250, 247, 242, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.25s, border-color 0.25s, background 0.25s;
}

.site-header.is-scrolled {
  border-color: var(--color-border);
  box-shadow: var(--shadow-sm);
  background: rgba(250, 247, 242, 0.96);
}

.site-header__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.site-brand__logo {
  display: block;
  height: 44px;
  width: auto;
  max-width: min(168px, 42vw);
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.site-nav a {
  text-decoration: none;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  transition: background 0.15s, color 0.15s;
}

.site-nav a:hover,
.site-nav a.is-active {
  background: rgba(21, 107, 55, 0.08);
  color: var(--color-brand);
}

.site-nav__portal {
  margin-left: 0.35rem;
  padding: 0.45rem 0.95rem !important;
  background: var(--color-brand);
  color: #fff !important;
  font-weight: 500;
}

.site-nav__portal:hover {
  background: var(--color-brand-dark);
  color: #fff !important;
}

.nav-toggle {
  display: none;
  border: none;
  background: transparent;
  padding: 0.5rem;
  cursor: pointer;
  color: var(--color-brand);
  border-radius: var(--radius-sm);
}

.nav-toggle:hover {
  background: rgba(21, 107, 55, 0.08);
}

.nav-toggle svg {
  width: 28px;
  height: 28px;
}

.nav-backdrop {
  display: none;
}

@media (max-width: 860px) {
  .nav-toggle {
    display: block;
  }

  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    top: var(--header-h);
    z-index: 90;
    background: rgba(12, 32, 20, 0.35);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s;
  }

  .nav-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    z-index: 95;
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem;
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
  }

  .site-nav__portal {
    margin-left: 0;
    text-align: center;
    margin-top: 0.25rem;
  }
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 2.5rem 1.25rem 2rem;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 75% 55% at 90% 10%, rgba(212, 146, 26, 0.1), transparent 55%),
    radial-gradient(ellipse 55% 45% at 0% 100%, rgba(21, 107, 55, 0.08), transparent 50%),
    linear-gradient(180deg, #eef5f0 0%, var(--color-bg) 100%);
  pointer-events: none;
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23156b37' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero__inner {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.25rem;
  align-items: center;
}

@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.hero__brand-line {
  margin: 0 0 0.75rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
}

.hero__brand-line span {
  color: var(--color-brand);
  font-weight: 600;
}

.hero__title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 600;
  line-height: 1.28;
  color: var(--color-brand-dark);
  letter-spacing: 0.01em;
}

.hero__lead {
  margin: 0 0 1.15rem;
  font-size: 1.02rem;
  color: var(--color-text-muted);
  max-width: 34em;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 1.35rem;
  padding: 0;
  list-style: none;
}

.hero__badges li {
  padding: 0.28rem 0.72rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--color-brand);
  background: rgba(21, 107, 55, 0.07);
  border: 1px solid var(--color-border);
  border-radius: 999px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.hero__visual {
  position: relative;
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(145deg, var(--color-brand) 0%, var(--color-brand-light) 48%, #3a9460 100%);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero__visual-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.94;
}

.hero__visual-caption {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 1.15rem 1.35rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.94);
  background: linear-gradient(to top, rgba(12, 61, 32, 0.88), rgba(12, 61, 32, 0.35) 72%, transparent);
}

.hero__visual-caption strong {
  display: block;
  font-size: 1.02rem;
  margin-bottom: 0.25rem;
}

/* Chain strip */
.chain-strip {
  position: relative;
  z-index: 1;
  margin-top: -0.5rem;
  padding: 0 1.25rem 1.5rem;
}

.chain-strip__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.15rem 1.25rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.chain-strip__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: chain;
}

@media (max-width: 860px) {
  .chain-strip__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .chain-strip__list {
    grid-template-columns: 1fr;
  }
}

.chain-step {
  position: relative;
  padding-left: 2.35rem;
}

.chain-step::before {
  counter-increment: chain;
  content: counter(chain);
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 1.65rem;
  height: 1.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  background: var(--color-brand);
  border-radius: 50%;
}

.chain-step__title {
  margin: 0 0 0.2rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-brand-dark);
}

.chain-step__desc {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--color-text-muted);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.72rem 1.4rem;
  border-radius: 999px;
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--color-brand);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.btn--primary:hover {
  background: var(--color-brand-dark);
  color: #fff;
}

.btn--ghost {
  background: var(--color-surface);
  color: var(--color-brand);
  border-color: var(--color-border);
}

.btn--ghost:hover {
  border-color: var(--color-brand-light);
  color: var(--color-brand-dark);
}

/* Sections */
.section {
  padding: 4rem 1.25rem;
}

.section--alt {
  background: var(--color-bg-alt);
}

.section--contact {
  padding-top: 3rem;
  padding-bottom: 3.5rem;
}

.section__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section__header {
  max-width: 42em;
  margin-bottom: 2.5rem;
}

.section__label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.section__title {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--color-brand-dark);
}

.section__desc {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.98rem;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.15rem;
}

.card-grid--4 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.45rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.22s, transform 0.22s, border-color 0.22s;
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: rgba(21, 107, 55, 0.2);
}

.card__icon {
  width: 46px;
  height: 46px;
  margin-bottom: 0.95rem;
  padding: 9px;
  border-radius: var(--radius-sm);
  background: rgba(21, 107, 55, 0.08);
  color: var(--color-brand);
}

.card__title {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  font-weight: 600;
}

.card__text {
  margin: 0;
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.25rem;
  padding: 1.35rem 1.5rem;
  background: var(--color-surface);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
}

@media (max-width: 768px) {
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

.stat__value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-brand);
}

.stat__label {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}

/* Products */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.15rem;
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.22s, transform 0.22s;
}

.product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.product-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.product-card__name {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--color-brand-dark);
}

.product-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  justify-content: flex-end;
}

.product-card__tag {
  padding: 0.15rem 0.55rem;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--color-brand);
  background: rgba(21, 107, 55, 0.07);
  border-radius: 999px;
}

.product-card__desc {
  margin: 0;
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  flex: 1;
}

/* Quality */
.quality-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 768px) {
  .quality-layout {
    grid-template-columns: 1fr;
  }
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 0.65rem 0 0.65rem 1.85rem;
  margin-bottom: 0.35rem;
  color: var(--color-text-muted);
  border-bottom: 1px dashed rgba(21, 107, 55, 0.1);
}

.check-list li:last-child {
  border-bottom: none;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.05em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(212, 146, 26, 0.18);
}

.quality-panel {
  padding: 1.85rem;
  background: linear-gradient(155deg, var(--color-brand-dark) 0%, #134a28 100%);
  color: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.quality-panel h3 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.quality-panel p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.84);
}

/* Contact */
.contact-panel {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem 2.5rem;
  padding: 2rem 2.25rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: calc(var(--radius) + 2px);
  box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
  .contact-panel {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }
}

.contact-panel__intro .section__title {
  margin-bottom: 0.5rem;
}

.contact-meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  margin: 0;
}

.contact-meta__item {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: 0.5rem;
  align-items: baseline;
  margin: 0;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--color-border);
}

.contact-meta__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-meta dt {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

.contact-meta dd {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--color-text);
}

.contact-meta a {
  text-decoration: none;
  font-weight: 500;
}

.contact-meta a:hover {
  text-decoration: underline;
}

.contact-panel__actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--color-border);
}

.contact-note {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

/* Footer */
.site-footer {
  padding: 2.75rem 1.25rem 2rem;
  background: var(--color-brand-dark);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.875rem;
}

.site-footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  align-items: flex-end;
}

.site-footer__brand {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 0.35rem;
}

.site-footer__tagline {
  margin: 0 0 1rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  margin-bottom: 1rem;
}

.site-footer__links a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-size: 0.85rem;
}

.site-footer__links a:hover {
  color: #fff;
  text-decoration: underline;
}

.site-footer__legal a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.site-footer__legal a:hover {
  text-decoration: underline;
}

.site-footer__copy {
  margin: 0;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Back to top */
.back-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 80;
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: var(--color-brand);
  color: #fff;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s, background 0.15s;
}

.back-top.is-visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.back-top:hover {
  background: var(--color-brand-dark);
}

.back-top svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* ── 产品手册视觉 · 大图 + 一句主标语 ── */
:root {
  --color-bg: #ffffff;
  --color-bg-alt: #ffffff;
  --section-y: clamp(2.25rem, 4vw, 3.5rem);
}

body {
  background: #ffffff;
}

.site-header {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(20, 26, 22, 0.05);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.site-nav a {
  border-radius: 6px;
  font-weight: 500;
}

/* 首屏：横排主标语，舒展不挤、左右留白均衡 */
.hero--editorial {
  padding: 0;
  margin: 0;
  min-height: min(72vh, 680px);
  background: #ffffff;
}

.hero__canvas {
  position: relative;
  width: min(100%, 1120px);
  min-height: min(72vh, 680px);
  margin: 0 auto;
  padding: calc(var(--header-h) + clamp(1.75rem, 6vh, 3.5rem)) clamp(1.5rem, 5vw, 3rem)
    clamp(1.5rem, 4vh, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  box-sizing: border-box;
}

.hero__headline {
  width: 100%;
  max-width: 52rem;
  margin: 0;
  text-align: left;
}

.hero--editorial .hero__title {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(2.125rem, 4.8vw, 3.75rem);
  font-weight: 800;
  line-height: 1.42;
  letter-spacing: 0.06em;
  color: #0a2e18;
  text-wrap: balance;
}

/* 全幅产品摄影带 — 已停用，保留样式供后续复用 */

.section--about {
  padding-top: var(--section-y);
  padding-bottom: calc(var(--section-y) * 0.65);
}

.section__header {
  margin-bottom: 1.5rem;
}

.section {
  padding: calc(var(--section-y) * 0.85) 1.5rem;
  background: #ffffff;
}

.section--alt {
  background: #ffffff;
}

.section__label {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #8a7344;
}

.section__title {
  font-family: var(--font-sans);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.section__header {
  text-align: left;
  max-width: 36rem;
}

.section__desc--tight {
  max-width: 22em;
  font-size: 1rem;
  line-height: 1.7;
}

.card-grid {
  gap: 1rem;
}

.card,
.product-card,
.contact-panel {
  border: none;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.03);
}

.card:hover,
.product-card:hover {
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.06);
}

.card__text,
.product-card__desc,
.check-list li {
  font-size: 0.9375rem;
  line-height: 1.65;
}

.btn {
  border-radius: 7px;
  font-weight: 600;
}

.chain-strip[hidden] {
  display: none !important;
}

@media (max-width: 900px) {
  .hero--editorial .hero__title {
    font-size: clamp(1.625rem, 7.5vw, 2.25rem);
    letter-spacing: 0.04em;
    line-height: 1.38;
  }
}

