:root {
  --bg: #f7f8ff;
  --card: rgba(255, 255, 255, 0.78);
  --card2: rgba(255, 255, 255, 0.92);
  --text: rgba(11, 15, 30, 0.92);
  --muted: rgba(11, 15, 30, 0.70);
  --muted2: rgba(11, 15, 30, 0.52);
  --border: rgba(11, 15, 30, 0.10);
  --shadow: 0 22px 55px rgba(18, 22, 40, 0.16);
  --accent: #6d28d9;
  --accent2: #0891b2;
  --good: #22c55e;
  --bad: #fb7185;
  --ring: rgba(109, 40, 217, 0.22);
  --radius: 16px;
  --radius2: 22px;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-padding-top: min(120px, 22vh);
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: "Hind Vadodara", system-ui, -apple-system, Segoe UI, Roboto,
    Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(900px 520px at 15% 0%, rgba(109, 40, 217, 0.14), transparent 55%),
    radial-gradient(900px 520px at 85% 8%, rgba(8, 145, 178, 0.14), transparent 55%),
    linear-gradient(180deg, #fbfbff 0%, #f7f8ff 55%, #f2f6ff 100%);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

a {
  color: inherit;
}

.bg-glow {
  position: fixed;
  inset: -240px;
  pointer-events: none;
  filter: blur(46px);
  opacity: 0.35;
  background:
    radial-gradient(closest-side at 25% 18%, rgba(109, 40, 217, 0.22), transparent 62%),
    radial-gradient(closest-side at 75% 22%, rgba(8, 145, 178, 0.22), transparent 62%),
    radial-gradient(closest-side at 50% 72%, rgba(34, 197, 94, 0.10), transparent 62%);
}

.container {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
  padding-left: env(safe-area-inset-left, 0px);
  padding-right: env(safe-area-inset-right, 0px);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
  background: rgba(248, 249, 255, 0.72);
  border-bottom: 1px solid var(--border);
  padding-top: env(safe-area-inset-top, 0px);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 16px;
}

.topbar__pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.7);
  color: var(--muted);
  font-size: 14px;
}

.topbar__text--mobile {
  display: none;
  line-height: 1.4;
}

.topbar__save {
  color: #15803d;
  font-weight: 900;
  white-space: nowrap;
}

.topbar__cod {
  color: rgba(11, 15, 30, 0.88);
  font-weight: 900;
  white-space: nowrap;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  box-shadow: 0 0 0 6px rgba(109, 40, 217, 0.10);
}

.topbar__link {
  font-weight: 700;
  text-decoration: none;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.78);
}

.hero {
  padding: 20px 0 28px;
}

.hero__stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 520px;
  margin: 0 auto;
}

.hero__body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-shot {
  border-radius: var(--radius2);
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
  line-height: 0;
}

.hero-shot img {
  width: 100%;
  height: auto;
  display: block;
}

.lead--compact {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
}

.brand-mark {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0.06em;
}

.brand-mark__name {
  font-size: clamp(28px, 7vw, 40px);
  font-weight: 800;
  color: rgba(11, 15, 30, 0.92);
  line-height: 1.1;
}

.brand-mark__sub {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: rgba(11, 15, 30, 0.48);
  text-transform: uppercase;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(124, 58, 237, 0.18),
    rgba(6, 182, 212, 0.12)
  );
  border: 1px solid var(--border);
  font-weight: 700;
  font-size: 14px;
}

.badge--soft {
  font-weight: 600;
  background: rgba(255, 255, 255, 0.8);
}

