/* ============================================================
   BRIGADAYROS — bold modern linktree
   ============================================================ */

:root {
  /* Brand palette pulled from the logo + menu artwork */
  --cream: #faf3d8;
  --cream-soft: #fef9e8;
  --mint: #c9e1d2;
  --mint-deep: #8fb9a1;
  --mint-ink: #3a6b54;
  --pink: #f4b7cb;
  --pink-hot: #ec6a99;
  --pink-ink: #8a2b53;
  --lilac: #d8c4dc;
  --lilac-deep: #b390ba;
  --lilac-ink: #5a3a64;
  --yellow: #ffe87a;
  --ink: #2a221f;
  --ink-soft: #5a4f4a;
  --paper: #fffdf3;

  --radius-lg: 36px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --radius-pill: 999px;

  --shadow-card: 0 18px 0 -10px rgba(42, 34, 31, 0.08),
    0 30px 60px -30px rgba(42, 34, 31, 0.25);
  --shadow-cta: 0 10px 0 -2px rgba(42, 34, 31, 0.12),
    0 20px 40px -20px rgba(42, 34, 31, 0.3);

  --font-display: "Fraunces", "Times New Roman", serif;
  --font-body: "DM Sans", system-ui, -apple-system, sans-serif;
  --font-hand: "Caveat", "Brush Script MT", cursive;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--cream);
  background-image:
    radial-gradient(circle at 15% 8%, rgba(244, 183, 203, 0.25) 0, transparent 35%),
    radial-gradient(circle at 88% 22%, rgba(201, 225, 210, 0.45) 0, transparent 40%),
    radial-gradient(circle at 75% 95%, rgba(216, 196, 220, 0.35) 0, transparent 40%);
  background-attachment: fixed;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button {
  font: inherit;
  border: 0;
  background: none;
  cursor: pointer;
  color: inherit;
}

a,
button,
[role="button"] {
  -webkit-tap-highlight-color: transparent;
}

::selection {
  background: var(--pink-hot);
  color: var(--paper);
}

/* ============================================================
   MARQUEE
   ============================================================ */

.marquee {
  background: var(--pink-hot);
  color: var(--paper);
  border-bottom: 2px solid rgba(42, 34, 31, 0.08);
  overflow: hidden;
  font-weight: 600;
  letter-spacing: 0.1em;
  font-size: 12.5px;
  text-transform: uppercase;
}

.marquee__track {
  display: flex;
  gap: 2.5rem;
  white-space: nowrap;
  padding: 11px 0;
  animation: marquee 38s linear infinite;
  width: max-content;
}

.marquee__track span {
  display: inline-flex;
  align-items: center;
  gap: 1.6rem;
  padding-right: 2.5rem;
}

.marquee em {
  font-style: normal;
  color: var(--yellow);
  font-size: 14px;
}

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

/* ============================================================
   HEADER
   ============================================================ */

.site-header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px clamp(20px, 5vw, 48px) 10px;
  max-width: 1280px;
  margin: 0 auto;
}

.logo {
  display: inline-block;
  line-height: 0;
}

.logo img {
  display: block;
  height: clamp(56px, 7vw, 76px);
  width: auto;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-pill);
  background: var(--paper);
  color: var(--ink);
  border: 2px solid var(--ink);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.socials a svg {
  width: 18px;
  height: 18px;
}

.socials a:hover {
  background: var(--ink);
  color: var(--paper);
  transform: translate(-2px, -2px);
}

/* ============================================================
   HERO GIF
   ============================================================ */

.hero-gif {
  max-width: 880px;
  margin: clamp(8px, 2vw, 20px) auto 0;
  padding: 0 clamp(20px, 5vw, 48px);
}

.hero-gif img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  border: 2.5px solid var(--ink);
  box-shadow: var(--shadow-card);
  background: var(--mint);
}

/* ============================================================
   HERO STACK — pile of polaroids
   ============================================================ */

.hero-stack {
  max-width: 1100px;
  margin: clamp(8px, 2vw, 24px) auto 0;
  padding: 0 clamp(16px, 4vw, 32px);
}

.hero-stack__pile {
  position: relative;
  width: 100%;
  height: clamp(380px, 46vw, 500px);
  margin: 0 auto;
}

.polaroid {
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--paper);
  padding: 12px 12px 0;
  box-shadow:
    0 18px 36px -12px rgba(42, 34, 31, 0.32),
    0 4px 10px -3px rgba(42, 34, 31, 0.14);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(42, 34, 31, 0.06);
  will-change: transform, opacity;
  transform: translate(calc(-50% + var(--x, 0px)), calc(-50% + var(--y, 0px))) rotate(var(--rotate, 0deg));
  animation: polaroid-loop 9s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

@keyframes polaroid-loop {
  0% {
    opacity: 0;
    transform: translate(calc(-50% + var(--x, 0px)), calc(-50% + var(--y, 0px) - 14px)) rotate(calc(var(--rotate, 0deg) + 4deg)) scale(1.04);
  }
  6% {
    opacity: 1;
    transform: translate(calc(-50% + var(--x, 0px)), calc(-50% + var(--y, 0px))) rotate(var(--rotate, 0deg)) scale(1);
  }
  88% {
    opacity: 1;
    transform: translate(calc(-50% + var(--x, 0px)), calc(-50% + var(--y, 0px))) rotate(var(--rotate, 0deg)) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(calc(-50% + var(--x, 0px)), calc(-50% + var(--y, 0px) - 6px)) rotate(var(--rotate, 0deg)) scale(0.98);
  }
}

@media (prefers-reduced-motion: reduce) {
  .polaroid {
    animation: none;
    opacity: 1;
  }
}

.polaroid__media {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--mint);
}

.polaroid__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.polaroid figcaption {
  font-family: var(--font-hand);
  font-size: clamp(18px, 2vw, 24px);
  color: var(--ink);
  text-align: center;
  padding: 12px 6px 16px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.01em;
}

.polaroid:hover {
  transform: translate(calc(-50% + var(--x, 0px)), calc(-50% + var(--y, 0px) - 10px)) rotate(0deg) scale(1.05) !important;
  z-index: 20;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow:
    0 28px 50px -14px rgba(42, 34, 31, 0.38),
    0 8px 16px -4px rgba(42, 34, 31, 0.18);
}

.polaroid {
  width: clamp(220px, 26vw, 300px);
}

.polaroid--p1 {
  --rotate: -8deg;
  --x: -34px;
  --y: -18px;
  z-index: 1;
  animation-delay: 0s;
}

.polaroid--p2 {
  --rotate: 6deg;
  --x: 30px;
  --y: -22px;
  z-index: 2;
  animation-delay: -1.5s;
}

