:root {
  --bg: #fff7f7;
  --bg-soft: #fff0f3;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-solid: #ffffff;
  --ink: #291118;
  --muted: #7f5966;
  --line: rgba(118, 54, 76, 0.15);
  --rose: #d55078;
  --rose-dark: #a72b52;
  --gold: #d8b259;
  --gold-soft: #f6e0a4;
  --green: #119c63;
  --dark: #18080e;
  --dark-soft: #2a1018;
  --shadow: 0 18px 60px rgba(64, 22, 37, 0.12);
  --shadow-strong: 0 30px 80px rgba(29, 8, 16, 0.28);
  --radius: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: min(1120px, calc(100vw - 32px));
  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* Base reset and shared primitives */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Hind Siliguri", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(213, 80, 120, 0.18), transparent 26%),
    radial-gradient(circle at 80% 10%, rgba(216, 178, 89, 0.14), transparent 24%),
    linear-gradient(180deg, #fffaf9 0%, #fff3f5 48%, #fff8f6 100%);
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.container {
  width: var(--container);
  margin: 0 auto;
}

/* Floating decorative particles */
.petal-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.petal {
  position: absolute;
  top: -10vh;
  opacity: 0;
  color: rgba(213, 80, 120, 0.24);
  animation: petalFall linear forwards;
}

@keyframes petalFall {
  0% {
    transform: translate3d(0, -10vh, 0) rotate(0deg) scale(0.8);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 0.45;
  }
  100% {
    transform: translate3d(30px, 110vh, 0) rotate(300deg) scale(1.2);
    opacity: 0;
  }
}

/* Top scrolling announcement bar */
.announce-bar {
  position: relative;
  z-index: 3;
  overflow: hidden;
  background: linear-gradient(90deg, var(--dark), var(--dark-soft), var(--dark));
  color: #fff4da;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.announce-track {
  display: flex;
  gap: 18px;
  width: max-content;
  white-space: nowrap;
  padding: 10px 0;
  font-size: 13px;
  font-weight: 600;
  animation: marquee 24s linear infinite;
}

.announce-track .dot {
  opacity: 0.45;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Sticky site header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px);
  background: rgba(24, 8, 14, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(216, 178, 89, 0.18), rgba(213, 80, 120, 0.34));
  color: var(--gold-soft);
  font-size: 18px;
}

.brand strong {
  display: block;
  font-size: 16px;
  letter-spacing: 0.08em;
}

.brand small {
  display: block;
  font-size: 10px;
  letter-spacing: 0.28em;
  color: rgba(255, 255, 255, 0.68);
}

.header-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.live-pill,
.header-order {
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 600;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #46e087;
  box-shadow: 0 0 0 0 rgba(70, 224, 135, 0.5);
  animation: pulseDot 1.5s infinite;
}

@keyframes pulseDot {
  70% {
    box-shadow: 0 0 0 10px rgba(70, 224, 135, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(70, 224, 135, 0);
  }
}

.header-order {
  color: var(--dark);
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
}

/* Hero section and primary sales messaging */
.hero-section {
  position: relative;
  z-index: 1;
  padding: 56px 0 36px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 36px;
  align-items: center;
}

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

.eyebrow {
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.eyebrow.hot {
  background: linear-gradient(135deg, #ff6e4e, #ff3b5f);
  color: #fff;
  box-shadow: 0 12px 24px rgba(255, 90, 95, 0.28);
}

.eyebrow.soft {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(117, 40, 67, 0.12);
  color: var(--rose-dark);
}

.hero-copy h1 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(48px, 6vw, 78px);
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.hero-copy h1 span {
  display: block;
  color: var(--rose-dark);
}

.hero-sub {
  margin: 20px 0 18px;
  max-width: 58ch;
  font-size: 17px;
  line-height: 1.8;
  color: var(--muted);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.hero-proof span {
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 600;
}

.price-box {
  display: flex;
  align-items: end;
  gap: 18px;
  margin-bottom: 24px;
}

.price-box small {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  color: var(--muted);
}

.hero-price {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 700;
  font-family: "Cormorant Garamond", serif;
  color: var(--rose-dark);
}

.hero-price del {
  font-size: 22px;
  font-family: "Hind Siliguri", sans-serif;
  color: rgba(41, 17, 24, 0.4);
}

.save-pill {
  padding: 10px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #1dc86f, #0e8b53);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}

.primary-cta,
.ghost-cta,
.submit-btn,
.sticky-order-bar a,
.modal-close-btn {
  border: 0;
  border-radius: 999px;
  transition: transform 0.22s var(--ease), box-shadow 0.22s ease;
}

.primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-width: 290px;
  padding: 16px 22px;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: var(--dark);
  box-shadow: 0 18px 34px rgba(216, 178, 89, 0.34);
}

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

.primary-cta span {
  font-size: 16px;
  font-weight: 700;
}

.primary-cta strong {
  font-size: 12px;
  color: rgba(24, 8, 14, 0.7);
}

.primary-cta.wide {
  width: min(100%, 420px);
  justify-content: center;
}

.ghost-cta {
  padding: 16px 22px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  color: var(--rose-dark);
  font-weight: 700;
}

.primary-cta:hover,
.ghost-cta:hover,
.submit-btn:hover,
.sticky-order-bar a:hover,
.modal-close-btn:hover {
  transform: translateY(-2px);
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 22px;
}

.promise-card {
  padding: 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.promise-card strong {
  display: block;
  margin-bottom: 4px;
  font-size: 28px;
  font-weight: 700;
  color: var(--rose-dark);
  font-family: "Cormorant Garamond", serif;
}

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

.hero-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.hero-points li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  color: var(--ink);
}

.hero-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
  font-weight: 700;
}

.hero-media {
  position: relative;
  min-height: 640px;
}

.hero-card {
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  padding: 32px;
  min-height: 540px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.34), transparent 30%),
    linear-gradient(145deg, #ffdce7 0%, #ffc2cf 33%, #f5e3ae 100%);
  box-shadow: var(--shadow-strong);
  transform-style: preserve-3d;
}

.hero-badge {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 2;
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(24, 8, 14, 0.78);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.hero-main-image {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 42px rgba(75, 26, 44, 0.2));
}

.hero-glow {
  position: absolute;
  inset: auto 14% 12% 14%;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0));
  filter: blur(16px);
}

.floating-shot {
  position: absolute;
  width: 210px;
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(116, 52, 74, 0.1);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.floating-shot.left {
  left: -14px;
  top: 72px;
}

.floating-shot.right {
  right: -18px;
  top: 154px;
}

.floating-shot.bottom {
  bottom: 20px;
  left: 30px;
}

.floating-shot img {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  object-fit: cover;
  background: #fff6fb;
}

.floating-shot strong {
  display: block;
  font-size: 14px;
}

.floating-shot span {
  font-size: 12px;
  color: var(--muted);
}

.tilt-card {
  transform-style: preserve-3d;
  transition: transform 0.28s ease;
}

/* Quick trust badges below the hero */
.trust-strip {
  position: relative;
  z-index: 1;
  padding-bottom: 28px;
}

.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.trust-strip-inner div {
  padding: 16px 18px;
  text-align: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  font-size: 14px;
}

.trust-strip-inner strong {
  color: var(--rose-dark);
}

/* Shared section spacing */
.gallery-section,
.feature-section,
.urgency-section,
.order-section,
.review-section,
.faq-section,
.final-cta-section {
  position: relative;
  z-index: 1;
  padding: 28px 0 72px;
}

.section-head {
  max-width: 720px;
  margin: 0 auto 28px;
  text-align: center;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 12px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(213, 80, 120, 0.12);
  color: var(--rose-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.section-head h2,
.feature-panel h2,
.urgency-card h2,
.order-sidebar h2,
.form-head h2,
.final-cta-card h2 {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.04;
}

.section-head p,
.feature-panel p,
.urgency-card p,
.form-head p,
.final-cta-card p,
.script-note p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

/* Interactive image gallery */
.gallery-shell {
  position: relative;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.gallery-viewport {
  overflow: hidden;
}

.gallery-track {
  display: flex;
  transition: transform 0.45s var(--ease);
}

.gallery-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 24px;
  align-items: center;
}

.gallery-image-wrap {
  border-radius: 24px;
  padding: 24px;
  min-height: 420px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.58), transparent 35%),
    linear-gradient(145deg, #fff2f6, #fbe8ef, #fff7df);
}

.gallery-image-wrap img {
  max-height: 370px;
  object-fit: contain;
  filter: drop-shadow(0 20px 38px rgba(69, 22, 38, 0.18));
}

.gallery-copy {
  padding-right: 12px;
}

.slide-tag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(24, 8, 14, 0.08);
  font-size: 12px;
  font-weight: 700;
}

.gallery-copy h3 {
  margin: 0 0 10px;
  font-size: 32px;
  font-family: "Cormorant Garamond", serif;
}

.gallery-copy p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.8;
}

.gallery-copy ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.gallery-copy li {
  padding-left: 24px;
  position: relative;
}

.gallery-copy li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--rose-dark);
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 30px;
  background: rgba(24, 8, 14, 0.8);
  color: #fff;
}

