/* =============================================================
   1. Tokens
   ============================================================= */
@property --mesh-angle { syntax: "<angle>"; inherits: false; initial-value: 0deg; }
@property --mesh-x     { syntax: "<percentage>"; inherits: false; initial-value: 30%; }
@property --mesh-y     { syntax: "<percentage>"; inherits: false; initial-value: 40%; }

:root {
  --bg:         #0E0E0E;
  --bg-2:       #151515;
  --surface:    #1C1C1B;
  --surface-2:  #242422;
  --cream:      #F2EDE4;
  --cream-mute: rgba(242, 237, 228, 0.66);
  --cream-dim:  rgba(242, 237, 228, 0.4);
  --mint:       #6FC1A7;
  --mint-2:     #8ED6BE;
  --mint-dark:  #4E9A83;
  --orange:     #FFB66B;
  --orange-dark:#E8994A;
  --line:       rgba(242, 237, 228, 0.1);
  --line-mint:  rgba(111, 193, 167, 0.3);

  --sans:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --display: "Space Grotesk", var(--sans);

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:     cubic-bezier(0.7, 0, 0.84, 0);
  --ease-soft:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --container: 1240px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  scroll-behavior: smooth;
  background: var(--bg);
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  background: var(--bg);
  color: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.05; letter-spacing: -0.02em; font-family: var(--display); font-weight: 700; }
ul { list-style: none; padding: 0; }
input, select, textarea { font: inherit; color: inherit; }

::selection { background: var(--mint); color: var(--bg); }

:focus-visible {
  outline: 2px solid var(--mint);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: fixed; top: -100px; left: 1rem; z-index: 9999;
  padding: .7rem 1.1rem; background: var(--cream); color: var(--bg);
  border-radius: 8px; font-weight: 600; transition: top .3s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

/* =============================================================
   3. Utilities
   ============================================================= */
.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.kicker {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .78rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--mint); font-weight: 600;
}
.kicker::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--orange);
}
.section { padding: clamp(4.5rem, 9vw, 8rem) 0; position: relative; }
.section-head { max-width: 640px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); margin-top: .9rem; }
.section-head p { color: var(--cream-mute); margin-top: 1.1rem; font-size: 1.05rem; max-width: 52ch; }

/* =============================================================
   4. Buttons
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: .95rem 1.7rem; border-radius: 100px;
  font-weight: 600; font-size: .95rem; letter-spacing: .01em;
  transition: transform .45s var(--ease-soft), box-shadow .45s var(--ease-soft), background-color .3s, color .3s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--mint); color: #0E1512;
  box-shadow: 0 8px 24px rgba(111,193,167,0.22);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(111,193,167,0.32); background: var(--mint-2); }
.btn-ghost {
  background: transparent; color: var(--cream); border: 1px solid var(--line);
}
.btn-ghost:hover { border-color: var(--line-mint); background: rgba(111,193,167,0.06); transform: translateY(-3px); }
.btn-whatsapp {
  background: var(--orange); color: #201202;
  box-shadow: 0 8px 24px rgba(255,182,107,0.22);
}
.btn-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(255,182,107,0.32); background: #ffc687; }
.btn-sm { padding: .65rem 1.15rem; font-size: .82rem; }
.btn-block { width: 100%; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* =============================================================
   5. Splash loader
   ============================================================= */
.splash {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--bg);
  display: grid; place-items: center;
  transition: opacity .8s var(--ease-out), clip-path 1s var(--ease-soft);
  animation: splashSafety .01s 3.6s forwards;
}
.splash.is-out { opacity: 0; pointer-events: none; clip-path: inset(0 0 100% 0); }
@keyframes splashSafety { to { opacity: 0; pointer-events: none; clip-path: inset(0 0 100% 0); } }
.splash-mark { width: 84px; animation: splashPulse 1.6s ease-in-out infinite; }
@keyframes splashPulse { 0%,100% { transform: scale(1); opacity: .85; } 50% { transform: scale(1.06); opacity: 1; } }

/* =============================================================
   6. Navigation
   ============================================================= */
.nav {
  position: fixed; top: 0; inset-inline: 0; z-index: 500;
  padding: 1.1rem 0;
  transition: background-color .4s var(--ease-out), backdrop-filter .4s var(--ease-out), box-shadow .4s var(--ease-out), padding .4s var(--ease-out);
}
.nav.is-scrolled {
  background: rgba(14,14,14,0.82);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 1px 0 var(--line);
  padding: .75rem 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: flex; align-items: center; gap: .5rem; min-width: 0; }