.polaroid--p3 {
  --rotate: -3deg;
  --x: -8px;
  --y: 0px;
  z-index: 3;
  animation-delay: -3s;
}

.polaroid--p4 {
  --rotate: 9deg;
  --x: 22px;
  --y: 12px;
  z-index: 4;
  animation-delay: -4.5s;
}

.polaroid--p5 {
  --rotate: -6deg;
  --x: -20px;
  --y: 22px;
  z-index: 5;
  animation-delay: -6s;
}

.polaroid--p6 {
  --rotate: 4deg;
  --x: 12px;
  --y: -6px;
  z-index: 6;
  animation-delay: -7.5s;
}

/* ============================================================
   CTAs — the linktree heart
   ============================================================ */

.ctas {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 1fr;
  gap: 14px;
  max-width: 880px;
  margin: clamp(28px, 4vw, 48px) auto 0;
  padding: 0 clamp(20px, 5vw, 48px);
}

.cta {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  min-height: 96px;
  border-radius: var(--radius-md);
  border: 2.5px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow-cta);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  overflow: hidden;
  isolation: isolate;
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--bg, transparent);
  z-index: -1;
  transition: transform 0.4s ease;
}

.cta--mint { --bg: var(--mint); }
.cta--cream { --bg: var(--yellow); }
.cta--pink { --bg: var(--pink); }
.cta--lilac { --bg: var(--lilac); }

.cta::before {
  background: var(--bg);
}

.cta:hover,
.cta:focus-visible {
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 0 var(--ink), 0 24px 48px -24px rgba(42, 34, 31, 0.4);
  outline: none;
}

.cta:active {
  transform: translate(0, 0);
  box-shadow: 2px 2px 0 0 var(--ink);
}

.cta__icon {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
  background: var(--paper);
  border: 2px solid var(--ink);
  color: var(--ink);
}

.cta__icon svg {
  width: 26px;
  height: 26px;
}

.cta--pink .cta__icon { color: #128c44; }
.cta--lilac .cta__icon { color: #ea1d2c; }

.cta__body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
}

.cta__label {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(20px, 2.5vw, 24px);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.cta__sub {
  font-size: 13.5px;
  color: var(--ink-soft);
  font-weight: 500;
}

.cta__arrow {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  transition: transform 0.25s ease;
}

.cta:hover .cta__arrow {
  transform: translateX(6px);
}

/* ============================================================
   FAVORITES (3-up showcase + mobile carousel)
   ============================================================ */

.favorites {
  margin: clamp(72px, 11vw, 120px) 0 0;
  padding: 0;
}

.favorites__head {
  text-align: center;
  margin: 0 auto 22px;
  padding: 0 24px;
  max-width: 1280px;
}

.favorites__head h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 5.5vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0;
  font-variation-settings: "SOFT" 50, "WONK" 1, "opsz" 144;
}

.favorites__head p {
  font-family: var(--font-hand);
  color: var(--pink-hot);
  font-size: 24px;
  margin: 2px 0 0;
  font-weight: 600;
}

.carousel {
  position: relative;
}

.carousel__track {
  display: flex;
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  gap: 14px;
  padding: 8px clamp(24px, 5vw, 48px) 16px;
  scroll-padding-inline-start: clamp(24px, 5vw, 48px);
}

.carousel__track::-webkit-scrollbar {
  display: none;
}

.product {
  border-radius: var(--radius-lg);
  border: 2.5px solid var(--ink);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  background: var(--bg);
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  /* button reset (now that .product can be a <button>) */
  font: inherit;
  color: inherit;
  padding: 0;
  text-align: left;
  cursor: pointer;
  /* horizontal carousel sizing */
  flex: 0 0 clamp(220px, 22vw, 280px);
  width: clamp(220px, 22vw, 280px);
  scroll-snap-align: start;
}

button.product:focus-visible {
  outline: 3px solid var(--pink-hot);
  outline-offset: 4px;
}

.product--mint { --bg: var(--mint); }
.product--pink { --bg: var(--pink); }
.product--lilac { --bg: var(--lilac); }

.product:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 0 -10px rgba(42, 34, 31, 0.12),
    0 40px 70px -30px rgba(42, 34, 31, 0.35);
}

.product__badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  color: var(--paper);
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-align: center;
  transform: rotate(-12deg);
}

.product__badge svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: var(--pink-hot);
  filter: drop-shadow(2px 2px 0 var(--ink));
}

.product__badge span {
  position: relative;
  padding: 0 8px;
  line-height: 1.1;
}

.product__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.product__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product__placeholder {
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  background: var(--bg);
  background-image:
    radial-gradient(circle at 30% 30%, rgba(42, 34, 31, 0.08) 0 22%, transparent 23%),
    radial-gradient(circle at 70% 65%, rgba(42, 34, 31, 0.07) 0 18%, transparent 19%);
  padding: 24px;
}

.product__placeholder span {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(24px, 3vw, 36px);
  color: var(--ink);
  text-align: center;
  letter-spacing: -0.02em;
  line-height: 1;
}

.placeholder {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  border: 2px dashed rgba(42, 34, 31, 0.4);
  background: rgba(255, 253, 243, 0.55);
  background-image:
    radial-gradient(circle at 30% 30%, rgba(42, 34, 31, 0.06) 0 30%, transparent 31%),
    radial-gradient(circle at 70% 65%, rgba(42, 34, 31, 0.05) 0 22%, transparent 23%);
  position: relative;
}

.placeholder::before {
  content: "imagem";
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: rgba(42, 34, 31, 0.45);
}

.placeholder__label {
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  font-size: clamp(20px, 2.8vw, 28px);
  color: var(--ink);
  text-align: center;
  line-height: 1.05;
  letter-spacing: -0.02em;
  padding: 0 16px;
}

.product__info {
  background: var(--paper);
  border-top: 2.5px solid var(--ink);
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.product__info h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.015em;
}

.product__info p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.35;
}


.carousel__dots {
  display: none;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(42, 34, 31, 0.2);
  transition: background 0.2s ease, transform 0.2s ease;
  padding: 0;
}

.dot.is-active {
  background: var(--ink);
  transform: scale(1.3);
}

/* ============================================================
   ABOUT — Conheça a Júlia
   ============================================================ */

.about {
  margin: clamp(72px, 11vw, 120px) auto 0;
  padding: 0 clamp(20px, 5vw, 48px);
  max-width: 1100px;
}

.about__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
}

.about__media {
  position: relative;
  margin: 0;
  border: 2.5px solid var(--ink);
  border-radius: var(--radius-lg);
  background: var(--mint);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-card);
}

