/* ================================================================
   Duncans'Hill — Master Stylesheet
   Dark Glassmorphism  |  Anime image backgrounds
   ================================================================ */

@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&family=Outfit:wght@400;500;600;700;800;900&display=swap");

/* ── Design Tokens ──────────────────────────────────────────────── */
:root {
  --bg:          #0a0812;
  --surface:     rgba(255,255,255,0.07);
  --surface-h:   rgba(255,255,255,0.11);
  --surface-s:   rgba(255,255,255,0.16);

  --accent:      #d946ef;
  --accent-dim:  rgba(217,70,239,0.12);
  --accent2:     #818cf8;
  --accent3:     #38bdf8;
  --pink:        #f472b6;

  --text:        rgba(240,232,255,0.95);
  --text-muted:  rgba(200,186,255,0.72);
  --text-dim:    rgba(178,155,255,0.42);

  --border:      rgba(255,255,255,0.09);
  --border-h:    rgba(255,255,255,0.15);
  --border-acc:  rgba(217,70,239,0.45);

  --r-sm:   10px;
  --r-md:   16px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-pill: 999px;

  --shadow-card: 0 8px 40px rgba(0,0,0,0.45),
                 0 2px 8px rgba(0,0,0,0.30),
                 inset 0 1px 0 rgba(255,255,255,0.08);
  --shadow-elev: 0 4px 24px rgba(0,0,0,0.50);
  --glow-acc:    0 0 32px rgba(217,70,239,0.22);

  --nav-h:  70px;
  --max-w:  1220px;
  --gap:    5rem;

  /* Set by bg-slideshow (load-nav.js) — update data/bg-images.json to add new images */
  --bg-image: url("/Site%20design%20images/anime-character-with-dragon-illustration.jpg");
}

/* ── Reset ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
img, video { max-width: 100%; display: block; object-fit: cover; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; margin: 0; }
button { cursor: pointer; font: inherit; border: none; background: none; }
h1,h2,h3,h4,h5,h6,p { margin: 0; }
input, textarea, select { font: inherit; }

/* ── Base ───────────────────────────────────────────────────────── */
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Poppins', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.68;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: var(--nav-h);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Outfit', 'Poppins', sans-serif;
  line-height: 1.2;
  font-weight: 700;
}

/* ── Background — Anime image + dark overlay + color mesh ────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    /* Dark readability overlay */
    linear-gradient(165deg,
      rgba(10,8,18,0.58) 0%,
      rgba(10,8,18,0.48) 50%,
      rgba(10,8,18,0.62) 100%),
    /* Colour accent mesh */
    radial-gradient(ellipse 80% 55% at 18% 28%,  rgba(168,85,247,0.22) 0%, transparent 62%),
    radial-gradient(ellipse 65% 55% at 82% 72%,  rgba(236,72,153,0.18) 0%, transparent 58%),
    radial-gradient(ellipse 55% 45% at 52%  8%,  rgba(56,189,248,0.12) 0%, transparent 52%),
    radial-gradient(ellipse 45% 40% at  8% 82%,  rgba(139,92,246,0.16) 0%, transparent 52%),
    radial-gradient(ellipse 35% 30% at 90% 15%,  rgba(244,114,182,0.12) 0%, transparent 50%),
    /* Anime image — randomised by bg-slideshow on each page load */
    var(--bg-image) center top / cover no-repeat;
  animation: bg-fade-in 0.9s ease-out, bg-drift 38s ease-in-out infinite alternate;
}

/* Ambient magenta glow orb */
body::after {
  content: '';
  position: fixed;
  width: 900px; height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(217,70,239,0.16) 0%,
    rgba(168,85,247,0.08) 42%,
    transparent 72%);
  top: -24%; right: -16%;
  z-index: -1;
  pointer-events: none;
  filter: blur(60px);
  animation: orb-drift 28s ease-in-out infinite alternate-reverse;
}

@keyframes bg-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes bg-drift {
  0%   { transform: scale(1)    translate(0%,  0%); }
  33%  { transform: scale(1.03) translate(-1%, 2%); }
  66%  { transform: scale(.98)  translate(2%, -1.5%); }
  100% { transform: scale(1.02) translate(-2%, 3%); }
}
@keyframes orb-drift {
  0%   { transform: translate(0%,   0%)  scale(1);   }
  50%  { transform: translate(-8%,  12%) scale(1.14); }
  100% { transform: translate(4%,   18%) scale(.92); }
}

/* ── Layout ─────────────────────────────────────────────────────── */
main { flex: 1; width: 100%; padding: 3.5rem 1.5rem 6rem; }
.container { max-width: var(--max-w); margin: 0 auto; width: 100%; }
.section { margin-bottom: var(--gap); }
.section:last-child { margin-bottom: 0; }