h1 {
  font-size: clamp(26px, 5.2vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 8px 0 12px;
}

.accent {
  background: linear-gradient(90deg, #a78bfa, #22d3ee);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.sub {
  display: block;
  font-size: clamp(16px, 4.2vw, 22px);
  font-weight: 600;
  color: var(--muted);
  margin-top: 10px;
}

.lead {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.lead--sm {
  font-size: 16px;
}

.tagline-en {
  margin: -6px 0 12px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: rgba(11, 15, 30, 0.55);
  text-transform: uppercase;
}

.price-breakdown {
  margin: 0;
  padding: 12px 14px;
  list-style: none;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.9);
  display: grid;
  gap: 8px;
}

.price-breakdown__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
}

.price-breakdown__was {
  text-decoration: line-through;
  color: var(--muted2);
}

.price-breakdown__row--combo {
  padding-top: 8px;
  margin-top: 2px;
  border-top: 1px dashed rgba(109, 40, 217, 0.2);
  font-size: 15px;
  color: rgba(11, 15, 30, 0.9);
}

.price-breakdown__row--combo strong {
  font-size: 20px;
  font-weight: 900;
  color: var(--accent);
}

.price-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.refund-note {
  margin: 0;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(249, 115, 22, 0.28);
  background: linear-gradient(180deg, #fff7ed 0%, #ffedd5 100%);
  color: rgba(124, 45, 18, 0.82);
  font-size: 13px;
  line-height: 1.5;
}

.refund-note strong {
  color: rgba(154, 52, 18, 0.95);
}

.refund-note__link,
.note--refund a {
  color: #c2410c;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.note--refund .note__title a {
  color: rgba(154, 52, 18, 0.95);
  text-decoration: none;
}

.note--refund .note__title a:hover {
  text-decoration: underline;
}

.refund-note__ic {
  display: inline-block;
  margin-right: 4px;
  font-weight: 900;
  color: #ea580c;
}

.note--refund {
  border-color: rgba(249, 115, 22, 0.25);
  background: linear-gradient(180deg, #fff7ed 0%, #ffedd5 100%);
}

.note--refund .note__title {
  color: rgba(154, 52, 18, 0.95);
}

.note--refund .note__body {
  color: rgba(124, 45, 18, 0.78);
}

.policy-page {
  padding: 24px 0 48px;
}

.policy-page__inner {
  max-width: 680px;
}

.policy-page h1 {
  margin: 12px 0 10px;
  font-size: clamp(26px, 6vw, 36px);
  line-height: 1.15;
}

.policy-page__lead {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.policy-highlight {
  margin-bottom: 24px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(249, 115, 22, 0.28);
  background: linear-gradient(180deg, #fff7ed 0%, #ffedd5 100%);
  color: rgba(124, 45, 18, 0.88);
  line-height: 1.55;
}

.policy-highlight p {
  margin: 0;
}

.policy-block {
  margin-bottom: 22px;
}

.policy-block h2 {
  margin: 0 0 10px;
  font-size: 20px;
}

.policy-block p {
  margin: 0 0 10px;
  color: var(--muted);
  line-height: 1.55;
}

.policy-list,
.policy-steps {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.6;
}

.policy-list li,
.policy-steps li {
  margin: 8px 0;
}

.policy-block--muted {
  padding: 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.75);
}

.policy-page__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.brand-mark--center {
  text-align: center;
}

.footer__copy a {
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
}

.footer__copy a:hover {
  text-decoration: underline;
}

.bullets {
  margin: 0 0 18px;
  padding-left: 18px;
  color: var(--muted);
}

.bullets li {
  margin: 8px 0;
}

.price-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 16px 0 10px;
}

.price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px;
}

.price__now {
  font-size: 34px;
  font-weight: 800;
}

.price__was {
  color: var(--muted2);
  text-decoration: line-through;
  font-weight: 700;
}

.price__badge {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 8px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(134, 239, 172, 0.55);
  background: linear-gradient(180deg, #ecfdf5 0%, #d1fae5 100%);
  color: rgba(11, 15, 30, 0.9);
  box-shadow: 0 2px 8px rgba(34, 197, 94, 0.12);
}

.price__badge-save {
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(22, 163, 74, 0.14);
  color: #15803d;
  font-weight: 900;
  white-space: nowrap;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-row .btn {
  min-height: 48px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 14px;
  padding: 12px 14px;
  text-decoration: none;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.82);
  color: rgba(11, 15, 30, 0.92);
  font-weight: 800;
  cursor: pointer;
  transition: transform 120ms ease, background 120ms ease, border 120ms ease;
  user-select: none;
}

.btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.92);
}

.btn--primary {
  border: 1px solid rgba(109, 40, 217, 0.32);
  background: linear-gradient(90deg, rgba(109, 40, 217, 0.96), rgba(8, 145, 178, 0.86));
  color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 16px 36px rgba(109, 40, 217, 0.22);
}

.btn--primary:hover {
  background: linear-gradient(90deg, rgba(109, 40, 217, 0.99), rgba(8, 145, 178, 0.92));
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.65);
}