.about__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 11px;
  color: var(--mint-ink);
  margin-bottom: 16px;
}

.about__eyebrow-line {
  width: 24px;
  height: 1.5px;
  background: var(--mint-deep);
  display: inline-block;
}

.about__body h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 0 0 18px;
  color: var(--ink);
  font-variation-settings: "SOFT" 50, "WONK" 1, "opsz" 144;
}

.about__body h2 strong,
.about__body p strong {
  color: var(--pink-hot);
  font-weight: 800;
}

.about__body p {
  margin: 0 0 22px;
  color: var(--ink-soft);
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.6;
  max-width: 52ch;
}

.about__chips {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.about__chips li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--radius-pill);
  color: var(--ink);
}

.about__chips li span {
  color: var(--pink-hot);
}

@media (max-width: 760px) {
  .about {
    margin-top: clamp(56px, 9vw, 80px);
  }

  .about__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about__media {
    aspect-ratio: 1 / 1;
    max-width: 320px;
    margin: 0 auto;
  }

  .about__body {
    text-align: center;
  }

  .about__chips {
    justify-content: center;
  }

  .about__body p {
    margin-left: auto;
    margin-right: auto;
  }
}

/* ============================================================
   LANDING PAGE — Bolos personalizados
   ============================================================ */

.lp-section__head {
  text-align: center;
  margin: 0 auto clamp(28px, 4vw, 44px);
  max-width: 760px;
  padding: 0 clamp(20px, 5vw, 48px);
}

.lp-section__eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 11px;
  color: var(--mint-ink);
  margin-bottom: 14px;
}

.lp-section__head h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(34px, 5.5vw, 60px);
  line-height: 1;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--ink);
  font-variation-settings: "SOFT" 50, "WONK" 1, "opsz" 144;
}

.lp-section__sub {
  font-family: var(--font-hand);
  color: var(--pink-hot);
  font-size: 24px;
  margin: 6px 0 0;
  font-weight: 600;
}

/* ---- CTA buttons ---- */
.lp-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 28px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(16px, 1.6vw, 19px);
  letter-spacing: 0.005em;
  color: var(--paper);
  background: #128c44;
  border: 2.5px solid var(--ink);
  border-radius: var(--radius-pill);
  box-shadow: 4px 4px 0 0 var(--ink);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  text-decoration: none;
  cursor: pointer;
  line-height: 1.1;
}

.lp-cta:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 0 var(--ink);
  background: #0e7a3a;
}

.lp-cta:active {
  transform: translate(0, 0);
  box-shadow: 2px 2px 0 0 var(--ink);
}

.lp-cta__wa-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.lp-cta__arrow {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  transition: transform 0.2s ease;
}

.lp-cta:hover .lp-cta__arrow {
  transform: translateX(4px);
}

.lp-cta--big {
  padding: 22px 36px;
  font-size: clamp(17px, 2vw, 22px);
  box-shadow: 6px 6px 0 0 var(--ink);
}

.lp-cta--big:hover {
  box-shadow: 9px 9px 0 0 var(--ink);
}

/* ============================================================
   LP HERO
   ============================================================ */
.lp-hero {
  padding: clamp(28px, 5vw, 56px) clamp(20px, 5vw, 48px) clamp(40px, 6vw, 80px);
  max-width: 1280px;
  margin: 0 auto;
}

.lp-hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.lp-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 11.5px;
  color: var(--mint-ink);
  margin-bottom: 18px;
}

.lp-hero__eyebrow span[aria-hidden] {
  color: var(--pink-hot);
  font-size: 14px;
}

.lp-hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(40px, 6.8vw, 84px);
  line-height: 0.94;
  letter-spacing: -0.035em;
  margin: 0 0 22px;
  color: var(--ink);
  font-variation-settings: "SOFT" 50, "WONK" 1, "opsz" 144;
}

.lp-hero__title em {
  color: var(--pink-hot);
  font-style: italic;
  font-variation-settings: "SOFT" 100, "WONK" 1, "opsz" 144;
}

.lp-hero__sub {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(16px, 1.7vw, 20px);
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0 0 30px;
  max-width: 52ch;
}

.lp-hero__sub strong {
  color: var(--ink);
  font-weight: 700;
}

.lp-hero__ctas {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.lp-hero__assurance {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--ink-soft);
  margin: 0;
  font-weight: 500;
  font-family: var(--font-body);
}

.lp-hero__dot.lp-hero__dot--pink {
  background: var(--pink-hot);
  animation: none;
  box-shadow: none;
}

.lp-hero__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #5fd388;
  box-shadow: 0 0 0 0 rgba(95, 211, 136, 0.6);
  animation: pulse 2s ease-out infinite;
  display: inline-block;
}

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(95, 211, 136, 0.6); }
  70%  { box-shadow: 0 0 0 8px rgba(95, 211, 136, 0); }
  100% { box-shadow: 0 0 0 0 rgba(95, 211, 136, 0); }
}

/* hero media */
.lp-hero__media {
  position: relative;
  margin: 0;
  border: 2.5px solid var(--ink);
  border-radius: var(--radius-lg);
  background: var(--mint);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-card);
}

.lp-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Crossfade carousel for hero (used on encomenda-bolos) */
.lp-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.lp-hero__slide.is-active {
  opacity: 1;
}

.lp-hero__sticker {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 130px;
  height: 130px;
  display: grid;
  place-items: center;
  color: var(--paper);
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  font-size: 15px;
  text-align: center;
  line-height: 1.05;
  transform: rotate(8deg);
  z-index: 2;
}

.lp-hero__sticker svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: var(--pink-hot);
  filter: drop-shadow(2px 2px 0 var(--ink));
}

