:root {
  --color-bone: #f7f4ef;
  --color-bone-dark: #ebe4d9;
  --color-plum: #4a2c3a;
  --color-burgundy: #6b2d3c;
  --color-burgundy-soft: #8b4052;
  --color-warm-white: #fdfcfa;
  --color-text: #2f2528;
  --color-text-muted: #5c5156;
  --color-border: rgba(74, 44, 58, 0.12);
  --shadow-soft: 0 18px 40px rgba(74, 44, 58, 0.08), 0 4px 12px rgba(74, 44, 58, 0.04);
  --shadow-card: 0 12px 32px rgba(74, 44, 58, 0.06);
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --container: min(1120px, calc(100% - 2rem));
  --header-h: 4.25rem;
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text);
  background: linear-gradient(180deg, var(--color-warm-white) 0%, var(--color-bone) 38%, var(--color-bone) 100%);
  min-height: 100vh;
  padding-bottom: 0;
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0.75rem;
  padding: 0.5rem 1rem;
  background: var(--color-plum);
  color: var(--color-warm-white);
  z-index: 1000;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 500;
}

.skip-link:focus {
  left: 0.75rem;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.container--narrow {
  width: min(720px, var(--container));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 252, 250, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  min-height: var(--header-h);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1rem;
}

.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0.12em;
  color: var(--color-plum);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

.logo:hover {
  color: var(--color-burgundy);
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

.nav-desktop a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

.nav-desktop a:hover {
  color: var(--color-burgundy);
}

.btn--header {
  display: none;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: var(--radius-sm);
  color: var(--color-plum);
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--color-burgundy);
  outline-offset: 2px;
}

.nav-toggle__bar {
  display: block;
  width: 1.35rem;
  height: 2px;
  background: currentColor;
  margin-inline: auto;
}

.mobile-nav {
  border-top: 1px solid var(--color-border);
  background: var(--color-warm-white);
  padding-block: 1rem;
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav__inner {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mobile-nav__inner a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--color-border);
}

.mobile-nav__inner a:last-child {
  border-bottom: none;
  margin-top: 0.5rem;
}

@media (min-width: 900px) {
  .nav-desktop {
    display: flex;
  }

  .btn--header {
    display: inline-flex;
  }

  .nav-toggle {
    display: none;
  }

  .mobile-nav {
    display: none !important;
  }
}

.hero {
  padding-block: clamp(2.5rem, 6vw, 4.5rem);
}

.hero__grid {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

@media (min-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-burgundy-soft);
  background: rgba(107, 45, 60, 0.08);
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--color-plum);
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.hero__lead {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  margin: 0 0 1rem;
  max-width: 36rem;
}

.hero__note--disclaimer {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  opacity: 0.9;
  margin: 0 0 1.5rem;
  font-style: italic;
}

.hero__cta {
  margin-bottom: 1.75rem;
}

.hero__cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.25rem;
}

.hero__price {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  font-weight: 600;
  color: var(--color-plum);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.price-hint {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin: 0.75rem 0 0;
}

.hero__bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  font-size: 0.9375rem;
  color: var(--color-text);
}

.hero__bullet-icon {
  color: var(--color-burgundy);
  margin-right: 0.5rem;
  font-size: 0.65rem;
  vertical-align: middle;
}

.hero__figure {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: var(--color-warm-white);
  border: 1px solid var(--color-border);
}

.hero__figure img {
  width: 100%;
  object-fit: cover;
}

.section {
  padding-block: clamp(3rem, 8vw, 5rem);
}

.section--soft {
  background: rgba(253, 252, 250, 0.65);
}

.section--plum {
  background: linear-gradient(145deg, var(--color-plum) 0%, #3d2433 50%, var(--color-burgundy) 100%);
  color: var(--color-bone);
}

.section--plum .section__title {
  color: var(--color-warm-white);
}

.section--plum .section__sub {
  color: rgba(247, 244, 239, 0.82);
}

.section__head {
  text-align: center;
  max-width: 38rem;
  margin-inline: auto;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.section__head--light .section__sub {
  color: rgba(247, 244, 239, 0.85);
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.5vw, 2.25rem);
  font-weight: 600;
  color: var(--color-plum);
  margin: 0 0 0.75rem;
  line-height: 1.2;
}

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

.section__cta {
  text-align: center;
  margin-top: 2.5rem;
}

.cards {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 600px) {
  .cards--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .cards--4 {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.card {
  background: var(--color-warm-white);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 48px rgba(74, 44, 58, 0.1);
}

.card__icon {
  color: var(--color-burgundy);
  margin-bottom: 1rem;
}

.card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-plum);
  margin: 0 0 0.5rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: 999px;
  padding: 0.85rem 1.65rem;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), box-shadow 0.2s var(--ease), transform 0.15s var(--ease);
}

