/* ==========================================================================
   SUGOI HANDMADE — styles
   --------------------------------------------------------------------------
   Palette and type are pulled straight from her Instagram badge: periwinkle
   circle, lilac letters, gold sparkles, thick black outlines. The whole site
   uses that same sticker language — 3px black borders and hard offset
   shadows, no soft drop shadows anywhere.

   Change the values in :root and the entire site re-themes.
   ========================================================================== */

:root {
  /* ---- sampled from the logo ---- */
  --indigo:    #5858D0;   /* the badge circle */
  --indigo-dk: #3F3FA8;   /* shadows, hovers */
  --indigo-lt: #7C7CE4;
  --lilac:     #D088F0;   /* the SH letters */
  --lilac-lt:  #EBD1FA;
  --lilac-pale:#F5E9FD;
  --gold:      #F8D020;   /* the sparkles */
  --red:       #F4384A;   /* the straw hat band */
  --ink:       #101018;   /* the outlines */
  --paper:     #FBF8FF;
  --white:     #FFFFFF;

  --ink-soft: rgba(16, 16, 24, 0.66);
  --line:     rgba(16, 16, 24, 0.14);

  /* ---- type ---- */
  --font-display: "Fredoka", "Trebuchet MS", sans-serif;
  --font-hand: "Caveat", "Comic Sans MS", cursive;   /* the logo's marker text */
  --font-body: "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* ---- the sticker look ---- */
  --bd: 3px solid var(--ink);
  --bd-thin: 2.5px solid var(--ink);
  --pop: 6px 6px 0 var(--ink);
  --pop-lg: 9px 9px 0 var(--ink);
  --pop-sm: 4px 4px 0 var(--ink);

  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 28px;

  --wrap: 1120px;
}

/* ---- reset-ish ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--indigo-dk); }
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.12; margin: 0 0 .5em; }
h1 { font-size: clamp(2.3rem, 6.2vw, 4.1rem); font-weight: 700; letter-spacing: -.01em; }
h2 { font-size: clamp(1.8rem, 4.2vw, 2.8rem); font-weight: 700; }
h3 { font-size: 1.15rem; }
p  { margin: 0 0 1em; }

.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--indigo); color: #fff; padding: .7rem 1.2rem; border: var(--bd);
}
.skip-link:focus { left: 0; }

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

/* the logo's handwritten "Sugoi / Handmade" lettering */
.eyebrow {
  font-family: var(--font-hand);
  font-size: clamp(1.15rem, 3vw, 1.45rem);
  font-weight: 700;
  letter-spacing: .01em;
  color: var(--indigo);
  margin: 0 0 .3em;
  transform: rotate(-1.5deg);
}
.fineprint { font-size: .85rem; color: var(--ink-soft); }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

/* the badge's four-point gold sparkle, reusable */
.spark { color: var(--gold); text-shadow: 0 0 0 var(--ink); }

/* ==========================================================================
   NAV
   ========================================================================== */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 248, 255, .9);
  backdrop-filter: blur(12px);
  border-bottom: 3px solid transparent;
  transition: border-color .2s;
}
.nav.is-stuck { border-bottom-color: var(--ink); }
.nav__inner { display: flex; align-items: center; gap: 1rem; height: 76px; }

.logo {
  display: flex; align-items: center; gap: .6rem;
  font-family: var(--font-display); font-weight: 700; font-size: 1.28rem;
  color: var(--ink); text-decoration: none; margin-right: auto; letter-spacing: -.01em;
}
.logo__img {
  width: 52px; height: 52px; flex: 0 0 auto;
  transition: transform .35s cubic-bezier(.2, 1.4, .4, 1);
}
.logo:hover .logo__img { transform: rotate(-12deg) scale(1.08); }
.logo__mark { color: var(--lilac); }
.logo--footer { font-size: 1.4rem; color: var(--white); margin-bottom: .2rem; }
.logo--footer .logo__img { width: 46px; height: 46px; }

