:root {
  --bg: #f7f3ef;
  --bg2: #efe6df;
  --surface: #ffffff;
  --ink: #140f0e;
  --muted: #6f5f58;
  --accent: #d4123a;
  --accent2: #ff4d6d;
  --blush: #ffb4c4;
  --mint: #d8efe6;
  --line: rgba(20, 15, 14, 0.1);
  --glow: rgba(212, 18, 58, 0.25);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: "Syne", sans-serif;
  --font-body: "Manrope", sans-serif;
  --font-script: "Great Vibes", cursive;
  /* Clear lining figures for prices / qty */
  --font-num: "IBM Plex Sans", "Manrope", system-ui, sans-serif;
}

html.dark {
  --bg: #0c0a0a;
  --bg2: #161213;
  --surface: #1c1618;
  --ink: #f8f0ec;
  --muted: #b9a49c;
  --accent: #ff3b5c;
  --accent2: #ff7a90;
  --blush: #5a2434;
  --mint: #1a2e28;
  --line: rgba(248, 240, 236, 0.12);
  --glow: rgba(255, 59, 92, 0.3);
}

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

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.5;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

.shell {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
}

.font-script { font-family: var(--font-script); }

.num,
.price,
.pdp-price,
.cart-count,
.qty-value,
.qty-input,
.sum-line strong,
.order-dl .accent,
.order-items li span:last-child {
  font-family: var(--font-num);
  font-variant-numeric: tabular-nums lining-nums;
  font-feature-settings: "tnum" 1, "lnum" 1;
  letter-spacing: 0.01em;
}

/* Cursor glow */
.cursor-glow {
  position: fixed;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 80;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 28%, transparent), transparent 68%);
  filter: blur(10px);
  mix-blend-mode: multiply;
  opacity: 0;
  transition: opacity 0.3s ease;
}
html.dark .cursor-glow { mix-blend-mode: screen; }
body.has-cursor .cursor-glow { opacity: 1; }

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  border-bottom-color: var(--line);
  backdrop-filter: blur(16px);
}
.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
  gap: 1rem;
}
.logo { display: inline-flex; align-items: center; gap: 0.55rem; }
.logo-mark {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 0.85rem;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: #fff;
  font-size: 0.95rem;
  box-shadow: 0 10px 24px var(--glow);
}
.logo-text { display: inline-flex; align-items: baseline; gap: 0.35rem; }
.logo-by {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.16em;
  font-size: 1.05rem;
}
.logo-script {
  font-family: var(--font-script);
  color: var(--accent);
  font-size: 2rem;
  line-height: 1;
}
.nav {
  display: none;
  gap: 1.15rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.nav a i { color: var(--accent); font-size: 0.85rem; }
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.nav a:hover::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 0.5rem; }
.lang-btn, .theme-btn, .menu-btn, .cart-chip {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}
.cart-chip {
  background: var(--ink);
  color: var(--bg);
  border-color: transparent;
}
.cart-chip:hover { background: var(--accent); color: #fff; }
.lang-btn {
  width: auto;
  padding-inline: 0.85rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
}
.lang-btn:hover, .theme-btn:hover, .menu-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}
@media (min-width: 860px) {
  .nav { display: flex; }
  .menu-btn { display: none; }
}
.nav.open {
  display: flex;
  position: fixed;
  top: 4.5rem;
  left: 0;
  right: 0;
  width: 100%;
  transform: none;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.85rem max(1rem, env(safe-area-inset-right)) 1.1rem max(1rem, env(safe-area-inset-left));
  background: color-mix(in srgb, var(--surface) 96%, transparent);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 16px 40px rgba(20, 15, 14, 0.1);
  z-index: 60;
  max-height: calc(100dvh - 4.5rem);
  overflow-y: auto;
}
.nav.open a {
  padding: 0.85rem 0.5rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.85rem;
}
.nav.open a:last-child { border-bottom: 0; }
.nav.open a::after { display: none; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.8rem 1.45rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  border: 1px solid transparent;
  transition: transform 0.3s var(--ease), background 0.25s ease, color 0.25s ease, box-shadow 0.3s ease;
}
.btn:hover { transform: translateY(-2px) scale(1.02); }
.btn-solid {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 16px 36px var(--glow);
}
.btn-solid:hover { background: var(--accent2); }
.btn-line {
  border-color: var(--line);
  background: color-mix(in srgb, var(--surface) 55%, transparent);
  backdrop-filter: blur(8px);
}
.btn-line:hover { border-color: var(--accent); color: var(--accent); }
.btn-white {
  background: #fff;
  color: #140f0e;
}
.btn-white:hover {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.35);
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100svh - 4.5rem);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 2rem 0 4rem;
}
.hero-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 25%, color-mix(in srgb, var(--accent) 26%, transparent), transparent 55%),
    radial-gradient(ellipse 50% 45% at 12% 80%, color-mix(in srgb, var(--blush) 65%, transparent), transparent 50%),
    radial-gradient(ellipse 40% 35% at 45% 55%, color-mix(in srgb, var(--mint) 40%, transparent), transparent 60%),
    var(--bg);
  animation: meshDrift 16s ease-in-out infinite alternate;
}
.hero-slab {
  position: absolute;
  inset: 0 0 0 auto;
  width: 40%;
  background: var(--accent);
  transform: translateX(100%);
  animation: slabIn 1s var(--ease) 0.15s forwards;
}
.hero-outline {
  position: absolute;
  left: -2%;
  bottom: -6%;
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(5rem, 22vw, 15rem);
  line-height: 0.85;
  letter-spacing: -0.06em;
  color: transparent;
  -webkit-text-stroke: 2px color-mix(in srgb, var(--ink) 14%, transparent);
  pointer-events: none;
  user-select: none;
  max-width: 100%;
  overflow: hidden;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; }
  .hero-copy { max-width: 34rem; }
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 70%, transparent);
  backdrop-filter: blur(8px);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.pill i { color: var(--accent); }