.btn:active {
  transform: scale(0.98);
}

.btn--small {
  padding: 0.55rem 1.15rem;
  font-size: 0.8125rem;
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-burgundy) 0%, var(--color-plum) 100%);
  color: var(--color-warm-white);
  box-shadow: 0 8px 24px rgba(107, 45, 60, 0.28);
}

.btn--primary:hover {
  box-shadow: 0 10px 28px rgba(107, 45, 60, 0.36);
  filter: brightness(1.05);
}

.btn--secondary {
  background: var(--color-warm-white);
  color: var(--color-burgundy);
  border: 1.5px solid rgba(107, 45, 60, 0.35);
  box-shadow: var(--shadow-card);
}

.btn--secondary:hover {
  border-color: var(--color-burgundy);
  background: #fff;
}

.btn--large {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn--block {
  width: 100%;
}

.btn:focus-visible {
  outline: 2px solid var(--color-burgundy-soft);
  outline-offset: 3px;
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 640px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.steps__item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--color-warm-white);
  padding: 1.5rem 1.35rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
}

.steps__num {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-warm-white);
  background: linear-gradient(145deg, var(--color-burgundy), var(--color-plum));
  border-radius: 50%;
}

.steps__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 0 0 0.35rem;
  color: var(--color-plum);
}

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

.audience-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  font-size: 1.05rem;
}

.audience-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.audience-list__mark {
  color: rgba(247, 233, 220, 0.95);
  font-size: 0.85rem;
  line-height: 1.7;
}

.audience-note {
  text-align: center;
  font-size: 0.875rem;
  opacity: 0.85;
  max-width: 36rem;
  margin: 2rem auto 0;
  line-height: 1.6;
}

.reviews {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .reviews {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.review {
  margin: 0;
  background: var(--color-warm-white);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.4rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
}

.review__stars {
  color: #c4a574;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  margin-bottom: 0.75rem;
  opacity: 0.92;
}

.review__text {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--color-text);
  margin: 0 0 1rem;
  line-height: 1.6;
}

.review__author {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-burgundy);
}

.reviews-disclaimer {
  text-align: center;
  margin-top: 1.75rem;
  color: var(--color-text-muted);
}

.text-small {
  font-size: 0.8125rem;
}

.gift-block {
  background: linear-gradient(180deg, var(--color-bone-dark) 0%, var(--color-bone) 100%);
}

.gift-block__inner {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 860px) {
  .gift-block__inner {
    grid-template-columns: 1.35fr 1fr;
    gap: 3rem;
  }
}

.gift-block__text {
  margin: 0 0 1rem;
  color: var(--color-text);
  font-size: 1.02rem;
}

.text-muted {
  color: var(--color-text-muted);
  font-size: 0.95rem !important;
}

.gift-block__accent {
  background: var(--color-plum);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
  color: var(--color-bone);
}

.gift-block__ribbon {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  display: block;
  margin-bottom: 0.75rem;
  color: var(--color-warm-white);
}

.gift-block__tagline {
  font-size: 0.9rem;
  opacity: 0.88;
  font-style: italic;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.faq__item {
  background: var(--color-warm-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 600;
  text-align: left;
  color: var(--color-plum);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background 0.2s var(--ease);
}

.faq__question:hover {
  background: rgba(107, 45, 60, 0.04);
}

.faq__question[aria-expanded="true"] {
  background: rgba(107, 45, 60, 0.06);
}

.faq__icon {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  position: relative;
}

.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  background: var(--color-burgundy);
  border-radius: 1px;
  transition: transform 0.25s var(--ease);
}

.faq__icon::before {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  margin-top: -1px;
}

.faq__icon::after {
  width: 2px;
  height: 100%;
  left: 50%;
  top: 0;
  margin-left: -1px;
}

.faq__question[aria-expanded="true"] .faq__icon::after {
  transform: scaleY(0);
}

.faq__answer {
  padding: 0 1.25rem 1.15rem;
}

.faq__answer[hidden] {
  display: none;
}

.faq__answer p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  border-top: 1px solid var(--color-border);
  padding-top: 1rem;
}

.final-cta {
  background: linear-gradient(180deg, var(--color-plum) 0%, #352028 100%);
  color: var(--color-bone);
  padding-block: clamp(3rem, 8vw, 4.5rem);
}

.final-cta__inner {
  text-align: center;
  max-width: 34rem;
  margin-inline: auto;
}

.final-cta__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.1rem);
  font-weight: 600;
  color: var(--color-warm-white);
  margin: 0 0 1rem;
  line-height: 1.25;
}

