:root {
  --bg: #2a0618;
  --bg-soft: #4c0f2d;
  --panel: rgba(255, 255, 255, 0.08);
  --panel-strong: rgba(255, 255, 255, 0.14);
  --text: #fff3f8;
  --muted: #f7cadc;
  --accent: #ff4ea1;
  --accent-strong: #ff277f;
  --gold: #ffd86f;
  --dark: #16020d;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 70px rgba(12, 1, 8, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 98, 173, 0.28), transparent 35%),
    radial-gradient(circle at right 10%, rgba(255, 216, 111, 0.16), transparent 18%),
    linear-gradient(180deg, #43051f 0%, #1b0411 45%, #12030b 100%);
}

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

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(35, 5, 20, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar__inner {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  font-size: 14px;
  color: var(--muted);
}

.hero {
  position: relative;
  overflow: clip;
  padding: 52px 0 30px;
}

.hero__glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(40px);
  pointer-events: none;
}

.hero__glow--one {
  top: 40px;
  right: -80px;
  width: 260px;
  height: 260px;
  background: rgba(255, 78, 161, 0.32);
}

.hero__glow--two {
  left: -40px;
  bottom: 0;
  width: 220px;
  height: 220px;
  background: rgba(255, 216, 111, 0.18);
}

.hero__grid,
.story__grid,
.delivery__grid,
.video-section__grid,
.order__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  color: var(--gold);
}

h1,
h2,
h3 {
  margin: 0 0 16px;
  line-height: 1.02;
  font-family: "Arial Narrow", "Trebuchet MS", sans-serif;
}

h1 {
  font-size: clamp(42px, 7vw, 82px);
  text-transform: uppercase;
}

h2 {
  font-size: clamp(32px, 5vw, 54px);
}

h3 {
  font-size: 24px;
}

.hero__lead,
.gallery-grid__text p,
.story__content p,
.video-section__grid p,
.delivery__content p,
.order__content p,
.review-form-card p {
  margin: 0;
  font-size: 18px;
  line-height: 1.65;
  color: var(--muted);
}

.hero__triggers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-bottom: 12px;
}

.hero__triggers span {
  padding: 7px 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  text-align: center;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
}

.hero__subtitle {
  margin-bottom: 8px;
  font-size: clamp(18px, 4.8vw, 24px);
  line-height: 1.15;
  text-align: center;
  color: #ffd7e7;
}

.hero__microcopy {
  margin: 0 0 12px;
  color: rgba(255, 243, 248, 0.8);
  font-size: 13px;
  line-height: 1.45;
  text-align: center;
}

.offer-card,
.countdown-card,
.hero-card,
.promo-banner,
.gift-card,
.feature-card,
.rating-box,
.review-card,
.review-form-card,
.order-form,
.story__checks,
.delivery__list {
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.offer-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 22px;
  margin: 28px 0 18px;
  border-radius: 28px;
}

.promo-banner {
  width: 100%;
  margin: 8px auto 10px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  background: #000;
  box-shadow:
    0 0 0 1px rgba(255, 45, 122, 0.18) inset,
    0 10px 24px rgba(0, 0, 0, 0.25);
  text-align: center;
}

.promo-banner__title {
  margin-bottom: 4px;
  color: #ff2d7a;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.promo-banner__title span {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff2d7a, #ff5aa1);
  color: #fff;
}

.promo-banner__text {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.promo-banner__text b {
  color: #ffeb3b;
}

.promo-banner__text em {
  color: #ff2d7a;
  font-style: normal;
}

.offer-card__label,
.countdown-card__title {
  font-size: 14px;
  color: var(--muted);
}

.offer-card__subtitle {
  margin-top: 6px;
  color: rgba(255, 243, 248, 0.72);
  font-size: 12px;
}

.offer-card__prices {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 8px 0 6px;
}

.price--old {
  text-decoration: line-through;
  color: rgba(255, 243, 248, 0.6);
}

.price--new {
  font-size: 40px;
  font-weight: 800;
  color: #fff;
}

.offer-card__discount {
  min-width: 92px;
  min-height: 92px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff72b9, #ff267e);
  color: #fff;
  font-size: 28px;
  font-weight: 900;
}

.offer-card__gift {
  color: var(--gold);
  font-weight: 700;
}

.offer-card--order {
  margin: 16px 0 10px;
}

.anon-strip {
  margin: 4px auto 10px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.2);
}

.video-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  padding: 12px 16px;
  width: fit-content;
  max-width: 100%;
  border-radius: 14px;
  background: #0f0e12;
  border: 2px solid #ff2d7a;
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 0 18px rgba(255, 45, 122, 0.35);
}

