/* ===================================
   月詠澪 - 特別な浄域 LP CSS
   月縁の器 購入者限定 上位アップセル
   より深い高級感・秘匿性・選ばれた方への特別感
   =================================== */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;600;700&family=Noto+Serif+JP:wght@300;400;500;600;700&display=swap');

/* --- CSS Variables --- */
:root {
  --bg-main: #F9F5FF;
  --bg-section: #F0E8FF;
  --bg-section-deep: #E8DEFF;
  --bg-card: #FFFFFF;
  --bg-silver: #F4F0FB;
  --purple-light: #D4BFEF;
  --purple-mid: #B89EDB;
  --purple-deep: #9A7BC7;
  --purple-darker: #7B5DAF;
  --purple-accent: #6B4D9A;
  --text-dark: #2E1A47;
  --text-mid: #3D2A5A;
  --text-body: #4E3D66;
  --text-light: #7A6A90;
  --gold-accent: #D4BC7A;
  --gold-light: #E8D9A8;
  --gold-champagne: #C4A862;
  --gold-muted: #B8A472;
  --white: #FFFFFF;
  --font-sans: 'Noto Sans JP', sans-serif;
  --font-serif: 'Noto Serif JP', serif;
  --shadow-soft: 0 4px 24px rgba(155, 123, 199, 0.10);
  --shadow-card: 0 8px 40px rgba(155, 123, 199, 0.12);
  --shadow-glow: 0 0 48px rgba(155, 123, 199, 0.12);
  --shadow-gold: 0 4px 20px rgba(196, 168, 98, 0.15);
  --radius: 16px;
  --radius-lg: 24px;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0; padding: 0; box-sizing: border-box;
}
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--text-body);
  background-color: var(--bg-main);
  line-height: 2;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--text-dark);
  font-weight: 500;
  line-height: 1.7;
  text-wrap: balance;
}

/* --- Layout --- */
.page-wrapper { max-width: 480px; margin: 0 auto; overflow: hidden; }
.section { padding: 56px 24px; position: relative; }
.section--alt { background-color: var(--bg-section); }
.section--deep { background-color: var(--bg-section-deep); }

/* --- Decorative Divider --- */
.section-divider {
  display: flex; align-items: center; justify-content: center;
  padding: 8px 24px; gap: 12px;
}
.section-divider::before, .section-divider::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, var(--purple-light), transparent);
}
.section-divider__icon { font-size: 14px; color: var(--purple-mid); opacity: 0.6; }

/* --- First View --- */
.firstview {
  min-height: 690px;
  background: #F4EEFF;
  padding: 42px 24px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.firstview::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 180px;
  background: linear-gradient(180deg, rgba(249, 245, 255, 0.44), transparent);
  pointer-events: none;
  z-index: 1;
}
.firstview::after {
  content: '';
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(180, 158, 219, 0.45), transparent);
  z-index: 4;
}
.firstview__scene {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.firstview__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.96) contrast(0.98);
}
.firstview__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(249, 245, 255, 0.06) 0%, rgba(249, 245, 255, 0.1) 28%, rgba(249, 245, 255, 0.64) 62%, rgba(249, 245, 255, 0.96) 90%, var(--bg-main) 100%),
    radial-gradient(circle at 50% 64%, rgba(255, 255, 255, 0.44), rgba(249, 245, 255, 0.08) 48%, transparent 72%);
  z-index: 2;
}
.firstview__content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 360px;
  padding-top: 318px;
}
.firstview__exclusive-label {
  display: inline-block;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(232, 217, 168, 0.28));
  border: 1px solid rgba(212, 188, 122, 0.34);
  color: var(--gold-muted);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; padding: 6px 20px;
  border-radius: 100px; margin-bottom: 18px;
  box-shadow: 0 8px 24px rgba(122, 93, 175, 0.08);
}
.firstview__title {
  font-family: var(--font-serif); font-size: 25px; font-weight: 600;
  line-height: 1.95; color: var(--text-dark);
  margin-bottom: 16px; letter-spacing: 0.08em;
  text-shadow: 0 2px 14px rgba(255, 255, 255, 0.75);
}
.firstview__subtitle {
  font-family: var(--font-serif); font-size: 16px;
  color: var(--text-mid); line-height: 2.2;
  margin-bottom: 18px; font-weight: 500;
  letter-spacing: 0.06em;
}
.firstview__schedule {
  font-family: var(--font-serif); font-size: 14px;
  color: var(--text-mid); line-height: 2;
  font-weight: 400; letter-spacing: 0.06em;
}
.firstview__schedule .highlight-date {
  color: var(--text-dark); font-weight: 700;
  background: linear-gradient(transparent 60%, rgba(212, 188, 122, 0.25) 60%);
  padding: 0 3px;
}