/* ── Typography helpers ─────────────────────────────────────────── */
.gradient-text {
  background: linear-gradient(135deg, #f0e8ff 0%, #d946ef 52%, #818cf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-2 {
  background: linear-gradient(135deg, #d946ef 0%, #f472b6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-muted  { color: var(--text-muted); }
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.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; }

/* ── Section Headers ────────────────────────────────────────────── */
.section-hd { margin-bottom: 2.5rem; }
.section-hd.centered {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.label {
  display: inline-block;
  font-size: .73rem;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: #d946ef;
  background: rgba(217,70,239,0.12);
  border: 1px solid rgba(217,70,239,0.24);
  border-radius: var(--r-pill);
  padding: 3px 11px;
  margin-bottom: .6rem;
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--text);
  font-weight: 700;
  margin-bottom: .4rem;
}
.section-title::after {
  content: '';
  display: block;
  width: 40px; height: 3px;
  background: linear-gradient(90deg, #d946ef, #818cf8);
  border-radius: 2px;
  margin-top: .5rem;
}
.section-hd.centered .section-title::after { margin-left: auto; margin-right: auto; }
.section-sub {
  font-size: .96rem;
  color: var(--text-muted);
  max-width: 38rem;
  margin-top: .3rem;
}

/* ── Navigation ─────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 200;
  background: rgba(10,8,18,0.55);
  backdrop-filter: blur(24px) saturate(1.6);
  -webkit-backdrop-filter: blur(24px) saturate(1.6);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background .3s, box-shadow .3s;
}
.site-header.scrolled {
  background: rgba(10,8,18,0.85);
  box-shadow: 0 2px 30px rgba(0,0,0,0.40);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: .65rem;
  flex-shrink: 0;
  text-decoration: none;
}
.brand-logo {
  width: 34px; height: 34px;
  border-radius: 9px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid rgba(217,70,239,0.28);
  box-shadow: 0 0 14px rgba(217,70,239,0.18);
}
.brand-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--text);
  letter-spacing: -.01em;
}
/* Nav links */
.nav-links { flex: 1; }
.nav-links > ul {
  display: flex;
  align-items: center;
  gap: .15rem;
}
.nav-links li { position: relative; }
.nav-links > ul > li > a {
  display: block;
  padding: .5rem .8rem;
  font-size: .875rem;
  font-weight: 500;
  color: rgba(200,186,255,0.82);
  border-radius: var(--r-sm);
  transition: background .15s, color .15s;
}
.nav-links > ul > li > a:hover {
  background: rgba(255,255,255,0.07);
  color: #fff;
}
.nav-links > ul > li.active > a {
  color: #d946ef;
  background: rgba(217,70,239,0.12);
}
/* Dropdown */
.has-dropdown > a::after {
  content: ' ↓';
  font-size: .65rem;
  opacity: .5;
  display: inline;
}
.nav-dropdown {
  position: absolute;
  top: calc(100% + .4rem);
  left: 0;
  min-width: 190px;
  background: rgba(15,12,35,0.90);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r-md);
  padding: .35rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .18s, transform .18s, visibility .18s;
  pointer-events: none;
  z-index: 100;
  box-shadow: 0 16px 50px rgba(0,0,0,0.55);
}
.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown {
  opacity: 1; visibility: visible;
  transform: translateY(0); pointer-events: auto;
}
.nav-dropdown li a {
  display: block;
  padding: .58rem .85rem;
  font-size: .85rem;
  color: rgba(200,186,255,0.78);
  border-radius: var(--r-sm);
  transition: background .12s, color .12s;
}
.nav-dropdown li a:hover {
  background: rgba(217,70,239,0.12);
  color: #d946ef;
}
/* Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: .65rem;
  margin-left: auto;
  flex-shrink: 0;
}
.nav-order-btn { white-space: nowrap; }
/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .4rem;
  border-radius: var(--r-sm);
  transition: background .15s;
}
.hamburger:hover { background: rgba(255,255,255,0.07); }
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: rgba(200,186,255,0.80);
  border-radius: 2px;
  transition: transform .28s, opacity .28s;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(4px,-4px); }

/* Mobile nav */
@media (max-width: 860px) {
  .hamburger { display: flex; }
  .nav-links {
    position: absolute;
    top: var(--nav-h); left: 0; right: 0;
    background: rgba(10,8,18,0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    box-shadow: 0 12px 40px rgba(0,0,0,0.55);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .32s ease;
  }
  .nav-links.open {
    max-height: 80vh;
    overflow-y: auto;
    padding: .75rem 1.25rem 1.25rem;
  }
  .nav-links > ul { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-links > ul > li > a {
    padding: .8rem .5rem;
    font-size: .95rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  .nav-links > ul > li:last-child > a { border-bottom: none; }
  .nav-dropdown {
    position: static; opacity: 1; visibility: visible;
    transform: none; pointer-events: auto;
    background: rgba(217,70,239,0.07);
    border: 1px solid rgba(217,70,239,0.15);
    margin: .25rem 0 .5rem .75rem;
    box-shadow: none;
  }
  .has-dropdown > a::after { content: ''; }
  .nav-order-btn { display: none; }
}

/* ── Footer ─────────────────────────────────────────────────────── */
.site-footer {
  background: rgba(6,5,15,0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 3.5rem 1.5rem 2rem;
  margin-top: auto;
}
.footer-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 2fr;
  gap: 3rem 4rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand { max-width: 280px; }
.footer-tagline {
  font-size: .875rem; color: var(--text-muted);
  margin-top: .85rem; line-height: 1.65;
}
.footer-links {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem;
}
.footer-col h4 {
  font-size: .75rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--text-dim); margin-bottom: .9rem;
  font-family: 'Poppins', sans-serif;
}
.footer-col ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-col li a {
  font-size: .875rem; color: var(--text-muted);
  transition: color .15s;
}
.footer-col li a:hover { color: #d946ef; }
.footer-bottom {
  max-width: var(--max-w); margin: 1.5rem auto 0;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: .5rem;
}
.footer-bottom p { font-size: .8rem; color: var(--text-dim); }

/* ── Buttons ────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center; justify-content: center;
  gap: .4rem;
  padding: .6rem 1.35rem;
  border-radius: var(--r-md);
  font-size: .875rem; font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease,
              border-color .2s ease, color .2s ease, filter .2s ease;
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}
.btn-primary {
  background: linear-gradient(135deg, #d946ef 0%, #9333ea 100%);
  color: #fff;
  box-shadow: 0 4px 22px rgba(217,70,239,0.40),
              inset 0 1px 0 rgba(255,255,255,0.20);
}
.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 36px rgba(217,70,239,0.58),
              inset 0 1px 0 rgba(255,255,255,0.20);
  filter: brightness(1.08);
}
.btn-outline {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: rgba(228,216,255,0.90);
  border-color: rgba(255,255,255,0.15);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}
.btn-outline:hover {
  background: rgba(217,70,239,0.12);
  border-color: rgba(217,70,239,0.50);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 22px rgba(217,70,239,0.24),
              inset 0 1px 0 rgba(255,255,255,0.10);
}
.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border-color: rgba(255,255,255,0.12);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.20);
  color: var(--text);
}
.btn-whatsapp {
  background: #25D366; color: #fff; border-color: transparent;
  box-shadow: 0 4px 18px rgba(37,211,102,.30),
              inset 0 1px 0 rgba(255,255,255,.18);
}
.btn-whatsapp:hover {
  background: #20c75c;
  box-shadow: 0 8px 30px rgba(37,211,102,.45);
  transform: translateY(-2px) scale(1.02);
  filter: brightness(1.04);
}
.btn-lg { padding: .78rem 2rem; font-size: .95rem; border-radius: var(--r-lg); }
.btn-sm { padding: .38rem .85rem; font-size: .8rem; border-radius: var(--r-sm); }

/* ── Hero – Home ────────────────────────────────────────────────── */
.hero-home {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 3rem;
  align-items: center;
  min-height: calc(86vh - var(--nav-h));
  padding: 2rem 0 3rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center; gap: .4rem;
  padding: .3rem 1rem;
  border-radius: var(--r-pill);
  font-size: .75rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  background: rgba(217,70,239,0.12);
  color: #d946ef;
  border: 1px solid rgba(217,70,239,0.28);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  margin-bottom: 1.2rem;
}
.hero-h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900; line-height: 1.08;
  color: var(--text);
  margin-bottom: 1.2rem;
  letter-spacing: -.025em;
}
.hero-tagline {
  font-size: 1.02rem; color: var(--text-muted);
  max-width: 34rem; line-height: 1.72;
  margin-bottom: 2rem;
}
.hero-btns {
  display: flex; gap: .85rem; flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero-stats { display: flex; gap: 2.2rem; flex-wrap: wrap; }
.stat-num {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 1.45rem; font-weight: 800; color: var(--text);
}
.stat-label {
  display: block; font-size: .76rem;
  color: var(--text-muted); font-weight: 500; margin-top: .1rem;
}

/* Hero visual */
.hero-visual { position: relative; }
.hero-img-frame {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 20px 70px rgba(0,0,0,.65),
              0 0 50px rgba(217,70,239,0.15),
              0 0 0 1px rgba(255,255,255,.07);
  aspect-ratio: 4/5;
  backdrop-filter: blur(2px);
}
.hero-img-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-frame::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10,8,18,0.30) 100%);
  pointer-events: none;
}
.hero-visual::before {
  content: '';
  position: absolute;
  width: 70%; height: 70%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217,70,239,0.18) 0%, transparent 70%);
  bottom: -16%; right: -12%;
  filter: blur(50px);
  z-index: -1; pointer-events: none;
  animation: orb-drift 18s ease-in-out infinite alternate;
}

/* ── Hero – Inner pages ─────────────────────────────────────────── */
.hero-page {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  padding: 2rem 0 3.5rem;
  margin-bottom: var(--gap);
}
.hero-page .hero-img-frame { aspect-ratio: 16/10; }
.hero-page-text .hero-h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); }