.lp-hero__sticker span {
  position: relative;
  padding: 0 10px;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.lp-trust {
  background: var(--ink);
  color: var(--paper);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  overflow: hidden;
}

.lp-trust__list {
  list-style: none;
  margin: 0 auto;
  max-width: 1280px;
  padding: 18px clamp(20px, 5vw, 48px);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 28px;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
}

.lp-trust__list li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.lp-trust__list li span {
  color: var(--pink-hot);
  font-size: 14px;
}


/* ============================================================
   BUTTERCREAM GALLERY (visual proof of personalization)
   ============================================================ */
.lp-buttercream {
  max-width: 1280px;
  margin: clamp(72px, 10vw, 110px) auto 0;
  padding: 0 clamp(20px, 5vw, 48px);
}

.lp-buttercream__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.lp-buttercream__grid figure {
  margin: 0;
  border: 2.5px solid var(--ink);
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  background: var(--paper);
}

.lp-buttercream__grid figure:nth-child(3n) { transform: rotate(-0.6deg); }
.lp-buttercream__grid figure:nth-child(3n+1) { transform: rotate(0.4deg); }
.lp-buttercream__grid figure:nth-child(3n+2) { transform: rotate(-0.2deg); }

.lp-buttercream__grid figure:hover {
  transform: translateY(-5px) rotate(0deg) !important;
  box-shadow: 0 18px 0 -10px rgba(42, 34, 31, 0.16),
    0 36px 60px -30px rgba(42, 34, 31, 0.4);
}

.lp-buttercream__grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lp-buttercream__cta {
  text-align: center;
  margin-top: clamp(28px, 4vw, 44px);
}

@media (max-width: 900px) {
  .lp-buttercream__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .lp-buttercream__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.lp-how {
  max-width: 1280px;
  margin: clamp(72px, 10vw, 110px) auto 0;
  padding: 0 clamp(20px, 5vw, 48px);
}

.lp-how__steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  counter-reset: step;
}

.lp-how__step {
  background: var(--bg);
  border: 2.5px solid var(--ink);
  border-radius: var(--radius-lg);
  padding: 28px 26px 26px;
  box-shadow: var(--shadow-card);
  position: relative;
  transition: transform 0.25s ease;
}

.lp-how__step--mint  { --bg: var(--mint); }
.lp-how__step--pink  { --bg: var(--pink); }
.lp-how__step--lilac { --bg: var(--lilac); }

.lp-how__step:hover {
  transform: translateY(-4px);
}

.lp-how__num {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--paper);
  border: 2.5px solid var(--ink);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 18px;
  box-shadow: 2px 2px 0 0 var(--ink);
}

.lp-how__step h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(20px, 2.4vw, 26px);
  letter-spacing: -0.015em;
  margin: 0 0 8px;
  line-height: 1.1;
  color: var(--ink);
}

.lp-how__step p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink);
}

.lp-how__cta {
  text-align: center;
  margin-top: clamp(28px, 4vw, 44px);
}

/* ============================================================
   GALLERY (cakes)
   ============================================================ */
.lp-gallery {
  max-width: 1280px;
  margin: clamp(72px, 10vw, 110px) auto 0;
  padding: 0 clamp(20px, 5vw, 48px);
}

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

.lp-cake {
  border: 2.5px solid var(--ink);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease;
}

.lp-cake:hover {
  transform: translateY(-5px);
}

.lp-cake__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--mint);
}

.lp-cake__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lp-cake__placeholder {
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  padding: 24px;
  background: var(--bg);
  border-bottom: 2.5px solid var(--ink);
  background-image:
    radial-gradient(circle at 30% 30%, rgba(42, 34, 31, 0.08) 0 22%, transparent 23%),
    radial-gradient(circle at 70% 65%, rgba(42, 34, 31, 0.07) 0 18%, transparent 19%);
}

.lp-cake__placeholder span {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(22px, 2.6vw, 30px);
  color: var(--ink);
  text-align: center;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.lp-cake--mint  { --bg: var(--mint); }
.lp-cake--pink  { --bg: var(--pink); }
.lp-cake--lilac { --bg: var(--lilac); }

.lp-cake__info {
  padding: 20px 22px 22px;
  border-top: 2.5px solid var(--ink);
  background: var(--paper);
}

.lp-cake--feature .lp-cake__info,
.lp-cake .lp-cake__media + .lp-cake__info {
  border-top: 2.5px solid var(--ink);
}

.lp-cake__info h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(20px, 2.2vw, 24px);
  letter-spacing: -0.01em;
  margin: 0 0 6px;
  color: var(--ink);
}

.lp-cake__info p {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: var(--ink-soft);
}

/* ============================================================
   PRICING
   ============================================================ */
.lp-pricing {
  max-width: 1280px;
  margin: clamp(72px, 10vw, 110px) auto 0;
  padding: 0 clamp(20px, 5vw, 48px);
}

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

.lp-price-card {
  background: var(--paper);
  border: 2.5px solid var(--ink);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}

.lp-price-card header {
  background: var(--bg);
  padding: 22px 24px;
  border-bottom: 2.5px solid var(--ink);
}

.lp-price-card--mint  { --bg: var(--mint); }
.lp-price-card--pink  { --bg: var(--pink); }
.lp-price-card--lilac { --bg: var(--lilac); }

.lp-price-card header h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(22px, 2.4vw, 28px);
  letter-spacing: -0.015em;
  margin: 0 0 4px;
  color: var(--ink);
}

.lp-price-card header p {
  margin: 0;
  font-size: 13.5px;
  color: var(--ink-soft);
  font-weight: 500;
}

.lp-price-card ul {
  list-style: none;
  margin: 0;
  padding: 18px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.lp-price-card li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--font-display);
  border-bottom: 1px dashed rgba(42, 34, 31, 0.18);
  padding-bottom: 8px;
}

.lp-price-card li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.lp-price-card li span {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.lp-price-card li strong {
  font-weight: 800;
  font-size: 18px;
  color: var(--pink-hot);
}

.lp-price-card footer {
  padding: 14px 24px 20px;
  font-size: 12px;
  color: var(--ink-soft);
  border-top: 1px solid rgba(42, 34, 31, 0.12);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

.lp-pricing__note {
  text-align: center;
  font-family: var(--font-hand);
  color: var(--pink-hot);
  font-size: 22px;
  margin: 28px auto 0;
  max-width: 640px;
}

/* ============================================================
   WHY US
   ============================================================ */
.lp-why {
  max-width: 1280px;
  margin: clamp(72px, 10vw, 110px) auto 0;
  padding: 0 clamp(20px, 5vw, 48px);
}

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

.lp-why__item {
  background: var(--paper);
  border: 2.5px solid var(--ink);
  border-radius: var(--radius-md);
  padding: 24px 24px 26px;
  box-shadow: var(--shadow-card);
}

.lp-why__icon {
  display: inline-block;
  font-family: var(--font-display);
  color: var(--pink-hot);
  font-size: 22px;
  margin-bottom: 12px;
}

.lp-why__item h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
  color: var(--ink);
  line-height: 1.15;
}

.lp-why__item p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink-soft);
}

/* ============================================================
   USE CASES
   ============================================================ */
.lp-cases {
  max-width: 1100px;
  margin: clamp(72px, 10vw, 110px) auto 0;
  padding: 0 clamp(20px, 5vw, 48px);
}

.lp-cases__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.lp-cases__list li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: var(--paper);
  border: 2.5px solid var(--ink);
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  box-shadow: 3px 3px 0 0 var(--ink);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.lp-cases__list li:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 0 var(--ink);
}