.gift-card {
  width: 100%;
  margin: 8px auto;
  padding: 12px 14px;
  background: #0f0f13;
  border: 1px solid #ff2d7a;
  border-radius: 12px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 45, 122, 0.18),
    0 10px 24px rgba(0, 0, 0, 0.25);
}

.gift-card__media {
  flex: 0 0 88px;
  width: 88px;
  height: 88px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: #141418;
}

.gift-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gift-card__content {
  flex: 1 1 auto;
  min-width: 0;
}

.gift-card__title {
  margin-bottom: 4px;
  color: #ff2d7a;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.1;
}

.gift-card__desc {
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  opacity: 0.95;
}

.gift-card__prices {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}

.gift-card__prices span {
  color: #bfbfbf;
  font-size: 20px;
  text-decoration: line-through;
}

.gift-card__prices strong {
  color: #ff2d7a;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.gift-card {
  display: flex;
  gap: 12px;
  align-items: center;
}

.badge,
.stock-pill {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-weight: 700;
}

.countdown-card {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  border-radius: 28px;
  padding: 20px 22px;
  margin-bottom: 22px;
}

.countdown {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.countdown__item {
  min-width: 78px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.24);
  text-align: center;
}

.countdown__item span {
  display: block;
  font-size: 32px;
  font-weight: 900;
}

.countdown__item small {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 18px;
  font-weight: 900;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: linear-gradient(135deg, #ff6fba, #ff277f);
  color: #fff;
  box-shadow: 0 18px 28px rgba(255, 39, 127, 0.32);
}

.btn--ghost {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

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

.hero__trust {
  display: flex;
  gap: 8px;
  justify-content: space-between;
  flex-wrap: nowrap;
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--muted);
}

.hero__trust li::before,
.story__checks div::before,
.delivery__list div::before,
.order__points div::before {
  content: "●";
  margin-right: 10px;
  color: var(--gold);
}

.hero__visual {
  display: grid;
  gap: 18px;
}

.hero-card {
  border-radius: 34px;
  overflow: hidden;
  position: relative;
}

.hero-card--main {
  transform: rotate(-3deg);
}

.hero-card--small {
  max-width: 320px;
  justify-self: end;
  transform: rotate(4deg);
}

.hero-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 14px;
  background: linear-gradient(180deg, rgba(20, 3, 11, 0.18) 0%, rgba(20, 3, 11, 0.06) 42%, rgba(20, 3, 11, 0.72) 100%);
}