.brand img { width: 32px; height: auto; flex-shrink: 0; }
.brand-word { font-family: var(--display); font-weight: 700; font-size: .95rem; letter-spacing: -0.01em; white-space: nowrap; }
.brand-word .c-mint { color: var(--mint); }

@media (min-width: 540px) {
  .brand img { width: 38px; }
  .brand-word { font-size: 1.15rem; }
}

.nav-links { display: none; align-items: center; gap: 2.1rem; }
.nav-link { position: relative; font-size: .92rem; font-weight: 500; color: var(--cream-mute); padding: .3rem 0; }
.nav-link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--mint);
  transform: scaleX(0); transform-origin: right;
  transition: transform .4s var(--ease-out);
}
.nav-link:hover { color: var(--cream); }
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-actions { display: flex; align-items: center; gap: .9rem; }
.nav-burger {
  display: grid; place-items: center; width: 42px; height: 42px;
  border-radius: 50%; border: 1px solid var(--line);
}
.nav-burger span, .nav-burger span::before, .nav-burger span::after {
  content: ""; display: block; width: 16px; height: 1.5px; background: var(--cream);
  position: relative; transition: transform .3s var(--ease-out), opacity .3s;
}
.nav-burger span::before { position: absolute; top: -5px; }
.nav-burger span::after { position: absolute; top: 5px; }
.nav-burger[aria-expanded="true"] span { background: transparent; }
.nav-burger[aria-expanded="true"] span::before { transform: translateY(5px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span::after { transform: translateY(-5px) rotate(-45deg); }

.nav-mobile {
  position: fixed; inset: 0; z-index: 480;
  background: var(--bg);
  display: grid; place-items: center;
  clip-path: inset(0 0 100% 0);
  transition: clip-path .6s var(--ease-soft);
}
.nav-mobile[data-open="true"] { clip-path: inset(0); }
.nav-mobile-list { display: flex; flex-direction: column; align-items: center; gap: 1.8rem; }
.nav-mobile-list a { font-family: var(--display); font-size: 2rem; font-weight: 700; }

@media (min-width: 960px) {
  .nav-links { display: flex; }
  .nav-burger { display: none; }
}

/* =============================================================
   7. Hero
   ============================================================= */
.hero {
  position: relative; overflow: clip; isolation: isolate;
  padding-top: clamp(7.5rem, 14vw, 10rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  min-height: 100svh;
  display: flex; align-items: center;
}
.hero-mesh {
  position: absolute; inset: -15%; z-index: -1;
  background:
    radial-gradient(45% 40% at var(--mesh-x) var(--mesh-y), rgba(111,193,167,0.28), transparent 65%),
    radial-gradient(38% 35% at calc(100% - var(--mesh-x)) calc(100% - var(--mesh-y)), rgba(255,182,107,0.18), transparent 65%),
    conic-gradient(from var(--mesh-angle), rgba(111,193,167,0.06), rgba(255,182,107,0.05), rgba(111,193,167,0.06));
  filter: blur(90px) saturate(120%);
  animation: meshDrift 26s ease-in-out infinite;
}
@keyframes meshDrift {
  0%,100% { --mesh-angle: 0deg; --mesh-x: 26%; --mesh-y: 32%; }
  50%     { --mesh-angle: 180deg; --mesh-x: 68%; --mesh-y: 58%; }
}
.hero-grid {
  display: grid; gap: 3rem; align-items: center;
}
.hero-copy { position: relative; z-index: 2; }
.hero-title {
  font-size: clamp(2.6rem, 6.4vw, 4.6rem);
  margin-top: 1.1rem;
  max-width: 14ch;
}
.hero-title em {
  font-style: normal; color: var(--mint);
}
.hero-sub {
  margin-top: 1.4rem; color: var(--cream-mute); font-size: 1.1rem;
  max-width: 48ch;
}
.hero-sub p + p { margin-top: .9rem; }
.hero-sub strong { color: var(--cream); font-weight: 700; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }

.trust-strip {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem 1.6rem;
  margin-top: 3.2rem; padding-top: 2rem; border-top: 1px solid var(--line);
}
.trust-item { display: flex; align-items: center; gap: .6rem; font-size: .82rem; color: var(--cream-mute); }
.trust-item svg { width: 18px; height: 18px; color: var(--mint); flex-shrink: 0; }
.trust-item strong { color: var(--cream); font-weight: 600; display: block; font-size: .85rem; }

.hero-visual { position: relative; display: grid; place-items: center; z-index: 1; }
.hero-visual-halo {
  position: absolute; inset: -10%; z-index: -1;
  background: radial-gradient(circle at 50% 45%, rgba(111,193,167,0.32), transparent 62%);
  filter: blur(40px);
}
.hero-mascot {
  width: min(78vw, 420px);
  filter: drop-shadow(0 40px 60px rgba(0,0,0,0.55)) drop-shadow(0 0 40px rgba(111,193,167,0.15));
  animation: mascotFloat 6.5s ease-in-out infinite;
}
@keyframes mascotFloat {
  0%,100% { transform: translateY(0) rotate(-1deg); }
  50%     { transform: translateY(-18px) rotate(1deg); }
}
.hero-spark {
  position: absolute; top: 6%; left: 12%; width: 26px; color: var(--orange);
  animation: sparkPulse 3s ease-in-out infinite;
}
.hero-dashes { position: absolute; top: 10%; right: 10%; width: 60px; color: var(--mint); opacity: .9; }
@keyframes sparkPulse { 0%,100% { opacity: .5; transform: scale(0.85) rotate(0deg); } 50% { opacity: 1; transform: scale(1.05) rotate(8deg); } }

@media (min-width: 960px) {
  .hero-grid { grid-template-columns: 1.05fr .95fr; gap: 2rem; }
  .trust-strip { grid-template-columns: repeat(4, 1fr); }
}

/* =============================================================
   8. Marquee
   ============================================================= */
.marquee-section { padding: 1.4rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-2); }
.marquee { overflow: hidden; position: relative; }
.marquee::before, .marquee::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 90px; z-index: 2; pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--bg-2), transparent); }
.marquee::after  { right: 0; background: linear-gradient(270deg, var(--bg-2), transparent); }
.marquee-track { display: inline-flex; gap: 2.5rem; white-space: nowrap; will-change: transform; }
.marquee-track span {
  font-family: var(--display); font-size: 1rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase; color: var(--cream-dim);
}
.marquee-track span.dot { color: var(--orange); }