.lp-cases__list li span {
  color: var(--pink-hot);
  font-size: 16px;
}

/* ============================================================
   FAQ
   ============================================================ */
.lp-faq {
  max-width: 880px;
  margin: clamp(72px, 10vw, 110px) auto 0;
  padding: 0 clamp(20px, 5vw, 48px);
}

.lp-faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lp-faq__item {
  background: var(--paper);
  border: 2.5px solid var(--ink);
  border-radius: var(--radius-md);
  box-shadow: 3px 3px 0 0 var(--ink);
  overflow: hidden;
}

.lp-faq__item summary {
  padding: 18px 22px;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  letter-spacing: -0.005em;
}

.lp-faq__item summary::-webkit-details-marker {
  display: none;
}

.lp-faq__item summary::after {
  content: "+";
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 26px;
  color: var(--pink-hot);
  line-height: 1;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.lp-faq__item[open] summary::after {
  transform: rotate(45deg);
}

.lp-faq__item p {
  padding: 0 22px 20px;
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
}

.lp-faq__item p strong {
  color: var(--ink);
  font-weight: 700;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.lp-final {
  margin: clamp(80px, 11vw, 130px) auto 0;
  padding: 0 clamp(20px, 5vw, 48px);
  max-width: 1100px;
}

.lp-final__inner {
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 72px) clamp(24px, 5vw, 56px);
  text-align: center;
  box-shadow: 10px 10px 0 0 var(--pink-hot);
}

.lp-final .lp-section__eyebrow {
  color: var(--mint);
}

.lp-final h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(34px, 5.5vw, 60px);
  line-height: 1;
  letter-spacing: -0.025em;
  margin: 0 0 18px;
  color: var(--paper);
}

.lp-final p {
  font-family: var(--font-display);
  font-size: clamp(15px, 1.6vw, 18px);
  color: rgba(255, 253, 243, 0.8);
  margin: 0 0 28px;
  line-height: 1.5;
}

.lp-final__hand {
  font-family: var(--font-hand);
  color: var(--pink);
  font-size: 1.5em;
  font-weight: 600;
}

/* ============================================================
   LP FOOTER (minimal)
   ============================================================ */
.lp-footer {
  background: var(--ink);
  color: rgba(255, 253, 243, 0.55);
  margin-top: clamp(60px, 8vw, 90px);
  padding: 24px clamp(20px, 5vw, 48px) 30px;
}

.lp-footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.04em;
}

.lp-footer__inner p:last-child {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

.lp-footer__inner p {
  margin: 0;
}

/* ============================================================
   LP — Tablet / Mobile
   ============================================================ */
@media (max-width: 900px) {
  .lp-hero__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  /* Image rotates above the text on mobile for visual hook */
  .lp-hero__body { order: 2; }

  .lp-hero__media {
    order: 1;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    aspect-ratio: 4 / 3;
  }

  .lp-how__steps,
  .lp-gallery__grid,
  .lp-pricing__grid,
  .lp-why__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .lp-how__steps,
  .lp-gallery__grid,
  .lp-pricing__grid,
  .lp-why__grid {
    grid-template-columns: 1fr;
  }

  .lp-hero__sticker {
    width: 100px;
    height: 100px;
    font-size: 13px;
  }

  .lp-cta {
    padding: 16px 22px;
    width: 100%;
    justify-content: center;
  }

  .lp-cta--big {
    padding: 18px 24px;
  }

  .lp-final__inner {
    box-shadow: 6px 6px 0 0 var(--pink-hot);
  }
}

/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */

.wa-float {
  position: fixed;
  bottom: max(22px, env(safe-area-inset-bottom, 22px));
  right: 22px;
  width: 56px;
  height: 56px;
  display: block;
  z-index: 100;
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.18));
  transition: transform 0.2s ease, opacity 0.2s ease;
  opacity: 0.92;
}

.wa-float img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.wa-float:hover {
  opacity: 1;
  transform: scale(1.05);
}

.wa-float:active {
  transform: scale(0.97);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */

.testimonials {
  max-width: 1280px;
  margin: clamp(72px, 11vw, 120px) auto 0;
  padding: 0 clamp(20px, 5vw, 48px);
}

.testimonials__head {
  text-align: center;
  margin-bottom: clamp(28px, 4vw, 44px);
}

.testimonials__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 11px;
  color: var(--mint-ink);
  margin-bottom: 14px;
}

.testimonials__eyebrow > span {
  color: var(--pink-hot);
  letter-spacing: 0.05em;
  font-size: 13px;
}

.testimonials__head h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(38px, 6vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--ink);
  font-variation-settings: "SOFT" 50, "WONK" 1, "opsz" 144;
}

.testimonials__head p {
  font-family: var(--font-hand);
  color: var(--pink-hot);
  font-size: 24px;
  margin: 4px 0 0;
  font-weight: 600;
}

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

.testimonial {
  background: var(--bg);
  border: 2.5px solid var(--ink);
  border-radius: var(--radius-lg);
  padding: 26px 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testimonial--mint  { --bg: var(--mint); }
.testimonial--pink  { --bg: var(--pink); }
.testimonial--lilac { --bg: var(--lilac); }

.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 0 -10px rgba(42, 34, 31, 0.14),
    0 36px 60px -30px rgba(42, 34, 31, 0.4);
}

.testimonial__stars {
  color: var(--pink-hot);
  font-size: 15px;
  letter-spacing: 0.22em;
  filter: drop-shadow(0 1px 0 rgba(42, 34, 31, 0.12));
}

.testimonial__quote {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.34;
  color: var(--ink);
  margin: 0;
  font-style: italic;
  flex: 1;
  letter-spacing: -0.005em;
}

.testimonial__quote::before {
  content: "“";
  margin-right: 2px;
}

.testimonial__quote::after {
  content: "”";
  margin-left: 2px;
}

.testimonial__author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-top: 1.5px solid rgba(42, 34, 31, 0.22);
  padding-top: 12px;
  margin-top: 4px;
}

.testimonial__author cite {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  font-style: normal;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.testimonial__author span {
  font-size: 12px;
  color: var(--ink-soft);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.testimonials__cta {
  text-align: center;
  margin-top: clamp(28px, 4vw, 44px);
}

.testimonials__cta a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  color: var(--ink);
  background: var(--paper);
  border: 2.5px solid var(--ink);
  border-radius: var(--radius-pill);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  box-shadow: 4px 4px 0 0 var(--ink);
}

.testimonials__cta a:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 0 var(--ink);
}

