:root {
  --pink-50: #FFF7FA;
  --pink-100: #FDEAF2;
  --pink-200: #F9D3E2;
  --pink-300: #F3B0C9;
  --pink-400: #EA89AE;
  --pink-500: #DE5E92;
  --pink-600: #C2447A;
  --pink-700: #9D3361;
  --rose-soft: #F8E6EE;
  --white: #FFFFFF;
  --cream: #FFFBFD;
  --ink: #2A1A22;
  --ink-soft: #5C4651;
  --muted: #97818D;
  --line: #F2DAE5;
  --shadow-sm: 0 4px 14px rgba(214, 99, 145, 0.08);
  --shadow-md: 0 12px 32px rgba(214, 99, 145, 0.12);
  --shadow-lg: 0 24px 60px rgba(214, 99, 145, 0.18);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --serif: 'Cormorant Garamond', 'Georgia', serif;
  --sans: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --script: 'Dancing Script', 'Brush Script MT', cursive;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.01em;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid transparent;
  background: transparent;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(135deg, var(--pink-500), var(--pink-600));
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
  filter: brightness(1.05);
}
.btn--primary:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  filter: grayscale(0.2);
  transform: none;
  box-shadow: none;
}
.btn--ghost {
  background: var(--white);
  color: var(--pink-600);
  border-color: var(--pink-200);
}
.btn--ghost:hover {
  background: var(--pink-50);
  border-color: var(--pink-300);
}
.btn--lg { padding: 1rem 1.75rem; font-size: 1rem; }
.btn--block { width: 100%; }
.btn--sm {
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 251, 253, 0.85);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0.9rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav__brand-script {
  font-family: var(--script);
  font-size: 1.85rem;
  color: var(--pink-600);
}
.nav__brand-sub {
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 2px;
}
.nav__links {
  margin-left: auto;
  display: flex;
  gap: 2rem;
}
.nav__links a {
  font-size: 0.9rem;
  color: var(--ink-soft);
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: -4px;
  height: 1px;
  background: var(--pink-500);
  transition: right 0.25s ease;
}
.nav__links a:hover { color: var(--pink-600); }
.nav__links a:hover::after { right: 0; }

.nav__cart {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--pink-200);
  background: var(--white);
  color: var(--pink-600);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}
.nav__cart:hover {
  background: var(--pink-50);
  border-color: var(--pink-300);
  transform: translateY(-1px);
}
.nav__cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--pink-600);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.6);
  transition: all 0.25s cubic-bezier(.34,1.56,.64,1);
}
.nav__cart-badge.is-visible { opacity: 1; transform: scale(1); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 4rem 1.5rem 5rem;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 80% 20%, rgba(243,176,201,0.55) 0%, rgba(243,176,201,0) 70%),
    radial-gradient(50% 50% at 10% 90%, rgba(252,224,234,0.7) 0%, rgba(252,224,234,0) 70%),
    linear-gradient(180deg, var(--cream), var(--pink-50));
  z-index: -1;
}
.hero__content {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero__eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  color: var(--pink-600);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  padding: 0.4rem 0.9rem;
  border: 1px solid var(--pink-200);
  border-radius: 999px;
  background: rgba(255,255,255,0.6);
}
.hero__title {
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  line-height: 1.05;
  margin-bottom: 1.25rem;
}
.hero__title em {
  font-family: var(--script);
  font-style: normal;
  font-weight: 500;
  color: var(--pink-600);
  font-size: 1.15em;
}
.hero__subtitle {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 520px;
  margin: 0 0 2rem;
}
.hero__signature {
  font-family: var(--script);
  color: var(--pink-600);
  font-size: 1.4em;
  font-weight: 600;
  line-height: 1;
}
.hero__cta { display: flex; gap: 0.8rem; flex-wrap: wrap; }