/* =============================================================
   9. About / concept banner
   ============================================================= */
.about-frame {
  border-radius: var(--radius-lg); overflow: hidden; position: relative;
  border: 1px solid var(--line);
  box-shadow: 0 40px 90px -30px rgba(0,0,0,0.6);
}
.about-frame img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.about-frame::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(14,14,14,0.55) 100%);
  pointer-events: none;
}

/* =============================================================
   10. Catalog
   ============================================================= */
.catalog-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1.5rem; }
.filters { display: flex; flex-wrap: wrap; gap: .6rem; }
.filter-btn {
  padding: .55rem 1.1rem; border-radius: 100px; border: 1px solid var(--line);
  font-size: .85rem; font-weight: 600; color: var(--cream-mute);
  transition: all .3s var(--ease-out);
}
.filter-btn:hover { border-color: var(--line-mint); color: var(--cream); }
.filter-btn.is-active { background: var(--mint); color: #0E1512; border-color: var(--mint); }

.product-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.1rem;
  margin-top: 2.6rem;
}
.product-card {
  --rx: 0deg; --ry: 0deg;
  background: var(--surface); border-radius: var(--radius-md);
  border: 1px solid var(--line); overflow: hidden;
  display: flex; flex-direction: column;
  transform: perspective(900px) rotateX(var(--rx)) rotateY(var(--ry));
  transform-style: preserve-3d;
  transition: transform .55s var(--ease-soft), border-color .4s, box-shadow .4s;
}
.product-card:hover {
  transition-duration: .15s;
  border-color: var(--line-mint);
  box-shadow: 0 40px 80px -30px rgba(111,193,167,0.22), 0 20px 40px -20px rgba(0,0,0,0.5);
}
.product-media { position: relative; aspect-ratio: 1; overflow: hidden; background: #101010; }
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-soft), filter .5s; }
.product-card:hover .product-media img { transform: scale(1.08); filter: saturate(1.15) brightness(1.04); }
.product-tag {
  position: absolute; top: .8rem; left: .8rem; z-index: 2;
  background: rgba(14,14,14,0.72); backdrop-filter: blur(6px);
  color: var(--mint); font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: .35rem .65rem; border-radius: 100px; border: 1px solid var(--line-mint);
}
.product-body { padding: 1.2rem 1.2rem 1.4rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; transform: translateZ(30px); }
.product-name { font-family: var(--display); font-size: 1.05rem; font-weight: 700; }
.product-desc { font-size: .84rem; color: var(--cream-mute); line-height: 1.55; flex: 1; }
.product-price { display: flex; align-items: baseline; gap: .5rem; margin-top: .2rem; }
.price-crc { font-family: var(--display); font-weight: 700; font-size: 1.15rem; color: var(--cream); }
.price-usd { font-size: .78rem; color: var(--cream-dim); }
.product-actions { display: flex; flex-direction: column; gap: .55rem; margin-top: .6rem; }
.product-buy {
  padding: .75rem .5rem; font-size: .84rem;
  white-space: normal; text-align: center; line-height: 1.25;
}
.product-actions .btn-ghost {
  padding: .55rem .5rem; font-size: .76rem;
  white-space: normal; text-align: center; line-height: 1.25;
  border-color: transparent; color: var(--cream-mute);
}
.product-actions .btn-ghost:hover { color: var(--mint); border-color: var(--line-mint); }