@media (max-width: 900px) {
  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .testimonials {
    padding-left: 0;
    padding-right: 0;
  }

  .testimonials__head {
    padding: 0 24px;
  }

  .testimonials__grid {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 14px;
    padding: 6px 24px 14px;
  }

  .testimonials__grid::-webkit-scrollbar {
    display: none;
  }

  .testimonial {
    flex: 0 0 82%;
    scroll-snap-align: center;
  }

  .testimonials__cta {
    padding: 0 24px;
  }
}

/* ============================================================
   BIG FOOTER
   ============================================================ */

.site-footer {
  background: var(--ink);
  color: var(--paper);
  margin-top: clamp(64px, 10vw, 110px);
  overflow: hidden;
}

/* ---- TREAT YOURSELF banner (text + cookie side-by-side on desktop) ---- */
.site-footer__banner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  align-items: end;
  gap: clamp(8px, 2vw, 32px);
  padding: clamp(48px, 7vw, 88px) clamp(24px, 6vw, 72px) 0;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.site-footer__text {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 32px rgba(0, 0, 0, 0.25));
}

.site-footer__cookie {
  width: 100%;
  max-width: 460px;
  height: auto;
  display: block;
  justify-self: end;
  margin-bottom: -4px;
  transform-origin: bottom center;
  animation: wave 5s ease-in-out infinite;
}

@keyframes wave {
  0%, 100% { transform: rotate(0deg); }
  20% { transform: rotate(-3deg); }
  40% { transform: rotate(2deg); }
  60% { transform: rotate(-2deg); }
  80% { transform: rotate(1deg); }
}

/* ---- Social pills ---- */
.site-footer__socials {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  padding: clamp(28px, 4vw, 44px) clamp(20px, 5vw, 48px);
  max-width: 1280px;
  margin: 0 auto;
}

.site-footer__socials a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  border: 1.5px solid rgba(255, 253, 243, 0.22);
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--paper);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.site-footer__socials a svg {
  width: 14px;
  height: 14px;
}

.site-footer__socials a:hover {
  background: var(--pink-hot);
  border-color: var(--pink-hot);
  color: var(--paper);
  transform: translateY(-2px);
}

/* ---- Marquee strip (sits above cookie so wiggle stays tucked) ---- */
.site-footer__strip {
  background: var(--mint);
  color: var(--ink);
  overflow: hidden;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}

.site-footer__strip-track {
  display: flex;
  gap: 24px;
  white-space: nowrap;
  padding: 11px 0;
  animation: marquee 50s linear infinite;
  width: max-content;
}

.site-footer__strip-track span {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding-right: 24px;
}

.site-footer__strip em {
  font-style: normal;
  color: var(--pink-hot);
  font-size: 14px;
}

/* ---- Legal bar ---- */
.site-footer__legal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 22px clamp(24px, 6vw, 72px) 30px;
  max-width: 1280px;
  margin: 0 auto;
  font-size: 11.5px;
  color: rgba(255, 253, 243, 0.55);
  letter-spacing: 0.04em;
  font-weight: 500;
  text-align: center;
}

.site-footer__legal-block {
  margin: 0;
}

.site-footer__address {
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ---- Footer mobile ---- */
@media (max-width: 600px) {
  .site-footer__banner {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .site-footer__text {
    max-width: 420px;
  }

  .site-footer__cookie {
    width: 260px;
    justify-self: center;
    margin-top: -8px;
  }
}

/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 760px) {
  .site-header {
    padding-top: 18px;
    padding-bottom: 12px;
  }

  .hero {
    padding-top: 8px;
  }

  .ctas {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .cta {
    padding: 18px 18px;
    gap: 14px;
  }

  .cta__icon {
    width: 46px;
    height: 46px;
  }

  .cta__icon svg {
    width: 22px;
    height: 22px;
  }

  .cta__label {
    font-size: 19px;
  }

  .cta__sub {
    font-size: 12.5px;
  }

  .cta__arrow {
    font-size: 22px;
  }

  /* Polaroid hero on mobile */
  .hero-stack__pile {
    height: 360px;
  }

  .polaroid {
    width: 220px;
  }

  .polaroid figcaption {
    font-size: 17px;
    padding: 10px 6px 12px;
  }

  .polaroid--p1 { --x: -24px; --y: -14px; }
  .polaroid--p2 { --x: 20px; --y: -18px; }
  .polaroid--p3 { --x: -6px; --y: 0px; }
  .polaroid--p4 { --x: 16px; --y: 10px; }
  .polaroid--p5 { --x: -14px; --y: 18px; }
  .polaroid--p6 { --x: 8px; --y: -4px; }

  /* Carousel: bigger cards on mobile for readability */
  .product {
    flex: 0 0 75%;
    width: 75%;
  }

  .carousel__dots {
    display: flex;
  }

  .display__row--bottom {
    justify-content: center;
  }
}

@media (max-width: 420px) {
  .marquee {
    font-size: 11.5px;
  }

  .product {
    flex: 0 0 82%;
    width: 82%;
  }

  .product__badge {
    width: 80px;
    height: 80px;
    font-size: 10px;
  }
}

/* Honor reduced motion */
@media (prefers-reduced-motion: reduce) {
  .marquee__track,
  .star {
    animation: none !important;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================
   PRODUCT BOTTOM SHEET
   ============================================================ */

.sheet {
  border: 0;
  padding: 0;
  background: transparent;
  max-width: none;
  max-height: none;
  width: 100%;
  height: 100%;
  margin: 0;
  inset: 0;
}

.sheet::backdrop {
  background: rgba(42, 34, 31, 0.55);
  backdrop-filter: blur(3px);
}

.sheet[open] {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  animation: sheet-backdrop-in 0.2s ease-out;
}

@keyframes sheet-backdrop-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.sheet__inner {
  position: relative;
  background: var(--paper);
  width: 100%;
  max-width: 560px;
  max-height: 92vh;
  overflow-y: auto;
  overflow-x: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  border: 2.5px solid var(--ink);
  border-bottom: 0;
  box-shadow: 0 -20px 60px -20px rgba(42, 34, 31, 0.5);
  animation: sheet-slide-up 0.32s cubic-bezier(0.22, 1, 0.36, 1);
  /* extend paper bg behind iOS Safari bottom toolbar */
  padding-bottom: env(safe-area-inset-bottom, 0);
}

@keyframes sheet-slide-up {
  from {
    transform: translateY(100%);
    opacity: 0.7;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.sheet__inner::before {
  content: "";
  display: block;
  width: 44px;
  height: 5px;
  background: rgba(42, 34, 31, 0.18);
  border-radius: 99px;
  margin: 12px auto 0;
}

.sheet__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--ink);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  color: var(--ink);
  cursor: pointer;
  z-index: 2;
  box-shadow: 2px 2px 0 0 var(--ink);
  transition: transform 0.15s ease;
  /* kill iOS Safari tap highlight + default focus ring */
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
}

.sheet__close:focus,
.sheet__close:focus-visible {
  outline: none;
}

.sheet__close:hover {
  transform: translate(-1px, -1px);
  box-shadow: 3px 3px 0 0 var(--ink);
}

.sheet__media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--mint);
  margin-top: 4px;
}

.sheet__slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.sheet__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 0.7s ease;
}

.sheet__slide.is-active {
  opacity: 1;
}

.sheet__dots {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 7px;
  z-index: 2;
  pointer-events: none;
}

.sheet__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 253, 243, 0.55);
  border: 1px solid rgba(42, 34, 31, 0.35);
  transition: background 0.25s ease, transform 0.25s ease;
  display: inline-block;
}