.hero h1 {
  margin: 1.2rem 0 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 7vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}
.hero-sub {
  margin: 1.1rem 0 0;
  max-width: 28rem;
  font-size: 1.15rem;
  color: var(--muted);
  font-style: italic;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.75rem; }
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 1.75rem;
  margin-top: 2rem;
}
.hero-stats div {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.hero-stats strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--accent);
}
.hero-stats span { font-size: 0.8rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }
.hero-visual { display: flex; justify-content: center; }
.hero-float { position: relative; width: min(92vw, 480px); aspect-ratio: 1; }
.hero-orb {
  position: absolute;
  inset: 14%;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--blush) 70%, transparent), transparent 70%);
  filter: blur(24px);
  animation: pulse 4s ease-in-out infinite;
}
.hero-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: floatY 5.5s ease-in-out infinite;
  filter: drop-shadow(0 30px 50px rgba(20, 15, 14, 0.22));
  border-radius: 2rem;
}
.hero-badge {
  position: absolute;
  right: 8%;
  bottom: 10%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--bg);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 0 12px 28px rgba(0,0,0,0.2);
}
.scroll-cue {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  z-index: 3;
}
.scroll-cue i { animation: bounce 1.6s ease-in-out infinite; color: var(--accent); }
@media (min-width: 900px) { .scroll-cue { display: flex; } }

/* Ticker */
.ticker {
  overflow: hidden;
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
  background: var(--ink);
  color: #fff;
  padding: 0.9rem 0;
  border-block: 1px solid var(--line);
}
html.dark .ticker { background: var(--accent); color: #140f0e; }
.ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 1.1rem;
  animation: ticker 28s linear infinite;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.82rem;
}
.ticker .dot { color: var(--accent2); }

/* Sections */
.section { padding: 5rem 0; }
.section-head { max-width: 36rem; margin-bottom: 2.5rem; }
.eyebrow {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}
.eyebrow.light { color: rgba(255,255,255,0.7); }
.section-head h2,
.bento-red h2,
.cta-panel h2,
.contact h2 {
  margin: 0.5rem 0 0;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.05;
}
.section-sub { margin: 0.85rem 0 0; color: var(--muted); font-size: 1.05rem; }

