/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:    #fdf6f0;
  --blush:    #f5e6da;
  --rose:     #e8c9b6;
  --terracotta: #c27a5f;
  --deep:     #6b3d2a;
  --text:     #3d2216;
  --muted:    #8a6655;
  --white:    #ffffff;
  --radius:   16px;
  --radius-sm: 10px;
  --shadow:   0 4px 24px rgba(160, 90, 60, 0.10);
  --shadow-md:0 8px 40px rgba(160, 90, 60, 0.14);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--cream);
  color: var(--text);
  font-size: 15px;
  line-height: 1.65;
  max-width: 480px;
  margin: 0 auto;
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

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

/* ===== TYPOGRAPHY ===== */
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--deep);
  text-align: center;
  margin-bottom: 24px;
  letter-spacing: 0.01em;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 28px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: transform 0.18s, box-shadow 0.18s, opacity 0.18s;
  letter-spacing: 0.02em;
}

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn--main {
  background: linear-gradient(135deg, var(--terracotta), var(--deep));
  color: var(--white);
  box-shadow: 0 6px 24px rgba(194, 122, 95, 0.42);
  width: 100%;
  max-width: 380px;
}

.btn--main:active { transform: scale(0.97); opacity: 0.92; }

.btn--outline {
  background: transparent;
  border: 2px solid var(--terracotta);
  color: var(--terracotta);
  display: flex;
  margin: 0 auto;
  max-width: 280px;
}

.btn--full { max-width: 100%; width: 100%; }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(160deg, var(--white) 0%, var(--blush) 100%);
  padding: 32px 20px 36px;
  text-align: center;
  position: relative;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--rose);
  color: var(--deep);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero__badge svg { width: 14px; height: 14px; }

.hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 700;
  color: var(--deep);
  line-height: 1.15;
  margin-bottom: 8px;
}

.hero__sub {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px;
  font-weight: 500;
}

.hero__img-wrap {
  position: relative;
  margin: 0 -4px 24px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.hero__img {
  width: 100%;
  height: auto;
  display: block;
}

.hero__stock-badge {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(107, 61, 42, 0.88);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 50px;
  white-space: nowrap;
  backdrop-filter: blur(4px);
}

.hero__stock-badge svg { width: 14px; height: 14px; }

.hero__price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.hero__price-old {
  color: var(--muted);
  font-size: 14px;
  text-decoration: line-through;
}

.hero__discount {
  background: var(--terracotta);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 50px;
}

.hero__price-new {
  font-family: 'Nunito', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--deep);
}

/* ===== TIMER ===== */
.timer {
  margin-bottom: 22px;
}

.timer__label {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 8px;
  font-weight: 600;
}

.timer__blocks {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.timer__block {
  background: var(--white);
  border: 1.5px solid var(--rose);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  min-width: 64px;
  text-align: center;
  box-shadow: var(--shadow);
}

.timer__block span {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--deep);
  line-height: 1;
}

.timer__block small {
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  display: block;
  margin-top: 3px;
}

.timer__sep {
  font-size: 24px;
  font-weight: 700;
  color: var(--terracotta);
  margin-top: -8px;
}

/* ===== ADVANTAGES ===== */
.advantages {
  padding: 44px 20px;
  background: var(--white);
}

.advantages__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.advantage-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 18px 14px;
  text-align: center;
}

.advantage-card__icon {
  width: 44px;
  height: 44px;
  background: var(--blush);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}

.advantage-card__icon svg {
  width: 22px;
  height: 22px;
  color: var(--terracotta);
}

.advantage-card h3 {
  font-size: 13px;
  font-weight: 700;
  color: var(--deep);
  margin-bottom: 5px;
  line-height: 1.3;
}

.advantage-card p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

/* ===== THEMES ===== */
.themes {
  padding: 44px 20px;
  background: var(--cream);
}

.themes__grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.theme-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.theme-card__img {
  width: 100%;
  overflow: hidden;
  background: var(--blush);
}

.theme-card__img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.theme-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--deep);
  margin: 14px 16px 4px;
  line-height: 1.3;
}

.theme-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0 16px 16px;
}

/* ===== GIFT SECTION ===== */
.gift {
  padding: 44px 20px;
  background: linear-gradient(160deg, var(--white) 0%, var(--blush) 100%);
}

.gift__content {
  text-align: center;
}

.gift__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--terracotta);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  box-shadow: 0 4px 16px rgba(194, 122, 95, 0.3);
}

.gift__badge svg {
  width: 18px;
  height: 18px;
}

.gift__text {
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 24px;
  padding: 0 10px;
}

.gift__img {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-md);
  margin-bottom: 20px;
}

.gift__img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.gift__note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--deep);
  font-size: 12px;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 50px;
  border: 1.5px solid var(--rose);
  line-height: 1.4;
}

.gift__note svg {
  width: 18px;
  height: 18px;
  color: var(--terracotta);
  flex-shrink: 0;
}