.hero__photo { position: relative; }
.hero__photo-frame {
  width: 100%;
  aspect-ratio: 4 / 5;
  max-width: 460px;
  margin-left: auto;
  border-radius: var(--radius-xl);
  background: linear-gradient(160deg, var(--pink-100), var(--pink-200));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.hero__photo-frame::before {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px dashed rgba(255,255,255,0.7);
  border-radius: calc(var(--radius-xl) - 14px);
  pointer-events: none;
}
.hero__photo-placeholder {
  text-align: center;
  color: var(--pink-700);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem;
}
.hero__photo-placeholder span { font-family: var(--serif); font-size: 1.4rem; }
.hero__photo-placeholder small { color: var(--pink-600); font-size: 0.78rem; }
.hero__photo-placeholder code {
  background: rgba(255,255,255,0.6);
  padding: 1px 6px;
  border-radius: 6px;
  font-family: ui-monospace, monospace;
  font-size: 0.78rem;
}
.hero__photo--has-image .hero__photo-placeholder { display: none; }
.hero__photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
  position: absolute;
  inset: 0;
}
.hero__photo-pill {
  position: absolute;
  bottom: -16px;
  left: 8%;
  background: var(--white);
  color: var(--pink-700);
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  box-shadow: var(--shadow-md);
}

/* ---------- Sections head ---------- */
.section-head {
  max-width: 760px;
  margin: 0 auto 3rem;
  text-align: center;
  padding: 0 1.5rem;
}
.section-head__eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  color: var(--pink-600);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.section-head__title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.8rem;
}
.section-head__lead {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

/* ---------- Lines ---------- */
.lines {
  padding: 5rem 0 4rem;
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
  isolation: isolate;
}
.lines::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 100vw;
  transform: translateX(-50%);
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(60% 40% at 85% 20%, rgba(243,176,201,0.22), transparent 70%),
    radial-gradient(50% 45% at 15% 80%, rgba(252,224,234,0.5), transparent 70%),
    linear-gradient(180deg, rgba(253,234,242,0) 0%, rgba(253,234,242,0.45) 50%, rgba(253,234,242,0) 100%);
}
.line { padding: 0 1.5rem 4rem; }
.line__head {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 0 0.5rem;
}
.line__title {
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}
.line__title::before {
  content: '';
  display: inline-block;
  width: 36px;
  height: 1px;
  background: var(--pink-400);
  transform: translateY(-6px);
}
.line__count {
  font-size: 0.85rem;
  color: var(--muted);
  font-family: var(--sans);
  font-weight: 400;
}
.line__carousel-wrap {
  position: relative;
}
.carousel-btn--edge {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  box-shadow: var(--shadow-md);
}
.carousel-btn--prev { left: -10px; }
.carousel-btn--next { right: -10px; }
.carousel-btn--edge:disabled {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%) scale(0.85);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.carousel-btn {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--pink-200);
  background: var(--white);
  color: var(--pink-600);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.carousel-btn:hover {
  background: var(--pink-500);
  color: var(--white);
  border-color: var(--pink-500);
}
.carousel-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  background: var(--white);
  color: var(--pink-600);
  border-color: var(--pink-200);
}

.carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 280px);
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding: 0.5rem;
  padding: 0.5rem;
  margin: 0 -0.5rem;
  scrollbar-width: thin;
  scrollbar-color: var(--pink-300) transparent;
}
.carousel::-webkit-scrollbar { height: 6px; }
.carousel::-webkit-scrollbar-thumb { background: var(--pink-200); border-radius: 999px; }
.carousel::-webkit-scrollbar-track { background: transparent; }

.product {
  scroll-snap-align: start;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.product:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--pink-200);
}
.product__media {
  aspect-ratio: 1 / 1;
  background: var(--pink-50);
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
}
.product__media::after {
  content: '';
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(255,255,255,0.85) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C2447A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='11' cy='11' r='7'/><line x1='21' y1='21' x2='16.65' y2='16.65'/><line x1='11' y1='8' x2='11' y2='14'/><line x1='8' y1='11' x2='14' y2='11'/></svg>") center/16px no-repeat;
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.25s ease, transform 0.25s ease;
  box-shadow: var(--shadow-sm);
  pointer-events: none;
}
.product:hover .product__media::after { opacity: 1; transform: scale(1); }
.product__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.product:hover .product__media img { transform: scale(1.04); }
.product__body {
  padding: 1rem 1.1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}