/* Gift rail */
.gift-rail {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 520px) {
  .gift-rail { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .gift-rail { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
}
.gift-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.gift-meta h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
}
.gift-meta p { margin: 0.25rem 0 0; color: var(--muted); font-style: italic; font-size: 0.92rem; }
.gift-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.7rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
}
.gift-link:hover { text-decoration: underline; }
.gift-media {
  position: relative;
  aspect-ratio: 1;
  border-radius: 1.5rem;
  border: 1px solid var(--line);
  background: var(--surface);
  overflow: hidden;
  transition: transform 0.45s var(--ease), box-shadow 0.45s ease;
}
.gift-card:hover .gift-media {
  transform: translateY(-8px) rotate(-1deg);
  box-shadow: 0 22px 44px rgba(20, 15, 14, 0.12);
}
.gift-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.gift-card:hover .gift-media img { transform: scale(1.06); }
.price {
  position: absolute;
  left: 0.9rem;
  bottom: 0.9rem;
  background: var(--ink);
  color: var(--bg);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
}
.tag {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 90%, #000);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.tag.soft { background: #c44a6a; }
.tag.mint { background: #2f6b5a; }

/* Home categories */
.cats-section {
  background: linear-gradient(180deg, transparent, color-mix(in srgb, var(--bg2) 70%, transparent) 40%, transparent);
}
.cat-tiles {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .cat-tiles { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .cat-tiles { grid-template-columns: repeat(3, 1fr); }
}
.cat-tile {
  position: relative;
  display: block;
  min-height: 280px;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid var(--line);
  isolation: isolate;
  transition: transform 0.45s var(--ease), box-shadow 0.45s ease;
}
.cat-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(20, 15, 14, 0.14);
}
.cat-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.cat-tile:hover img { transform: scale(1.08); }
.cat-tile-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,15,14,0.05) 20%, rgba(20,15,14,0.72) 100%);
  z-index: 1;
}
.cat-tile-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 1.35rem 1.4rem 1.45rem;
  color: #fff;
}
.cat-tile-icon {
  display: inline-grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 0.7rem;
  background: color-mix(in srgb, var(--accent) 85%, #000);
  margin-bottom: 0.7rem;
  font-size: 0.9rem;
}
.cat-tile-body h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.cat-tile-body p {
  margin: 0.35rem 0 0;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.88rem;
  opacity: 0.9;
}
.bestsellers {
  background: linear-gradient(180deg, transparent 0%, var(--bg2) 35%, var(--bg2) 100%);
}

/* Occasions */
.occasions { background: linear-gradient(180deg, transparent, var(--bg2) 20%, var(--bg2) 80%, transparent); }
.occ-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.occ-card {
  padding: 1.4rem;
  border-radius: 1.35rem;
  border: 1px solid var(--line);
  background: var(--surface);
  transition: transform 0.35s var(--ease), border-color 0.25s ease, box-shadow 0.35s ease;
}
.occ-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 18px 36px rgba(20, 15, 14, 0.08);
}
.occ-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  display: grid;
  place-items: center;
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  color: var(--accent);
  font-size: 1.15rem;
  margin-bottom: 0.9rem;
}
.occ-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
}
.occ-card p { margin: 0.4rem 0 0; color: var(--muted); font-size: 0.92rem; }

/* Icon section */
.why { background: var(--bg2); }
.icon-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.icon-card {
  padding: 1.5rem;
  border-radius: 1.35rem;
  border: 1px solid var(--line);
  background: var(--surface);
  transition: transform 0.35s var(--ease), box-shadow 0.35s ease;
}
.icon-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(20, 15, 14, 0.08);
}
.icon-wrap {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 1rem;
  display: grid;
  place-items: center;
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  color: var(--accent);
  font-size: 1.15rem;
  margin-bottom: 1rem;
}
.icon-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
}
.icon-card p { margin: 0.55rem 0 0; color: var(--muted); font-size: 0.95rem; }