.nav__links { display: flex; gap: 1.5rem; }
.nav__links a {
  color: var(--ink); text-decoration: none; font-family: var(--font-display);
  font-weight: 500; font-size: .96rem; position: relative; padding: .2rem 0;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -3px; height: 3px;
  background: var(--lilac); border-radius: 3px; transition: right .25s ease;
}
.nav__links a:hover::after, .nav__links a:focus-visible::after { right: 0; }

.tray-btn {
  position: relative; border: var(--bd-thin); background: var(--gold); color: var(--ink);
  width: 46px; height: 46px; border-radius: 50%; font-size: 1.15rem; cursor: pointer;
  display: grid; place-items: center; margin-left: 1rem;
  box-shadow: 3px 3px 0 var(--ink); transition: transform .18s, background .18s, box-shadow .18s;
}
.tray-btn:hover { background: var(--lilac); transform: translate(-1px, -1px); box-shadow: 4px 4px 0 var(--ink); }
.tray-btn:active { transform: translate(3px, 3px); box-shadow: 0 0 0 var(--ink); }
.tray-btn__count, .tray-fab__count {
  position: absolute; top: -7px; right: -7px;
  background: var(--red); color: #fff; font-family: var(--font-display); font-weight: 600;
  font-size: .72rem; min-width: 22px; height: 22px; border-radius: 11px;
  display: grid; place-items: center; padding: 0 5px; border: 2.5px solid var(--ink);
}

.burger { display: none; border: 0; background: none; cursor: pointer; padding: .4rem; }
.burger span { display: block; width: 26px; height: 3px; background: var(--ink); border-radius: 3px; margin: 5px 0; transition: transform .25s, opacity .25s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero { position: relative; overflow: hidden; padding: clamp(2.5rem, 7vw, 4.5rem) 0 0; }
.hero__blobs { position: absolute; inset: 0; pointer-events: none; }
.blob { position: absolute; border-radius: 50%; filter: blur(50px); opacity: .5; }
.blob--1 { width: 400px; height: 400px; background: var(--lilac); top: -100px; left: -80px; animation: drift 18s ease-in-out infinite; }
.blob--2 { width: 320px; height: 320px; background: var(--indigo-lt); top: 80px; right: -70px; animation: drift 22s ease-in-out infinite reverse; }
.blob--3 { width: 260px; height: 260px; background: var(--gold); bottom: 30px; left: 44%; opacity: .3; animation: drift 26s ease-in-out infinite; }
@keyframes drift {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(28px,-24px) scale(1.1); }
}

.hero__inner { position: relative; text-align: center; max-width: 820px; }

.hero__badge {
  width: clamp(124px, 26vw, 176px); height: auto; margin: 0 auto 1.2rem;
  animation: badge-bob 5s ease-in-out infinite;
}
@keyframes badge-bob {
  0%,100% { transform: translateY(0) rotate(-2deg); }
  50%     { transform: translateY(-12px) rotate(2deg); }
}

.hero__title { margin-bottom: .35em; }
.hero__title em {
  font-style: normal; color: var(--indigo); position: relative;
  white-space: nowrap; z-index: 0;
}
.hero__title em::after {
  content: ""; position: absolute; left: -.06em; right: -.06em; bottom: .04em; height: .3em;
  background: var(--gold); border-radius: 4px; z-index: -1; transform: rotate(-1deg);
}
.hero__sub { font-size: clamp(1rem, 2.1vw, 1.18rem); color: var(--ink-soft); max-width: 54ch; margin-inline: auto; }
.hero__cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin: 1.9rem 0 1rem; }
.hero__note { font-size: .88rem; color: var(--ink-soft); }

/* ---- hero marquee ---- */
.hero__strip {
  margin-top: clamp(2rem, 5vw, 3.4rem);
  overflow: hidden;
  padding-bottom: .4rem;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.hero__strip-track {
  display: flex; gap: 1.4rem; width: max-content;
  padding: .6rem 0 1.2rem;
  animation: marquee 60s linear infinite;
  will-change: transform;
}
/* --shift is measured in JS: exactly one half of the track */
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-1 * var(--shift, 50%))); }
}
/* stop it so a moving tile can actually be clicked */
.hero__strip:hover .hero__strip-track,
.hero__strip:focus-within .hero__strip-track { animation-play-state: paused; }