.hero-card__sale {
  align-self: flex-start;
  display: inline-grid;
  gap: 2px;
  padding: 10px 12px;
  border-radius: 18px;
  background: linear-gradient(135deg, #ff5cae, #ff246f);
  color: #fff;
  font-size: 28px;
  font-weight: 900;
  line-height: 0.9;
  box-shadow: 0 16px 24px rgba(255, 39, 127, 0.28);
}

.hero-card__sale small {
  font-size: 11px;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.section {
  padding: 88px 0;
}

.section--tight {
  padding-top: 44px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.feature-card {
  padding: 24px;
  border-radius: 28px;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.gallery-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: start;
}

.gallery-grid__photos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.gallery-grid__photos img,
.story__media img,
.delivery__media img {
  border-radius: 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.gallery-note {
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  padding: 18px;
  display: grid;
  gap: 10px;
}

.gallery-note h3 {
  margin: 0;
  font-size: 22px;
}

.gallery-note p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.gallery-note ul {
  margin: 0;
  padding-left: 16px;
  color: var(--muted);
  display: grid;
  gap: 6px;
}

.story__checks,
.delivery__list,
.order__points {
  display: grid;
  gap: 12px;
  padding: 22px;
  margin-top: 22px;
  border-radius: 24px;
}

.video-frame {
  position: relative;
  max-width: 420px;
  width: 100%;
  margin-inline: auto;
  aspect-ratio: 3 / 4;
  border-radius: 28px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(255, 78, 161, 0.4);
  box-shadow: var(--shadow);
}

.video-frame iframe,
.video-frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.rating-box {
  border-radius: 30px;
  padding: 28px;
  margin-bottom: 26px;
}

.rating-box__score {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
  font-size: 28px;
}

.stars {
  color: var(--gold);
  letter-spacing: 0.12em;
}

.rating-box p {
  margin: 0 0 18px;
  color: var(--muted);
}

.rating-bars {
  display: grid;
  gap: 14px;
}

.rating-row {
  display: grid;
  grid-template-columns: 56px 1fr 34px;
  gap: 12px;
  align-items: center;
  color: var(--muted);
}

.rating-track {
  position: relative;
  height: 10px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
}

.rating-track b {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff84c3, #ff3d8f);
}

.rating-row small {
  text-align: right;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.review-card {
  padding: 22px;
  border-radius: 24px;
}

.review-card__top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.review-card__top span {
  color: var(--muted);
  font-size: 13px;
}

.review-card p {
  margin: 12px 0 0;
  line-height: 1.65;
  color: var(--muted);
}

.review-form-card {
  margin-top: 28px;
  padding: 26px;
  border-radius: 30px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 22px;
}

.review-form {
  display: grid;
  gap: 14px;
}

.review-form input,
.review-form select,
.review-form textarea,
.order-form input,
.order-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.review-form input::placeholder,
.review-form select,
.review-form textarea::placeholder,
.order-form input::placeholder,
.order-form textarea::placeholder {
  color: rgba(255, 243, 248, 0.56);
}

.review-form__notice {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 216, 111, 0.14);
  color: #ffe8a9;
}

.order-form {
  padding: 28px;
  border-radius: 30px;
  display: grid;
  gap: 16px;
}

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

.order-form span {
  color: var(--muted);
  font-size: 14px;
}

.order-form__hint {
  margin: 0;
  color: rgba(255, 243, 248, 0.66);
  font-size: 13px;
  line-height: 1.5;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 25;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(32, 4, 18, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.sticky-cta--hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
}

.sticky-cta strong,
.sticky-cta span {
  display: block;
}

.sticky-cta span {
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 980px) {
  .topbar__inner,
  .hero__grid,
  .story__grid,
  .delivery__grid,
  .video-section__grid,
  .order__grid,
  .gallery-grid,
  .review-form-card {
    grid-template-columns: 1fr;
  }

  .features,
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-card--small {
    justify-self: start;
  }
}

@media (max-width: 720px) {
  .topbar {
    position: static;
  }

  .topbar__inner {
    flex-direction: column;
    text-align: center;
    font-size: 13px;
  }

  .offer-card,
  .countdown-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .countdown {
    width: 100%;
    justify-content: space-between;
  }

  .countdown__item {
    min-width: 0;
    flex: 1;
  }

  .features,
  .reviews-grid,
  .gallery-grid__photos {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 68px 0;
  }

  .sticky-cta {
    left: 12px;
    right: 12px;
    bottom: 12px;
    justify-content: space-between;
  }

  .sticky-cta strong {
    font-size: 14px;
  }

  .sticky-cta .btn {
    min-height: 48px;
    padding-inline: 18px;
  }
}

/* Mobile-first landing tuning */
body {
  overflow-x: hidden;
}

.container {
  width: min(430px, calc(100% - 20px));
}

.hero {
  padding: 18px 0 20px;
}

.hero__grid,
.story__grid,
.delivery__grid,
.video-section__grid,
.order__grid,
.gallery-grid,
.review-form-card {
  grid-template-columns: 1fr;
  gap: 18px;
}

.topbar {
  position: static;
}

.topbar__inner {
  display: none;
}

h1 {
  font-size: clamp(22px, 7.6vw, 32px);
  line-height: 1;
  margin-bottom: 8px;
  text-align: center;
}

h2 {
  font-size: clamp(26px, 7vw, 34px);
  line-height: 1.02;
  margin-bottom: 12px;
}

h3 {
  font-size: 21px;
  margin-bottom: 10px;
}

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.16em;
  margin-bottom: 10px;
  text-align: center;
}

.hero__lead,
.gallery-grid__text p,
.story__content p,
.video-section__grid p,
.delivery__content p,
.order__content p,
.review-form-card p {
  font-size: 15px;
  line-height: 1.55;
}

.hero__content {
  display: flex;
  flex-direction: column;
}

.hero__triggers {
  margin-bottom: 10px;
}

.hero__triggers span {
  font-size: 9px;
  padding: 6px 4px;
}

.hero__subtitle {
  font-size: clamp(16px, 4.8vw, 20px);
  margin-bottom: 8px;
}

.hero__microcopy {
  font-size: 12px;
  margin-bottom: 10px;
}

.hero__visual {
  gap: 12px;
  margin-bottom: 4px;
}

.hero-card--main {
  transform: none;
  border-radius: 22px;
}

.hero__visual--inline {
  margin-bottom: 8px;
}

.hero-card--small {
  display: none;
}

.offer-card,
.countdown-card,
.promo-banner,
.gift-card,
.rating-box,
.review-form-card,
.order-form,
.story__checks,
.delivery__list,
.feature-card,
.review-card {
  border-radius: 22px;
}

.offer-card {
  gap: 14px;
  padding: 14px;
  margin: 10px 0 10px;
  flex-direction: row;
  align-items: center;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}

.offer-card__discount {
  min-width: 66px;
  min-height: 66px;
  font-size: 20px;
}

.promo-banner {
  margin: 2px auto 10px;
  padding: 11px 12px;
}

.promo-banner__title {
  font-size: 18px;
}

.promo-banner__text {
  font-size: 14px;
}

.price--new {
  font-size: 28px;
}

.price--old {
  font-size: 18px;
}

.offer-card__label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.offer-card__subtitle {
  font-size: 11px;
}

.offer-card__gift {
  font-size: 13px;
}

.gift-card {
  margin: 6px auto 10px;
  padding: 10px 12px;
}

.gift-card__media {
  flex-basis: 74px;
  width: 74px;
  height: 74px;
}

.gift-card__title {
  font-size: 18px;
}

.gift-card__desc {
  font-size: 12px;
}

.gift-card__prices span {
  font-size: 16px;
}

.gift-card__prices strong {
  font-size: 15px;
}

.hero__badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 10px;
}

.badge,
.stock-pill {
  width: 100%;
  text-align: center;
  font-size: 12px;
  padding: 9px 10px;
}

.countdown-card {
  padding: 14px;
  margin-bottom: 10px;
  flex-direction: column;
  align-items: stretch;
}

.countdown {
  gap: 8px;
}

.countdown__item {
  padding: 10px 8px;
  border-radius: 14px;
}

.countdown__item span {
  font-size: 22px;
}

.hero__actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-bottom: 10px;
}

.btn {
  width: 100%;
  min-height: 52px;
  border-radius: 16px;
}

.hero__actions .btn {
  min-height: 60px;
  font-size: 19px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__lead {
  font-size: 14px;
  text-align: center;
  margin-top: 6px;
}

.hero__trust {
  gap: 6px;
  font-size: 13px;
  margin-top: 8px;
}

.hero__trust li {
  flex: 1 1 0;
  text-align: center;
  padding: 8px 6px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.hero__trust li::before {
  content: none;
}

.section,
.section--tight {
  padding: 42px 0;
}

.section-heading {
  margin-bottom: 18px;
}

.countdown-card__title {
  text-align: center;
}

.countdown-card > .stock-pill {
  margin-top: 10px;
}

.section:first-of-type {
  padding-top: 30px;
}

@media (max-width: 380px) {
  .hero-card__sale {
    font-size: 24px;
  }

  .hero__triggers {
    grid-template-columns: 1fr;
  }

  .hero__badges {
    grid-template-columns: 1fr;
  }

  .hero__actions {
    grid-template-columns: 1fr;
  }

  .gift-card {
    align-items: flex-start;
  }

  .gift-card__media {
    flex-basis: 66px;
    width: 66px;
    height: 66px;
  }
}

.features,
.reviews-grid,
.gallery-grid__photos {
  grid-template-columns: 1fr;
  gap: 12px;
}

.feature-card,
.review-card {
  padding: 18px;
}

.story__checks,
.delivery__list,
.order__points {
  gap: 10px;
  padding: 18px;
  margin-top: 16px;
}

.video-frame {
  max-width: 100%;
  border-radius: 24px;
}

.rating-box {
  padding: 18px;
  margin-bottom: 18px;
}

.rating-box__score {
  gap: 10px;
  font-size: 20px;
  flex-wrap: wrap;
}

.stars {
  letter-spacing: 0.08em;
}

.rating-box p {
  margin-bottom: 14px;
  font-size: 14px;
}

.rating-row {
  grid-template-columns: 42px 1fr 28px;
  gap: 8px;
  font-size: 13px;
}

.rating-track {
  height: 8px;
}

.review-card__top {
  flex-direction: row;
  align-items: flex-start;
}

.review-card__top span {
  font-size: 11px;
}

.review-form-card,
.order-form {
  padding: 18px;
}

.review-form,
.order-form {
  gap: 12px;
}

.review-form input,
.review-form select,
.review-form textarea,
.order-form input,
.order-form textarea {
  padding: 13px 14px;
  border-radius: 14px;
  font-size: 15px;
}

.sticky-cta {
  left: 10px;
  right: 10px;
  bottom: 10px;
  border-radius: 18px;
  padding: 12px 12px 12px 14px;
  gap: 12px;
  justify-content: space-between;
}

.sticky-cta strong {
  font-size: 13px;
}

.sticky-cta span {
  font-size: 11px;
}

.sticky-cta .btn {
  width: auto;
  min-height: 44px;
  padding-inline: 16px;
  flex-shrink: 0;
}