/* Bento */
.bento {
  display: grid;
  gap: 1rem;
}
@media (min-width: 900px) {
  .bento { grid-template-columns: 1.35fr 1fr; min-height: 480px; }
}
.bento-red {
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
  background: var(--accent);
  color: #fff;
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.bento-red h2 { max-width: 16ch; }
.bento-red p { max-width: 34ch; color: rgba(255,255,255,0.88); margin: 1.1rem 0 1.6rem; }
.bento-script {
  position: absolute;
  right: -0.2rem;
  bottom: -1.2rem;
  font-family: var(--font-script);
  font-size: 7rem;
  color: rgba(255,255,255,0.16);
  pointer-events: none;
}
.bento-mint {
  border-radius: 2rem;
  background: var(--mint);
  display: grid;
  place-items: center;
  min-height: 280px;
  overflow: hidden;
}
.bento-img {
  width: min(70%, 280px);
  animation: floatY 6s ease-in-out infinite;
}
.bento-photo {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  min-height: 280px;
  border: 1px solid var(--line);
}
.bento-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
}
.bento-caption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--ink) 78%, transparent);
  color: #fff;
  backdrop-filter: blur(8px);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* CTA */
.cta-panel {
  position: relative;
  overflow: hidden;
  border-radius: 2.2rem;
  background: var(--ink);
  color: var(--bg);
  text-align: center;
  padding: 4rem 1.5rem;
}
.cta-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 20%, var(--accent), transparent 42%),
    radial-gradient(circle at 85% 80%, #ff7a90, transparent 40%);
  opacity: 0.4;
}
.cta-panel > * { position: relative; }
.cta-script {
  margin: 0;
  font-family: var(--font-script);
  font-size: clamp(2.5rem, 6vw, 3.8rem);
  color: var(--accent2);
}
.cta-panel h2 { margin-top: 0.6rem; }
.cta-panel .btn { margin-top: 1.5rem; }

/* Contact */
.contact-wrap {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 900px) {
  .contact-wrap { grid-template-columns: 1.2fr 0.8fr; align-items: stretch; }
}
.contact-card {
  border-radius: 2rem;
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 2rem;
}
.contact-mail {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.3rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.05rem, 4.5vw, 2rem);
  color: var(--accent);
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.contact-mail:hover { text-decoration: underline; }
.contact-rows {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.4rem;
  color: var(--muted);
  font-size: 0.95rem;
}
.contact-rows div {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.contact-rows i { color: var(--accent); width: 1.1rem; text-align: center; }
.contact-visual {
  border-radius: 2rem;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  min-height: 280px;
}
.contact-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
}
.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.socials a {
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  transition: border-color 0.25s ease, color 0.25s ease, transform 0.25s ease, background 0.25s ease;
}
.socials a:hover {
  border-color: var(--accent);
  color: #fff;
  background: var(--accent);
  transform: translateY(-3px);
}

/* Footer */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--line);
  padding-top: 3.5rem;
  overflow-x: hidden;
}
.footer .shell {
  container-type: inline-size;
  container-name: footerbrand;
  max-width: 100%;
  overflow: visible;
}
.footer-mega {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  /* Fit full “BY FIOCCO” inside the shell on every phone width */
  font-size: clamp(1.25rem, 10.8cqi, 8rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
  color: transparent;
  -webkit-text-stroke: 1.4px color-mix(in srgb, var(--ink) 32%, transparent);
  white-space: nowrap;
  max-width: 100%;
  overflow: visible;
  display: block;
  width: max-content;
  max-width: 100%;
}
.footer-grid {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
  padding-bottom: 2.5rem;
}
@media (min-width: 760px) {
  .footer-grid { grid-template-columns: 1.2fr 1fr; align-items: start; }
}
.footer-tag {
  margin: 0 0 1rem;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--muted);
  max-width: 22rem;
}
.footer-pay {
  display: flex;
  gap: 0.85rem;
  font-size: 1.6rem;
  color: var(--muted);
  margin-bottom: 1.2rem;
}
.footer-pay i:hover { color: var(--accent); }
.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.footer-cols h4 {
  margin: 0 0 0.8rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.footer-cols h4 i { color: var(--accent); }
.footer-cols a {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--muted);
  font-size: 0.95rem;
}
.footer-cols a:hover { color: var(--accent); }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
}
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 1.1rem 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.5rem;
  font-size: 0.85rem;
  color: var(--muted);
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}
@keyframes pulse {
  0%, 100% { opacity: 0.55; transform: scale(0.96); }
  50% { opacity: 1; transform: scale(1.05); }
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}
@keyframes slabIn {
  to { transform: translateX(0); }
}
@keyframes meshDrift {
  from { transform: scale(1) translate(0, 0); }
  to { transform: scale(1.05) translate(-1.5%, 1%); }
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 899px) {
  .hero-slab { display: none; }
}