.strip__tile {
  position: relative; flex: 0 0 auto; display: block;
  width: clamp(190px, 19vw, 300px); aspect-ratio: 1 / 1;
  border: var(--bd); border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--pop-sm); background: var(--lilac-lt);
  cursor: pointer; text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}
.strip__tile:hover { transform: translate(-3px, -3px) rotate(-1deg); box-shadow: var(--pop); }
.strip__tile img, .strip__tile svg { width: 100%; height: 100%; object-fit: cover; display: block; }

.strip__name {
  position: absolute; left: .6rem; right: .6rem; bottom: .6rem;
  font-family: var(--font-display); font-weight: 600; font-size: .84rem;
  color: var(--ink); background: var(--gold);
  border: var(--bd-thin); border-radius: 999px;
  padding: .28rem .8rem; text-align: center;
  opacity: 0; transform: translateY(8px);
  transition: opacity .22s ease, transform .22s ease;
}
.strip__tile:hover .strip__name { opacity: 1; transform: none; }

/* the card the marquee sent you to */
.card.is-spotlight { animation: spotlight 1.6s ease; }
@keyframes spotlight {
  0%, 100% { box-shadow: var(--pop); }
  15%, 70% { box-shadow: 0 0 0 6px var(--gold), var(--pop-lg); }
}

/* ==========================================================================
   BUTTONS — pressable stickers
   ========================================================================== */