.sheet__dot.is-active {
  background: var(--paper);
  transform: scale(1.35);
}

.sheet__body {
  padding: 24px 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sheet__body h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(26px, 4vw, 34px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
}

.sheet__body p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--ink-soft);
}

.sheet__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 22px;
  background: #128c44;
  color: var(--paper);
  border: 2.5px solid var(--ink);
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.005em;
  text-decoration: none;
  box-shadow: 4px 4px 0 0 var(--ink);
  margin-top: 6px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.sheet__cta:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 0 var(--ink);
  background: #0e7a3a;
}

.sheet__cta svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 760px) {
  .sheet__inner {
    max-height: 88vh;
  }
}

@media (min-width: 761px) {
  .sheet[open] {
    align-items: center;
  }
  .sheet__inner {
    border-radius: var(--radius-lg);
    border-bottom: 2.5px solid var(--ink);
    animation-name: sheet-pop-in;
  }
  @keyframes sheet-pop-in {
    from {
      transform: translateY(20px) scale(0.96);
      opacity: 0;
    }
    to {
      transform: translateY(0) scale(1);
      opacity: 1;
    }
  }
  .sheet__inner::before {
    display: none;
  }
}

/* ============================================================
   LEAD CAPTURE MODAL (A/B test on bolos-personalizados)
   ============================================================ */

.lead-modal {
  border: 0;
  padding: 0;
  background: transparent;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  margin: 0;
  inset: 0;
  color: var(--ink);
}

.lead-modal::backdrop {
  background: rgba(42, 34, 31, 0.55);
  backdrop-filter: blur(4px);
}

.lead-modal[open] {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 32px);
  animation: lead-modal-in 0.22s ease-out;
}

@keyframes lead-modal-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.lead-modal__inner {
  position: relative;
  background: var(--paper);
  width: 100%;
  max-width: 440px;
  max-height: 92vh;
  overflow-y: auto;
  overflow-x: hidden;
  border-radius: var(--radius-lg);
  border: 2.5px solid var(--ink);
  box-shadow: 8px 8px 0 0 var(--pink-hot);
  padding: 36px clamp(22px, 5vw, 32px) clamp(24px, 5vw, 32px);
  animation: lead-modal-pop 0.34s cubic-bezier(0.22, 1.2, 0.36, 1);
}

@keyframes lead-modal-pop {
  from {
    transform: translateY(20px) scale(0.96);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

.lead-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--ink);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  color: var(--ink);
  cursor: pointer;
  z-index: 2;
  box-shadow: 2px 2px 0 0 var(--ink);
  transition: transform 0.15s ease;
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
}

.lead-modal__close:focus,
.lead-modal__close:focus-visible {
  outline: none;
}

.lead-modal__close:hover {
  transform: translate(-1px, -1px);
  box-shadow: 3px 3px 0 0 var(--ink);
}

.lead-modal__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 11px;
  color: var(--mint-ink);
  margin-bottom: 12px;
}

.lead-modal__pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #5fd388;
  box-shadow: 0 0 0 0 rgba(95, 211, 136, 0.6);
  animation: pulse 2s ease-out infinite;
  display: inline-block;
}

.lead-modal h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(20px, 3vw, 26px);
  line-height: 1.12;
  letter-spacing: -0.022em;
  color: var(--ink);
  margin: 0 0 22px;
}

.lead-modal__fields {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}

.lead-modal__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lead-modal__label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-soft);
}

.lead-modal input {
  font: inherit;
  font-size: 16px;
  padding: 14px 16px;
  border: 2px solid var(--ink);
  border-radius: var(--radius-md);
  background: var(--paper);
  color: var(--ink);
  outline: none;
  width: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: none;
  appearance: none;
}

.lead-modal input::placeholder {
  color: rgba(42, 34, 31, 0.36);
}

.lead-modal__field > input:focus {
  border-color: var(--pink-hot);
  box-shadow: 0 0 0 3px rgba(236, 106, 153, 0.18);
}

.lead-modal__phone {
  display: flex;
  align-items: stretch;
  border: 2px solid var(--ink);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--paper);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lead-modal__phone:focus-within {
  border-color: var(--pink-hot);
  box-shadow: 0 0 0 3px rgba(236, 106, 153, 0.18);
}

.lead-modal__phone-prefix {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 14px;
  background: var(--mint);
  border-right: 2px solid var(--ink);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  color: var(--ink);
  white-space: nowrap;
  user-select: none;
}

.lead-modal__flag {
  font-size: 18px;
  line-height: 1;
}

.lead-modal__phone input {
  border: 0;
  border-radius: 0;
  padding: 14px 16px;
  flex: 1;
  min-width: 0;
  box-shadow: none;
}

.lead-modal__phone input:focus {
  border: 0;
  box-shadow: none;
}

.lead-modal__hint {
  font-size: 12.5px;
  color: var(--pink-hot);
  font-weight: 600;
  margin-top: 4px;
}

.lead-modal__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 22px;
  background: #128c44;
  color: var(--paper);
  border: 2.5px solid var(--ink);
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.005em;
  box-shadow: 4px 4px 0 0 var(--ink);
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, opacity 0.18s ease;
  -webkit-tap-highlight-color: transparent;
}

.lead-modal__submit svg {
  width: 20px;
  height: 20px;
}

.lead-modal__submit:hover:not(:disabled) {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 0 var(--ink);
  background: #0e7a3a;
}

.lead-modal__submit:active:not(:disabled) {
  transform: translate(0, 0);
  box-shadow: 2px 2px 0 0 var(--ink);
}

.lead-modal__submit:disabled {
  opacity: 0.7;
  cursor: wait;
}

.lead-modal__assurance {
  margin: 14px 0 0;
  font-size: 12.5px;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  font-weight: 500;
}

.lead-modal__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #5fd388;
  display: inline-block;
}