.final-cta__text {
  margin: 0 0 1.75rem;
  color: rgba(247, 244, 239, 0.88);
  font-size: 1.05rem;
}

.final-cta__buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.link-cta {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(247, 244, 239, 0.95);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s var(--ease);
}

.link-cta:hover {
  color: #fff;
}

.site-footer {
  background: #2a1f24;
  color: rgba(247, 244, 239, 0.75);
  padding-block: 2.5rem 2rem;
  font-size: 0.875rem;
  line-height: 1.65;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.logo--footer {
  color: var(--color-warm-white);
  display: inline-block;
  margin-bottom: 0.35rem;
}

.footer__tagline {
  margin: 0;
  opacity: 0.85;
}

.footer__legal,
.footer__amazon,
.footer__copy {
  margin: 0;
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer__contact-line {
  margin: 0;
}

.footer__contact a {
  color: rgba(247, 244, 239, 0.92);
  font-weight: 500;
  text-decoration: none;
}

.footer__contact a:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer__copy {
  opacity: 0.65;
  font-size: 0.8125rem;
}

.floating-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, transparent 0%, rgba(253, 252, 250, 0.92) 25%, var(--color-warm-white) 100%);
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -8px 32px rgba(74, 44, 58, 0.08);
}

.floating-cta__btn {
  max-width: 28rem;
  margin-inline: auto;
}

@media (min-width: 900px) {
  .floating-cta {
    display: none;
  }

  body {
    padding-bottom: 0;
  }
}

@media (max-width: 899px) {
  body {
    padding-bottom: calc(4.5rem + env(safe-area-inset-bottom));
  }
}

.site-header--sub .btn--header {
  display: inline-flex;
}

.page-sub {
  background: var(--color-warm-white);
}

.subpage-main {
  padding-block: clamp(2rem, 5vw, 3.5rem);
  min-height: 50vh;
}

.subpage-article__intro {
  margin-bottom: 2rem;
}

.subpage-article__intro h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  color: var(--color-plum);
  margin: 0 0 0.5rem;
}

.subpage-article__intro p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 1.05rem;
}

.legal-content h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  color: var(--color-plum);
  margin: 0 0 1.5rem;
  line-height: 1.2;
}

.legal-content section {
  margin-bottom: 2rem;
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-plum);
  margin: 0 0 0.65rem;
}

.legal-content h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-text);
  margin: 1.25rem 0 0.5rem;
}

.legal-content p,
.legal-content li {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.legal-content ul {
  padding-left: 1.25rem;
}

.legal-content a {
  color: var(--color-burgundy-soft);
  font-weight: 500;
}

.legal-content a:hover {
  text-decoration: underline;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  padding-bottom: 1.25rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(247, 244, 239, 0.15);
}

.footer__nav a {
  color: rgba(247, 244, 239, 0.92);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

.footer__nav a:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer__nav a[aria-current="page"] {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-form-section {
  margin-top: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 32rem;
  margin-top: 1rem;
}

.contact-form__label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
}

.contact-form__input {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-warm-white);
  color: var(--color-text);
}

.contact-form__textarea {
  min-height: 8rem;
  resize: vertical;
}

.contact-form__check {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.contact-form__check input {
  margin-top: 0.2rem;
}

.contact-form__msg {
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
}

.contact-form__msg--success {
  background: rgba(107, 45, 60, 0.08);
  color: var(--color-plum);
  border: 1px solid var(--color-border);
}

.contact-form__msg--error {
  background: rgba(139, 64, 82, 0.1);
  color: var(--color-burgundy);
  border: 1px solid rgba(107, 45, 60, 0.25);
}

.product-detail .section__head {
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}

.product-blocks {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 6vw, 3.75rem);
}

.product-block {
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.25rem);
  align-items: center;
  margin: 0;
}

@media (min-width: 860px) {
  .product-block {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 3rem;
  }

  .product-block--reverse .product-block__media {
    order: 2;
  }

  .product-block--reverse .product-block__body {
    order: 1;
  }
}

.product-block__media {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-warm-white);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
}

.product-block__media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.product-block__title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.55rem);
  font-weight: 600;
  color: var(--color-plum);
  margin: 0 0 0.75rem;
  line-height: 1.25;
}

.product-block__text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.68;
  color: var(--color-text-muted);
}

.product-block__text strong {
  color: var(--color-text);
  font-weight: 600;
}

.product-detail__note {
  margin: 2.5rem auto 0;
  max-width: 40rem;
  text-align: center;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  font-style: italic;
  line-height: 1.6;
}