/* Complete site extras */
.cart-chip { position: relative; }
.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 1.15rem;
  height: 1.15rem;
  padding: 0 0.25rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  display: grid;
  place-items: center;
}
.row-head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}
.page-hero { padding: 3.5rem 0 2rem; }
.page-hero h1,
.page-title {
  margin: 0.4rem 0 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 6vw, 4rem);
  letter-spacing: -0.03em;
}
.chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.65rem; }
.shop-filters {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.75rem;
}
.filter-group { max-width: 100%; }
.filter-label {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 650;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.chip:hover {
  border-color: color-mix(in srgb, var(--accent) 45%, var(--line));
  transform: translateY(-1px);
}
.chip-on {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--bg);
}
.chip-cat em {
  font-style: normal;
  font-size: 0.72rem;
  opacity: 0.7;
  padding: 0.1rem 0.45rem;
  border-radius: 999px;
  background: color-mix(in srgb, currentColor 12%, transparent);
}
.chip-on em { background: rgba(255, 255, 255, 0.16); opacity: 1; }
.shop-active {
  margin: 1.1rem 0 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  font-size: 0.92rem;
  font-weight: 600;
}
.shop-active span { color: var(--muted); font-weight: 500; }
.empty-msg, .empty-state { color: var(--muted); text-align: center; padding: 2rem; }
.empty-state .btn { margin-top: 1rem; }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  font-size: 0.92rem;
}
.back-link:hover { color: var(--accent); }
.pdp-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 900px) {
  .pdp-grid { grid-template-columns: 1fr 1fr; }
}
.pdp-media {
  border-radius: 2rem;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  aspect-ratio: 1;
}
.pdp-media img { width: 100%; height: 100%; object-fit: cover; }
.pdp-info h1 {
  margin: 0.4rem 0;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}