.gallery-nav.prev {
  left: 12px;
}

.gallery-nav.next {
  right: 12px;
}

.gallery-thumbs {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.thumb {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  display: grid;
  gap: 10px;
  color: var(--ink);
}

.thumb img {
  width: 100%;
  height: 94px;
  object-fit: contain;
  border-radius: 14px;
  background: linear-gradient(145deg, #fff7fb, #fff2e7);
}

.thumb span {
  font-size: 13px;
  font-weight: 600;
}

.thumb.active {
  border-color: rgba(167, 43, 82, 0.4);
  box-shadow: 0 14px 28px rgba(167, 43, 82, 0.12);
}

/* Feature, urgency and order content cards */
.feature-grid,
.urgency-grid,
.order-grid {
  display: grid;
  gap: 24px;
}

.feature-grid {
  grid-template-columns: 1.02fr 0.98fr;
  align-items: start;
}

.feature-panel,
.urgency-card,
.order-sidebar,
.form-panel,
.final-cta-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.feature-panel,
.urgency-card,
.order-sidebar,
.form-panel {
  padding: 30px;
}

.feature-list {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.feature-list article,
.urgency-points div {
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 244, 246, 0.78));
  border: 1px solid rgba(115, 46, 69, 0.08);
}

.feature-list strong,
.urgency-points strong {
  display: block;
  margin-bottom: 6px;
  font-size: 16px;
}

.feature-list span,
.urgency-points span {
  color: var(--muted);
  font-size: 14px;
}

.benefit-cards {
  display: grid;
  gap: 18px;
}

.benefit-card {
  min-height: 180px;
  padding: 26px;
  border-radius: 26px;
  background: linear-gradient(155deg, #fff5ef, #fff9fb 38%, #ffe7ed);
  border: 1px solid rgba(115, 46, 69, 0.1);
  box-shadow: var(--shadow);
}

.benefit-card span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: rgba(24, 8, 14, 0.08);
  font-weight: 700;
}

.benefit-card h3 {
  margin: 0 0 10px;
  font-size: 24px;
  font-family: "Cormorant Garamond", serif;
}

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

.urgency-grid {
  grid-template-columns: 1.12fr 0.88fr;
}

.urgency-card {
  background:
    radial-gradient(circle at top right, rgba(216, 178, 89, 0.18), transparent 30%),
    rgba(255, 255, 255, 0.8);
}

.urgency-card.pale {
  background:
    radial-gradient(circle at bottom left, rgba(213, 80, 120, 0.14), transparent 30%),
    rgba(255, 255, 255, 0.78);
}

.timer-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.timer-box {
  padding: 18px;
  text-align: center;
  border-radius: 22px;
  background: rgba(24, 8, 14, 0.9);
  color: #fff;
}

.timer-box strong {
  display: block;
  font-size: 40px;
  font-family: "Cormorant Garamond", serif;
}

.timer-box span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
}