.btn {
  display: inline-block; font-family: var(--font-display); font-weight: 600;
  font-size: 1.02rem; padding: .85rem 1.8rem; border-radius: 999px;
  text-decoration: none; border: var(--bd); cursor: pointer;
  box-shadow: var(--pop-sm);
  transition: transform .14s ease, box-shadow .14s ease, background .18s;
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: var(--pop); }
.btn:active { transform: translate(4px, 4px); box-shadow: 0 0 0 var(--ink); }
.btn--primary { background: var(--indigo); color: #fff; }
.btn--primary:hover { background: var(--indigo-lt); }
.btn--ghost { background: var(--white); color: var(--ink); }
.btn--ghost:hover { background: var(--gold); }
.btn--wide { width: 100%; }
.btn--wa { margin-top: .7rem; background: #E9FBEF; }
.btn--wa:hover { background: #25D366; color: var(--ink); }
.btn[disabled] { opacity: .5; cursor: not-allowed; transform: none; box-shadow: var(--pop-sm); }

/* ==========================================================================
   SECTIONS
   ========================================================================== */
.section { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.section--cream { background: var(--white); border-block: var(--bd); }
.section--blush { background: var(--lilac-pale); border-block: var(--bd); }
.section__head { max-width: 62ch; margin: 0 auto clamp(2rem, 4vw, 3rem); text-align: center; }
.section__lead { color: var(--ink-soft); }

/* ---- about ---- */
.about { display: grid; grid-template-columns: minmax(260px, 380px) 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.polaroid { background: #fff; padding: 14px 14px 8px; border: var(--bd); border-radius: 8px; box-shadow: var(--pop); transform: rotate(-2.5deg); }
/* the picture inside the frame — no crop, it keeps its own proportions */
.polaroid img { width: 100%; height: auto; border: var(--bd-thin); border-radius: 4px; }

/* fallback frame, used only if a product/portrait has no picture yet */
.polaroid__ph {
  aspect-ratio: 4 / 5; border: var(--bd-thin); border-radius: 4px;
  background:
    radial-gradient(circle at 28% 24%, var(--gold) 0 15%, transparent 16%),
    radial-gradient(circle at 74% 64%, var(--lilac) 0 20%, transparent 21%),
    linear-gradient(145deg, var(--lilac-lt), var(--indigo-lt));
  display: grid; place-items: center;
}
.polaroid__ph::after { content: "her photo goes here ✧"; font-family: var(--font-hand); font-size: 1.2rem; color: var(--ink); opacity: .6; }
.polaroid__cap { font-family: var(--font-hand); font-size: 1.25rem; text-align: center; color: var(--ink-soft); margin: .5rem 0 .1rem; }

.journey { list-style: none; padding: 0; margin: 1.8rem 0 0; border-left: 3px dashed var(--lilac); }
.journey li { position: relative; padding: 0 0 1.1rem 1.5rem; font-size: .96rem; }
.journey li::before {
  content: "✦"; position: absolute; left: -.72em; top: -.15em;
  color: var(--gold); background: var(--white); font-size: 1rem;
  -webkit-text-stroke: .6px var(--ink);
}
.journey__year { font-family: var(--font-display); font-weight: 600; color: var(--indigo); margin-right: .5rem; }

/* the authenticity line — the thing that separates her from a dropshipper */
.promise {
  display: inline-block; margin: 1.4rem 0 0;
  font-family: var(--font-display); font-weight: 600; font-size: .88rem;
  background: var(--gold); color: var(--ink);
  border: var(--bd-thin); border-radius: 999px;
  padding: .5rem 1.15rem; box-shadow: var(--pop-sm);
  transform: rotate(-1deg);
}

/* ---- process ---- */
.steps { list-style: none; padding: 0; margin: 0; display: grid; gap: 1.4rem; grid-template-columns: repeat(auto-fit, minmax(196px, 1fr)); }
.step {
  background: var(--white); border: var(--bd); border-radius: var(--r-md);
  padding: 1.8rem 1.3rem 1.3rem; position: relative; box-shadow: var(--pop-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.step:hover { transform: translate(-3px, -3px); box-shadow: var(--pop); }
.step:nth-child(even) { background: var(--lilac-pale); }
.step__n {
  position: absolute; top: -19px; left: 1.2rem;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--gold); color: var(--ink); border: var(--bd-thin);
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
  display: grid; place-items: center;
}
.step h3 { margin-top: .7rem; }
.step p { font-size: .92rem; color: var(--ink-soft); margin: 0; }

/* ---- filters ---- */
.filters { display: flex; gap: .7rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.2rem; }
.chip {
  font-family: var(--font-display); font-weight: 500; font-size: .94rem; cursor: pointer;
  padding: .5rem 1.2rem; border-radius: 999px;
  border: var(--bd-thin); background: var(--white); color: var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  transition: transform .14s, box-shadow .14s, background .18s;
}
.chip:hover { transform: translate(-2px, -2px); box-shadow: 5px 5px 0 var(--ink); }
.chip.is-active { background: var(--indigo); color: #fff; transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--ink); }

/* ---- product grid ---- */
.grid { display: grid; gap: 1.8rem; grid-template-columns: repeat(auto-fill, minmax(248px, 1fr)); }
.card {
  background: var(--white); border: var(--bd); border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--pop); display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translate(-3px, -3px); box-shadow: var(--pop-lg); }
.card__media { position: relative; aspect-ratio: 1 / 1; background: var(--lilac-lt); border-bottom: var(--bd); overflow: hidden; }
.card__media img, .card__media svg { width: 100%; height: 100%; object-fit: cover; }

/* two-photo sets (e.g. the UV glow): cross-fade on hover, tap the badge on
   touch screens where there's no hover to give */
.card__photo--alt {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity .45s ease;
}
.card:hover .card__photo--alt,
.card:focus-within .card__photo--alt,
.card__media.is-flipped .card__photo--alt { opacity: 1; }

.card__flip {
  position: absolute; left: .7rem; bottom: .7rem; z-index: 2;
  font-family: var(--font-display); font-weight: 600; font-size: .74rem;
  background: var(--gold); color: var(--ink);
  border: var(--bd-thin); border-radius: 999px;
  padding: .25rem .7rem; cursor: pointer;
  box-shadow: 2px 2px 0 var(--ink);
  transition: transform .14s, box-shadow .14s;
}
.card__flip:hover { transform: translate(-1px, -1px); box-shadow: 3px 3px 0 var(--ink); }
.card__flip[aria-pressed="true"] { background: var(--lilac); transform: translate(2px, 2px); box-shadow: 0 0 0 var(--ink); }
.card__ribbon {
  position: absolute; top: 1rem; right: -2.6rem; transform: rotate(38deg);
  background: var(--red); color: #fff; border-block: 2.5px solid var(--ink);
  font-family: var(--font-display); font-weight: 600;
  font-size: .76rem; letter-spacing: .06em; padding: .32rem 2.8rem;
}
.card__body { padding: 1.15rem 1.2rem 1.3rem; display: flex; flex-direction: column; flex: 1; }
.card__top { display: flex; justify-content: space-between; align-items: baseline; gap: .6rem; }
.card__name { font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; }
.card__price {
  font-family: var(--font-display); font-weight: 700; font-size: 1.02rem; color: var(--ink);
  background: var(--gold); border: var(--bd-thin); border-radius: 999px;
  padding: .05rem .65rem; white-space: nowrap;
}
.card__blurb { font-size: .9rem; color: var(--ink-soft); margin: .6rem 0 .7rem; }
.card__details { font-size: .8rem; color: var(--ink-soft); border-top: 2px dashed var(--line); padding-top: .6rem; margin: 0 0 .9rem; }
.card__swatches { display: flex; gap: .35rem; margin: 0 0 .9rem; }
.card__swatch { width: 17px; height: 17px; border-radius: 50%; border: 2px solid var(--ink); }
.card__btn {
  margin-top: auto; font-family: var(--font-display); font-weight: 600; font-size: .96rem;
  border: var(--bd-thin); background: var(--lilac); color: var(--ink);
  border-radius: 999px; padding: .6rem 1rem; cursor: pointer;
  box-shadow: 3px 3px 0 var(--ink);
  transition: transform .14s, box-shadow .14s, background .18s;
}
.card__btn:hover { background: var(--gold); transform: translate(-2px, -2px); box-shadow: 5px 5px 0 var(--ink); }
.card__btn:active { transform: translate(3px, 3px); box-shadow: 0 0 0 var(--ink); }
.card__btn.is-added { background: var(--indigo); color: #fff; }
.card__btn[disabled] { background: var(--white); color: var(--ink-soft); box-shadow: none; cursor: not-allowed; transform: none; }

/* ---- sizing ---- */
.sizing { max-width: 880px; margin-inline: auto; text-align: center; }
.sizing__opts { display: grid; gap: 1.4rem; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); margin: 2rem 0 1.4rem; text-align: left; }
.sizing__opt { background: var(--white); border: var(--bd); border-radius: var(--r-md); padding: 1.4rem; box-shadow: var(--pop-sm); }
.sizing__opt:nth-child(2) { background: var(--gold); }
.sizing__opt p { font-size: .92rem; color: var(--ink-soft); margin: 0; }

/* ---- order ---- */
.order__grid { display: grid; grid-template-columns: minmax(260px, 360px) 1fr; gap: clamp(1.5rem, 4vw, 2.6rem); align-items: start; }
.tray { background: var(--indigo); color: #fff; border: var(--bd); border-radius: var(--r-lg); padding: 1.6rem; box-shadow: var(--pop); position: sticky; top: 98px; }
.tray__title { font-size: 1.1rem; margin-bottom: .9rem; }
.tray__list { list-style: none; padding: 0; margin: 0 0 1rem; }
.tray__item { display: flex; align-items: center; gap: .7rem; padding: .65rem 0; border-bottom: 2px dashed rgba(255,255,255,.3); }
.tray__item-name { flex: 1; font-size: .92rem; line-height: 1.3; }
.tray__item-price { font-family: var(--font-display); font-weight: 600; font-size: .95rem; }
.tray__qty { display: flex; align-items: center; gap: .4rem; }
.tray__qty button {
  width: 26px; height: 26px; border-radius: 50%; border: 2px solid var(--ink); cursor: pointer;
  background: var(--lilac); color: var(--ink); font-size: 1rem; line-height: 1;
  display: grid; place-items: center; font-weight: 700;
}
.tray__qty button:hover { background: var(--gold); }
.tray__qty span { font-family: var(--font-display); min-width: 1.1em; text-align: center; font-size: .95rem; }
.tray__empty { font-size: .95rem; color: rgba(255,255,255,.85); margin: 0; }
.tray__empty a { color: var(--gold); }
.tray__total { display: flex; justify-content: space-between; align-items: baseline; font-family: var(--font-display); padding-top: .8rem; margin-bottom: .5rem; }
.tray__total strong { font-size: 1.45rem; color: var(--gold); }
.tray .fineprint { color: rgba(255,255,255,.72); }
.tray__ship {
  font-family: var(--font-display); font-weight: 500; font-size: .88rem;
  background: rgba(255,255,255,.14); border: 2px dashed rgba(255,255,255,.4);
  border-radius: 999px; padding: .35rem .9rem; margin: 0 0 .8rem; text-align: center;
}
.tray__ship.is-free { background: var(--gold); border-style: solid; border-color: var(--ink); color: var(--ink); }

.form { background: var(--white); border: var(--bd); border-radius: var(--r-lg); padding: clamp(1.4rem, 3vw, 2rem); box-shadow: var(--pop); }
.field { margin-bottom: 1.15rem; }
.field label { display: block; font-family: var(--font-display); font-weight: 500; font-size: .96rem; margin-bottom: .35rem; }
.req { color: var(--red); }
.opt { color: var(--ink-soft); font-weight: 400; font-size: .85em; }
.field input, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  padding: .78rem .9rem; border: var(--bd-thin); border-radius: var(--r-sm);
  background: var(--paper); transition: box-shadow .16s, background .16s; resize: vertical;
}
.field input:focus, .field textarea:focus { background: #fff; outline: none; box-shadow: 3px 3px 0 var(--indigo); }
.field input::placeholder, .field textarea::placeholder { color: rgba(16,16,24,.36); }
.field.is-invalid input, .field.is-invalid textarea { box-shadow: 3px 3px 0 var(--red); }
.field__err { display: none; font-size: .84rem; color: var(--red); font-weight: 600; margin: .35rem 0 0; }
.field.is-invalid .field__err { display: block; }

.form__status { font-family: var(--font-display); font-weight: 500; font-size: .96rem; margin: .9rem 0 0; min-height: 1.4em; }
.form__status.is-ok { color: #1F8A5B; }
.form__status.is-err { color: var(--red); }

/* ---- faq ---- */
.faq { max-width: 780px; margin-inline: auto; }
.faq__list details {
  background: var(--white); border: var(--bd); border-radius: var(--r-md); margin-bottom: .9rem;
  box-shadow: var(--pop-sm); overflow: hidden;
}
.faq__list details[open] { background: var(--lilac-pale); }
.faq__list summary {
  font-family: var(--font-display); font-weight: 500; font-size: 1.04rem;
  padding: 1rem 3.2rem 1rem 1.3rem; cursor: pointer; list-style: none; position: relative;
}
.faq__list summary::-webkit-details-marker { display: none; }
.faq__list summary::after {
  content: "+"; position: absolute; right: 1rem; top: 50%; transform: translateY(-50%);
  width: 26px; height: 26px; border: var(--bd-thin); border-radius: 50%;
  background: var(--gold); color: var(--ink); font-weight: 700; font-size: 1.05rem;
  display: grid; place-items: center; transition: transform .22s;
}
.faq__list details[open] summary::after { transform: translateY(-50%) rotate(135deg); }
.faq__list details p { padding: 0 1.3rem 1.2rem; margin: 0; font-size: .95rem; color: var(--ink-soft); }

/* ==========================================================================
   FOOTER + FAB
   ========================================================================== */
.footer { background: var(--indigo); color: #fff; border-top: var(--bd); padding: 3.2rem 0 1.6rem; }
.footer__inner { display: flex; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.footer__tag { font-family: var(--font-hand); font-size: 1.3rem; color: var(--gold); margin: 0; }
.footer__right { display: flex; flex-direction: column; align-items: flex-end; gap: 1.1rem; }
.footer__links { display: flex; gap: 1.3rem; flex-wrap: wrap; align-items: center; }

/* ---- social buttons ---- */
.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

.socials { display: flex; gap: .7rem; flex-wrap: wrap; }
.social {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-display); font-weight: 600; font-size: .92rem;
  text-decoration: none; color: #fff;
  border: var(--bd-thin); border-radius: 999px;
  padding: .5rem 1.1rem; box-shadow: 3px 3px 0 var(--ink);
  transition: transform .14s ease, box-shadow .14s ease, filter .18s;
}
.social:hover { transform: translate(-2px, -2px); box-shadow: 5px 5px 0 var(--ink); filter: saturate(1.15); }
.social:active { transform: translate(3px, 3px); box-shadow: 0 0 0 var(--ink); }
.social__icon { width: 20px; height: 20px; flex: 0 0 auto; }

/* Instagram's own gradient, so the button is recognisable at a glance */
.social--ig {
  background: linear-gradient(45deg, #F9CE34 0%, #EE2A7B 45%, #6228D7 100%);
}
.social--wa { background: #25D366; color: var(--ink); }

/* the larger one in the About section */
.social--lg { font-size: 1rem; padding: .68rem 1.4rem; box-shadow: var(--pop-sm); }
.social--lg .social__icon { width: 23px; height: 23px; }
.social--lg:hover { box-shadow: var(--pop); }

.about__follow { margin: 1.1rem 0 0; }
.footer__links a { color: #fff; text-decoration: none; font-size: .94rem; }
.footer__links a:hover { color: var(--gold); text-decoration: underline; }
.footer__legal { text-align: center; font-size: .82rem; color: rgba(255,255,255,.6); margin: 2.4rem 0 0; }
.footer__heart { color: var(--lilac); }

.tray-fab {
  position: fixed; right: 1.1rem; bottom: 1.1rem; z-index: 90;
  width: 60px; height: 60px; border-radius: 50%; border: var(--bd); cursor: pointer;
  background: var(--gold); color: var(--ink); font-size: 1.4rem;
  box-shadow: var(--pop-sm);
  display: grid; place-items: center; animation: pop .3s ease;
}
.tray-fab:active { transform: translate(4px, 4px); box-shadow: 0 0 0 var(--ink); }
@keyframes pop { from { transform: scale(.5); opacity: 0; } to { transform: scale(1); opacity: 1; } }

/* ==========================================================================
   REVEAL ON SCROLL
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: none; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 880px) {
  .about, .order__grid { grid-template-columns: 1fr; }
  .tray { position: static; }
  .polaroid { max-width: 320px; margin-inline: auto; }
}

@media (max-width: 700px) {
  .nav__inner { height: 68px; }
  .logo__img { width: 44px; height: 44px; }
  .logo { font-size: 1.1rem; }
  .nav__links {
    position: fixed; inset: 68px 0 auto; flex-direction: column; gap: 0;
    background: var(--paper); padding: .5rem 1.25rem 1.5rem;
    border-bottom: var(--bd);
    transform: translateY(-120%); transition: transform .3s ease; visibility: hidden;
  }
  .nav__links.is-open { transform: none; visibility: visible; }
  .nav__links a { padding: .9rem 0; border-bottom: 2px dashed var(--line); }
  .nav__links a::after { display: none; }
  .burger { display: block; order: 3; }
  .tray-btn { margin-left: auto; order: 2; }
  .logo { margin-right: 0; }
  body { font-size: 16px; }
  :root { --pop: 4px 4px 0 var(--ink); --pop-lg: 6px 6px 0 var(--ink); }
}

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