/* --- Section Headings --- */
.section-heading { text-align: center; margin-bottom: 40px; }
.section-heading__title {
  font-family: var(--font-serif); font-size: 20px; font-weight: 600;
  line-height: 1.9; color: var(--text-dark); letter-spacing: 0.06em;
}
.section-heading__line {
  display: block; width: 40px; height: 1px;
  background: linear-gradient(90deg, var(--purple-light), var(--gold-accent));
  margin: 16px auto 0;
}

/* --- Body Text --- */
.body-text {
  font-size: 15.5px; line-height: 2.5;
  color: var(--text-body); letter-spacing: 0.015em; text-align: left;
  line-break: strict;
  overflow-wrap: break-word;
}
.body-text p {
  margin-bottom: 40px;
}
.body-text p:last-child { margin-bottom: 0; }
.body-text .emphasis {
  color: var(--text-dark); font-weight: 700;
}
.manual-title {
  display: inline-block;
  color: var(--text-dark);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 2;
}
.body-text .gold-emphasis {
  color: var(--gold-champagne); font-weight: 700;
}
.quiet-strong {
  color: var(--purple-accent);
  font-weight: 700;
  background: linear-gradient(transparent 64%, rgba(212, 188, 122, 0.22) 64%);
  padding: 0 2px;
}
.gold-strong {
  color: #8A6F2B;
  font-weight: 700;
  background: linear-gradient(transparent 62%, rgba(232, 217, 168, 0.46) 62%);
  padding: 0 2px;
}
.text-nowrap {
  white-space: nowrap;
}
.phrase-nowrap {
  white-space: nowrap;
}

/* --- Highlight Box --- */
.highlight-box {
  background: linear-gradient(135deg, rgba(240, 232, 255, 0.8), rgba(255, 255, 255, 0.9));
  border: 1px solid rgba(180, 158, 219, 0.2);
  border-left: 3px solid var(--purple-mid);
  border-radius: 12px; padding: 24px 20px; margin: 36px 0;
  text-align: center; font-size: 15.5px; line-height: 2.3;
  color: var(--text-dark); font-weight: 500;
  line-break: strict;
  overflow-wrap: break-word;
  text-wrap: balance;
}
.highlight-box--key {
  border-left-color: var(--gold-accent);
  box-shadow: 0 12px 34px rgba(122, 93, 175, 0.08);
}

/* --- Pull Quote --- */
.pull-quote {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  text-align: center;
  line-height: 2.2;
  margin: 48px 0;
  padding: 32px 20px;
  border-top: 1px solid rgba(180, 158, 219, 0.25);
  border-bottom: 1px solid rgba(180, 158, 219, 0.25);
  letter-spacing: 0.06em;
  line-break: strict;
  text-wrap: balance;
}

/* --- Bracelet Name Tags (器の名前表示) --- */
.vessel-names {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: 28px 0 36px;
}
.vessel-name {
  background: linear-gradient(135deg, rgba(240, 232, 255, 0.9), rgba(255, 255, 255, 0.95));
  border: 1px solid rgba(180, 158, 219, 0.3);
  padding: 10px 28px;
  border-radius: 100px;
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--text-dark);
  font-weight: 600;
  letter-spacing: 0.1em;
}