.btn--full {
  width: 100%;
  padding: 14px 14px;
  border-radius: 16px;
}

.micro {
  margin: 10px 0 0;
  color: var(--muted2);
  font-size: 13px;
  line-height: 1.55;
}

.micro--center {
  text-align: center;
}

.card__title {
  font-weight: 900;
  font-size: 16px;
  margin-bottom: 12px;
}

.card__subtitle {
  margin: -8px 0 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: rgba(11, 15, 30, 0.55);
  text-transform: uppercase;
}

.bundle {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.bottle {
  padding: 14px 12px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.78);
  font-weight: 800;
  text-align: center;
}

.bottle--dim {
  background: rgba(255, 255, 255, 0.65);
  color: rgba(11, 15, 30, 0.82);
}

.card__meta {
  margin: 14px 0 10px;
  color: var(--muted);
}

.mini-prices {
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.7);
  padding: 10px 12px;
  margin: 12px 0 8px;
}

.mini-prices__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding: 4px 0;
  color: rgba(11, 15, 30, 0.9);
  font-weight: 800;
  font-size: 14px;
}

.mini-prices__muted {
  color: var(--muted);
  font-weight: 700;
}

.mini-save {
  color: rgba(22, 101, 52, 0.95);
  font-weight: 900;
}

.strike {
  text-decoration: line-through;
  color: var(--muted2);
  font-weight: 700;
}

.quick-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.quick-block__label {
  margin: 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(11, 15, 30, 0.45);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
}

.step {
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  padding: 10px 6px;
  text-align: center;
  min-height: 0;
  aspect-ratio: 1 / 1;
  max-height: 96px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 4px 14px rgba(18, 22, 40, 0.06);
}

.step__n {
  width: 26px;
  height: 26px;
  margin: 0;
  flex-shrink: 0;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 13px;
  background: rgba(109, 40, 217, 0.10);
  border: 1px solid rgba(109, 40, 217, 0.22);
}

.step__t {
  font-size: 12px;
  color: rgba(11, 15, 30, 0.78);
  font-weight: 800;
  line-height: 1.2;
}

.surface__title {
  font-weight: 800;
  margin-top: 10px;
  margin-bottom: 10px;
}

.chips {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.chip {
  font-size: 12px;
  padding: 0 6px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  color: rgba(11, 15, 30, 0.82);
  font-weight: 800;
  text-align: center;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(18, 22, 40, 0.06);
}

.brand-line {
  padding: 18px 0 6px;
}

.brand-line__inner {
  text-align: center;
  border-radius: var(--radius2);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(236, 253, 245, 0.75));
  padding: 16px 14px;
  box-shadow: 0 10px 30px rgba(18, 22, 40, 0.08);
}

.brand-line__gu {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 800;
  color: rgba(11, 15, 30, 0.88);
}

.brand-line__en {
  margin: 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: rgba(11, 15, 30, 0.55);
}

.pillars {
  padding: 10px 0 8px;
}

.pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.pillar {
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.92);
  padding: 12px 8px;
  text-align: center;
  font-size: 12px;
  font-weight: 800;
  color: rgba(11, 15, 30, 0.82);
  line-height: 1.25;
  min-height: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.pillar__ic {
  display: block;
  font-size: 18px;
  margin-bottom: 4px;
}

.trust {
  padding: 18px 0 10px;
}

.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.stat {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.92);
  padding: 14px 12px;
  min-height: 76px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stat__n {
  font-weight: 900;
  font-size: 18px;
}

.stat__t {
  color: var(--muted);
  font-size: 13px;
  margin-top: 4px;
}

.order {
  padding: 28px 0 36px;
}

.order__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: start;
}

.order__form-stack {
  display: grid;
  gap: 10px;
  align-content: start;
}

.order__form-stack .perk-card--deal {
  margin: 0;
}

.order__side-title {
  margin: 0 0 6px;
  font-size: clamp(20px, 4.5vw, 28px);
}

.order__side-lead {
  margin: 0 0 10px;
}

.media {
  padding: 20px 0 10px;
}

.media__head {
  margin-bottom: 12px;
}

.media__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 14px;
  align-items: start;
}

.video-card {
  border-radius: var(--radius2);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.78);
  padding: 14px;
}

.video-card__title {
  font-weight: 900;
  margin-bottom: 10px;
}

.video {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(11, 15, 30, 0.04);
  display: block;
  aspect-ratio: 16 / 9;
}

.photos {
  border-radius: var(--radius2);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.78);
  padding: 14px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.photos--single {
  grid-template-columns: 1fr;
}

.photos--single .photo img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
  height: auto;
}

.photo {
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(11, 15, 30, 0.04);
  overflow: hidden;
}

.photos .micro {
  grid-column: 1 / -1;
  margin-top: 4px;
}

.photo img {
  width: 100%;
  height: auto;
  display: block;
}

.videos-hub,
.reels {
  padding: 24px 0 12px;
}

.videos-block + .videos-block {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.videos-empty {
  margin: 0;
  padding: 20px 14px;
  text-align: center;
  color: var(--muted);
  border-radius: 14px;
  border: 1px dashed var(--border);
  background: rgba(255, 255, 255, 0.7);
}

.reels__head {
  margin-bottom: 12px;
}

.reels__head h2 {
  margin: 0 0 6px;
  font-size: clamp(22px, 5vw, 32px);
}

.reels__hint {
  margin: 12px 0 0;
  text-align: center;
}

.reels-carousel__viewport {
  overflow: hidden;
  border-radius: var(--radius2);
}

.reels-carousel__track {
  display: flex;
  transition: transform 0.35s ease;
  will-change: transform;
}

.reels-slide {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  min-width: 0;
}

.reel-card {
  position: relative;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #fff;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(18, 22, 40, 0.08);
  aspect-ratio: 9 / 16;
}

.reel-card__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: rgba(11, 15, 30, 0.04);
}

.reel-card__play {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
  border: 0;
  cursor: pointer;
  background: transparent;
}

.reel-card__play::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 24px rgba(18, 22, 40, 0.2);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%236d28d9' d='M8 5v14l11-7z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 54% center;
  background-size: 22px 22px;
}

.reel-card.is-playing .reel-card__play {
  opacity: 0;
  pointer-events: none;
}

.reels-carousel__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 14px;
}

.reels-carousel__btn {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--accent);
  font-size: 28px;
  line-height: 1;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(18, 22, 40, 0.08);
}

.reels-carousel__btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.reels-carousel__dots {
  display: flex;
  gap: 8px;
}

.reels-carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: rgba(109, 40, 217, 0.2);
  cursor: pointer;
}

.reels-carousel__dot.is-active {
  width: 22px;
  background: var(--accent);
}

.reviews {
  padding: 30px 0 10px;
}

.reviews__head {
  margin-bottom: 12px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.review {
  border-radius: var(--radius2);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.78);
  padding: 14px;
}