.stock-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  font-weight: 700;
}

.stock-bar {
  height: 14px;
  background: rgba(41, 17, 24, 0.08);
  border-radius: 999px;
  overflow: hidden;
}

.stock-fill {
  width: 64%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ff5877, #d55078, #d8b259);
  box-shadow: inset -20px 0 20px rgba(255, 255, 255, 0.18);
  transition: width 0.5s ease;
}

.urgency-points {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.order-grid {
  grid-template-columns: 0.92fr 1.08fr;
  align-items: start;
}

.summary-card {
  margin-top: 20px;
  padding: 20px;
  border-radius: 24px;
  background: linear-gradient(180deg, #fff7f3, #fffdfc);
  border: 1px solid rgba(120, 48, 73, 0.12);
}

.summary-product {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 20px;
}

.summary-product img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  border-radius: 22px;
  background: linear-gradient(145deg, #fff1f6, #fff7e5);
  padding: 10px;
}

.summary-product strong {
  display: block;
  margin-bottom: 4px;
  font-size: 18px;
}

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

.summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(114, 48, 71, 0.16);
}

.summary-row.total {
  margin-top: 4px;
  border-bottom: 0;
  font-size: 20px;
  font-weight: 700;
}

.summary-save {
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(17, 156, 99, 0.08);
  color: var(--green);
  font-weight: 600;
}

.script-note {
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(24, 8, 14, 0.94);
  color: #fff;
}

.script-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-soft);
}