/* ── Glass panel base (reused by cards, steps, tiers, etc.) ─────── */
.glass-panel {
  background: var(--surface);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

/* ── Cards ──────────────────────────────────────────────────────── */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.4rem;
}
.card {
  background: var(--surface);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.3rem 1.4rem;
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease,
              border-color .25s ease, background .25s ease;
}
.card:hover {
  background: var(--surface-h);
  border-color: rgba(217,70,239,0.28);
  box-shadow: 0 4px 12px rgba(0,0,0,.30),
              0 18px 56px rgba(0,0,0,.50),
              0 0 36px rgba(217,70,239,0.14),
              inset 0 1px 0 rgba(255,255,255,0.10);
  transform: translateY(-4px) scale(1.01);
}
.card-thumb {
  border-radius: var(--r-md); margin-bottom: .9rem;
  width: 100%; height: 200px; object-fit: cover;
  border: 1px solid rgba(255,255,255,0.08);
}
.card-title {
  font-size: .975rem; font-weight: 700;
  color: var(--text); margin-bottom: .25rem;
}
.card-price {
  font-weight: 700; color: #d946ef;
  font-size: 1.05rem; margin: .35rem 0 .6rem;
  font-family: 'Outfit', sans-serif;
}
.card-body {
  font-size: .875rem; color: var(--text-muted);
  line-height: 1.62; flex: 1; margin-bottom: 1rem;
}
.card .btn { align-self: flex-start; }