.product__name {
  font-family: var(--serif);
  font-size: 1.1rem;
  line-height: 1.25;
  color: var(--ink);
  min-height: 2.6em;
}
.product__price {
  font-family: var(--sans);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--pink-700);
}
.product__price[data-placeholder="true"]::after {
  content: ' • a combinar';
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.05em;
}

.product__actions {
  display: flex;
  gap: 0.6rem;
  align-items: stretch;
  margin-top: auto;
}
.qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--pink-200);
  border-radius: 999px;
  background: var(--white);
  overflow: hidden;
}
.qty button {
  width: 34px;
  height: 38px;
  border: 0;
  background: transparent;
  color: var(--pink-600);
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s;
}
.qty button:hover { background: var(--pink-50); }
.qty button:disabled { opacity: 0.35; cursor: not-allowed; }
.qty input {
  width: 32px;
  border: 0;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  background: transparent;
  -moz-appearance: textfield;
}
.qty input::-webkit-outer-spin-button,
.qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.product__add {
  flex: 1;
  background: var(--pink-500);
  color: var(--white);
  border: 0;
  border-radius: 999px;
  padding: 0 1rem;
  min-height: 44px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.01em;
}
.product__add:hover { background: var(--pink-600); }

/* ---------- About / Contact ---------- */
.about, .contact {
  padding: 5rem 1.5rem;
}
.about__inner, .contact__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.about h2, .contact h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: 1rem;
}
.about p, .contact p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin: 0 0 1.5rem;
}
.contact {
  background:
    radial-gradient(60% 80% at 50% 0%, rgba(243,176,201,0.35) 0%, rgba(243,176,201,0) 70%),
    var(--cream);
}

/* ---------- Footer ---------- */
.footer {
  padding: 2rem 1.5rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
  border-top: 1px solid var(--line);
}
.footer p { margin: 0.25rem 0; }
.footer__credit {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}
.footer__credit a {
  color: var(--pink-600);
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.footer__credit a:hover { border-bottom-color: var(--pink-400); }

/* ---------- Cart drawer ---------- */
.cart {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
}
.cart[aria-hidden="false"] { pointer-events: auto; }
.cart__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(42, 26, 34, 0.35);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.cart[aria-hidden="false"] .cart__backdrop { opacity: 1; }
.cart__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(420px, 100%);
  background: var(--white);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.32,.72,0,1);
  box-shadow: var(--shadow-lg);
}
.cart[aria-hidden="false"] .cart__panel { transform: translateX(0); }
.cart__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.3rem 1.5rem;
  border-bottom: 1px solid var(--line);
}
.cart__head h3 { font-size: 1.4rem; }
.cart__close {
  width: 36px; height: 36px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink-soft);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: all 0.2s;
}
.cart__close:hover { background: var(--pink-50); color: var(--pink-600); border-color: var(--pink-200); }