.script-note p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
}

/* Order form and inline pricing controls */
.form-badge {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 700;
  color: var(--rose-dark);
}

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

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.field span,
.field-label {
  font-size: 14px;
  font-weight: 600;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(114, 48, 71, 0.18);
  border-radius: 18px;
  padding: 15px 16px;
  background: rgba(255, 255, 255, 0.88);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.field input:focus,
.field textarea:focus {
  border-color: rgba(167, 43, 82, 0.48);
  box-shadow: 0 0 0 4px rgba(213, 80, 120, 0.08);
}

.field input.invalid,
.field textarea.invalid {
  border-color: #db365f;
}

.field input.valid,
.field textarea.valid {
  border-color: rgba(17, 156, 99, 0.45);
}

.error-text {
  min-height: 18px;
  color: #db365f;
  font-size: 12px;
}

.qty-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 8px 0 18px;
  padding: 18px;
  border-radius: 24px;
  background: linear-gradient(180deg, #fff4f6, #fffdfd);
  border: 1px solid rgba(114, 48, 71, 0.12);
}

.qty-block p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.qty-control {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.qty-control button,
.qty-control strong {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
}

.qty-control button {
  border: 0;
  background: rgba(24, 8, 14, 0.08);
  font-size: 28px;
}

.qty-control strong {
  background: rgba(213, 80, 120, 0.1);
  color: var(--rose-dark);
  font-size: 20px;
}

.inline-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.inline-summary div {
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(114, 48, 71, 0.1);
}

.inline-summary span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 13px;
}

.inline-summary strong {
  font-size: 18px;
}

.submit-btn {
  width: 100%;
  padding: 17px 20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: var(--dark);
  font-size: 17px;
  font-weight: 700;
  box-shadow: 0 20px 34px rgba(216, 178, 89, 0.3);
}

.btn-loading {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-loading i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--dark);
  animation: bounce 0.65s infinite alternate;
}

.btn-loading i:nth-child(2) {
  animation-delay: 0.12s;
}