.pdp-price {
  font-family: var(--font-num);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0.8rem 0;
  font-variant-numeric: tabular-nums lining-nums;
  letter-spacing: 0.01em;
}
.pdp-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.4rem 0 1.8rem;
}
.pdp-specs dt { color: var(--muted); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; }
.pdp-specs dd {
  margin: 0.2rem 0 0;
  font-family: var(--font-num);
  font-weight: 600;
  font-size: 1.1rem;
  font-variant-numeric: tabular-nums lining-nums;
}
.cart-info .num { color: var(--muted); margin: 0.25rem 0 0; font-weight: 600; }
.related-title {
  margin: 3rem 0 1.25rem;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
}
.gift-media { display: block; }
.gift-meta a { color: inherit; }
.cart-layout {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.5rem;
}
@media (min-width: 900px) {
  .cart-layout { grid-template-columns: 1.4fr 0.8fr; align-items: start; }
}
.cart-row {
  display: grid;
  grid-template-columns: 88px 1fr auto auto;
  gap: 1rem;
  align-items: center;
}
.cart-row img {
  width: 88px;
  height: 88px;
  object-fit: cover;
  border-radius: 1rem;
}
.qty-input {
  width: 4rem;
  padding: 0.45rem;
  border-radius: 0.7rem;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--ink);
  text-align: center;
}
.qty-stepper {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg);
  overflow: hidden;
}
.qty-btn {
  width: 2.35rem;
  height: 2.35rem;
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1;
  color: var(--ink);
  transition: background 0.2s ease, color 0.2s ease;
}
.qty-btn:hover {
  background: var(--accent);
  color: #fff;
}
.qty-value {
  min-width: 2rem;
  text-align: center;
  font-family: var(--font-num);
  font-weight: 600;
  font-size: 1rem;
  font-variant-numeric: tabular-nums lining-nums;
}
.text-btn { color: var(--muted); font-size: 0.85rem; }
.text-btn:hover { color: var(--accent); }
.surface-block {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 1.35rem;
  padding: 1.25rem;
}
.summary .btn { width: 100%; margin-top: 0.7rem; }
.sum-line {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.65rem;
  font-size: 0.95rem;
}
.sum-line.total {
  border-top: 1px solid var(--line);
  padding-top: 0.75rem;
  font-family: var(--font-num);
  font-size: 1.25rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums lining-nums;
}
.tiny { font-size: 0.78rem; color: var(--muted); margin: 0 0 0.8rem; }
.checkout-head {
  margin-bottom: 1.75rem;
  max-width: 36rem;
}
.checkout-head .section-sub { margin-top: 0.65rem; }
.checkout-wrap {
  display: grid;
  gap: 1.25rem;
  align-items: start;
}
@media (min-width: 960px) {
  .checkout-wrap { grid-template-columns: 1.35fr 0.75fr; }
}
.checkout-form { display: grid; gap: 1rem; margin-top: 0; }
.summary {
  position: sticky;
  top: 5.5rem;
}
.checkout-form h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
}
.checkout-form .surface-block + .surface-block { margin-top: 0; }
.form-grid {
  display: grid;
  gap: 0.95rem;
  grid-template-columns: 1fr 1fr;
}
.form-grid .full { grid-column: 1 / -1; }
.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-width: 0;
}
.field label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input,
.field textarea,
.checkout-form input[type="text"],
.checkout-form input[type="email"],
.checkout-form input[type="tel"],
.checkout-form textarea {
  width: 100%;
  min-height: 2.85rem;
  padding: 0.7rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  background: var(--bg);
  color: var(--ink);
  font: inherit;
  font-size: 0.98rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
}
.field textarea {
  min-height: 6rem;
  resize: vertical;
  line-height: 1.45;
}
.field input::placeholder,
.field textarea::placeholder {
  color: color-mix(in srgb, var(--muted) 75%, transparent);
}
.field input:hover,
.field textarea:hover {
  border-color: color-mix(in srgb, var(--accent) 35%, var(--line));
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 18%, transparent);
  background: var(--surface);
}
.checkout-form > .btn {
  width: 100%;
  margin-top: 0.35rem;
}
@media (max-width: 640px) {
  .form-grid { grid-template-columns: 1fr; }
  .cart-row { grid-template-columns: 72px 1fr; }
  .cart-row .qty-stepper, .cart-row .qty-input, .cart-row .text-btn { grid-column: 2; justify-self: start; }
}
.pay-option {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  margin-bottom: 0.65rem;
  cursor: pointer;
  background: var(--bg);
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.pay-option:hover {
  border-color: color-mix(in srgb, var(--accent) 40%, var(--line));
}
.pay-option:has(:checked) {
  border-color: var(--accent);
  background: color-mix(in srgb, var(--accent) 6%, var(--surface));
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 12%, transparent);
}
.pay-option input[type="radio"] {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.2rem;
  accent-color: var(--accent);
  flex-shrink: 0;
}
.pay-option strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
}
.pay-option small {
  display: block;
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.35;
}
.checkout-error {
  background: #fde8e4;
  color: #8a2b1a;
  border: 1px solid #f0b4a8;
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 14px;
  font-weight: 600;
}
.about-layout {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 900px) {
  .about-layout { grid-template-columns: 1.1fr 0.9fr; }
}
.accent-script {
  margin: 0;
  font-size: 3rem;
  color: var(--accent);
}
.lead {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-style: italic;
  color: var(--muted);
  max-width: 34rem;
}
.about-photo {
  border-radius: 2rem;
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 320px;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; min-height: 320px; }
.order-wrap { max-width: 560px; margin-inline: auto; text-align: center; }
.order-card h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 800;
}
.order-dl { text-align: left; margin: 1.5rem 0; }
.order-dl div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
}
.order-dl .accent {
  color: var(--accent);
  font-family: var(--font-num);
  font-weight: 700;
  font-size: 1.25rem;
  font-variant-numeric: tabular-nums lining-nums;
}
.order-items { list-style: none; padding: 0; margin: 0 0 1.5rem; text-align: left; }
.order-items li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.4rem 0;
  color: var(--muted);
}

