/* ===== CSS VARIABLES ===== */
:root {
  --rose:        #c97b8a;
  --rose-dark:   #a05a6a;
  --rose-light:  #fce8ed;
  --rose-mid:    #f2c8d0;
  --cream:       #fdf6f0;
  --cream-dark:  #f5ece4;
  --text:        #2d2020;
  --text-muted:  #7a5c60;
  --gold:        #d4a843;
  --white:       #ffffff;
  --shadow:      0 4px 20px rgba(180,100,110,0.12);
  --radius:      16px;
  --radius-sm:   10px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; }
body {
  font-family: 'Montserrat', sans-serif;
  background: var(--cream);
  color: var(--text);
  max-width: 480px;
  margin: 0 auto;
  overflow-x: hidden;
}
img { display: block; width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }

/* ===== TYPOGRAPHY ===== */
h1, h2 { font-family: 'Playfair Display', serif; line-height: 1.2; }
h3, h4 { font-family: 'Montserrat', sans-serif; font-weight: 700; }

/* ===== BUTTON ===== */
.btn {
  display: block;
  width: 100%;
  padding: 17px 24px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  text-align: center;
  transition: transform .15s, box-shadow .15s;
}
.btn:active { transform: scale(.97); }
.btn--primary {
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(160,90,106,.35);
}
.btn--outline {
  background: var(--white);
  color: var(--rose-dark);
  border: 2px solid var(--rose);
}
.btn--full { width: 100%; }

/* ===== INPUT ===== */
.input_field {
  display: block;
  width: 100%;
  padding: 15px 18px;
  border: 1.5px solid var(--rose-mid);
  border-radius: var(--radius-sm);
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  background: var(--white);
  color: var(--text);
  outline: none;
  transition: border-color .2s;
  margin-bottom: 12px;
}
.input_field:focus { border-color: var(--rose); }
.input_field::placeholder { color: #c0a0a5; }

/* ===== STOCK BADGE ===== */
.stock-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
  font-size: 13px;
  color: var(--rose-dark);
  font-weight: 500;
  margin-top: 10px;
}
.stock-badge svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ===========================
   HERO
=========================== */
.hero {
  background: linear-gradient(170deg, var(--white) 0%, var(--rose-light) 100%);
  padding: 28px 20px 32px;
  text-align: center;
}
.hero__badge {
  display: inline-block;
  background: var(--rose-mid);
  color: var(--rose-dark);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
}
.hero__title {
  font-size: 32px;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.15;
}
.hero__sub {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 400;
  margin-bottom: 22px;
  line-height: 1.5;
}
.hero__product {
  position: relative;
  margin-bottom: 22px;
}
.hero__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
.hero__discount-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: var(--rose-dark);
  color: var(--white);
  font-size: 18px;
  font-weight: 800;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
}

/* BEFORE/AFTER */
.before-after {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
}
.before-after__item {
  flex: 1;
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.before-after__item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
.before-after__label {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
}
.before-after__label--before {
  background: rgba(0,0,0,.5);
  color: #fff;
}
.before-after__label--after {
  background: var(--rose-dark);
  color: #fff;
}
.before-after__arrow {
  flex-shrink: 0;
  width: 30px;
  color: var(--rose-dark);
}
.before-after__arrow svg { width: 30px; height: 30px; }

/* PRICE BLOCK */
.price-block {
  display: flex;
  align-items: stretch;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  text-align: center;
}
.price-block__old, .price-block__new {
  flex: 1;
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.price-block__divider { width: 1px; background: var(--rose-mid); }
.price-block__label { font-size: 10px; color: var(--text-muted); font-weight: 500; text-transform: uppercase; letter-spacing: .06em; }
.price-block__value { font-size: 16px; font-weight: 700; }
.price-block__value--old { color: #aaa; text-decoration: line-through; }
.price-block__value--new { color: var(--rose-dark); font-size: 20px; }

/* TIMER */
.timer-wrap {
  margin-bottom: 20px;
}
.timer-wrap__label {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.timer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
.timer__unit {
  text-align: center;
}
.timer__digits {
  display: flex;
  gap: 3px;
}
.timer__digits span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 40px;
  background: var(--white);
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--rose-dark);
  box-shadow: var(--shadow);
}
.timer__name {
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 4px;
  letter-spacing: .04em;
}
.timer__sep {
  font-size: 24px;
  font-weight: 700;
  color: var(--rose);
  margin-bottom: 14px;
  align-self: flex-start;
  padding-top: 8px;
}

/* ===========================
   SECTION BASE
=========================== */
.section {
  padding: 36px 20px;
}
.section:nth-child(odd) { background: var(--cream); }
.section:nth-child(even) { background: var(--white); }

.section__title {
  font-size: 26px;
  text-align: center;
  margin-bottom: 14px;
  color: var(--text);
}
.section__text {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 20px;
}

/* PRODUCT PHOTO */
.product-photo-wrap {
  margin-bottom: 20px;
  border-radius: var(--radius);
  overflow: hidden;
}
.product-photo {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* ===========================
   PROBLEM SECTION
=========================== */
.problem-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}
.problem-list__item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--rose-light);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}
.problem-list__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose-dark);
}
.problem-list__icon svg { width: 18px; height: 18px; }