.btn-loading i:nth-child(3) {
  animation-delay: 0.24s;
}

@keyframes bounce {
  to {
    transform: translateY(-4px);
  }
}

.form-trust {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.form-trust span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(24, 8, 14, 0.07);
  font-size: 12px;
  font-weight: 600;
}

/* Review cards */
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.review-card {
  padding: 24px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.review-top strong {
  font-size: 16px;
}

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

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

.review-stars {
  color: #e1a82d;
  letter-spacing: 0.14em;
}

/* FAQ accordion */
.faq-list {
  display: grid;
  gap: 14px;
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  font-size: 16px;
  font-weight: 700;
  text-align: left;
}

.faq-question strong {
  font-size: 26px;
  color: var(--rose-dark);
  transition: transform 0.24s ease;
}

.faq-item.open .faq-question strong {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
  line-height: 1.75;
}

.final-cta-card {
  padding: 42px 34px;
  text-align: center;
  background:
    radial-gradient(circle at top, rgba(216, 178, 89, 0.16), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(255, 245, 247, 0.82));
}

/* Footer, sticky bar and floating toast */
.site-footer {
  position: relative;
  z-index: 1;
  padding: 28px 0 110px;
  background: rgba(24, 8, 14, 0.98);
  color: #fff;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-inner strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-soft);
}

.footer-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
}

.footer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-tags span {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 12px;
}

.sticky-order-bar {
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translate(-50%, calc(100% + 20px));
  width: min(860px, calc(100vw - 20px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 24px;
  background: rgba(24, 8, 14, 0.96);
  color: #fff;
  box-shadow: 0 26px 50px rgba(24, 8, 14, 0.36);
  z-index: 15;
  transition: transform 0.32s var(--ease);
}

.sticky-order-bar.show {
  transform: translate(-50%, 0);
}

.sticky-order-bar strong {
  display: block;
}

.sticky-order-bar span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.sticky-order-bar a {
  padding: 14px 18px;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: var(--dark);
  font-weight: 700;
  white-space: nowrap;
}

.order-toast {
  position: fixed;
  left: 18px;
  bottom: 104px;
  z-index: 14;
  display: flex;
  align-items: center;
  gap: 12px;
  width: min(320px, calc(100vw - 36px));
  padding: 14px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(114, 48, 71, 0.12);
  box-shadow: var(--shadow);
  transform: translateY(24px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.32s var(--ease), opacity 0.32s ease;
}

.order-toast.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.toast-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--rose-dark), var(--rose));
  color: #fff;
  font-weight: 700;
}

.toast-copy {
  flex: 1;
}

.toast-copy strong {
  display: block;
  font-size: 14px;
}

.toast-copy span {
  font-size: 12px;
  color: var(--muted);
}

#toastClose {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 22px;
}

/* Submit success modal */
.success-modal {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: none;
}

.success-modal.open {
  display: block;
}

.success-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(22, 8, 13, 0.76);
  backdrop-filter: blur(12px);
}

.success-card {
  position: relative;
  z-index: 1;
  width: min(540px, calc(100vw - 32px));
  margin: 6vh auto 0;
  padding: 34px 28px;
  border-radius: 30px;
  background: linear-gradient(180deg, #fffdfc, #fff4f7);
  box-shadow: var(--shadow-strong);
  text-align: center;
  overflow: hidden;
}

.confetti-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.confetti {
  position: absolute;
  top: -20px;
  width: 10px;
  height: 18px;
  border-radius: 999px;
  animation: confettiDrop linear forwards;
}

@keyframes confettiDrop {
  to {
    transform: translate3d(0, 460px, 0) rotate(720deg);
    opacity: 0;
  }
}

.success-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #1ecf7c, #119c63);
  color: #fff;
  font-size: 34px;
  font-weight: 700;
}

.success-card h3 {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: 40px;
}

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

