* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #120d09;
  color: #fff8ea;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 10%, rgba(255, 187, 64, 0.18), transparent 28%),
    radial-gradient(circle at 85% 45%, rgba(255, 187, 64, 0.12), transparent 30%);
  z-index: -1;
}

.page {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  overflow: hidden;
  background: linear-gradient(180deg, #1a120b 0%, #120d09 42%, #1a120b 100%);
  min-height: 100vh;
}

.hero,
.section,
.section-soft,
.order {
  padding: 22px 16px;
}

.hero {
  padding-top: 18px;
}

.top-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 196, 74, 0.4);
  border-radius: 999px;
  color: #ffd36b;
  background: rgba(255, 196, 74, 0.08);
  font-size: 13px;
  font-weight: 700;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin: 14px 0 10px;
  font-size: 31px;
  line-height: 1.04;
  letter-spacing: -0.8px;
}

h2 {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.4px;
}

h3 {
  margin-bottom: 7px;
  font-size: 17px;
}

p {
  color: #eadbc2;
  font-size: 15px;
  line-height: 1.48;
}

.hero-subtitle {
  margin-bottom: 14px;
  font-size: 16px;
  color: #f3e3cb;
}

.hero-img,
.full-img {
  display: block;
  width: 100%;
  border-radius: 22px;
  object-fit: cover;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}

.hero-img {
  aspect-ratio: 1 / 1;
}

.full-img {
  margin-top: 14px;
}

.price-card {
  margin-top: 14px;
  padding: 14px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 200, 80, 0.18), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(255, 209, 108, 0.24);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.price-label {
  display: block;
  color: #d9c7a8;
  font-size: 12px;
  margin-bottom: 4px;
}

.prices,
.order-price {
  display: flex;
  align-items: baseline;
  gap: 9px;
  flex-wrap: wrap;
}

.old-price {
  color: #b5a086;
  font-size: 17px;
  text-decoration: line-through;
  font-weight: 700;
}

.new-price {
  color: #ffc545;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.8px;
}

.btn,
.order-form button,
.sticky-cta {
  border: none;
  text-decoration: none;
  text-align: center;
  color: #201404;
  font-weight: 900;
  background: linear-gradient(180deg, #ffd864 0%, #ffb21f 100%);
  box-shadow: 0 9px 22px rgba(255, 178, 31, 0.28);
}

.btn {
  white-space: nowrap;
  border-radius: 999px;
  padding: 13px 16px;
  font-size: 15px;
}

.quick-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 12px;
}

.quick-points span {
  padding: 10px 7px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffe2a0;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.section-soft {
  margin: 0 16px 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.benefits {
  padding: 20px 14px;
}

.benefit-list {
  display: grid;
  gap: 10px;
}

.benefit-list article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 10px 12px;
  align-items: start;
  padding: 12px;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.18);
}

.benefit-list .icon {
  grid-row: span 2;
  width: 44px;
  height: 44px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: rgba(255, 193, 60, 0.16);
  font-size: 23px;
}

.benefit-list p,
.review-card p {
  margin-bottom: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 14px;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 12px;
}

.chips span {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 196, 74, 0.14);
  color: #ffe0a1;
  font-size: 14px;
  font-weight: 700;
}

.note {
  padding: 12px;
  border-left: 3px solid #ffc545;
  border-radius: 14px;
  background: rgba(255, 197, 69, 0.08);
  color: #f7dfb6;
  font-size: 14px;
}

.specs {
  padding: 20px 14px;
}

.specs ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 9px;
}

.specs li {
  padding: 12px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.17);
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}

.specs span {
  color: #d8c6a7;
  font-size: 14px;
}

.specs b {
  color: #fff4dc;
  font-size: 14px;
  text-align: right;
}

.reviews {
  display: grid;
  gap: 10px;
}

.review-card {
  padding: 14px;
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.07);
}

.stars {
  color: #ffc545;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.review-card span {
  display: block;
  margin-top: 10px;
  color: #bda98a;
  font-size: 13px;
}

.order {
  padding-bottom: 86px;
}

.order-card {
  padding: 18px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 196, 74, 0.16), rgba(255, 255, 255, 0.07));
  border: 1px solid rgba(255, 210, 108, 0.22);
}

.order-price {
  margin: 10px 0 14px;
}

.order-form {
  display: grid;
  gap: 11px;
}

.order-form label span {
  display: block;
  margin: 0 0 6px 2px;
  color: #e8d6b8;
  font-size: 13px;
  font-weight: 700;
}

.order-form input {
  width: 100%;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.26);
  color: #fff;
  padding: 0 14px;
  font-size: 16px;
  outline: none;
}

.order-form input:focus {
  border-color: #ffc545;
  box-shadow: 0 0 0 3px rgba(255, 197, 69, 0.12);
}

.order-form button {
  height: 58px;
  border-radius: 18px;
  font-size: 17px;
  cursor: pointer;
}

.privacy {
  margin: 10px 0 0;
  color: #b7a68c;
  font-size: 12px;
}

.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 12px;
  z-index: 10;
  width: min(448px, calc(100% - 24px));
  transform: translateX(-50%);
  padding: 15px 20px;
  border-radius: 18px;
  font-size: 16px;
}

@media (min-width: 481px) {
  body {
    background: #080604;
  }

  .page {
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }
}