/* ── Steps / Process ────────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.4rem;
}
.step {
  background: var(--surface);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.7rem 1.4rem;
  transition: border-color .22s, transform .22s, box-shadow .22s;
}
.step:hover {
  border-color: rgba(217,70,239,0.28);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,.40),
              0 0 24px rgba(217,70,239,0.10);
}
.step-num {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem; font-weight: 900;
  background: linear-gradient(135deg, #d946ef, #818cf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: .45; line-height: 1;
  margin-bottom: .85rem; letter-spacing: -.03em;
}
.step h3 {
  font-size: .975rem; font-weight: 700;
  color: var(--text); margin-bottom: .45rem;
}
.step p { font-size: .875rem; color: var(--text-muted); line-height: 1.6; }

/* ── CTA Band ───────────────────────────────────────────────────── */
.cta-band {
  background: var(--surface);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 3.5rem 2.5rem;
  text-align: center;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-card);
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 110%,
    rgba(217,70,239,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 800; margin-bottom: .8rem; color: var(--text);
}
.cta-band p {
  font-size: 1rem; color: var(--text-muted);
  max-width: 34rem; margin: 0 auto 1.8rem; line-height: 1.68;
}

/* ── Profile Cards ──────────────────────────────────────────────── */
.profiles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px,1fr));
  gap: 1.4rem;
}
.profile-card {
  background: var(--surface);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.5rem 1.3rem; text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform .24s, border-color .24s, box-shadow .24s;
}
.profile-card:hover {
  transform: translateY(-3px);
  border-color: rgba(217,70,239,0.28);
  box-shadow: 0 12px 40px rgba(0,0,0,.40),
              0 0 24px rgba(217,70,239,0.10);
}
.profile-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  object-fit: cover; margin: 0 auto .85rem;
  border: 2px solid rgba(217,70,239,0.35);
  background: rgba(217,70,239,0.10);
  box-shadow: 0 0 20px rgba(217,70,239,0.16);
}
.profile-name {
  font-size: .975rem; font-weight: 700;
  color: var(--text); margin-bottom: .18rem;
}
.profile-role {
  font-size: .8rem; color: #d946ef;
  font-weight: 600; margin-bottom: .5rem;
}
.profile-bio { font-size: .84rem; color: var(--text-muted); line-height: 1.56; }
.profile-tags {
  display: flex; flex-wrap: wrap; gap: .38rem;
  justify-content: center; margin-top: .75rem;
}
.tag {
  font-size: .7rem; font-weight: 600; color: var(--text-muted);
  background: rgba(255,255,255,0.06); border: 1px solid var(--border-h);
  border-radius: var(--r-pill); padding: .15rem .6rem;
}

/* ── Gallery ────────────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: .9rem;
}
.gallery-item {
  border-radius: var(--r-md); overflow: hidden;
  border: 1px solid var(--border); aspect-ratio: 1;
  background: var(--surface);
  transition: transform .22s, box-shadow .22s, border-color .22s;
  cursor: pointer;
}
.gallery-item:hover {
  transform: scale(1.04);
  border-color: rgba(217,70,239,0.30);
  box-shadow: 0 8px 32px rgba(0,0,0,.40),
              0 0 24px rgba(217,70,239,0.14);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }

/* ── Stacked list ───────────────────────────────────────────────── */
.stacked-list { display: flex; flex-direction: column; gap: .8rem; }
.stacked-list li {
  background: var(--surface);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: .9rem 1.1rem; font-size: .9rem;
  color: var(--text-muted); line-height: 1.58;
  transition: background .18s, border-color .18s, transform .18s;
}
.stacked-list li:hover {
  background: var(--surface-h);
  border-color: rgba(217,70,239,0.20);
  transform: translateX(5px);
}
.stacked-list li strong {
  display: block; color: var(--text);
  font-weight: 600; margin-bottom: .2rem;
}

