/* =========================================================
   MiniArt Maroc — landing page styles
   Mobile-first, RTL Arabic, Tajawal.
   ========================================================= */

:root {
  --pink: #FF4FA3;
  --pink-600: #E63F91;
  --purple: #7C4DFF;
  --purple-600: #6438E6;
  --yellow: #FFD84D;
  --turquoise: #42D6C5;
  --dark: #252238;
  --dark-2: #3a3652;
  --muted: #6b6a80;
  --bg: #ffffff;
  --bg-soft: #FFF7FB;
  --bg-soft-2: #F3F0FF;
  --border: #EEEAF3;
  --shadow-sm: 0 4px 14px rgba(37, 34, 56, 0.08);
  --shadow-md: 0 10px 30px rgba(37, 34, 56, 0.12);
  --radius: 14px;
  --radius-lg: 22px;
  --container: 1160px;
  --header-h: 68px;
  --topbar-h: 40px;
}

* { box-sizing: border-box; }
*::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + var(--topbar-h) + 8px);
}

body {
  margin: 0;
  font-family: "Tajawal", "Segoe UI", Tahoma, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--dark);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg, video { max-width: 100%; height: auto; display: block; }

a { color: var(--purple); text-decoration: none; }
a:hover { color: var(--purple-600); }

h1, h2, h3, h4 {
  font-family: "Tajawal", sans-serif;
  color: var(--dark);
  line-height: 1.25;
  margin: 0 0 .5em;
  font-weight: 800;
}
h1 { font-size: clamp(1.75rem, 4.5vw + 1rem, 3.25rem); font-weight: 900; }
h2 { font-size: clamp(1.5rem, 2vw + 1rem, 2.25rem); }
h3 { font-size: 1.2rem; }
p  { margin: 0 0 1em; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.muted { color: var(--muted); }
.small { font-size: .9rem; }
.center { text-align: center; }

/* Accessibility */
.skip-link {
  position: absolute; inset-inline-start: 12px; top: -100px;
  background: var(--dark); color: #fff; padding: 10px 14px; border-radius: 8px;
  z-index: 1000; transition: top .2s ease;
}
.skip-link:focus { top: 12px; outline: 3px solid var(--yellow); }

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
  border-radius: 6px;
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
  font-family: inherit; font-weight: 700; font-size: 1rem;
  padding: .85rem 1.4rem; border-radius: 999px;
  border: 2px solid transparent; cursor: pointer;
  text-align: center; line-height: 1;
  transition: transform .15s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--pink); color: #fff;
  box-shadow: 0 8px 20px rgba(255, 79, 163, .35);
}
.btn-primary:hover { background: var(--pink-600); color: #fff; }
.btn-secondary {
  background: var(--purple); color: #fff;
  box-shadow: 0 8px 20px rgba(124, 77, 255, .3);
}
.btn-secondary:hover { background: var(--purple-600); color: #fff; }
.btn-ghost {
  background: transparent; color: var(--dark); border-color: var(--dark);
}
.btn-ghost:hover { background: var(--dark); color: #fff; }
.btn-lg { padding: 1.05rem 1.7rem; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* =========================================================
   Top bar + header
   ========================================================= */
.topbar {
  background: linear-gradient(90deg, var(--purple), var(--pink));
  color: #fff;
  font-size: .92rem;
  min-height: var(--topbar-h);
  display: flex; align-items: center;
}
.topbar p { margin: 0; text-align: center; padding: 8px 0; }
.topbar .sep { margin: 0 .6rem; opacity: .7; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--border);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  min-height: var(--header-h);
}
.brand img { width: auto; height: 44px; object-fit: contain; }

.nav ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; gap: 22px;
}
.nav a {
  color: var(--dark); font-weight: 600; padding: 6px 2px;
  border-bottom: 2px solid transparent;
}
.nav a:hover { color: var(--pink); border-bottom-color: var(--pink); }

.btn-cta-header { display: none; }

.menu-toggle {
  display: inline-flex; flex-direction: column; gap: 5px;
  background: transparent; border: 0; padding: 8px; cursor: pointer;
}
.menu-toggle span {
  display: block; width: 26px; height: 3px; background: var(--dark);
  border-radius: 3px; transition: transform .25s ease, opacity .25s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile nav */
@media (max-width: 899px) {
  .nav {
    position: absolute; top: 100%; inset-inline: 0;
    background: #fff; border-bottom: 1px solid var(--border);
    max-height: 0; overflow: hidden; transition: max-height .3s ease;
  }
  .nav.open { max-height: 400px; box-shadow: var(--shadow-sm); }
  .nav ul { flex-direction: column; padding: 12px 20px 18px; gap: 6px; }
  .nav a { display: block; padding: 12px 6px; border-bottom: 1px solid var(--border); }
  .nav a:last-child { border-bottom: 0; }
}

@media (min-width: 900px) {
  .menu-toggle { display: none; }
  .btn-cta-header { display: inline-flex; padding: .65rem 1.15rem; }
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 216, 77, .35), transparent 45%),
    radial-gradient(circle at 85% 85%, rgba(66, 214, 197, .3), transparent 45%),
    linear-gradient(180deg, var(--bg-soft), #fff);
  padding: 32px 0 48px;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr; gap: 24px; align-items: center;
}
.hero-text .eyebrow {
  display: inline-block; background: var(--yellow); color: var(--dark);
  padding: 4px 12px; border-radius: 999px; font-weight: 700; font-size: .85rem;
  margin-bottom: 12px;
}
.hero-text h1 { margin-top: 0; }
.hero-text .lead { font-size: 1.15rem; color: var(--dark-2); }
.price-block {
  display: flex; align-items: baseline; flex-wrap: wrap; gap: 12px;
  margin: 14px 0 18px;
}
.price-block .price {
  font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 900; color: var(--pink);
  line-height: 1;
}
.price-block .price small { font-size: .55em; color: var(--dark); margin-inline-start: 6px; font-weight: 700; }
.price-block .ship { color: var(--dark); background: #fff; padding: 6px 12px; border-radius: 999px; border: 2px dashed var(--turquoise); font-weight: 600; font-size: .95rem; }

.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 18px; }
.hero-mini-trust {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 8px 18px;
  color: var(--dark); font-weight: 600;
}

.hero-media img {
  width: 100%; height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(124, 77, 255, .25));
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (min-width: 900px) {
  .hero { padding: 56px 0 72px; }
  .hero-inner { grid-template-columns: 1.05fr 1fr; gap: 40px; }
  .hero-media { order: 2; }
  .hero-text { order: 1; }
}

/* =========================================================
   Trust items
   ========================================================= */
.trust { padding: 28px 0; background: #fff; }
.trust-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px;
}
.trust-item {
  background: var(--bg-soft-2); border-radius: var(--radius);
  padding: 16px; text-align: center;
}
.trust-item .ico { font-size: 1.75rem; display: block; margin-bottom: 6px; }
.trust-item h3 { margin: 0 0 4px; font-size: 1rem; }
.trust-item p { margin: 0; color: var(--muted); font-size: .9rem; }

@media (min-width: 700px) {
  .trust-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* =========================================================
   Problem / solution
   ========================================================= */
.problem {
  padding: 52px 0;
  background: linear-gradient(180deg, #fff, var(--bg-soft));
  text-align: center;
}
.problem h2 { max-width: 780px; margin: 0 auto .4em; }
.problem p  { max-width: 720px; margin: 0 auto; color: var(--dark-2); font-size: 1.05rem; }

/* =========================================================
   Benefits
   ========================================================= */
.benefits { padding: 60px 0; }
.benefits h2 { text-align: center; margin-bottom: 28px; }
.cards {
  display: grid; grid-template-columns: 1fr; gap: 16px;
}
.card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 22px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card-ico {
  width: 46px; height: 46px; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--yellow); font-size: 1.4rem; margin-bottom: 10px;
}
.card:nth-child(2) .card-ico { background: #E0FBF7; }
.card:nth-child(3) .card-ico { background: #F0E9FF; }
.card:nth-child(4) .card-ico { background: #FFE4EF; }
.card:nth-child(5) .card-ico { background: #FFF3C4; }
.card h3 { margin: 0 0 6px; }
.card p  { margin: 0; color: var(--muted); }

@media (min-width: 700px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .cards { grid-template-columns: repeat(3, 1fr); } }

.benefits-figure {
  margin: 34px auto 0; max-width: 520px; text-align: center;
}
.benefits-figure img {
  width: 100%; height: auto; object-fit: cover; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* =========================================================
   Product contents
   ========================================================= */
.contents { padding: 60px 0; background: var(--bg-soft-2); }
.contents-inner {
  display: grid; grid-template-columns: 1fr; gap: 28px; align-items: center;
}
.check-list {
  list-style: none; padding: 0; margin: 12px 0;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px 14px;
}
.check-list li {
  position: relative; padding-inline-start: 26px; color: var(--dark); font-weight: 600;
}
.check-list li::before {
  content: "✔"; position: absolute; inset-inline-start: 0; top: 2px;
  color: #fff; background: var(--turquoise);
  width: 20px; height: 20px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .8rem;
}
.disclaimer { color: var(--muted); font-size: .9rem; margin-top: 12px; }
.contents-figure img {
  width: 100%; aspect-ratio: 1 / 1; object-fit: cover;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
  background: #fff;
}
@media (min-width: 900px) {
  .contents-inner { grid-template-columns: 1.05fr 1fr; gap: 44px; }
}

/* =========================================================
   Integrated easel
   ========================================================= */
.easel { padding: 60px 0; }
.easel-inner {
  display: grid; grid-template-columns: 1fr; gap: 28px; align-items: center;
}
.easel-figure img {
  width: 100%; aspect-ratio: 1 / 1; object-fit: cover;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
}
@media (min-width: 900px) {
  .easel-inner { grid-template-columns: 1fr 1.05fr; gap: 44px; }
}

/* =========================================================
   Bonus
   ========================================================= */
.bonus {
  padding: 60px 0;
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 216, 77, .35), transparent 40%),
    linear-gradient(180deg, var(--bg-soft), #fff);
}
.bonus-inner {
  display: grid; grid-template-columns: 1fr; gap: 28px; align-items: center;
}
.bonus .badge {
  display: inline-block; background: var(--yellow); color: var(--dark);
  padding: 6px 14px; border-radius: 999px; font-weight: 800; margin-bottom: 8px;
}
.pills { list-style: none; margin: 0 0 18px; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.pills li {
  background: #fff; color: var(--purple);
  border: 1.5px solid #e5deff;
  padding: 6px 12px; border-radius: 999px; font-weight: 600; font-size: .9rem;
}
.bonus-figure img {
  width: 100%; aspect-ratio: 1 / 1; object-fit: cover;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
}
@media (min-width: 900px) {
  .bonus-inner { grid-template-columns: 1.05fr 1fr; gap: 44px; }
}

/* =========================================================
   Gallery + Lightbox
   ========================================================= */
.gallery { padding: 60px 0; }
.gallery h2 { text-align: center; margin-bottom: 6px; }
.gallery .muted.center { margin-bottom: 24px; }

.gallery-grid {
  display: grid; gap: 12px;
  grid-template-columns: repeat(2, 1fr);
}
.gallery-item {
  border: 0; padding: 0; background: transparent; cursor: pointer;
  border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 1 / 1;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.gallery-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; }

@media (min-width: 700px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .gallery-grid { grid-template-columns: repeat(5, 1fr); } }

.lightbox {
  position: fixed; inset: 0;
  background: rgba(15, 12, 30, .9);
  display: none; align-items: center; justify-content: center;
  z-index: 200;
  padding: 20px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 92vw; max-height: 82vh;
  object-fit: contain;
  border-radius: 12px;
  background: #000;
}
.lb-close, .lb-prev, .lb-next {
  position: absolute; background: rgba(255, 255, 255, .12);
  color: #fff; border: 0; border-radius: 50%;
  width: 44px; height: 44px; font-size: 1.5rem;
  cursor: pointer; display: inline-flex; align-items: center; justify-content: center;
  backdrop-filter: blur(4px);
}
.lb-close { top: 16px; inset-inline-end: 16px; }
.lb-prev  { top: 50%; inset-inline-start: 16px; transform: translateY(-50%); }
.lb-next  { top: 50%; inset-inline-end: 16px;   transform: translateY(-50%); }
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(255, 255, 255, .22); }

/* =========================================================
   How to order (steps)
   ========================================================= */
.how { padding: 60px 0; background: var(--bg-soft-2); }
.how h2 { text-align: center; margin-bottom: 28px; }
.steps {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 16px; grid-template-columns: 1fr;
  counter-reset: step;
}
.steps li {
  background: #fff; border-radius: var(--radius-lg); padding: 22px;
  box-shadow: var(--shadow-sm); position: relative;
}
.steps .num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--pink); color: #fff; font-weight: 800; margin-bottom: 10px;
}
.steps h3 { margin: 0 0 6px; }
.steps p  { margin: 0; color: var(--muted); }

@media (min-width: 700px) { .steps { grid-template-columns: repeat(3, 1fr); } }

/* =========================================================
   Order form (moved right after hero — compact & premium)
   ========================================================= */
.order {
  padding: 28px 0 40px;
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 216, 77, .18), transparent 45%),
    radial-gradient(circle at 100% 100%, rgba(66, 214, 197, .18), transparent 45%),
    linear-gradient(180deg, #fff, var(--bg-soft));
}

.order-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(37, 34, 56, .10);
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  position: relative;
  overflow: hidden;
}
.order-card::before {
  content: "";
  position: absolute; inset-inline-start: 0; top: 0;
  width: 6px; height: 100%;
  background: linear-gradient(180deg, var(--pink), var(--purple), var(--turquoise));
}

.order-summary {
  background: linear-gradient(160deg, var(--bg-soft) 0%, var(--bg-soft-2) 100%);
  border-radius: 16px;
  padding: 18px;
}
.order-badge {
  display: inline-block;
  background: var(--yellow); color: var(--dark);
  font-weight: 800; font-size: .85rem;
  padding: 4px 12px; border-radius: 999px;
  margin-bottom: 10px;
}
.order-summary h2 {
  margin: 0 0 6px;
  font-size: clamp(1.35rem, 2vw + 1rem, 1.7rem);
}
.order-lead {
  color: var(--dark-2); font-size: .98rem; margin: 0 0 14px;
}

.order-summary-img {
  display: none;
  width: 100%; max-height: 220px; object-fit: contain;
  border-radius: 12px; background: #fff;
  margin: 4px 0 14px;
}

.offer-list {
  list-style: none; padding: 0; margin: 0 0 14px;
  display: grid; gap: 8px;
}
.offer-list li {
  background: #fff; border: 1px solid var(--border);
  padding: 10px 12px; border-radius: 12px;
  font-weight: 600; color: var(--dark);
  display: flex; align-items: center; gap: 10px;
}
.offer-list li span { font-size: 1.15rem; }

.price-line {
  display: flex; align-items: baseline; justify-content: space-between;
  background: #fff; border: 1.5px dashed var(--pink);
  border-radius: 12px; padding: 10px 14px;
  font-weight: 700;
}
.price-line strong {
  color: var(--pink); font-size: 1.6rem; font-weight: 900; line-height: 1;
}
.price-line small {
  color: var(--dark); font-weight: 700; font-size: .55em; margin-inline-start: 4px;
}

.order-form {
  display: grid; grid-template-columns: 1fr; gap: 12px;
  padding: 4px 2px;
}
.field { display: flex; flex-direction: column; gap: 4px; }
.field label { font-weight: 700; color: var(--dark); font-size: .95rem; }
.field input, .field select, .field textarea {
  font: inherit; color: var(--dark);
  padding: 11px 13px; border: 1.5px solid var(--border); border-radius: 12px;
  background: #fff; transition: border-color .2s ease, box-shadow .2s ease;
  width: 100%;
  min-height: 46px;
}
.field textarea { resize: vertical; min-height: 68px; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--purple); outline: none;
  box-shadow: 0 0 0 3px rgba(124, 77, 255, .18);
}
.field.invalid input, .field.invalid select, .field.invalid textarea {
  border-color: #e0435c;
  box-shadow: 0 0 0 3px rgba(224, 67, 92, .12);
}
.error { color: #d13757; font-size: .85rem; min-height: 1em; }
.check {
  display: flex; gap: 10px; align-items: flex-start; cursor: pointer; user-select: none;
  font-weight: 500; font-size: .95rem;
}
.check input { width: 20px; height: 20px; margin-top: 3px; accent-color: var(--pink); flex-shrink: 0; }
.total-row {
  display: flex; flex-direction: row; align-items: center; justify-content: space-between;
  background: var(--bg-soft-2); border-radius: 12px; padding: 10px 14px;
}
.total-row strong { color: var(--pink); font-size: 1.2rem; }
.form-status { margin: 10px 0 0; font-weight: 600; font-size: .95rem; }
.form-status.ok { color: #0a7a5c; }
.form-status.err { color: #d13757; }

@media (min-width: 700px) {
  .order-form { grid-template-columns: 1fr 1fr; gap: 12px 14px; }
  .field-full { grid-column: 1 / -1; }
}

@media (min-width: 900px) {
  .order { padding: 40px 0 56px; }
  .order-card {
    grid-template-columns: minmax(280px, .85fr) 1.15fr;
    gap: 26px;
    padding: 26px;
    align-items: stretch;
  }
  .order-summary {
    padding: 22px;
    display: flex; flex-direction: column;
  }
  .order-summary-img { display: block; }
  .order-summary h2 { font-size: 1.6rem; }
  .price-line { margin-top: auto; }
}

/* =========================================================
   FAQ
   ========================================================= */
.faq { padding: 60px 0; background: var(--bg-soft); }
.faq h2 { text-align: center; margin-bottom: 24px; }
.accordion { max-width: 780px; margin: 0 auto; display: grid; gap: 10px; }
.accordion details {
  background: #fff; border: 1px solid var(--border); border-radius: 14px;
  padding: 4px 16px; box-shadow: var(--shadow-sm);
}
.accordion summary {
  cursor: pointer; padding: 14px 4px; font-weight: 700; color: var(--dark);
  list-style: none; position: relative; padding-inline-end: 34px;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after {
  content: "+"; position: absolute; inset-inline-end: 4px; top: 50%;
  transform: translateY(-50%); font-size: 1.3rem; color: var(--pink); font-weight: 800;
  transition: transform .2s ease;
}
.accordion details[open] summary::after { content: "–"; }
.accordion p { margin: 0 0 12px; color: var(--dark-2); }

/* =========================================================
   Final CTA
   ========================================================= */
.final-cta {
  padding: 60px 0;
  background: linear-gradient(120deg, var(--pink), var(--purple));
  color: #fff; text-align: center;
}
.final-cta h2 { color: #fff; }
.final-cta p { font-size: 1.05rem; opacity: .95; margin-bottom: 20px; }
.final-cta .btn-primary {
  background: #fff; color: var(--pink);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
}
.final-cta .btn-primary:hover { background: var(--yellow); color: var(--dark); }

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background: var(--dark); color: #cec9e0;
  padding: 44px 0 20px;
  padding-bottom: calc(20px + env(safe-area-inset-bottom));
}
.footer-inner {
  display: grid; grid-template-columns: 1fr; gap: 26px;
}
.site-footer h4 { color: #fff; margin: 0 0 10px; }
.site-footer a { color: var(--yellow); }
.site-footer a:hover { color: #fff; }
.footer-brand img { height: 42px; margin-bottom: 8px; filter: brightness(1.1); }
.footer-links ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 6px; }
.footer-bottom {
  margin-top: 22px; padding-top: 16px; border-top: 1px solid rgba(255, 255, 255, .08);
  text-align: center; font-size: .9rem;
}
@media (min-width: 800px) {
  .footer-inner { grid-template-columns: 1.2fr 1fr 1fr; }
}

/* =========================================================
   Mobile sticky CTA
   ========================================================= */
.sticky-cta {
  position: fixed; inset-inline: 0; bottom: 0;
  z-index: 60;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  background: #fff; border-top: 1px solid var(--border);
  padding: 10px 16px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom));
  box-shadow: 0 -6px 20px rgba(37, 34, 56, .12);
}
.sticky-cta .sc-price { font-weight: 900; color: var(--pink); font-size: 1.15rem; }
.sticky-cta .sc-price small { color: var(--dark); font-weight: 700; margin-inline-start: 4px; font-size: .8em; }
.sticky-cta .btn { padding: .75rem 1.2rem; }

body { padding-bottom: 78px; }
@media (min-width: 900px) {
  .sticky-cta { display: none; }
  body { padding-bottom: 0; }
}

/* =========================================================
   Reduced motion
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .hero-media img { animation: none; }
}