.success-order-id {
  margin: 20px 0 18px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(24, 8, 14, 0.08);
  font-weight: 600;
}

.success-order-id strong {
  color: var(--rose-dark);
}

.success-steps {
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
  text-align: left;
}

.success-steps div {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(114, 48, 71, 0.08);
  color: var(--ink);
}

.modal-close-btn {
  padding: 14px 22px;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: var(--dark);
  font-weight: 700;
}

/* Generic scroll reveal helper */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.52s var(--ease), transform 0.52s var(--ease);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .hero-grid,
  .feature-grid,
  .urgency-grid,
  .order-grid,
  .gallery-slide {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 560px;
  }

  .trust-strip-inner,
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .floating-shot.right {
    right: 12px;
  }
}

@media (max-width: 720px) {
  .header-inner,
  .footer-inner,
  .qty-block,
  .sticky-order-bar {
    flex-direction: column;
    align-items: stretch;
  }

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

  .hero-section {
    padding-top: 36px;
  }

  .promise-grid,
  .trust-strip-inner,
  .gallery-thumbs,
  .field-grid,
  .inline-summary,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    min-height: 400px;
    padding: 22px;
  }

  .hero-media {
    min-height: 520px;
  }

  .floating-shot {
    width: 170px;
  }

  .floating-shot.left {
    left: 0;
    top: 48px;
  }

  .floating-shot.right {
    top: 118px;
  }

  .floating-shot.bottom {
    left: auto;
    right: 0;
    bottom: 4px;
  }

  .gallery-shell,
  .feature-panel,
  .urgency-card,
  .order-sidebar,
  .form-panel,
  .final-cta-card {
    padding: 22px;
  }

  .gallery-image-wrap {
    min-height: 300px;
  }

  .gallery-nav {
    display: none;
  }

  .success-card {
    margin-top: 4vh;
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100vw - 24px, 100%);
  }

  .hero-copy h1 {
    font-size: 44px;
  }

  .hero-sub,
  .section-head p,
  .feature-panel p,
  .urgency-card p,
  .form-head p,
  .final-cta-card p {
    font-size: 15px;
  }

  .primary-cta,
  .ghost-cta {
    width: 100%;
    min-width: 0;
  }

  .timer-row {
    gap: 10px;
  }

  .timer-box {
    padding: 14px;
  }

  .timer-box strong {
    font-size: 28px;
  }

  .hero-media {
    min-height: 470px;
  }

  .floating-shot {
    width: 152px;
    gap: 8px;
    padding: 10px;
  }

  .floating-shot img {
    width: 48px;
    height: 48px;
  }

  .sticky-order-bar {
    bottom: 10px;
  }

  .order-toast {
    left: 12px;
    width: calc(100vw - 24px);
  }
}

/* Stronger responsive behavior and dedicated thank-you page */
html {
  overflow-x: clip;
}

body {
  min-width: 320px;
}

main,
section,
article,
aside,
form,
.hero-grid > *,
.feature-grid > *,
.urgency-grid > *,
.order-grid > *,
.gallery-slide > *,
.header-inner > *,
.footer-inner > * {
  min-width: 0;
}

.header-order,
.live-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-actions > * {
  flex: 1 1 220px;
}

.primary-cta,
.ghost-cta {
  max-width: 100%;
}

.primary-cta {
  width: min(100%, 360px);
}

.hero-media {
  display: grid;
  align-content: start;
  gap: 14px;
}