/* ——— Responsive: all devices ——— */
@media (max-width: 899px) {
  .shell { width: min(1180px, calc(100% - 1.5rem)); }
  .section { padding: 3.25rem 0; }
  .hero {
    min-height: auto;
    padding: 1.25rem 0 2.5rem;
  }
  .hero-outline {
    font-size: clamp(4rem, 28vw, 8rem);
    bottom: auto;
    top: 8%;
    opacity: 0.55;
  }
  .hero-cta .btn { flex: 1 1 auto; min-width: min(100%, 10rem); }
  .hero-float { width: min(100%, 360px); }
  .hero-badge { font-size: 0.7rem; padding: 0.4rem 0.7rem; }
  .section-head h2,
  .bento-red h2,
  .cta-panel h2 { font-size: clamp(1.75rem, 7vw, 2.6rem); }
  .cat-tile { min-height: 200px; }
  .bento-red { padding: 1.75rem; }
  .bento-script { font-size: clamp(3rem, 18vw, 6rem); }
  .cta-panel { padding: 2rem 1.35rem; border-radius: 1.5rem; text-align: center; }
  .page-hero { padding: 2.25rem 0 1.5rem; }
  .contact-card { padding: 1.35rem; border-radius: 1.35rem; }
  .pdp-specs { grid-template-columns: 1fr; }
  .occ-grid,
  .icon-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 519px) {
  .shell { width: calc(100% - 1.25rem); }
  .header-inner { height: 4rem; }
  .nav.open { top: 4rem; max-height: calc(100dvh - 4rem); }
  .logo-script { font-size: 1.65rem; }
  .logo-by { font-size: 0.9rem; }
  .logo-mark { width: 2.1rem; height: 2.1rem; font-size: 0.85rem; }
  .lang-btn, .theme-btn, .menu-btn, .cart-chip {
    width: 2.35rem;
    height: 2.35rem;
  }
  .lang-btn { padding-inline: 0.65rem; width: auto; }
  .hero h1 { font-size: clamp(2.1rem, 11vw, 2.8rem); }
  .hero-sub { font-size: 1rem; }
  .hero-stats { gap: 1rem 1.25rem; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  .btn { min-height: 2.85rem; padding-inline: 1.1rem; }
  .pill { font-size: 0.65rem; letter-spacing: 0.1em; }
  .occ-grid,
  .icon-grid { grid-template-columns: 1fr; }
  .gift-media { border-radius: 1.15rem; }
  .chip {
    padding: 0.5rem 0.8rem;
    font-size: 0.78rem;
  }
  .shop-filters { gap: 1rem; margin-top: 1.25rem; }
  .footer-mega {
    font-size: clamp(1.2rem, 10.5cqi, 2.5rem);
    letter-spacing: -0.07em;
    -webkit-text-stroke-width: 1.2px;
  }
  .footer-cols { grid-template-columns: 1fr; gap: 1.25rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .surface-block { padding: 1rem; border-radius: 1.1rem; }
  .cart-row {
    grid-template-columns: 64px 1fr;
    gap: 0.75rem;
  }
  .cart-row img { width: 64px; height: 64px; }
  .pdp-info .btn { width: 100%; }
  .about-photo,
  .about-photo img { min-height: 240px; border-radius: 1.35rem; }
  .ticker { font-size: 0.78rem; }
  .row-head .btn { width: 100%; }
}

@media (min-width: 520px) and (max-width: 899px) {
  .cat-tile { min-height: 240px; }
}

/* Touch / reduced motion */
@media (hover: none) {
  .gift-card:hover .gift-media,
  .cat-tile:hover,
  .occ-card:hover,
  .icon-card:hover { transform: none; box-shadow: none; }
  .gift-card:hover .gift-media img,
  .cat-tile:hover img { transform: none; }
  .cursor-glow { display: none !important; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* Safe areas (notched phones) */
@supports (padding: max(0px)) {
  body {
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
  }
  .footer-bottom {
    padding-bottom: max(1.1rem, env(safe-area-inset-bottom));
  }
}