/* Mobile: true full-screen */
@media (max-width: 600px) {
  .lead-modal[open] {
    padding: 0;
    align-items: stretch;
    justify-content: stretch;
  }

  .lead-modal__inner {
    max-width: none;
    max-height: none;
    min-height: 100vh;
    min-height: 100dvh;
    width: 100%;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding: max(40px, env(safe-area-inset-top, 40px)) clamp(20px, 5vw, 28px)
      max(20px, env(safe-area-inset-bottom, 20px));
    animation: lead-modal-fade-up 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  }

  @keyframes lead-modal-fade-up {
    from { transform: translateY(24px); opacity: 0; }
    to   { transform: translateY(0); opacity: 1; }
  }

  /* No drag handle in full-screen mode */
  .lead-modal__inner::before { display: none; }

  /* Close button respects iOS notch */
  .lead-modal__close {
    top: max(14px, env(safe-area-inset-top, 14px));
    right: 14px;
  }

  .lead-modal__eyebrow { margin-bottom: 10px; }
  .lead-modal h3 { font-size: 22px; margin-bottom: 18px; }
  .lead-modal__fields { gap: 12px; margin-bottom: 16px; }
  .lead-modal input { padding: 12px 14px; }
  .lead-modal__phone-prefix { padding: 0 12px; }
  .lead-modal__submit { padding: 14px 20px; font-size: 15.5px; }
}

/* Extra-short screens (iPhone SE, landscape, keyboard up): compress further */
@media (max-width: 600px) and (max-height: 700px) {
  .lead-modal__inner {
    padding-top: max(28px, env(safe-area-inset-top, 28px));
    padding-bottom: max(14px, env(safe-area-inset-bottom, 14px));
  }
  .lead-modal__close {
    width: 32px;
    height: 32px;
    font-size: 18px;
    top: max(10px, env(safe-area-inset-top, 10px));
    right: 10px;
  }
  .lead-modal__eyebrow { font-size: 10px; margin-bottom: 8px; }
  .lead-modal h3 { font-size: 19px; line-height: 1.1; margin-bottom: 14px; }
  .lead-modal__label { font-size: 11px; }
  .lead-modal__fields { gap: 10px; margin-bottom: 14px; }
  .lead-modal input { padding: 11px 13px; font-size: 15px; }
  .lead-modal__submit { padding: 12px 18px; font-size: 15px; }
}

/* ============================================================
   ENCOMENDA-BOLOS — cake grid
   ============================================================ */

.cake-grid-section {
  max-width: 1280px;
  margin: clamp(56px, 8vw, 96px) auto 0;
  padding: 0 clamp(20px, 5vw, 48px);
}

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

.cake-card {
  /* button reset */
  font: inherit;
  color: inherit;
  text-align: left;
  cursor: pointer;
  padding: 0;
  width: 100%;
  /* layout */
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border: 2.5px solid var(--ink);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  -webkit-tap-highlight-color: transparent;
}

.cake-card--mint  { --bg: var(--mint); }
.cake-card--pink  { --bg: var(--pink); }
.cake-card--lilac { --bg: var(--lilac); }

.cake-card[hidden] { display: none; }

.cake-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 0 -10px rgba(42, 34, 31, 0.16),
    0 40px 70px -30px rgba(42, 34, 31, 0.4);
}

.cake-card:active {
  transform: translateY(-1px);
}

.cake-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.cake-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cake-card__placeholder {
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  background: var(--bg);
  background-image:
    radial-gradient(circle at 30% 30%, rgba(42, 34, 31, 0.08) 0 22%, transparent 23%),
    radial-gradient(circle at 70% 65%, rgba(42, 34, 31, 0.07) 0 18%, transparent 19%);
  padding: 24px;
}

.cake-card__placeholder span {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 28px);
  color: var(--ink);
  text-align: center;
  line-height: 1.04;
  letter-spacing: -0.02em;
}

.cake-card__info {
  background: var(--paper);
  border-top: 2.5px solid var(--ink);
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.cake-card__info h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--ink);
}

.cake-card__info p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.4;
  color: var(--ink-soft);
  flex: 1;
}

.cake-card__price {
  display: inline-block;
  margin-top: 8px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  color: var(--pink-hot);
  letter-spacing: 0.005em;
}

@media (max-width: 900px) {
  .cake-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .cake-card__info { padding: 14px 16px 16px; }
}

@media (max-width: 480px) {
  .cake-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   LEAD MODAL — mini cart-review preview
   ============================================================ */

.lead-modal__product {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 12px;
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  box-shadow: 3px 3px 0 0 var(--ink);
}

.lead-modal__product[hidden] {
  display: none;
}

.lead-modal__product-media {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
  border: 1.5px solid var(--ink);
  background: var(--mint);
}

.lead-modal__product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lead-modal__product-media img[hidden] {
  display: none;
}

.lead-modal__product-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: var(--mint);
  background-image:
    radial-gradient(circle at 30% 30%, rgba(42, 34, 31, 0.08) 0 25%, transparent 26%),
    radial-gradient(circle at 70% 65%, rgba(42, 34, 31, 0.07) 0 18%, transparent 19%);
  padding: 4px;
}

.lead-modal__product-placeholder[hidden] {
  display: none;
}

.lead-modal__product-placeholder span {
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  font-size: 10px;
  color: var(--ink);
  text-align: center;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.lead-modal__product-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
  flex: 1;
}

.lead-modal__product-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-soft);
  line-height: 1;
  margin-bottom: 3px;
}

.lead-modal__product-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.015em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lead-modal__product-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--pink-hot);
  line-height: 1.2;
}

@media (max-width: 600px) and (max-height: 700px) {
  /* Compress the cart preview on small phones */
  .lead-modal__product {
    padding: 8px 10px;
    margin-bottom: 14px;
    gap: 10px;
  }
  .lead-modal__product-media {
    width: 52px;
    height: 52px;
  }
  .lead-modal__product-name { font-size: 14px; }
  .lead-modal__product-price { font-size: 12px; }
  .lead-modal__product-label { font-size: 9px; margin-bottom: 2px; }
}

/* ============================================================
   CAKE CARD — delivery badges
   ============================================================ */

.cake-card__media {
  position: relative;
}

.cake-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 5px 11px;
  border: 1.5px solid var(--ink);
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 10.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 1.5px 1.5px 0 0 var(--ink);
}

.cake-card__badge--soon {
  background: #128c44;
  color: var(--paper);
}

.cake-card__badge--later {
  background: var(--paper);
  color: var(--ink);
}

@media (max-width: 600px) {
  .cake-card__badge {
    top: 8px;
    left: 8px;
    font-size: 9.5px;
    padding: 4px 9px;
  }
}