.review__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.stars {
  letter-spacing: 0.08em;
  color: rgba(253, 230, 138, 0.98);
  font-weight: 900;
  font-size: 13px;
}

.review__name {
  color: var(--muted);
  font-weight: 800;
  font-size: 13px;
}

.review__title {
  font-weight: 900;
  margin-bottom: 6px;
}

.review__text {
  margin: 0;
  color: rgba(11, 15, 30, 0.72);
  line-height: 1.55;
}

.order-perks {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.order-review-videos {
  border-radius: 16px;
  border: 1px solid rgba(109, 40, 217, 0.14);
  background: rgba(255, 255, 255, 0.92);
  padding: 12px;
  box-shadow: 0 6px 20px rgba(18, 22, 40, 0.06);
}

.order-review-videos__title {
  margin: 0 0 2px;
  font-size: 14px;
  font-weight: 900;
}

.order-review-videos__sub {
  margin: 0 0 10px;
  font-size: 12px;
  color: var(--muted);
}

.order-review-videos .reels-carousel__btn {
  width: 38px;
  height: 38px;
  font-size: 22px;
}

.order-review-videos .reels-slide {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.order-review-videos .reel-card {
  max-height: 150px;
  aspect-ratio: 9 / 14;
}

.order-review-videos .reels-carousel__nav--single {
  display: none;
}

.order-review-videos .reel-card__play::after {
  width: 32px;
  height: 32px;
  background-size: 16px 16px;
}

.perk-card {
  display: block;
  border-radius: 16px;
  padding: 14px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 8px 24px rgba(18, 22, 40, 0.06);
}

.perk-card--deal {
  border: 1px solid rgba(109, 40, 217, 0.18);
  background: linear-gradient(135deg, #faf5ff 0%, #ffffff 55%, #f0f9ff 100%);
}

.perk-card--refund {
  border: 1px solid rgba(249, 115, 22, 0.28);
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
  transition: transform 140ms ease, box-shadow 140ms ease;
}

.perk-card--refund:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(249, 115, 22, 0.14);
}

.perk-card__top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.perk-card__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 18px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--border);
}

.perk-card--refund .perk-card__icon {
  color: #ea580c;
  font-weight: 900;
  font-size: 20px;
  border-color: rgba(249, 115, 22, 0.25);
}

.perk-card__head {
  flex: 1;
  min-width: 0;
}

.perk-card__label {
  margin: 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(11, 15, 30, 0.45);
}

.perk-card__badge {
  margin: 2px 0 0;
  font-size: 16px;
  font-weight: 900;
  color: var(--accent);
}

.perk-card__sub {
  margin: 2px 0 0;
  font-size: 13px;
  font-weight: 800;
  color: rgba(154, 52, 18, 0.9);
}

.perk-card__price {
  margin: 0;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  color: rgba(11, 15, 30, 0.92);
}

.perk-card__arrow {
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  color: #ea580c;
}

.perk-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.perk-card__tags li {
  font-size: 12px;
  font-weight: 800;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(109, 40, 217, 0.14);
  color: rgba(11, 15, 30, 0.75);
}

.perk-card__text {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(124, 45, 18, 0.82);
}

.perk-card__text strong {
  color: rgba(154, 52, 18, 0.95);
}