/* ===== SPECS ===== */
.specs {
  padding: 44px 20px;
  background: var(--white);
}

.specs__list {
  background: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1.5px solid var(--blush);
}

.specs__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid var(--blush);
  gap: 10px;
}

.specs__row:last-child { border-bottom: none; }

.specs__label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
  min-width: 120px;
}

.specs__label svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--terracotta);
}

.specs__value {
  font-size: 13px;
  color: var(--text);
  font-weight: 700;
  text-align: right;
  flex: 1;
}

/* ===== REVIEWS ===== */
.reviews {
  padding: 44px 20px;
  background: var(--cream);
}

.reviews__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}

.review-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.review-card__avatar {
  width: 44px;
  height: 44px;
  background: var(--blush);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-card__avatar svg {
  width: 24px;
  height: 24px;
  color: var(--terracotta);
}

.review-card__head strong {
  display: block;
  font-size: 14px;
  color: var(--deep);
  font-weight: 700;
}

.stars {
  color: #e8a04a;
  font-size: 13px;
  letter-spacing: 1px;
}

.review-card p {
  font-size: 13px;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 10px;
}

.review-card__tag {
  display: inline-block;
  background: var(--blush);
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.review-card__photo {
  margin: 14px 0 10px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--blush);
}

.review-card__photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.review-card--featured {
  border: 2px solid var(--rose);
  background: linear-gradient(135deg, var(--white) 0%, var(--blush) 100%);
}

/* ===== HOW TO ORDER ===== */
.how {
  padding: 44px 20px;
  background: var(--white);
}

.how__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 32px;
  position: relative;
}

.how__steps::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--blush);
  z-index: 0;
}

.how__step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 0 0 24px;
  position: relative;
  z-index: 1;
}

.how__step:last-child { padding-bottom: 0; }

.how__step-num {
  width: 28px;
  height: 28px;
  background: var(--terracotta);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 8px;
  position: relative;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(194, 122, 95, 0.3);
}

.how__step-icon {
  display: none;
}

.how__step h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--deep);
  margin-bottom: 3px;
  margin-top: 4px;
}

.how__step p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* ===== GUARANTEES ===== */
.guarantees {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.guarantee {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  border-left: 3px solid var(--terracotta);
}

.guarantee__icon {
  width: 40px;
  height: 40px;
  background: var(--blush);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.guarantee__icon svg {
  width: 20px;
  height: 20px;
  color: var(--terracotta);
}

.guarantee strong {
  display: block;
  font-size: 13px;
  color: var(--deep);
  font-weight: 700;
  margin-bottom: 2px;
}

.guarantee p {
  font-size: 12px;
  color: var(--muted);
}

/* ===== ORDER SECTION ===== */
.order {
  padding: 44px 20px;
  background: linear-gradient(160deg, var(--blush) 0%, var(--cream) 100%);
}

.order__inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.order__product {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.order__product img {
  width: 100%;
  height: auto;
  display: block;
}

.order__content {
  text-align: center;
}

.order__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--deep);
  margin-bottom: 4px;
}

.order__sub {
  font-size: 14px;
  color: var(--terracotta);
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.order__price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.order__price-old {
  font-size: 14px;
  color: var(--muted);
  text-decoration: line-through;
}

.order__price-new {
  font-family: 'Nunito', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--deep);
}

/* ===== FORM ===== */
form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
  text-align: left;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--deep);
  letter-spacing: 0.02em;
}

.form-group label svg {
  width: 15px;
  height: 15px;
  color: var(--terracotta);
  flex-shrink: 0;
}

.form-group input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--rose);
  border-radius: var(--radius-sm);
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color 0.18s, box-shadow 0.18s;
  -webkit-appearance: none;
}

.form-group input:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(194, 122, 95, 0.15);
}

.form-group input::placeholder {
  color: #c4a898;
  font-size: 14px;
}

.order__stock {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--deep);
  background: var(--white);
  border: 1.5px solid var(--rose);
  border-radius: 50px;
  padding: 8px 16px;
  text-align: center;
}

.order__stock svg {
  width: 16px;
  height: 16px;
  color: var(--terracotta);
  flex-shrink: 0;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--deep);
  color: rgba(255,255,255,0.65);
  text-align: center;
  padding: 24px 20px;
  font-size: 12px;
  line-height: 1.7;
}

.footer a {
  color: var(--rose);
  text-decoration: underline;
}

.footer p + p {
  margin-top: 6px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero, .advantages, .themes, .gift, .specs, .reviews, .how, .order {
  animation: fadeInUp 0.5s ease both;
}

/* pulse on CTA button */
@keyframes pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(194, 122, 95, 0.42); }
  50%       { box-shadow: 0 6px 36px rgba(194, 122, 95, 0.66); }
}

.btn--main { animation: pulse 2.5s infinite; }