.cart__body { flex: 1; overflow-y: auto; padding: 1rem 1.5rem; }
.cart__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  padding: 3rem 0;
  text-align: center;
}
.cart__empty svg { color: var(--pink-300); }
.cart__items { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 1rem; }
.cart__item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 0.9rem;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}
.cart__item:last-child { border-bottom: 0; }
.cart__item-media {
  width: 64px; height: 64px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--pink-50);
}
.cart__item-media img { width: 100%; height: 100%; object-fit: cover; }
.cart__item-info { display: flex; flex-direction: column; gap: 0.35rem; min-width: 0; }
.cart__item-name {
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.2;
  color: var(--ink);
}
.cart__item-line {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.cart__item-price {
  font-size: 0.9rem;
  color: var(--pink-700);
  font-weight: 600;
}
.cart__item-controls {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.4rem;
}
.cart__remove {
  background: transparent;
  border: 0;
  color: var(--muted);
  font-size: 0.75rem;
  cursor: pointer;
  text-decoration: underline;
  transition: color 0.2s;
}
.cart__remove:hover { color: var(--pink-600); }

.cart__foot {
  padding: 1.2rem 1.5rem 1.5rem;
  border-top: 1px solid var(--line);
  background: var(--cream);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.cart__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--serif);
}
.cart__total span { color: var(--ink-soft); font-size: 1rem; }
.cart__total strong { color: var(--pink-700); font-size: 1.5rem; font-weight: 600; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(20, 10, 16, 0.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.lightbox[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
}
.lightbox__figure {
  margin: 0;
  max-width: min(90vw, 920px);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  transform: scale(0.94);
  transition: transform 0.3s cubic-bezier(.34,1.56,.64,1);
}
.lightbox[aria-hidden="false"] .lightbox__figure { transform: scale(1); }
.lightbox__figure img {
  max-width: 100%;
  max-height: calc(90vh - 60px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  background: var(--white);
}
.lightbox__figure figcaption {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--white);
  text-align: center;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
  max-width: 90%;
}
.lightbox__close,
.lightbox__nav {
  position: absolute;
  top: 50%;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  backdrop-filter: blur(8px);
  z-index: 2;
}
.lightbox__close:hover,
.lightbox__nav:hover { background: rgba(255,255,255,0.3); transform: translateY(calc(-50% - 1px)) scale(1.05); }
.lightbox__close {
  top: 20px;
  right: 20px;
  font-size: 1.6rem;
  line-height: 1;
  transform: none;
}
.lightbox__close:hover { transform: scale(1.05); }
.lightbox__nav { transform: translateY(-50%); }
.lightbox__nav--prev { left: 20px; }
.lightbox__nav--next { right: 20px; }
@media (max-width: 600px) {
  .lightbox { padding: 1rem; }
  .lightbox__figure { max-width: 100%; }
  .lightbox__figure img { max-height: calc(90vh - 80px); }
  .lightbox__nav { display: none; }
  .lightbox__close { top: 12px; right: 12px; width: 40px; height: 40px; font-size: 1.4rem; }
  .lightbox__figure figcaption { font-size: 0.95rem; }
  .lightbox__hint {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.7);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    pointer-events: none;
  }
}
.lightbox__hint { display: none; }
@media (max-width: 600px) {
  .lightbox__figure img { touch-action: pan-y; user-select: none; -webkit-user-drag: none; }
  .lightbox[aria-hidden="false"] .lightbox__hint { display: block; }
}

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 0;
  background: linear-gradient(135deg, var(--pink-500), var(--pink-600));
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px) scale(0.85);
  transition: opacity 0.25s ease, transform 0.25s cubic-bezier(.34,1.56,.64,1), background 0.2s;
  z-index: 90;
}
.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.back-to-top:hover { filter: brightness(1.05); transform: translateY(-2px) scale(1); }
.back-to-top:focus-visible { outline: 2px solid var(--pink-300); outline-offset: 3px; }
@media (max-width: 480px) {
  .back-to-top { right: 14px; bottom: 14px; width: 44px; height: 44px; }
}

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--ink);
  color: var(--white);
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  font-size: 0.9rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 200;
}
.toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero { padding: 2.5rem 1.25rem 3.5rem; }
  .hero__content { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
  .hero__subtitle { margin-left: auto; margin-right: auto; }
  .hero__cta { justify-content: center; }
  .hero__photo-frame { max-width: 320px; margin: 0 auto; }
  .hero__photo-pill { left: 50%; transform: translateX(-50%); }
  .nav__links { display: none; }
  .nav__cart { margin-left: auto; }
  .line__head { flex-direction: column; align-items: flex-start; }
  .line__title::before { display: none; }
  .carousel { grid-auto-columns: minmax(220px, 240px); }
  .carousel-btn--edge { display: none; }
}
@media (max-width: 480px) {
  .nav__brand-script { font-size: 1.55rem; }
  .nav__brand-sub { font-size: 0.6rem; }
  .nav__inner { padding: 0.7rem 1rem; gap: 1rem; }
  .product__actions {
    flex-direction: column;
    gap: 0.55rem;
  }
  .qty { width: 100%; justify-content: space-between; }
  .qty button { width: 44px; height: 44px; font-size: 1.25rem; }
  .qty input { flex: 1; font-size: 1rem; }
  .product__add {
    width: 100%;
    min-height: 48px;
    font-size: 1rem;
    padding: 0.85rem 1rem;
  }
}