/* ── Two-column layout ──────────────────────────────────────────── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: flex-start; }
.two-col-wide { grid-template-columns: 1.2fr 1fr; }

/* ── Info blocks ────────────────────────────────────────────────── */
.info-block {
  background: var(--surface);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 1.1rem 1.3rem; margin-bottom: .9rem;
}
.info-block strong {
  display: block; font-size: .76rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .07em;
  color: #d946ef; margin-bottom: .3rem;
}
.info-block p, .info-block a { font-size: .9rem; color: var(--text-muted); }
.info-block a:hover { color: #d946ef; }

/* ── Forms ──────────────────────────────────────────────────────── */
.form-glass {
  background: var(--surface);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border); border-radius: var(--r-xl);
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow-card);
}
.field-row { margin-bottom: 1.25rem; }
label {
  display: block; font-size: .82rem; font-weight: 600;
  color: var(--text-muted); margin-bottom: .42rem; letter-spacing: .01em;
}
input[type="text"], input[type="email"], input[type="tel"],
input[type="number"], input[type="url"],
textarea, select {
  width: 100%; padding: .7rem .95rem;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-md);
  color: var(--text); font-size: .9rem;
  transition: border-color .18s, box-shadow .18s, background .18s;
  outline: none; -webkit-appearance: none; appearance: none;
}
input::placeholder, textarea::placeholder { color: var(--text-dim); }
input:focus, textarea:focus, select:focus {
  border-color: rgba(217,70,239,0.55);
  box-shadow: 0 0 0 3px rgba(217,70,239,0.14),
              0 0 24px rgba(217,70,239,0.08);
  background: rgba(255,255,255,0.10);
}
textarea { resize: vertical; min-height: 110px; }
select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23d946ef' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right .6rem center;
  background-repeat: no-repeat;
  background-size: 1.3em; padding-right: 2.2rem; cursor: pointer;
}
option { background: #1a1030; color: var(--text); }
.field-hint { font-size: .76rem; color: var(--text-dim); margin-top: .28rem; }

/* File upload */
.file-upload-area {
  border: 2px dashed rgba(255,255,255,0.15);
  border-radius: var(--r-md); padding: 1.8rem 1.2rem;
  text-align: center; cursor: pointer;
  transition: border-color .18s, background .18s; position: relative;
}
.file-upload-area:hover, .file-upload-area.file-selected {
  border-color: rgba(217,70,239,0.45);
  background: rgba(217,70,239,0.07);
}
.file-upload-area input[type="file"] {
  position: absolute; inset: 0; opacity: 0; cursor: pointer;
  width: 100%; height: 100%; border: none; padding: 0;
}
.file-upload-icon { font-size: 1.7rem; margin-bottom: .45rem; }
.file-upload-text { font-size: .85rem; color: var(--text-muted); }

/* Messages */
.success-message {
  background: rgba(16,185,129,.10); border: 1px solid rgba(16,185,129,.25);
  color: #6ee7b7; border-radius: var(--r-md); padding: .9rem 1.1rem;
  margin-bottom: 1rem; font-size: .88rem;
}
.error-message {
  background: rgba(239,68,68,.10); border: 1px solid rgba(239,68,68,.24);
  color: #fca5a5; border-radius: var(--r-md); padding: .9rem 1.1rem;
  margin-bottom: 1rem; font-size: .88rem;
}
.radio-group, .check-group { display: flex; flex-direction: column; gap: .5rem; }
.radio-group label, .check-group label {
  display: flex; align-items: center; gap: .55rem;
  font-size: .88rem; color: var(--text-muted);
  cursor: pointer; font-weight: 400;
}
.radio-group input, .check-group input {
  width: auto; accent-color: #d946ef; margin: 0; cursor: pointer;
}

/* ── Products Page ──────────────────────────────────────────────── */
.products-page { display: grid; grid-template-columns: 220px 1fr; gap: 2rem; align-items: start; }
.products-sidebar {
  background: var(--surface);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 1.4rem; position: sticky;
  top: calc(var(--nav-h) + 1.2rem);
  box-shadow: var(--shadow-card);
}
.filter-heading {
  font-size: .76rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--text-dim); margin-bottom: .75rem; margin-top: 1.1rem;
  font-family: 'Poppins', sans-serif;
}
.filter-heading:first-child { margin-top: 0; }
.category-list { display: flex; flex-direction: column; gap: .3rem; }
.category-item {
  display: flex; align-items: center; gap: .5rem;
  padding: .48rem .6rem; border-radius: var(--r-sm);
  cursor: pointer; font-size: .86rem; color: var(--text-muted);
  transition: background .12s, color .12s; font-weight: 400;
}
.category-item:hover { background: rgba(217,70,239,0.12); color: #d946ef; }
.category-item input { accent-color: #d946ef; margin: 0; cursor: pointer; }
.price-filter { display: grid; grid-template-columns: 1fr 1fr; gap: .55rem; }
.price-filter label { display: flex; flex-direction: column; gap: .28rem; }
.price-label { font-size: .72rem; font-weight: 600; color: var(--text-dim); }
.price-filter input { padding: .45rem .6rem; font-size: .84rem; }

/* Controls */
.products-controls {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1.4rem; flex-wrap: wrap;
}
.search-bar {
  display: flex; flex: 1; min-width: 200px;
  background: var(--surface-h);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-h); border-radius: var(--r-pill);
  overflow: hidden;
  box-shadow: inset 0 1px 3px rgba(0,0,0,.20);
}
.search-input {
  flex: 1; background: none; border: none;
  padding: .6rem 1.1rem; color: var(--text); font-size: .875rem;
  border-radius: 0;
}
.search-input::placeholder { color: var(--text-dim); }
.search-input:focus { box-shadow: none; border-color: transparent; background: none; }
.search-btn {
  padding: .5rem .9rem; background: none; border: none;
  color: var(--text-muted); font-size: .95rem;
  cursor: pointer; transition: color .12s;
}
.search-btn:hover { color: #d946ef; }
.products-meta { display: flex; align-items: center; gap: .75rem; flex-shrink: 0; }
.product-count { font-size: .85rem; color: var(--text-muted); }
.sort-select { width: auto; padding: .52rem 1.9rem .52rem .8rem; font-size: .85rem; border-radius: var(--r-md); }

/* Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.2rem;
}
.product-card {
  background: var(--surface);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid var(--border); border-radius: var(--r-lg);
  overflow: hidden; cursor: pointer;
  box-shadow: var(--shadow-card);
  transition: transform .24s, box-shadow .24s, border-color .24s;
}
.product-card:hover {
  transform: translateY(-4px) scale(1.015);
  border-color: rgba(217,70,239,0.28);
  box-shadow: 0 4px 16px rgba(0,0,0,.30),
              0 18px 52px rgba(0,0,0,.50),
              0 0 30px rgba(217,70,239,0.12);
}
.product-image { position: relative; aspect-ratio: 1; overflow: hidden; background: rgba(0,0,0,0.30); }
.product-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .36s ease;
}
.product-card:hover .product-image img { transform: scale(1.06); }
.product-category {
  position: absolute; top: .6rem; left: .6rem;
  font-size: .68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
  padding: .18rem .6rem; border-radius: var(--r-pill);
  background: rgba(10,8,18,0.75); color: #d946ef;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(217,70,239,0.25);
}
.product-status {
  position: absolute; top: .6rem; right: .6rem;
  font-size: .68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
  padding: .18rem .6rem; border-radius: var(--r-pill);
  background: rgba(10,8,18,0.78); backdrop-filter: blur(8px);
  border: 1px solid;
}
.product-status.status-available { color: #34d399; border-color: rgba(52,211,153,0.32); }
.product-status.status-reserved { color: #fbbf24; border-color: rgba(251,191,36,0.34); }
.product-status.status-sold { color: #f87171; border-color: rgba(248,113,113,0.34); }
.product-card.status-sold .product-image img { filter: grayscale(0.55) brightness(0.68); }
.product-info { padding: .95rem 1rem; }
.product-name { font-size: .9rem; font-weight: 700; color: var(--text); margin-bottom: .25rem; }
.product-description { font-size: .8rem; color: var(--text-muted); line-height: 1.54; margin-bottom: .75rem; }
.product-footer { display: flex; align-items: center; justify-content: space-between; gap: .4rem; }
.product-price {
  font-size: .975rem; font-weight: 800;
  font-family: 'Outfit', sans-serif; color: #d946ef;
}
.view-details-btn {
  padding: .34rem .75rem; font-size: .76rem; font-weight: 600;
  color: var(--text-muted); background: rgba(255,255,255,0.06);
  border: 1px solid var(--border); border-radius: var(--r-sm);
  cursor: pointer; transition: background .12s, border-color .12s, color .12s;
}
.view-details-btn:hover {
  background: rgba(217,70,239,0.12);
  border-color: rgba(217,70,239,0.35);
  color: #d946ef;
}
.no-results {
  grid-column: 1/-1; text-align: center;
  padding: 3rem; color: var(--text-muted); font-size: .92rem;
}

/* ── Product Detail Overlay ─────────────────────────────────────── */
#product-detail-overlay {
  position: fixed; inset: 0; z-index: 500; display: none;
}
.overlay-backdrop {
  position: absolute; inset: 0;
  background: rgba(6,5,15,.72);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
}
.overlay-close-btn {
  position: absolute; top: 1rem; right: 1rem; z-index: 10;
  width: 38px; height: 38px; border-radius: var(--r-md);
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--text-muted); display: flex;
  align-items: center; justify-content: center;
  cursor: pointer; transition: background .12s, border-color .12s;
}
.overlay-close-btn:hover {
  background: rgba(217,70,239,0.16);
  border-color: rgba(217,70,239,0.40);
  color: #d946ef;
}
.overlay-content {
  position: absolute; inset: 1.2rem;
  background: rgba(12,10,28,0.90);
  backdrop-filter: blur(28px); -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255,255,255,0.10); border-radius: var(--r-xl);
  overflow-y: auto; overflow-x: hidden;
  padding: 1.8rem; display: flex;
  flex-direction: column; gap: 1.8rem;
  box-shadow: 0 16px 60px rgba(0,0,0,.65);
}
.item-details-page-wrapper {
  display: grid; grid-template-columns: 70px 1fr 1fr; gap: 1.4rem; align-items: start;
}
.thumbnail-gallery { width: 70px; flex-shrink: 0; }
.image-thumbnails-left { display: flex; flex-direction: column; gap: .45rem; }
.thumbnail-wrapper {
  width: 64px; height: 64px; border-radius: var(--r-sm);
  overflow: hidden; border: 2px solid rgba(255,255,255,0.10);
  cursor: pointer; transition: border-color .12s;
}
.thumbnail-wrapper.active { border-color: #d946ef; }
.thumbnail-wrapper img, .thumbnail-wrapper video { width: 100%; height: 100%; object-fit: cover; }
.item-main-image, .item-main-video {
  width: 100%; border-radius: var(--r-lg);
  max-height: 400px; object-fit: contain;
  background: rgba(0,0,0,0.40); border: 1px solid rgba(255,255,255,0.09);
}
.zoomed-image-container {
  display: none;
  position: absolute; top: 0; right: calc(-100% - 1rem);
  width: 100%; height: 100%;
  border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid rgba(217,70,239,0.30);
  background: rgba(12,10,28,0.90); z-index: 10;
}
.zoomed-image-container img {
  width: 200%; height: 200%; max-width: none;
  object-fit: cover; transform-origin: top left;
}
.item-name-container h1 {
  font-size: 1.5rem; font-weight: 800;
  color: var(--text); margin-bottom: .5rem;
}
.item-status-container { margin-bottom: .85rem; }
.item-status-badge {
  display: inline-block;
  font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
  padding: .26rem .7rem; border-radius: var(--r-pill);
  background: rgba(10,8,18,0.55); border: 1px solid;
}
.item-status-badge.status-available { color: #34d399; border-color: rgba(52,211,153,0.34); }
.item-status-badge.status-reserved { color: #fbbf24; border-color: rgba(251,191,36,0.36); }
.item-status-badge.status-sold { color: #f87171; border-color: rgba(248,113,113,0.36); }
.btn-disabled {
  opacity: .55; pointer-events: none; cursor: not-allowed;
  filter: grayscale(0.6);
}
.item-price-container .price {
  font-size: 1.7rem; font-weight: 900;
  font-family: 'Outfit', sans-serif; color: #d946ef; margin-bottom: 1rem;
}
.item-description-container ul { list-style: none; display: flex; flex-direction: column; gap: .42rem; }
.item-description-container li {
  font-size: .875rem; color: var(--text-muted);
  display: flex; align-items: flex-start; gap: .45rem;
}
.item-description-container li::before {
  content: '✦'; color: #d946ef; font-size: .62rem; margin-top: .32rem; flex-shrink: 0;
}
.related-items-section h2 {
  font-size: 1rem; font-weight: 700; margin-bottom: .9rem; color: var(--text-muted);
}
.related-items-container {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(130px,1fr)); gap: .8rem;
}
.related-item-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-md); overflow: hidden;
  cursor: pointer; transition: transform .2s, border-color .2s;
}
.related-item-card:hover { transform: translateY(-2px); border-color: rgba(217,70,239,0.30); }
.related-item-card img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.related-item-card h3 { font-size: .78rem; padding: .45rem .55rem .18rem; color: var(--text); }
.related-item-card .price {
  font-size: .78rem; padding: 0 .55rem .55rem;
  color: #d946ef; font-weight: 700;
}
#error-message {
  background: rgba(239,68,68,.10); border: 1px solid rgba(239,68,68,.22);
  color: #fca5a5; border-radius: var(--r-md); padding: .8rem 1rem; font-size: .86rem;
}