.hero-card {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-main-image {
  max-height: 480px;
}

.gallery-copy,
.summary-product div,
.toast-copy {
  min-width: 0;
}

.success-order-id {
  overflow-wrap: anywhere;
}

.site-footer {
  padding-bottom: calc(130px + env(safe-area-inset-bottom, 0px));
}

.sticky-order-bar {
  bottom: max(16px, env(safe-area-inset-bottom, 0px));
}

.order-toast {
  bottom: calc(104px + env(safe-area-inset-bottom, 0px));
}

.thankyou-page {
  background:
    radial-gradient(circle at top left, rgba(213, 80, 120, 0.18), transparent 26%),
    radial-gradient(circle at 78% 8%, rgba(216, 178, 89, 0.22), transparent 22%),
    linear-gradient(180deg, #fffaf9 0%, #fff5f6 44%, #fffdf9 100%);
}

.thankyou-main {
  position: relative;
  z-index: 1;
  padding: 36px 0 80px;
}

.thankyou-card {
  position: relative;
  overflow: hidden;
  padding: 40px;
  border-radius: 38px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.88), transparent 32%),
    linear-gradient(160deg, rgba(255, 250, 248, 0.96), rgba(255, 244, 247, 0.94));
  border: 1px solid rgba(117, 40, 67, 0.1);
  box-shadow: var(--shadow-strong);
}

.thankyou-card::before,
.thankyou-card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.thankyou-card::before {
  width: 220px;
  height: 220px;
  top: -90px;
  right: -70px;
  background: radial-gradient(circle, rgba(216, 178, 89, 0.24), rgba(216, 178, 89, 0));
}

.thankyou-card::after {
  width: 260px;
  height: 260px;
  bottom: -140px;
  left: -70px;
  background: radial-gradient(circle, rgba(213, 80, 120, 0.16), rgba(213, 80, 120, 0));
}

.thankyou-top {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}

.thankyou-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(17, 156, 99, 0.12);
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
}

.thankyou-top .success-icon {
  margin-top: 18px;
}

.thankyou-top h1 {
  margin: 18px 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(46px, 6vw, 76px);
  line-height: 0.96;
}

.thankyou-top h1 span {
  display: block;
  color: var(--rose-dark);
}

.thankyou-top p {
  margin: 0;
  font-size: 17px;
  line-height: 1.8;
  color: var(--muted);
}

.thankyou-highlight {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  margin-bottom: 24px;
}

.thankyou-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.thankyou-meta-grid div,
.thankyou-step,
.thankyou-panel {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(117, 40, 67, 0.08);
  box-shadow: var(--shadow);
}

.thankyou-meta-grid div {
  padding: 18px;
  border-radius: 24px;
  text-align: center;
}

.thankyou-meta-grid span {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  color: var(--muted);
}

.thankyou-meta-grid strong {
  font-size: 22px;
  color: var(--rose-dark);
}

.thankyou-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 22px;
  margin-bottom: 22px;
}

.thankyou-panel {
  padding: 28px;
  border-radius: 30px;
}

.thankyou-panel h2 {
  margin: 0 0 16px;
  font-family: "Cormorant Garamond", serif;
  font-size: 36px;
}

.thankyou-panel > p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.75;
}

.thankyou-steps {
  display: grid;
  gap: 12px;
}

.thankyou-step {
  padding: 18px;
  border-radius: 22px;
}

.thankyou-step strong {
  display: block;
  margin-bottom: 6px;
  font-size: 16px;
}

.thankyou-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.thankyou-product-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border-radius: 24px;
  background: linear-gradient(145deg, #fff7f8, #fffdf9);
  border: 1px solid rgba(117, 40, 67, 0.08);
}

.thankyou-product-card img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  border-radius: 24px;
  padding: 10px;
  background: linear-gradient(145deg, #fff1f6, #fff8e8);
}

.thankyou-product-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 20px;
}

.thankyou-product-card span {
  color: var(--muted);
  line-height: 1.7;
}

.thankyou-facts {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.thankyou-facts div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(117, 40, 67, 0.08);
}

.thankyou-facts span {
  color: var(--muted);
}

.thankyou-facts strong {
  color: var(--ink);
}

.thankyou-note {
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
  padding: 18px 22px;
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(17, 156, 99, 0.12), rgba(216, 178, 89, 0.14));
  border: 1px solid rgba(17, 156, 99, 0.12);
  text-align: center;
  color: var(--ink);
  line-height: 1.75;
}