/* === Product Cards === */
.product-cards { display: flex; flex-direction: column; gap: 56px; }

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(180, 158, 219, 0.12);
}
.product-card__image-wrap {
  width: 100%;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #F0E8FF, #FFFFFF);
}
.product-card__image-loop {
  width: 100%;
  aspect-ratio: 1 / 1;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #F0E8FF, #FFFFFF);
}
.product-card__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.product-card__image-loop .product-card__image {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(100%);
  animation: imageHorizontalLoop 10s cubic-bezier(0.72, 0, 0.28, 1) infinite;
}
.product-card__image-loop .product-card__image:only-child {
  position: relative;
  opacity: 1;
  transform: none;
  animation: none;
}
.product-card__image-loop .product-card__image:nth-child(2) {
  animation-delay: 5s;
}
@keyframes imageHorizontalLoop {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  42% {
    opacity: 1;
    transform: translateX(0);
  }
  50% {
    opacity: 0;
    transform: translateX(-100%);
  }
  92% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.product-card__body {
  padding: 32px 22px 36px;
}
.product-card__category {
  display: inline-block; font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; padding: 5px 16px;
  border-radius: 100px; margin-bottom: 16px;
  background: linear-gradient(135deg, #E8DEFF, #F0E8FF);
  color: var(--purple-accent);
}
.product-card__name {
  font-family: var(--font-serif); font-size: 22px; font-weight: 600;
  color: var(--text-dark); margin-bottom: 8px; letter-spacing: 0.1em;
  text-align: center;
  text-wrap: balance;
}
.product-card__tagline {
  font-family: var(--font-serif); font-size: 14px;
  color: var(--text-mid); line-height: 2;
  margin-bottom: 24px; text-align: center;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(180, 158, 219, 0.12);
  line-break: strict;
  text-wrap: balance;
}
.product-card__desc {
  font-size: 14.7px; color: var(--text-body);
  line-height: 2.35; text-align: left;
  margin-bottom: 32px;
  letter-spacing: 0.005em;
  line-break: strict;
  overflow-wrap: break-word;
}
.product-card__desc p {
  margin-bottom: 32px;
}
.product-card__desc p:last-child {
  margin-bottom: 0;
}

/* --- Pricing Block --- */
.product-card__pricing {
  background: linear-gradient(135deg, rgba(240, 232, 255, 0.5), rgba(255, 255, 255, 0.8));
  border: 1px solid rgba(180, 158, 219, 0.15);
  border-radius: var(--radius);
  padding: 28px 20px;
  margin-bottom: 24px;
  text-align: center;
}
.product-card__price-label {
  font-size: 12px; color: var(--gold-muted);
  font-weight: 600; letter-spacing: 0.1em; margin-bottom: 8px;
}
.product-card__price {
  font-family: var(--font-serif); font-size: 30px; font-weight: 700;
  color: var(--text-dark); letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.product-card__price small {
  font-size: 14px; font-weight: 400;
}
.product-card__tax-note {
  font-size: 12px; color: var(--text-light);
  margin-bottom: 12px;
}
.product-card__limited {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-accent), var(--gold-light));
  color: var(--text-dark); font-size: 12px; font-weight: 600;
  letter-spacing: 0.12em; padding: 5px 18px; border-radius: 100px;
}
.product-card__limited--emphasis {
  box-shadow: 0 6px 18px rgba(196, 168, 98, 0.18);
}

/* --- Disabled Purchase Button --- */
.purchase-button--disabled {
  display: block; width: 100%; text-align: center;
  background: linear-gradient(135deg, #C8BDD6, #B8AECC);
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-sans);
  font-size: 14px; font-weight: 600; letter-spacing: 0.06em;
  padding: 18px 24px; border-radius: 100px; border: none;
  cursor: not-allowed; line-height: 1.6;
  pointer-events: none;
  opacity: 0.85;
}
.purchase-button__note {
  font-size: 12px; color: var(--text-light);
  line-height: 2; margin-top: 16px; text-align: center;
}

/* --- Active Purchase Button (29日以降用) --- */
.purchase-button--active {
  display: block; width: 100%; text-align: center;
  background: linear-gradient(135deg, #D4B872, #C5A55A, #D4B872);
  color: var(--white); font-family: var(--font-sans);
  font-size: 15px; font-weight: 600; letter-spacing: 0.06em;
  padding: 18px 24px; border-radius: 100px; border: none; cursor: pointer;
  box-shadow: var(--shadow-gold);
  transition: all 0.3s ease; line-height: 1.6;
  position: relative; overflow: hidden;
}
.purchase-button--active::after {
  content: ''; position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: shimmer 3s infinite;
}
@keyframes shimmer {
  0% { left: -100%; } 100% { left: 200%; }
}
.purchase-button--active:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(196, 165, 90, 0.35);
}

/* --- CTA Button (LINE誘導) --- */
.cta-block { text-align: center; padding: 40px 0; }
.cta-block__lead {
  font-family: var(--font-serif); font-size: 15px;
  color: var(--text-mid); margin-bottom: 16px; line-height: 1.8;
}
.cta-button {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: linear-gradient(135deg, var(--purple-mid), var(--purple-deep));
  color: var(--white); font-family: var(--font-sans);
  font-size: 15px; font-weight: 600; letter-spacing: 0.05em;
  padding: 18px 32px; border-radius: 100px; border: none; cursor: pointer;
  box-shadow: 0 4px 20px rgba(155, 123, 199, 0.25);
  transition: all 0.3s ease; line-height: 1.6;
}
.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(155, 123, 199, 0.35);
}
.cta-button__icon { font-size: 20px; }
.cta-block__note {
  font-size: 12px; color: var(--text-light);
  margin-top: 16px; line-height: 2; text-align: center;
}