/* ── Notice list ────────────────────────────────────────────────── */
.notice-list { display: flex; flex-direction: column; gap: .65rem; }
.notice-list li {
  font-size: .9rem; color: var(--text-muted);
  padding: .7rem 1rem; border-radius: var(--r-sm);
  border-left: 3px solid #d946ef;
  background: var(--surface);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  line-height: 1.54;
  box-shadow: var(--shadow-card);
}
.notice-list li strong { color: var(--text); font-weight: 600; }

/* ── Coming Soon ────────────────────────────────────────────────── */
.coming-soon-wrap {
  min-height: calc(76vh - var(--nav-h));
  display: flex; align-items: center; justify-content: center; padding: 2rem 0;
}
.coming-soon-card {
  background: var(--surface);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border); border-radius: var(--r-xl);
  padding: 3.5rem 2.5rem; text-align: center;
  max-width: 500px; width: 100%;
  box-shadow: var(--shadow-card); position: relative; overflow: hidden;
}
.coming-soon-card::before {
  content: ''; position: absolute;
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(217,70,239,0.14) 0%, transparent 70%);
  bottom: -100px; right: -100px; pointer-events: none; filter: blur(30px);
}
.coming-soon-icon { font-size: 3rem; margin-bottom: 1.1rem; }
.coming-soon-card p {
  font-size: .95rem; color: var(--text-muted);
  margin-bottom: 1.8rem; line-height: 1.7;
}

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .products-page { grid-template-columns: 190px 1fr; }
  .item-details-page-wrapper { grid-template-columns: auto 1fr; }
  .item-info-right { grid-column: 1/-1; }
}