.thankyou-actions {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.thankyou-action-primary {
  min-width: 320px;
}

.thankyou-action-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
}

@media (max-width: 1024px) {
  .hero-grid {
    gap: 28px;
  }

  .hero-media {
    width: min(100%, 640px);
    margin: 0 auto;
  }

  .order-sidebar {
    order: 2;
  }

  .form-panel {
    order: 1;
  }

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

@media (max-width: 720px) {
  .header-inner {
    align-items: stretch;
  }

  .header-meta {
    flex-direction: column;
    align-items: stretch;
  }

  .live-pill,
  .header-order {
    width: 100%;
  }

  .hero-section {
    padding: 28px 0 24px;
  }

  .hero-grid {
    gap: 22px;
  }

  .hero-copy h1 {
    font-size: clamp(38px, 12vw, 54px);
    line-height: 1;
  }

  .hero-sub {
    margin: 14px 0 16px;
    line-height: 1.7;
  }

  .hero-proof span {
    width: 100%;
    text-align: center;
  }

  .price-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .hero-price {
    flex-wrap: wrap;
    gap: 10px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .primary-cta,
  .ghost-cta {
    width: 100%;
    min-width: 0;
  }

  .hero-media {
    min-height: auto;
    gap: 12px;
  }

  .hero-card {
    min-height: min(84vw, 390px);
    padding: 18px 16px 30px;
  }

  .hero-main-image {
    max-height: 300px;
  }

  .hero-glow {
    inset: auto 8% 10% 8%;
    height: 84px;
  }

  .floating-shot {
    position: static;
    width: 100%;
    margin: 0;
  }

  .gallery-thumbs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .thumb {
    grid-template-columns: 72px 1fr;
    align-items: center;
    text-align: left;
  }

  .thumb img {
    height: 72px;
  }

  .qty-block {
    align-items: stretch;
  }

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

  .sticky-order-bar {
    width: calc(100vw - 16px);
    padding: 14px;
    border-radius: 20px;
  }

  .order-toast {
    display: none;
  }

  .thankyou-main {
    padding: 24px 0 56px;
  }

  .thankyou-card {
    padding: 28px 18px;
    border-radius: 28px;
  }

  .thankyou-meta-grid {
    grid-template-columns: 1fr;
  }

  .thankyou-panel {
    padding: 22px;
  }

  .thankyou-product-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .thankyou-actions {
    flex-direction: column;
  }

  .thankyou-action-primary,
  .thankyou-action-secondary {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100vw - 20px, 100%);
  }

  .announce-track {
    gap: 14px;
    font-size: 12px;
  }

  .brand {
    gap: 10px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand strong {
    font-size: 14px;
  }

  .brand small {
    letter-spacing: 0.22em;
  }

  .header-inner {
    padding: 12px 0;
  }

  .hero-copy h1 {
    font-size: 40px;
  }

  .promise-card {
    padding: 14px;
  }

  .promise-card strong {
    font-size: 24px;
  }

  .gallery-shell,
  .feature-panel,
  .urgency-card,
  .order-sidebar,
  .form-panel,
  .final-cta-card {
    padding: 18px;
  }

  .gallery-image-wrap {
    min-height: 240px;
  }

  .summary-product {
    align-items: flex-start;
  }

  .summary-product img {
    width: 72px;
    height: 72px;
  }

  .summary-product strong {
    font-size: 16px;
  }

  .qty-control button,
  .qty-control strong {
    width: 44px;
    height: 44px;
  }

  .inline-summary div,
  .summary-card,
  .thankyou-step {
    padding: 14px;
  }

  .sticky-order-bar {
    bottom: max(8px, env(safe-area-inset-bottom, 0px));
  }

  .thankyou-top h1 {
    font-size: 40px;
  }

  .thankyou-panel h2 {
    font-size: 28px;
  }

  .thankyou-meta-grid strong {
    font-size: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