.catalog-empty { text-align: center; padding: 3rem 1rem; color: var(--cream-mute); display: none; }
.catalog-empty.is-visible { display: block; }

.catalog-more { text-align: center; margin-top: 3rem; }

@media (min-width: 640px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
}
@media (min-width: 1280px) {
  .product-grid { grid-template-columns: repeat(4, 1fr); }
}

/* =============================================================
   11. CTA / contact
   ============================================================= */
.cta-section {
  position: relative; isolation: isolate; overflow: clip;
  border-radius: var(--radius-lg); border: 1px solid var(--line);
  padding: clamp(3rem, 7vw, 5.5rem) clamp(1.5rem, 5vw, 4rem);
  text-align: center;
  background: var(--surface);
}
.cta-section::before {
  content: ""; position: absolute; inset: -20%; z-index: -1;
  background: radial-gradient(50% 50% at 50% 30%, rgba(111,193,167,0.22), transparent 70%);
  filter: blur(60px);
}
.cta-section h2 { font-size: clamp(1.9rem, 4vw, 3rem); max-width: 20ch; margin-inline: auto; }
.cta-section p { color: var(--cream-mute); max-width: 48ch; margin: 1.1rem auto 2rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.cta-meta { margin-top: 2.4rem; display: flex; flex-wrap: wrap; gap: 1.6rem; justify-content: center; color: var(--cream-dim); font-size: .85rem; }
.cta-meta a { color: var(--cream-mute); }
.cta-meta a:hover { color: var(--mint); }

/* =============================================================
   12. Footer
   ============================================================= */
.footer { padding: clamp(3rem, 6vw, 4.5rem) 0 2rem; border-top: 1px solid var(--line); margin-top: 2rem; }
.footer-grid { display: grid; gap: 2.4rem; }
.footer-brand { display: flex; align-items: center; gap: .7rem; }
.footer-brand img { width: 34px; }
.footer-tagline { color: var(--cream-mute); font-size: .9rem; margin-top: 1rem; max-width: 32ch; }
.footer-cols { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.8rem; }
.footer-col h4 { font-size: .75rem; text-transform: uppercase; letter-spacing: .12em; color: var(--cream-dim); margin-bottom: 1rem; font-family: var(--sans); font-weight: 600; }
.footer-col ul { display: grid; gap: .7rem; }
.footer-col a { color: var(--cream-mute); font-size: .92rem; }
.footer-col a:hover { color: var(--mint); }
.footer-bottom {
  margin-top: 3rem; padding-top: 1.6rem; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem;
  font-size: .8rem; color: var(--cream-dim);
}
.footer-bottom a { color: var(--cream-dim); }
.footer-bottom a:hover { color: var(--mint); }

@media (min-width: 720px) {
  .footer-grid { grid-template-columns: 1.1fr 1.6fr; }
  .footer-cols { grid-template-columns: repeat(3, 1fr); }
}

/* =============================================================
   13. Floating WhatsApp button
   ============================================================= */
.wa-float {
  position: fixed; right: 1.3rem; bottom: 1.3rem; z-index: 400;
  display: flex; align-items: center; gap: .6rem;
  background: var(--mint); color: #0E1512;
  padding: .9rem 1.1rem; border-radius: 100px;
  box-shadow: 0 14px 34px rgba(111,193,167,0.35);
  font-weight: 700; font-size: .85rem;
  transition: transform .4s var(--ease-soft), box-shadow .4s var(--ease-soft);
}
.wa-float:hover { transform: translateY(-4px) scale(1.03); box-shadow: 0 20px 44px rgba(111,193,167,0.45); }
.wa-float svg { width: 22px; height: 22px; flex-shrink: 0; }
.wa-float-label { display: none; }
.wa-float::before {
  content: ""; position: absolute; inset: -6px; border-radius: 100px;
  border: 1.5px solid var(--mint); opacity: .5;
  animation: waPulse 2.4s ease-out infinite;
}
@keyframes waPulse { 0% { transform: scale(1); opacity: .5; } 100% { transform: scale(1.35); opacity: 0; } }
@media (min-width: 640px) { .wa-float-label { display: inline; } }

/* =============================================================
   14. Reveal on scroll
   ============================================================= */
[data-reveal] {
  opacity: 0; transform: translateY(36px);
  transition: opacity .85s var(--ease-soft), transform .85s var(--ease-soft);
}
[data-reveal].is-revealed { opacity: 1; transform: none; }
[data-reveal-stagger] > * { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease-soft), transform .7s var(--ease-soft); }
[data-reveal-stagger].is-revealed > * { opacity: 1; transform: none; }
[data-reveal-stagger].is-revealed > *:nth-child(1) { transition-delay: .05s; }
[data-reveal-stagger].is-revealed > *:nth-child(2) { transition-delay: .12s; }
[data-reveal-stagger].is-revealed > *:nth-child(3) { transition-delay: .19s; }
[data-reveal-stagger].is-revealed > *:nth-child(4) { transition-delay: .26s; }