.form-card {
  border-radius: var(--radius2);
  border: 1px solid rgba(109, 40, 217, 0.12);
  background: linear-gradient(180deg, #ffffff 0%, #f8f9ff 100%);
  box-shadow: 0 16px 40px rgba(18, 22, 40, 0.1);
  padding: 0;
  overflow: hidden;
}

.form-card__head {
  padding: 12px 14px 10px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(135deg, #faf5ff 0%, #f0f9ff 100%);
}

.form-card__title {
  margin: 0 0 2px;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
}

.form-card__sub {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

.order-form {
  display: grid;
  gap: 10px;
  padding: 12px 14px 14px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.field--full {
  grid-column: 1 / -1;
}

.field__label,
.field label {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 800;
  margin-bottom: 5px;
  font-size: 13px;
  color: rgba(11, 15, 30, 0.88);
}

.field__ic {
  font-size: 15px;
  line-height: 1;
}

.field {
  min-width: 0;
}

input,
textarea {
  width: 100%;
  border-radius: 10px;
  border: 1.5px solid rgba(11, 15, 30, 0.12);
  background: #fff;
  color: var(--text);
  padding: 11px 12px;
  font-size: 16px;
  font-family: inherit;
  outline: none;
  transition: box-shadow 140ms ease, border-color 140ms ease;
  -webkit-appearance: none;
  appearance: none;
}

textarea {
  resize: vertical;
  min-height: 72px;
  line-height: 1.4;
}

input::placeholder,
textarea::placeholder {
  color: rgba(11, 15, 30, 0.38);
}

input:focus,
textarea:focus {
  border-color: rgba(109, 40, 217, 0.5);
  box-shadow: 0 0 0 4px var(--ring);
}

.field:has(.error:not(:empty)) input,
.field:has(.error:not(:empty)) textarea {
  border-color: rgba(239, 68, 68, 0.55);
}

.error {
  margin: 4px 0 0;
  min-height: 0;
  color: #dc2626;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
}

.error:not(:empty) {
  min-height: 16px;
}

.order-summary,
.form-summary {
  border-radius: 12px;
  border: 1px solid rgba(109, 40, 217, 0.14);
  background: linear-gradient(180deg, #faf5ff 0%, #ffffff 100%);
  padding: 8px 12px;
}

.order-summary__title,
.form-summary__head {
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(11, 15, 30, 0.45);
}

.order-summary__row,
.form-summary__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 3px 0;
  font-size: 13px;
  color: var(--muted);
  font-weight: 700;
}

.order-summary__row--main,
.form-summary__row--main {
  padding: 2px 0 6px;
  margin-bottom: 0;
  border-bottom: 1px dashed rgba(109, 40, 217, 0.18);
  font-size: 14px;
  color: rgba(11, 15, 30, 0.9);
}

.order-summary__row--main strong,
.form-summary__row--main strong {
  font-size: 20px;
  font-weight: 900;
  color: var(--accent);
}

.order-summary__row--save {
  margin-top: 0;
  padding-top: 4px;
  border-top: 0;
  color: #16a34a;
  font-weight: 800;
  font-size: 12px;
}

.order-summary__ok,
.form-summary__ok {
  color: #16a34a;
  font-weight: 800;
}

.btn--order {
  min-height: 46px;
  font-size: 16px;
  letter-spacing: 0.01em;
  margin-top: 2px;
}

.form-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 8px;
  margin-top: 0;
}

.form-trust span,
.form-trust a {
  font-size: 11px;
  font-weight: 800;
  color: var(--muted);
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.form-trust a {
  color: #c2410c;
  border-color: rgba(249, 115, 22, 0.28);
  background: linear-gradient(180deg, #fff7ed 0%, #ffedd5 100%);
}

.form-trust a:hover {
  text-decoration: underline;
}

.success {
  margin: 18px;
  border-radius: 16px;
  border: 1px solid rgba(34, 197, 94, 0.35);
  background: linear-gradient(180deg, #ecfdf5 0%, #d1fae5 100%);
  padding: 16px;
}

.success__title {
  font-weight: 900;
  margin-bottom: 6px;
  color: #166534;
}

.success__body {
  margin: 0;
  color: rgba(21, 83, 45, 0.88);
  line-height: 1.55;
}

.success__actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.footer {
  padding: 28px 0 36px;
}

.footer-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 18px;
  border-radius: var(--radius2);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 30px rgba(18, 22, 40, 0.06);
}

.footer__brand {
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 0.04em;
}

.footer__tagline {
  margin: 4px 0 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: rgba(11, 15, 30, 0.48);
  text-transform: uppercase;
}

.footer-panel__tag {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
}

.footer-panel__head {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(11, 15, 30, 0.45);
}

.footer-panel__list {
  margin: 0 0 12px;
  padding: 0;
  list-style: none;
}

.footer-panel__list li {
  margin: 6px 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.4;
}

.footer-panel__refund {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  color: rgba(154, 52, 18, 0.95);
  border: 1px solid rgba(249, 115, 22, 0.35);
  background: linear-gradient(180deg, #fff7ed 0%, #ffedd5 100%);
}

.footer-panel__refund:hover {
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.15);
}

.footer__copy {
  margin: 14px 0 0;
  text-align: center;
  color: rgba(11, 15, 30, 0.45);
}

@media (max-width: 960px) {
  .container {
    width: min(1100px, calc(100% - 22px));
  }

  .hero {
    padding: 28px 0 22px;
  }

  .topbar__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 10px 0;
  }

  .topbar__pill {
    flex: 1;
    width: 100%;
    flex-wrap: wrap;
    align-items: center;
    border-radius: 14px;
    font-size: 12px;
    line-height: 1.5;
  }

  .topbar__text--mobile {
    flex: 1;
    min-width: 0;
  }

  .topbar__link--order {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    width: 100%;
    flex-shrink: 0;
  }

  .hero__stack {
    max-width: 100%;
    gap: 12px;
  }

  .hero__body {
    gap: 12px;
  }

  .hero-shot {
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(18, 22, 40, 0.1);
  }

  h1 {
    font-size: clamp(22px, 6vw, 32px);
  }

  .sub {
    font-size: 15px;
    margin-top: 6px;
  }

  .lead--compact {
    font-size: 14px;
  }

  .price-row {
    margin: 4px 0 0;
    gap: 10px;
  }

  .price__now {
    font-size: 32px;
  }

  .step {
    max-height: none;
    aspect-ratio: auto;
    min-height: 72px;
    padding: 10px 4px;
  }

  .step__t {
    font-size: 11px;
  }

  .chip {
    min-height: 40px;
    font-size: 11px;
  }

  .topbar__text--desktop {
    display: none;
  }

  .topbar__text--mobile {
    display: inline;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .field--full {
    grid-column: auto;
  }

  .form-card__head {
    padding: 16px;
  }

  .order-form {
    padding: 16px;
  }

  input,
  textarea {
    padding: 15px 14px;
    font-size: 16px;
  }

  .pillars__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reels-slide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .order-review-videos .reels-slide {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
  }

  .order-review-videos .reel-card {
    max-height: 118px;
  }

  .order-review-videos .reel-card__play::after {
    width: 28px;
    height: 28px;
    background-size: 14px 14px;
  }

  .reel-card__play::after {
    width: 36px;
    height: 36px;
    background-size: 18px 18px;
  }

  .reels-carousel__btn {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }

  .trust__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .media__grid {
    grid-template-columns: 1fr;
  }

  .review-grid {
    grid-template-columns: 1fr;
  }

  .order {
    padding: 20px 0 28px;
  }

  .order__grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .order__side-title,
  .order__side-lead {
    display: none;
  }

  .order__form-stack {
    order: 1;
  }

  .order__copy {
    order: 2;
    margin-top: 0;
  }

  .order-perks {
    margin-top: 0;
    gap: 8px;
  }

  .perk-card {
    padding: 12px;
  }

  .form-card {
    padding: 0;
  }

  .form-card__head {
    padding: 10px 12px 8px;
  }

  .form-card__title {
    font-size: 17px;
  }

  .order-form {
    padding: 10px 12px 12px;
    gap: 8px;
  }

  .form-grid {
    gap: 8px;
  }

  input,
  textarea {
    padding: 12px;
  }

  textarea {
    min-height: 64px;
  }

  .footer-panel {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .cta-row {
    flex-direction: column;
  }

  .cta-row .btn {
    width: 100%;
    justify-content: center;
  }

  .price {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 12px;
  }

  .mini-prices__row {
    flex-wrap: wrap;
    row-gap: 4px;
  }

  .summary__row {
    flex-wrap: wrap;
    row-gap: 4px;
  }

  .success__actions {
    flex-direction: column;
  }

  .success__actions .btn {
    width: 100%;
    justify-content: center;
  }

  input,
  textarea {
    font-size: 16px;
  }

  input {
    min-height: 48px;
  }

  .review__top {
    flex-wrap: wrap;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(1100px, calc(100% - 18px));
  }

  .topbar__pill {
    font-size: 11px;
    padding: 8px 10px;
  }

  .topbar__text--mobile {
    display: inline;
    line-height: 1.5;
  }

  .topbar__save {
    color: #16a34a;
  }

  .topbar__cod {
    font-size: 11px;
  }

  .brand-mark__name {
    font-size: clamp(20px, 6vw, 28px);
  }

  .price-note {
    font-size: 12px;
    line-height: 1.45;
  }

  .steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .step {
    min-height: 68px;
    padding: 8px 4px;
    border-radius: 10px;
  }

  .step__n {
    width: 22px;
    height: 22px;
    font-size: 11px;
  }

  .step__t {
    font-size: 10px;
  }

  .chips {
    gap: 6px;
  }

  .chip {
    min-height: 38px;
    font-size: 10px;
    border-radius: 10px;
  }

  .quick-block__label {
    font-size: 11px;
  }

  .trust__grid {
    grid-template-columns: 1fr;
  }

  .brand-line__en {
    font-size: 11px;
    line-height: 1.45;
    word-break: break-word;
  }

  .bottle {
    padding: 12px 8px;
    font-size: 14px;
  }

  .price__now {
    font-size: 30px;
  }
}

@media (min-width: 768px) {
  .hero__stack {
    max-width: 560px;
  }

  .hero {
    padding: 32px 0 36px;
  }
}

/* Admin — hidden from public */
.admin-fab,
.admin-panel {
  display: none;
}

body.shinova-admin .admin-fab {
  display: grid;
  place-items: center;
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 50;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(109, 40, 217, 0.35);
  background: linear-gradient(135deg, #6d28d9, #0891b2);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(109, 40, 217, 0.35);
}

body.shinova-admin .admin-panel:not([hidden]) {
  display: block;
}

.admin-panel {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(11, 15, 30, 0.45);
  padding: 12px;
  overflow-y: auto;
}

.admin-panel__inner {
  max-width: 520px;
  margin: 0 auto;
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--shadow);
}

.admin-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.admin-panel__head h2 {
  margin: 0;
  font-size: 20px;
}

.admin-panel__close {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 10px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  font-size: 18px;
}

.admin-panel__note {
  margin: 0 0 12px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.admin-field {
  display: grid;
  gap: 6px;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 700;
}

.admin-field input,
.admin-field select {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-family: inherit;
  font-size: 14px;
}

.admin-lists {
  display: grid;
  gap: 14px;
  margin-top: 14px;
}

.admin-lists h3 {
  margin: 0 0 8px;
  font-size: 14px;
}

.admin-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.admin-list__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(247, 248, 255, 0.9);
}

.admin-list__path {
  font-size: 12px;
  color: var(--muted);
  word-break: break-all;
}

.admin-list__del {
  flex-shrink: 0;
  border: 1px solid rgba(239, 68, 68, 0.35);
  background: #fff;
  color: #dc2626;
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.admin-list__empty {
  padding: 10px;
  color: var(--muted2);
  font-size: 13px;
}

.admin-panel__hint code {
  font-size: 12px;
}

@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}