/* --- Guide Section (どの浄域を選ぶか) --- */
.guide-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  margin-bottom: 20px;
  border: 1px solid rgba(180, 158, 219, 0.12);
  box-shadow: var(--shadow-soft);
  text-align: left;
}
.guide-card__title {
  font-family: var(--font-serif); font-size: 16px;
  font-weight: 600; color: var(--text-dark);
  margin-bottom: 16px; line-height: 1.8; text-align: center;
}
.guide-card__text {
  font-size: 15px; color: var(--text-body);
  line-height: 2.35; text-align: left;
  letter-spacing: 0.01em;
  line-break: strict;
  overflow-wrap: break-word;
}
.guide-card__product-name {
  font-family: var(--font-serif);
  font-weight: 600; color: var(--purple-accent);
  font-size: 15px;
  display: inline-block;
  line-height: 1.8;
}

/* --- Info Table --- */
.info-table {
  width: 100%; margin: 32px 0;
}
.info-table-item {
  background: var(--white); border-radius: var(--radius);
  padding: 24px 20px; margin-bottom: 16px;
  border: 1px solid rgba(180, 158, 219, 0.12);
  box-shadow: var(--shadow-soft); text-align: center;
}
.info-table-item__name {
  font-family: var(--font-serif); font-size: 17px;
  font-weight: 600; color: var(--text-dark);
  margin-bottom: 12px; letter-spacing: 0.08em;
  line-break: strict;
  text-wrap: balance;
}
.info-table-item__detail {
  font-size: 14px; color: var(--text-body);
  line-height: 2; margin-bottom: 4px;
  line-break: strict;
  overflow-wrap: break-word;
}
.info-table-item__detail strong {
  color: var(--text-dark); font-weight: 600;
}

/* --- Key-Value Info --- */
.kv-info {
  background: linear-gradient(135deg, rgba(240, 232, 255, 0.7), rgba(255, 255, 255, 0.9));
  border: 1px solid rgba(180, 158, 219, 0.15);
  border-radius: var(--radius); padding: 20px; margin: 28px 0;
}
.kv-info__row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; border-bottom: 1px solid rgba(180, 158, 219, 0.1);
  font-size: 14px;
}
.kv-info__row:last-child { border-bottom: none; }
.kv-info__label { color: var(--text-light); font-size: 13px; letter-spacing: 0.06em; }
.kv-info__value {
  color: var(--text-dark); font-weight: 600; font-size: 14px; text-align: right;
  line-break: strict;
  overflow-wrap: break-word;
}

/* --- Steps (タイムライン) --- */
.steps {
  margin: 32px 0;
  position: relative;
  padding-left: 8px;
}
.steps::before {
  content: '';
  position: absolute;
  top: 24px;
  bottom: 40px;
  left: 26px;
  width: 1px;
  border-left: 1px dashed rgba(180, 158, 219, 0.5);
}
.step-item {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 0 0 32px 0;
  text-align: left;
  position: relative;
  z-index: 1;
}
.step-item:last-child { padding-bottom: 0; }
.step-item__number {
  flex-shrink: 0; width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--purple-mid), var(--purple-deep));
  color: var(--white); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 600;
  box-shadow: 0 0 0 6px var(--bg-main);
  font-family: var(--font-sans);
}
.section--alt .step-item__number {
  box-shadow: 0 0 0 6px var(--bg-section);
}
.step-item__content { flex: 1; padding-top: 6px; }
.step-item__title {
  font-weight: 700; color: var(--purple-deep);
  margin-bottom: 8px; font-size: 15px;
  line-height: 1.5;
}
.step-item__text {
  font-size: 14.5px; color: var(--text-body); line-height: 2.2;
  letter-spacing: 0.01em;
  line-break: strict;
  overflow-wrap: break-word;
}