/* =============================================================
   15. Forms (admin)
   ============================================================= */
.form-field { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.3rem; min-width: 0; }
.form-field label { font-size: .82rem; font-weight: 600; color: var(--cream-mute); }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; min-width: 0;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: .8rem 1rem; color: var(--cream);
  transition: border-color .3s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--mint); outline: none;
}
.form-field textarea { resize: vertical; min-height: 90px; }
.form-row { display: grid; grid-template-columns: minmax(0, 1fr); gap: 1rem; }
@media (min-width: 640px) { .form-row-2 { grid-template-columns: minmax(0,1fr) minmax(0,1fr); } }

.admin-shell { min-height: 100svh; display: flex; flex-direction: column; }
.admin-gate {
  flex: 1; display: grid; place-items: center; padding: 2rem;
}
.admin-gate-card {
  max-width: 380px; width: 100%; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 2.4rem;
  text-align: center;
}
.admin-gate-card img { width: 56px; margin-inline: auto; margin-bottom: 1.2rem; }
.admin-gate-error { color: var(--orange); font-size: .84rem; margin-top: .8rem; min-height: 1.2em; }

.admin-main { padding: 2.5rem 0 5rem; }
.admin-header { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 1rem; margin-bottom: 2.5rem; }
.admin-panel { display: grid; gap: 2rem; }
.admin-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.5rem, 3vw, 2.4rem); }
.admin-card h2 { font-size: 1.3rem; margin-bottom: 1.6rem; }
.admin-list { display: grid; gap: 1rem; }
.admin-product-row {
  display: flex; gap: 1rem; align-items: center; padding: .9rem; border: 1px solid var(--line);
  border-radius: var(--radius-sm); background: var(--bg-2);
}
.admin-product-row img { width: 56px; height: 56px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.admin-product-row .info { flex: 1; min-width: 0; }
.admin-product-row .info strong { display: block; font-size: .92rem; }
.admin-product-row .info span { font-size: .78rem; color: var(--cream-mute); }
.admin-delete { color: var(--orange); font-size: .8rem; font-weight: 600; flex-shrink: 0; padding: .5rem .8rem; }
.admin-delete:hover { text-decoration: underline; }
.admin-empty { color: var(--cream-mute); font-size: .9rem; text-align: center; padding: 1.5rem; }
.admin-note {
  font-size: .8rem; color: var(--cream-dim); margin-top: 1.2rem; line-height: 1.6;
  border-top: 1px solid var(--line); padding-top: 1.2rem;
}
.admin-toast {
  position: fixed; bottom: 1.5rem; left: 50%; transform: translate(-50%, 20px);
  background: var(--mint); color: #0E1512; font-weight: 600; font-size: .88rem;
  padding: .8rem 1.4rem; border-radius: 100px; opacity: 0; pointer-events: none;
  transition: opacity .4s var(--ease-out), transform .4s var(--ease-soft);
  z-index: 999;
}
.admin-toast.is-visible { opacity: 1; transform: translate(-50%, 0); }
.admin-side { display: grid; gap: 2rem; }
@media (min-width: 960px) { .admin-panel { grid-template-columns: 1fr 1fr; align-items: start; } }

.admin-order-row {
  display: grid; grid-template-columns: 56px 1fr auto; gap: 1rem; align-items: center;
  padding: .9rem; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--bg-2);
}
.admin-order-row img { width: 56px; height: 56px; object-fit: cover; border-radius: 8px; }
.admin-order-noproof {
  width: 56px; height: 56px; display: grid; place-items: center; border-radius: 8px;
  background: var(--surface-2); color: var(--cream-dim); font-size: .6rem; text-align: center; padding: .3rem;
}
.admin-order-row .info { min-width: 0; display: flex; flex-direction: column; gap: .15rem; }
.admin-order-row .info strong { font-size: .92rem; }
.admin-order-row .info span { font-size: .78rem; color: var(--cream-mute); }
.admin-order-row .info span.admin-order-date { color: var(--cream-dim); font-size: .72rem; }