@media (max-width: 860px) {
  :root { --gap: 3.5rem; }
  main { padding: 2rem 1.25rem 4rem; }

  .hero-home {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 1.5rem 0 2.5rem;
    gap: 2rem;
  }
  .hero-visual { order: -1; }
  .hero-img-frame { aspect-ratio: 16/9; }
  .hero-h1 { font-size: clamp(2rem, 6vw, 2.8rem); }
  .hero-tagline { font-size: .96rem; }

  .hero-page { grid-template-columns: 1fr; padding: 1.5rem 0 2rem; }

  .two-col, .two-col-wide { grid-template-columns: 1fr; gap: 2rem; }

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand { max-width: none; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; text-align: center; gap: .3rem; }

  .products-page { grid-template-columns: 1fr; }
  .products-sidebar { position: static; }

  .overlay-content { inset: .6rem; padding: 1.1rem; border-radius: var(--r-lg); }
  .item-details-page-wrapper { grid-template-columns: 1fr; }
  .thumbnail-gallery { display: none; }
  .zoomed-image-container { display: none !important; }

  .nav-inner { gap: 1rem; }
}

@media (max-width: 640px) {
  :root { --gap: 3rem; }
  main { padding: 1.75rem 1rem 3.5rem; }

  .hero-h1 { font-size: clamp(1.9rem, 7vw, 2.4rem); letter-spacing: -.02em; }
  .hero-stats { gap: 1.4rem; }
  .hero-btns { gap: .65rem; }
  .hero-btns .btn { flex: 1 1 auto; justify-content: center; min-width: 140px; }

  .steps-grid { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: 1fr; }

  .cta-band { padding: 2.2rem 1.25rem; }
  .cta-band h2 { font-size: clamp(1.5rem, 5vw, 1.9rem); }
  .cta-band > div { flex-direction: column; align-items: center; }
  .cta-band .btn { width: 100%; justify-content: center; }

  .form-glass { padding: 1.4rem 1.1rem; }
  .coming-soon-card { padding: 2.5rem 1.4rem; }

  .footer-links { grid-template-columns: 1fr; }

  .price-filter { grid-template-columns: 1fr 1fr; }

  .products-controls { flex-direction: column; align-items: stretch; }
  .search-bar { min-width: unset; }
  .products-meta { justify-content: space-between; }
}