/* ===========================
   BENEFITS GRID
=========================== */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 20px 0;
}
.benefit {
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 16px 14px;
  text-align: center;
  border: 1px solid var(--rose-mid);
}
.benefit__icon {
  width: 40px;
  height: 40px;
  background: var(--rose-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  color: var(--rose-dark);
}
.benefit__icon svg { width: 20px; height: 20px; }
.benefit p { font-size: 12px; line-height: 1.4; color: var(--text-muted); font-weight: 500; }

/* ===========================
   INGREDIENTS
=========================== */
.ingredient-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 4px;
}
.ingredient-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 16px;
  border-left: 3px solid var(--rose);
}
.ingredient-card__num {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--rose-mid);
  font-weight: 600;
  flex-shrink: 0;
  line-height: 1;
}
.ingredient-card strong { font-size: 14px; display: block; margin-bottom: 4px; color: var(--text); }
.ingredient-card p { font-size: 12px; color: var(--text-muted); line-height: 1.4; margin: 0; }

/* ===========================
   HOW TO USE
=========================== */
.steps-how {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
}
.steps-how__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--rose-light);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
}
.steps-how__num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--rose-dark);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}
.steps-how__text { font-size: 13px; line-height: 1.5; color: var(--text); }
.steps-how__text strong { display: block; margin-bottom: 2px; font-size: 14px; }

/* ===========================
   CHARACTERISTICS
=========================== */
.chars-table {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--rose-mid);
  margin-bottom: 24px;
}
.chars-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  gap: 12px;
  font-size: 13px;
}
.chars-row:nth-child(odd) { background: var(--cream); }
.chars-row:nth-child(even) { background: var(--white); }
.chars-row__key { color: var(--text-muted); font-weight: 500; flex-shrink: 0; }
.chars-row__val { text-align: right; font-weight: 600; color: var(--text); }

/* Progress */
.progress-block {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.progress-item__label {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 5px;
}
.progress-bar {
  width: 100%;
  height: 8px;
  background: var(--rose-mid);
  border-radius: 50px;
  overflow: hidden;
}
.progress-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--rose) 0%, var(--rose-dark) 100%);
  border-radius: 50px;
  transition: width 1s ease;
}

/* ===========================
   REVIEWS
=========================== */
.reviews { display: flex; flex-direction: column; gap: 16px; }
.review {
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px 16px;
  border: 1px solid var(--rose-mid);
}
.review__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.review__avatar { flex-shrink: 0; width: 44px; height: 44px; }
.review__avatar svg { width: 44px; height: 44px; }
.review__meta { flex: 1; }
.review__meta strong { display: block; font-size: 14px; font-weight: 700; }
.review__meta span { font-size: 12px; color: var(--text-muted); }
.review__stars { flex-shrink: 0; }
.review__stars svg { width: 70px; height: 12px; }
.review__text {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted);
  font-style: italic;
}
.review__photo-wrap {
  margin-top: 12px;
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.review__photo-wrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* ===========================
   HOW TO ORDER / GUARANTEES
=========================== */
.order-steps {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 4px;
  margin-bottom: 28px;
}
.order-step {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.order-step__icon svg { width: 40px; height: 40px; }
.order-step__num {
  width: 20px;
  height: 20px;
  background: var(--rose-dark);
  color: var(--white);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.order-step strong { font-size: 11px; color: var(--text); }
.order-step p { font-size: 10px; color: var(--text-muted); line-height: 1.3; }
.order-step__arrow {
  padding-top: 18px;
  flex-shrink: 0;
  color: var(--rose-mid);
}
.order-step__arrow svg { width: 10px; height: 18px; }

.guarantees { display: flex; flex-direction: column; gap: 14px; }
.guarantee-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 16px;
}
.guarantee-item__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--rose-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.guarantee-item__icon svg { width: 20px; height: 20px; }
.guarantee-item strong { font-size: 14px; display: block; margin-bottom: 4px; }
.guarantee-item p { font-size: 12px; color: var(--text-muted); margin: 0; line-height: 1.4; }

/* ===========================
   LAST SECTION
=========================== */
.last-section {
  background: linear-gradient(160deg, var(--rose-light) 0%, var(--cream) 100%) !important;
  text-align: center;
}
.last-section__title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  margin-bottom: 6px;
}
.last-section__sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 22px;
}

.form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px 18px;
  box-shadow: var(--shadow);
  margin-bottom: 16px;
}
.form-card__title {
  font-size: 15px;
  text-align: center;
  margin-bottom: 16px;
  color: var(--text);
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
}

/* ===========================
   FOOTER
=========================== */
.site-footer {
  background: var(--text);
  color: rgba(255,255,255,.6);
  padding: 28px 20px;
  text-align: center;
}
.site-footer__brand {
  font-size: 12px;
  line-height: 1.5;
  margin-bottom: 10px;
  color: rgba(255,255,255,.75);
}
.site-footer__legal {
  font-size: 11px;
  margin-bottom: 6px;
}
.site-footer__link {
  display: inline-block;
  font-size: 12px;
  color: var(--rose-mid);
  text-decoration: underline;
  margin-bottom: 12px;
}
.site-footer__copy {
  font-size: 11px;
}