/* =============================================================
   16. Checkout modal
   ============================================================= */
.checkout-modal {
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  background: var(--surface); color: var(--cream);
  padding: 0; width: min(92vw, 520px); max-height: 88svh;
  box-shadow: 0 60px 120px -30px rgba(0,0,0,0.7);
}
.checkout-modal::backdrop { background: rgba(6,6,6,0.7); backdrop-filter: blur(4px); }
.checkout-inner { padding: clamp(1.5rem, 4vw, 2.4rem); overflow-y: auto; max-height: 88svh; }
.checkout-close {
  position: absolute; top: 1rem; right: 1rem; width: 36px; height: 36px;
  display: grid; place-items: center; border-radius: 50%; border: 1px solid var(--line);
  color: var(--cream-mute);
}
.checkout-close:hover { color: var(--cream); border-color: var(--line-mint); }
.checkout-close svg { width: 16px; height: 16px; }
.checkout-product {
  display: flex; gap: 1rem; align-items: center; margin-bottom: 1.4rem; padding-right: 2.5rem;
}
.checkout-product img { width: 64px; height: 64px; object-fit: cover; border-radius: 10px; flex-shrink: 0; }
.checkout-product strong { display: block; font-family: var(--display); font-size: 1.05rem; }
.checkout-product span { font-size: .84rem; color: var(--cream-mute); }
.checkout-payment-box {
  background: var(--bg-2); border: 1px solid var(--line-mint); border-radius: var(--radius-sm);
  padding: 1rem 1.1rem; margin-bottom: 1.6rem;
}
.checkout-payment-title { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--mint); margin-bottom: .4rem; }
.checkout-payment-text { font-size: .86rem; color: var(--cream-mute); line-height: 1.6; }
.checkout-success { text-align: center; padding: 1rem 0; }
.checkout-success svg { width: 52px; height: 52px; color: var(--mint); margin-inline: auto; margin-bottom: 1rem; }
.checkout-success h3 { font-size: 1.4rem; margin-bottom: .8rem; }
.checkout-success p { color: var(--cream-mute); font-size: .92rem; line-height: 1.6; margin-bottom: 1.6rem; }
.checkout-success .btn { width: 100%; margin-bottom: .7rem; }

/* =============================================================
   17. Reduced motion (intrusive only)
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .hero-mascot { animation: none; }
  .splash-mark { animation: none; }
  .wa-float::before { animation: none; }
  .hero-mesh { animation: none; }
}