@media (max-width: 400px) {
  main { padding: 1.5rem .875rem 3rem; }
  .hero-h1 { font-size: 1.85rem; }
  .nav-inner { padding: 0 1rem; }
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ── Dark scrollbar ──────────────────────────────────────────────── */
::-webkit-scrollbar { width: 7px; height: 7px; }
::-webkit-scrollbar-track { background: rgba(255,255,255,0.03); }
::-webkit-scrollbar-thumb {
  background: rgba(217,70,239,0.28);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: rgba(217,70,239,0.50); }
* { scrollbar-width: thin; scrollbar-color: rgba(217,70,239,0.30) transparent; }

/* ── Hero heading glow ──────────────────────────────────────────── */
.hero-h1 {
  text-shadow: 0 0 60px rgba(217,70,239,0.10);
}

/* ── Card shimmer on hover ──────────────────────────────────────── */
.card, .step, .product-card, .profile-card {
  position: relative;
  overflow: hidden;
}
.card::after, .step::after,
.product-card::after, .profile-card::after {
  content: '';
  position: absolute;
  top: -60%; left: -60%;
  width: 30%; height: 200%;
  background: linear-gradient(105deg,
    transparent 40%,
    rgba(255,255,255,0.06) 50%,
    transparent 60%);
  transform: translateX(-100%) rotate(10deg);
  transition: none;
  pointer-events: none;
  z-index: 1;
}
.card:hover::after, .step:hover::after,
.product-card:hover::after, .profile-card:hover::after {
  transform: translateX(500%) rotate(10deg);
  transition: transform 0.65s ease;
}

/* ── Section decorative image strip ────────────────────────────── */
/* Hero home: subtle anime character peek behind the visual column */
.hero-home .hero-visual::after {
  content: '';
  position: absolute;
  inset: -12% -18% -12% -12%;
  background:
    url("../Site%20design%20images/anime-style-character-space.jpg") center / cover no-repeat;
  opacity: 0.04;
  border-radius: var(--r-xl);
  pointer-events: none;
  z-index: -1;
  filter: blur(2px) saturate(1.8);
}

/* CTA band: subtle image background */
.cta-band {
  background-image:
    linear-gradient(rgba(10,8,18,0.78), rgba(10,8,18,0.78)),
    url("../Site%20design%20images/anime-dragon-illustration.jpg");
  background-size: cover;
  background-position: center;
}

/* ── Glow ring on brand logo ────────────────────────────────────── */
.brand-logo {
  animation: logo-pulse 4s ease-in-out infinite alternate;
}
@keyframes logo-pulse {
  0%   { box-shadow: 0 0 10px rgba(217,70,239,0.18); }
  100% { box-shadow: 0 0 22px rgba(217,70,239,0.42); }
}

/* ── Active nav link shimmer line ───────────────────────────────── */
.nav-links > ul > li.active > a {
  box-shadow: inset 0 -2px 0 rgba(217,70,239,0.70);
}

/* ── Glass inset top-edge highlight (polish) ────────────────────── */
.card, .step, .form-glass, .cta-band,
.products-sidebar, .coming-soon-card {
  box-shadow:
    var(--shadow-card),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

/* ── WhatsApp button pulse ──────────────────────────────────────── */
.btn-whatsapp {
  animation: wa-pulse 3s ease-in-out infinite alternate;
}
@keyframes wa-pulse {
  0%   { box-shadow: 0 4px 18px rgba(37,211,102,0.28); }
  100% { box-shadow: 0 6px 28px rgba(37,211,102,0.46); }
}
.btn-whatsapp:hover { animation: none; }