/* --- Policy Box --- */
.policy-box {
  background: var(--bg-silver); border-radius: var(--radius);
  padding: 24px 20px; text-align: left;
}
.policy-box p {
  font-size: 14.5px; color: var(--text-body);
  line-height: 2.25; margin-bottom: 32px;
  letter-spacing: 0.01em;
  line-break: strict;
  overflow-wrap: break-word;
}
.policy-box p:last-child { margin-bottom: 0; }

/* --- Signature --- */
.signature { text-align: center; padding: 48px 24px 64px; }
.signature__closing {
  font-family: var(--font-serif); font-size: 15.5px;
  color: var(--text-mid); line-height: 2.5; margin-bottom: 48px;
  text-align: left;
  letter-spacing: 0.015em;
  line-break: strict;
  overflow-wrap: break-word;
}
.signature__closing p {
  margin-bottom: 32px;
}
.signature__closing p:last-child {
  margin-bottom: 0;
}
.signature__line {
  display: block; width: 40px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--purple-light), transparent);
  margin: 0 auto 24px;
}
.signature__title {
  font-size: 13px; color: var(--text-light);
  letter-spacing: 0.14em; margin-bottom: 8px;
}
.signature__name {
  font-family: var(--font-serif); font-size: 22px; font-weight: 500;
  color: var(--text-dark); letter-spacing: 0.15em;
}

/* --- Pre-launch Notice --- */
.prelaunch-notice {
  background: linear-gradient(135deg, rgba(240, 232, 255, 0.6), rgba(255, 255, 255, 0.8));
  border: 1px solid rgba(180, 158, 219, 0.15);
  border-radius: var(--radius);
  padding: 20px;
  margin: 32px 0;
  text-align: center;
}
.prelaunch-notice p {
  font-size: 13px; color: var(--text-light);
  line-height: 2; margin: 0;
}

/* --- Section Image --- */
.section-image {
  margin: 0 -8px 32px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.section-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* --- Animations --- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-in {
  opacity: 1; transform: translateY(0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.js-loaded .animate-in {
  opacity: 1; transform: translateY(0);
}
.js-loaded .animate-in.visible {
  opacity: 1; transform: translateY(0);
}

/* --- Scrollbar --- */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg-main); }
::-webkit-scrollbar-thumb { background: var(--purple-light); border-radius: 4px; }

/* --- Responsive --- */
@media (min-width: 481px) {
  .page-wrapper { max-width: 520px; }
  .section { padding: 64px 32px; }
  .firstview { padding: 64px 32px 56px; }
  .firstview__title { font-size: 26px; }
  .section-heading__title { font-size: 22px; }
  .body-text { font-size: 16px; }
}
@media (min-width: 768px) {
  .page-wrapper { max-width: 600px; }
  .body-text { font-size: 16.5px; }
}

@supports (word-break: auto-phrase) {
  .body-text,
  .product-card__desc,
  .guide-card__text,
  .step-item__text,
  .policy-box p,
  .signature__closing {
    word-break: auto-phrase;
  }
}

@media (max-width: 480px) {
  .section { padding: 54px 24px; }
  .firstview { padding: 54px 24px 48px; }
  .section-divider { padding-left: 24px; padding-right: 24px; }

  .section-heading__title {
    font-size: 19px;
    line-height: 1.95;
  }

  .body-text {
    font-size: 14.6px;
    line-height: 2.45;
    letter-spacing: 0.005em;
  }

  /* max-width制限なし：コンテナ幅いっぱいに表示 */

  .highlight-box {
    margin-left: 2px;
    margin-right: 2px;
    padding: 24px 18px;
    font-size: 14.7px;
    line-height: 2.25;
  }

  .pull-quote {
    margin-left: 2px;
    margin-right: 2px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .product-card {
    border-radius: 18px;
  }

  .product-card__body {
    padding: 30px 18px 34px;
  }

  .product-card__desc {
    font-size: 14.2px;
    line-height: 2.3;
    letter-spacing: 0;
  }

  .guide-card__text,
  .step-item__text,
  .policy-box p {
    letter-spacing: 0;
  }

  .purchase-button--disabled,
  .purchase-button--active,
  .cta-button {
    letter-spacing: 0.03em;
  }

  .guide-card {
    padding: 26px 22px;
  }

  .kv-info__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
  }

  .kv-info__value {
    text-align: left;
    line-height: 1.8;
  }

  .steps {
    padding-left: 0;
  }

  .step-item {
    gap: 16px;
  }
}
