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

:root {
  --bg-dark: #120E0A;
  --bg-deep: #1A1410;
  --bg-card: #221B14;
  --bg-card-hover: #2A2118;
  --bg-subtle: #1E1712;
  --text: #F5EDE3;
  --text-dim: #BFA98E;
  --text-muted: #8C7B6E;
  --accent: #C9956B;
  --accent-hover: #D4A574;
  --accent-glow: rgba(201, 149, 107, 0.25);
  --burgundy: #8B3A42;
  --burgundy-light: #A65058;
  --burgundy-glow: rgba(139, 58, 66, 0.3);
  --sage: #6B8F5C;
  --sage-light: #7FA86E;
  --gold: #D4A054;
  --gold-glow: rgba(212, 160, 84, 0.2);
  --cream: #F5EDE3;
  --border: rgba(201, 149, 107, 0.12);
  --border-hover: rgba(201, 149, 107, 0.25);
  --glass: rgba(26, 20, 16, 0.7);
  --glass-light: rgba(34, 27, 20, 0.85);
  --shadow: rgba(0, 0, 0, 0.3);
  --shadow-lg: rgba(0, 0, 0, 0.5);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Subtle noise texture overlay */
body::after {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 9999;
  opacity: 0.4;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

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

/* ── Old nav — hidden ── */
.nav { display: none; }

/* ── FAB Menu ── */
.fab-wrap {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 500;
}
.fab-btn {
  height: 48px;
  padding: 0 1.1rem 0 0.65rem;
  border-radius: 999px;
  border: 2px solid var(--accent);
  background: var(--bg-card);
  color: var(--accent);
  font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center; gap: 0.4rem;
  cursor: pointer;
  box-shadow: 0 4px 24px var(--shadow-lg), 0 0 20px var(--accent-glow);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 502;
}
.fab-btn .fab-label {
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  font-family: 'Lato', sans-serif;
}
.fab-btn .fab-icon-open {
  width: 32px; height: 32px;
  border-radius: 50%;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.fab-btn .fab-icon-open img {
  width: 100%; height: 100%; object-fit: cover; border-radius: 50%;
}
.fab-btn:hover {
  background: var(--accent);
  color: var(--bg-dark);
  transform: scale(1.05);
  box-shadow: 0 4px 30px var(--shadow-lg), 0 0 35px var(--accent-glow);
}
.fab-btn .fab-icon-open,
.fab-btn .fab-icon-close { transition: transform 0.35s, opacity 0.25s; }
.fab-btn .fab-icon-close { position: absolute; opacity: 0; transform: rotate(-90deg); }
.fab-wrap.open .fab-btn .fab-icon-open { opacity: 0; transform: rotate(90deg); }
.fab-wrap.open .fab-btn .fab-label { opacity: 0; }
.fab-wrap.open .fab-btn .fab-icon-close { opacity: 1; transform: rotate(0); }
.fab-wrap.open .fab-btn {
  background: var(--burgundy);
  border-color: var(--burgundy-light);
  color: var(--cream);
  box-shadow: 0 4px 24px var(--shadow-lg), 0 0 20px var(--burgundy-glow);
}

/* Backdrop overlay */
.fab-backdrop {
  position: fixed; inset: 0;
  background: rgba(12, 9, 6, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
  z-index: 499;
}
.fab-wrap.open .fab-backdrop { opacity: 1; pointer-events: auto; }

/* Panel */
.fab-panel {
  position: absolute;
  bottom: 72px;
  right: 0;
  width: 280px;
  background: var(--bg-deep);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  box-shadow: 0 8px 40px var(--shadow-lg), 0 0 30px var(--accent-glow);
  padding: 0;
  opacity: 0;
  transform: translateY(16px) scale(0.92);
  transform-origin: bottom right;
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  z-index: 501;
}
.fab-wrap.open .fab-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* Brand header inside panel */
.fab-brand {
  display: flex; align-items: center; gap: 0.65rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg-card);
}
.fab-brand-logo {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--bg-subtle);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  border: 2px solid var(--border);
}
.fab-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 700; color: var(--accent);
}

/* Nav links inside panel */
.fab-links {
  display: flex; flex-direction: column;
  padding: 0.5rem 0;
  max-height: 60vh;
  overflow-y: auto;
}
.fab-links a {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.7rem 1.25rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: all 0.25s;
  border-left: 3px solid transparent;
}
.fab-links a:hover {
  color: var(--accent);
  background: rgba(201, 149, 107, 0.06);
  border-left-color: var(--accent);
}
.fab-links a.active {
  color: var(--accent);
  background: rgba(201, 149, 107, 0.08);
  border-left-color: var(--accent);
}
.fab-links a .fab-link-icon {
  width: 20px; text-align: center;
  font-size: 0.9rem; flex-shrink: 0;
}
.fab-links .fab-divider {
  height: 1px;
  background: var(--border);
  margin: 0.35rem 1.25rem;
}
.fab-links .fab-cta {
  margin: 0.5rem 1rem 0.75rem;
  background: var(--accent);
  color: var(--bg-dark) !important;
  padding: 0.6rem 1rem;
  border-radius: 2rem;
  font-weight: 700;
  font-size: 0.78rem;
  text-align: center;
  letter-spacing: 0.1em;
  border-left: none !important;
  transition: all 0.3s;
  box-shadow: 0 0 16px var(--accent-glow);
}
.fab-links .fab-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 0 24px var(--accent-glow);
}

/* Staggered entry animation for links */
.fab-wrap.open .fab-links a {
  animation: fabLinkIn 0.3s ease both;
}
.fab-wrap.open .fab-links a:nth-child(1) { animation-delay: 0.04s; }
.fab-wrap.open .fab-links a:nth-child(2) { animation-delay: 0.07s; }
.fab-wrap.open .fab-links a:nth-child(3) { animation-delay: 0.10s; }
.fab-wrap.open .fab-links a:nth-child(4) { animation-delay: 0.13s; }
.fab-wrap.open .fab-links a:nth-child(5) { animation-delay: 0.16s; }
.fab-wrap.open .fab-links a:nth-child(6) { animation-delay: 0.19s; }
.fab-wrap.open .fab-links a:nth-child(7) { animation-delay: 0.22s; }
.fab-wrap.open .fab-links a:nth-child(8) { animation-delay: 0.25s; }
.fab-wrap.open .fab-links a:nth-child(9) { animation-delay: 0.28s; }
.fab-wrap.open .fab-links a:nth-child(10) { animation-delay: 0.31s; }
.fab-wrap.open .fab-links a:nth-child(11) { animation-delay: 0.34s; }
@keyframes fabLinkIn {
  from { opacity: 0; transform: translateX(12px); }
  to { opacity: 1; transform: translateX(0); }
}

@media (max-width: 480px) {
  .fab-wrap { bottom: 1.25rem; right: 1.25rem; }
  .fab-btn { height: 40px; font-size: 1.1rem; padding: 0 0.8rem 0 0.45rem; }
  .fab-btn .fab-icon-open { width: 26px; height: 26px; }
  .back-to-dapps { bottom: 1.25rem; left: 1.25rem; height: 40px; font-size: 0.7rem; padding: 0 0.9rem; }
  .fab-panel { width: calc(100vw - 2.5rem); right: 0; }
}

/* ── Hero ── */
.hero {
  position: relative; overflow: hidden;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  background: var(--bg-dark);
  padding: 3rem 0 3rem;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1507842217343-583bb7270b66?w=1920&q=80');
  background-size: cover; background-position: center;
  filter: brightness(0.2) saturate(0.6);
  transform: scale(1.1);
  transition: transform 0.1s linear;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(201, 149, 107, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 30%, rgba(139, 58, 66, 0.06) 0%, transparent 60%),
    linear-gradient(180deg, rgba(18, 14, 10, 0.3) 0%, rgba(18, 14, 10, 0.8) 100%);
}
.hero-content {
  position: relative; z-index: 3;
  max-width: 900px; padding: 0 2rem;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: rgba(201, 149, 107, 0.1);
  border: 1px solid rgba(201, 149, 107, 0.2);
  border-radius: 2rem; padding: 0.45rem 1.5rem;
  font-size: 0.8rem; color: var(--accent);
  margin-bottom: 2.5rem;
  text-transform: uppercase; letter-spacing: 0.15em;
  backdrop-filter: blur(10px);
}
.hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--sage); animation: pulse 2s infinite;
  box-shadow: 0 0 10px rgba(107, 143, 92, 0.4);
}
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 10px rgba(107, 143, 92, 0.4); }
  50% { opacity: 0.4; box-shadow: 0 0 20px rgba(107, 143, 92, 0.2); }
}
.hero h1 {
  font-size: clamp(3rem, 8vw, 5.5rem);
  color: var(--cream);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.hero h1 .nook {
  color: var(--accent);
  font-style: italic;
}
.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  color: var(--text-dim);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  margin-bottom: 2rem;
}
.hero-bio {
  max-width: 700px; margin: 0 auto 3rem;
  font-size: 1rem; color: var(--text-muted);
  line-height: 1.9;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 2rem 2.5rem;
  backdrop-filter: blur(20px);
  position: relative;
}
.hero-bio::before {
  content: '\201C'; position: absolute; top: -0.5rem; left: 1.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 5rem; color: var(--accent); opacity: 0.15;
  line-height: 1;
}
.hero-bio .smoke-free {
  display: block; margin-top: 1.25rem;
  font-size: 0.85rem; color: var(--text-muted);
  font-style: italic;
  opacity: 0.7;
}
.hero-actions {
  display: flex; gap: 1.25rem; justify-content: center; flex-wrap: wrap;
}
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%); z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: var(--text-muted); font-size: 0.75rem;
  text-transform: uppercase; letter-spacing: 0.15em;
  animation: float 3s ease-in-out infinite;
}
.hero-scroll .scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
}
@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.95rem 2.25rem; border-radius: 2rem;
  font-weight: 700; font-size: 0.88rem;
  transition: all 0.3s; border: none;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.btn-primary {
  background: var(--accent); color: var(--bg-dark);
  box-shadow: 0 4px 25px var(--accent-glow);
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 35px var(--accent-glow);
}
.btn-secondary {
  background: transparent; color: var(--accent);
  border: 1px solid var(--accent);
}
.btn-secondary:hover {
  background: rgba(201, 149, 107, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 4px 25px var(--accent-glow);
}
.btn-whatnot {
  background: var(--burgundy); color: var(--cream);
  box-shadow: 0 4px 25px var(--burgundy-glow);
}
.btn-whatnot:hover {
  background: var(--burgundy-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 35px var(--burgundy-glow);
}

/* ── Section base ── */
section { padding: 6rem 2rem; position: relative; }
.section-inner { max-width: 1400px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  color: var(--cream);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.section-header p {
  font-size: 1.05rem; color: var(--text-muted);
  max-width: 550px; margin: 0 auto;
}
.section-divider {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  margin: 1.25rem auto 0;
}
.alt-bg { background: var(--bg-deep); }

/* ── Page Header (subpages) ── */
.page-header {
  position: relative; overflow: hidden;
  padding: 6rem 2rem 4rem;
  text-align: center;
}
.page-header-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.15) saturate(0.5);
}
.page-header-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(18, 14, 10, 0.4) 0%, var(--bg-dark) 100%);
}
.page-header h1 {
  position: relative; z-index: 1;
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--cream);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.page-header p {
  position: relative; z-index: 1;
  font-size: 1.15rem; color: var(--text-muted);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  max-width: 600px; margin: 0 auto;
}

/* ── Preview / Explore Cards (home) ── */
.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1400px; margin: 0 auto;
}
.preview-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}
.preview-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, var(--accent-glow), transparent 70%);
  opacity: 0; transition: opacity 0.4s;
}
.preview-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  box-shadow: 0 20px 60px var(--shadow);
}
.preview-card:hover::before { opacity: 1; }
.preview-card .preview-icon {
  font-size: 2.75rem; margin-bottom: 1.25rem; display: block;
  position: relative; z-index: 1;
}
.preview-card h3 {
  font-size: 1.3rem; color: var(--cream); margin-bottom: 0.6rem;
  position: relative; z-index: 1;
}
.preview-card p {
  font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1.5rem;
  line-height: 1.7;
  position: relative; z-index: 1;
}
.preview-card .btn {
  position: relative; z-index: 1;
  font-size: 0.8rem; padding: 0.6rem 1.5rem;
}

/* ── Categories ── */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}
.category-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.4s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.category-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  opacity: 0; transition: opacity 0.4s;
}
.category-card::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, var(--accent-glow), transparent 70%);
  opacity: 0; transition: opacity 0.4s;
}
.category-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  box-shadow: 0 15px 50px var(--shadow);
}
.category-card:hover::before, .category-card:hover::after { opacity: 1; }
.category-icon {
  font-size: 2.75rem; margin-bottom: 0.75rem;
  display: block; position: relative; z-index: 1;
  filter: drop-shadow(0 0 10px var(--accent-glow));
}
.category-card h3 {
  font-size: 1.1rem; color: var(--accent);
  margin-bottom: 0.3rem;
  position: relative; z-index: 1;
}
.category-card p {
  font-size: 0.85rem; color: var(--text-muted);
  position: relative; z-index: 1;
}
.clearance-badge {
  display: inline-block;
  background: var(--burgundy); color: var(--cream);
  font-size: 0.7rem; font-weight: 700;
  padding: 0.25rem 0.75rem; border-radius: 1rem;
  margin-top: 0.6rem;
  text-transform: uppercase; letter-spacing: 0.1em;
  position: relative; z-index: 1;
  box-shadow: 0 0 15px var(--burgundy-glow);
}

/* ── Live Section ── */
.live-section {
  background: var(--bg-deep);
  position: relative; overflow: hidden;
}
.live-section::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(229, 62, 62, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(201, 149, 107, 0.05) 0%, transparent 50%);
  pointer-events: none;
}
.live-section .page-header { background: transparent; }
.live-section .page-header h1 { color: var(--cream); }
.live-section .page-header p { color: var(--text-muted); }
.live-container {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: center;
}
.live-embed {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  overflow: hidden;
  aspect-ratio: 16/9;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 1.25rem;
  position: relative;
  backdrop-filter: blur(10px);
}
.live-embed .live-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.45rem 1.25rem; border-radius: 2rem;
  font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
}
.live-badge-on {
  background: #c53030; color: #fff;
  animation: liveBadgePulse 2s ease-in-out infinite;
}
.live-badge-off {
  background: var(--bg-card); color: var(--text-muted);
  border: 1px solid var(--border);
}
.live-pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: #fff;
  animation: liveDotPulse 1.5s ease-in-out infinite;
}
@keyframes liveBadgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(197, 48, 48, 0.4); }
  50% { box-shadow: 0 0 0 10px rgba(197, 48, 48, 0); }
}
@keyframes liveDotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}
.live-player {
  width: 100%; max-width: 480px;
  aspect-ratio: 16 / 9;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 2px solid rgba(197, 48, 48, 0.4);
  box-shadow: 0 0 30px rgba(197, 48, 48, 0.2);
  margin: 0.75rem 0;
}
.live-player iframe {
  width: 100%; height: 100%;
  border: none;
  animation: pulse-live 1.5s infinite;
}
@keyframes pulse-live {
  0%, 100% { box-shadow: 0 0 0 0 rgba(197, 48, 48, 0.5); }
  50% { box-shadow: 0 0 0 10px rgba(197, 48, 48, 0); }
}
.live-embed p {
  font-size: 1.1rem; color: var(--text-muted);
  font-family: 'Playfair Display', serif;
}
.live-info h3 {
  font-size: 2rem; color: var(--accent);
  margin-bottom: 1.25rem;
}
.live-info p {
  color: var(--text-muted);
  margin-bottom: 1.75rem; line-height: 1.9;
}
.live-features { list-style: none; margin-bottom: 2.5rem; }
.live-features li {
  padding: 0.6rem 0;
  color: var(--text-dim);
  display: flex; align-items: center; gap: 0.85rem;
  font-size: 0.95rem;
}
.live-features li::before {
  content: '';
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  box-shadow: 0 0 10px var(--accent-glow);
}

/* ── Shop Grid ── */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.75rem;
}
.shop-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  overflow: hidden;
  transition: all 0.4s;
}
.shop-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px var(--shadow);
  border-color: var(--border-hover);
}
.shop-card-img {
  width: 100%; aspect-ratio: 4/5;
  background: var(--bg-subtle);
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem; position: relative;
  overflow: hidden;
}
.shop-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; inset: 0;
  transition: transform 0.6s, filter 0.6s;
  filter: brightness(0.85) saturate(0.8);
}
.shop-card:hover .shop-card-img img {
  transform: scale(1.08);
  filter: brightness(0.7) saturate(0.6);
}
.shop-card-img .overlay {
  position: absolute; inset: 0;
  background: rgba(18, 14, 10, 0.7);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.4s;
  backdrop-filter: blur(4px);
}
.shop-card:hover .overlay { opacity: 1; }
.overlay span {
  color: var(--bg-dark); font-weight: 700; font-size: 0.85rem;
  background: var(--accent); padding: 0.7rem 1.75rem;
  border-radius: 2rem;
  text-transform: uppercase; letter-spacing: 0.08em;
  box-shadow: 0 0 20px var(--accent-glow);
}
.shop-card-body { padding: 1.5rem; }
.shop-card-body h3 {
  font-size: 1.1rem; margin-bottom: 0.3rem; color: var(--cream);
}
.shop-card-body p {
  font-size: 0.85rem; color: var(--text-muted);
}
.shop-card-body .price {
  display: inline-block; margin-top: 0.6rem;
  font-weight: 700; color: var(--accent);
  font-size: 0.95rem;
}

/* ── Testimonials ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 2.25rem;
  position: relative;
  transition: all 0.4s;
  overflow: hidden;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute; top: 0.5rem; left: 1.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 5rem; color: var(--accent); opacity: 0.08;
  line-height: 1;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 50px var(--shadow);
  border-color: var(--border-hover);
}
.testimonial-stars {
  color: var(--gold); font-size: 1rem; margin-bottom: 0.75rem;
  letter-spacing: 3px;
  filter: drop-shadow(0 0 4px var(--gold-glow));
}
.testimonial-text {
  font-size: 0.95rem; color: var(--text-dim);
  line-height: 1.85; margin-bottom: 1.5rem;
  position: relative; z-index: 1;
  font-style: italic;
}
.testimonial-author {
  display: flex; align-items: center; gap: 0.85rem;
}
.testimonial-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--bg-subtle);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 700; color: var(--accent);
  border: 2px solid var(--border);
  flex-shrink: 0;
}
.testimonial-name {
  font-weight: 700; font-size: 0.9rem; color: var(--cream);
}
.testimonial-source {
  font-size: 0.8rem; color: var(--text-muted);
}

/* ── Reviews Rotation ── */
#reviewsGrid {
  transition: opacity 0.35s ease, transform 0.35s ease;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}
.review-pip {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}
.review-pip:hover {
  background: var(--accent-glow);
  border-color: var(--accent);
}
.review-pip.active {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.25);
}

/* ── Instagram Grid ── */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.5rem;
}
.insta-item {
  aspect-ratio: 1; border-radius: 0.75rem;
  overflow: hidden; position: relative;
  background: var(--bg-card);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.4s;
}
.insta-item:hover { transform: scale(1.04); z-index: 2; }
.insta-item .insta-overlay {
  position: absolute; inset: 0;
  background: rgba(18, 14, 10, 0.75);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.4s;
  backdrop-filter: blur(2px);
}
.insta-item:hover .insta-overlay { opacity: 1; }
.insta-overlay svg { width: 32px; height: 32px; }
.insta-item img {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; inset: 0;
  filter: brightness(0.75) saturate(0.7);
  transition: filter 0.4s;
}
.insta-item:hover img { filter: brightness(0.5) saturate(0.5); }

/* ── About Section ── */
.about-section {
  position: relative; overflow: hidden;
}
.about-content {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
  align-items: center;
}
.about-img {
  border-radius: 1.25rem; overflow: hidden;
  aspect-ratio: 3/4; position: relative;
  box-shadow: 0 30px 80px var(--shadow-lg);
}
.about-img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.8) saturate(0.85);
}
.about-img::after {
  content: ''; position: absolute; inset: 0;
  border: 1px solid var(--border);
  border-radius: 1.25rem;
}
.about-text h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--cream); margin-bottom: 1.5rem;
}
.about-text p {
  color: var(--text-muted); line-height: 1.9;
  margin-bottom: 1.25rem; font-size: 1rem;
}
.about-stats {
  display: flex; gap: 2.5rem; margin-top: 2.5rem;
  padding-top: 2rem; border-top: 1px solid var(--border);
}
.stat { text-align: center; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem; color: var(--accent);
  font-weight: 700;
  text-shadow: 0 0 20px var(--accent-glow);
}
.stat-label {
  font-size: 0.8rem; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-top: 0.25rem;
}

/* ── Newsletter ── */
.newsletter {
  position: relative; overflow: hidden;
  background: var(--bg-deep);
}
.newsletter::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(201, 149, 107, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(139, 58, 66, 0.04) 0%, transparent 60%);
  pointer-events: none;
}
.newsletter-inner {
  max-width: 650px; margin: 0 auto; text-align: center;
  position: relative; z-index: 1;
}
.newsletter-inner h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--cream); margin-bottom: 0.75rem;
}
.newsletter-inner p {
  color: var(--text-muted); margin-bottom: 2rem;
  font-size: 1.05rem;
}
.newsletter-form {
  display: flex; gap: 0.75rem;
  max-width: 500px; margin: 0 auto;
}
.newsletter-form input {
  flex: 1; padding: 0.9rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 2rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem; color: var(--text);
  transition: border-color 0.3s;
}
.newsletter-form input::placeholder { color: var(--text-muted); }
.newsletter-form input:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 15px var(--accent-glow);
}
.newsletter-form button {
  padding: 0.9rem 2rem;
  background: var(--accent); color: var(--bg-dark);
  border: none; border-radius: 2rem;
  font-weight: 700; font-size: 0.88rem;
  text-transform: uppercase; letter-spacing: 0.08em;
  transition: all 0.3s; white-space: nowrap;
  box-shadow: 0 0 20px var(--accent-glow);
}
.newsletter-form button:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

/* ── FAQ ── */
.faq-list {
  max-width: 800px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 0.75rem;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item.open { border-color: var(--border-hover); }
.faq-question {
  width: 100%; padding: 1.25rem 1.75rem;
  background: none; border: none; color: var(--cream);
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; text-align: left;
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; transition: color 0.3s;
}
.faq-question:hover { color: var(--accent); }
.faq-icon {
  font-size: 1.5rem; color: var(--accent);
  transition: transform 0.3s;
  flex-shrink: 0; margin-left: 1rem;
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 1.75rem;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 1.75rem 1.5rem;
}
.faq-answer p {
  color: var(--text-muted);
  line-height: 1.8; font-size: 0.95rem;
}

/* ── Contact ── */
.contact-container {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: start;
}
.contact-info h3 {
  font-size: 1.75rem; color: var(--accent);
  margin-bottom: 1.25rem;
}
.contact-info p {
  color: var(--text-muted); margin-bottom: 2rem;
  line-height: 1.9;
}
.contact-links { display: flex; flex-direction: column; gap: 1rem; }
.contact-link {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.15rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  transition: all 0.3s;
}
.contact-link:hover {
  border-color: var(--border-hover);
  transform: translateX(6px);
  box-shadow: 0 10px 40px var(--shadow);
}
.contact-link .icon {
  width: 44px; height: 44px; border-radius: 0.75rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; flex-shrink: 0;
}
.contact-link .icon.ig {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
.contact-link .icon.wn { background: var(--burgundy); }
.contact-link .label { font-weight: 700; font-size: 0.9rem; color: var(--cream); }
.contact-link .sublabel { font-size: 0.8rem; color: var(--text-muted); }

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 2.5rem;
}
.contact-form h3 {
  font-size: 1.4rem; margin-bottom: 1.75rem;
  color: var(--accent);
}
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block; font-size: 0.8rem; font-weight: 700;
  color: var(--text-dim); margin-bottom: 0.5rem;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.form-group input,
.form-group textarea {
  width: 100%; padding: 0.85rem 1.15rem;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem; color: var(--text);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group input:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 15px var(--accent-glow);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit {
  width: 100%; padding: 0.95rem;
  background: var(--accent); color: var(--bg-dark);
  border: none; border-radius: 2rem;
  font-weight: 700; font-size: 0.9rem;
  text-transform: uppercase; letter-spacing: 0.08em;
  transition: all 0.3s;
  box-shadow: 0 0 20px var(--accent-glow);
}
.form-submit:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 0 30px var(--accent-glow);
}

/* ── Footer ── */
.footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
  padding: 1.1rem 2rem;
}
.footer-inner {
  max-width: 1400px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1.5rem;
  padding: 0 12%;
}
.footer-brand {
  display: flex; align-items: center; gap: 0.75rem;
}
.footer-brand .f-logo {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bg-card);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; border: 1px solid var(--border);
}
.footer-brand span {
  font-family: 'Playfair Display', serif;
  color: var(--accent); font-weight: 700;
}
.footer-copy { font-size: 0.85rem; color: var(--text-muted); }
.footer-socials { display: flex; gap: 0.75rem; }
.footer-socials a {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.footer-socials a:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 0 15px var(--accent-glow);
}

/* ── Scroll-reveal ── */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1; transform: translateY(0);
}
.reveal-left {
  opacity: 0; transform: translateX(-50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0; transform: translateX(50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale {
  opacity: 0; transform: scale(0.9);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* ── Back to DaPPS ── */
.back-to-dapps {
  position: fixed; bottom: 2rem; left: 2rem;
  background: var(--bg-card); color: var(--accent);
  height: 48px; padding: 0 1.1rem;
  border-radius: 999px;
  font-size: 0.75rem; font-weight: 700;
  border: 2px solid var(--border);
  box-shadow: 0 4px 24px var(--shadow-lg), 0 0 20px var(--accent-glow);
  transition: all 0.3s; z-index: 50;
  display: flex; align-items: center; gap: 0.4rem;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.back-to-dapps:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: 0 8px 30px var(--shadow);
}

/* ── Book of the Month ── */
.botm {
  position: relative; overflow: hidden;
}
.botm::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 25% 50%, rgba(212, 160, 84, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 75% 50%, rgba(139, 58, 66, 0.04) 0%, transparent 60%);
  pointer-events: none;
}
.botm-content {
  display: grid; grid-template-columns: 320px 1fr; gap: 4rem;
  align-items: center;
}
.botm-cover {
  position: relative; border-radius: 1rem; overflow: hidden;
  box-shadow: 0 30px 80px var(--shadow-lg), 0 0 40px var(--gold-glow);
  aspect-ratio: 2/3;
}
.botm-cover img {
  width: 100%; height: 100%; object-fit: cover;
}
.botm-cover .botm-badge {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--gold); color: var(--bg-dark);
  padding: 0.4rem 1rem; border-radius: 2rem;
  font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  box-shadow: 0 0 15px var(--gold-glow);
}
.botm-cover-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(0deg, rgba(18, 14, 10, 0.95) 0%, rgba(18, 14, 10, 0.7) 60%, transparent 100%);
  padding: 3rem 1.25rem 1.25rem;
  display: flex; flex-direction: column; gap: 0.15rem;
  text-align: center;
}
.botm-cover-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; font-weight: 700;
  color: var(--cream);
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.botm-cover-author {
  font-size: 0.85rem; color: var(--text-dim);
  font-style: italic;
}
.botm-details h3 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--cream); margin-bottom: 0.25rem;
}
.botm-details .botm-author {
  font-size: 1.05rem; color: var(--accent);
  font-family: 'Playfair Display', serif;
  font-style: italic; margin-bottom: 0.75rem;
}
.botm-details .botm-genre {
  display: inline-block;
  background: rgba(201, 149, 107, 0.1);
  border: 1px solid var(--border);
  color: var(--text-dim);
  padding: 0.3rem 0.9rem; border-radius: 2rem;
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}
.botm-details .botm-desc {
  color: var(--text-muted); line-height: 1.9;
  margin-bottom: 1.5rem; font-size: 1rem;
}
.botm-details .botm-quote {
  background: var(--glass);
  border-left: 3px solid var(--accent);
  padding: 1.25rem 1.5rem;
  border-radius: 0 0.75rem 0.75rem 0;
  margin-bottom: 2rem;
  color: var(--text-dim);
  font-style: italic; line-height: 1.8;
  font-size: 0.95rem;
}

/* ── Show Schedule ── */
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
.schedule-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 1.75rem;
  transition: all 0.4s;
  position: relative; overflow: hidden;
}
.schedule-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--burgundy), var(--accent));
  opacity: 0; transition: opacity 0.4s;
}
.schedule-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  box-shadow: 0 15px 50px var(--shadow);
}
.schedule-card:hover::before { opacity: 1; }
.schedule-date {
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 1rem;
}
.schedule-day {
  width: 56px; height: 56px;
  background: rgba(201, 149, 107, 0.1);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  flex-shrink: 0;
}
.schedule-day .month {
  font-size: 0.65rem; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--accent);
  font-weight: 700;
}
.schedule-day .num {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; color: var(--cream);
  line-height: 1;
}
.schedule-meta .schedule-time {
  font-size: 0.9rem; color: var(--cream); font-weight: 700;
}
.schedule-meta .schedule-platform {
  font-size: 0.8rem; color: var(--text-muted);
}
.schedule-card h3 {
  font-size: 1.1rem; color: var(--accent); margin-bottom: 0.4rem;
}
.schedule-card p {
  font-size: 0.88rem; color: var(--text-muted); line-height: 1.7;
  margin-bottom: 1rem;
}
.schedule-tag {
  display: inline-block;
  background: rgba(139, 58, 66, 0.15);
  border: 1px solid rgba(139, 58, 66, 0.25);
  color: var(--burgundy-light);
  padding: 0.25rem 0.75rem; border-radius: 2rem;
  font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
}

/* ── TBR Wishlist Board ── */
.tbr-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
}
.tbr-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.4s;
  position: relative;
}
.tbr-card:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: var(--border-hover);
  box-shadow: 0 15px 50px var(--shadow);
}
.tbr-cover {
  aspect-ratio: 2/3;
  background: var(--bg-subtle);
  position: relative; overflow: hidden;
}
.tbr-cover img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s;
  filter: brightness(0.85);
}
.tbr-card:hover .tbr-cover img {
  transform: scale(1.08);
}
.tbr-info {
  padding: 0.85rem;
}
.tbr-info h4 {
  font-size: 0.85rem; color: var(--cream);
  margin-bottom: 0.1rem;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.tbr-info span {
  font-size: 0.75rem; color: var(--text-muted);
}
.tbr-requested {
  position: absolute; top: 0.6rem; right: 0.6rem;
  background: var(--burgundy); color: var(--cream);
  font-size: 0.6rem; font-weight: 700;
  padding: 0.2rem 0.6rem; border-radius: 1rem;
  text-transform: uppercase; letter-spacing: 0.08em;
  box-shadow: 0 0 10px var(--burgundy-glow);
  z-index: 2;
}

/* ── Loyalty / Rewards ── */
.rewards-content {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: center;
}
.rewards-text h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--cream); margin-bottom: 1rem;
}
.rewards-text > p {
  color: var(--text-muted); line-height: 1.9;
  margin-bottom: 2rem; font-size: 1rem;
}
.rewards-tiers {
  display: flex; flex-direction: column; gap: 1rem;
}
.reward-tier {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem 1.75rem;
  display: flex; align-items: flex-start; gap: 1.25rem;
  transition: all 0.3s;
  position: relative; overflow: hidden;
}
.reward-tier::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--accent);
  opacity: 0; transition: opacity 0.3s;
}
.reward-tier:hover {
  border-color: var(--border-hover);
  transform: translateX(4px);
}
.reward-tier:hover::before { opacity: 1; }
.reward-tier .tier-icon {
  width: 48px; height: 48px; border-radius: 0.75rem;
  background: rgba(201, 149, 107, 0.1);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; flex-shrink: 0;
}
.reward-tier h4 {
  font-size: 1rem; color: var(--cream); margin-bottom: 0.25rem;
}
.reward-tier p {
  font-size: 0.88rem; color: var(--text-muted); line-height: 1.6;
}

/* ── Milestones Timeline (Horizontal) ── */
.milestones {
  position: relative;
  display: flex;
  overflow-x: auto;
  gap: 0;
  padding: 2rem 0 1.5rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.milestones::-webkit-scrollbar { height: 4px; }
.milestones::-webkit-scrollbar-track { background: var(--bg-subtle); border-radius: 2px; }
.milestones::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }
.milestones::before {
  content: ''; position: absolute;
  top: calc(2rem + 7px); left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--border), transparent);
}
.milestone {
  display: flex; flex-direction: column; align-items: center;
  position: relative;
  min-width: 220px; flex: 1;
  scroll-snap-align: center;
  padding: 0 0.75rem;
}
.milestone:nth-child(odd) { flex-direction: column; }
.milestone:nth-child(even) { flex-direction: column; }
.milestone-dot {
  position: relative; left: auto; transform: none;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--bg-dark);
  box-shadow: 0 0 15px var(--accent-glow);
  z-index: 2;
  flex-shrink: 0;
}
.milestone-card {
  width: 100%;
  margin-top: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.25rem;
  transition: all 0.3s;
  text-align: center;
}
.milestone-card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 10px 40px var(--shadow);
  transform: translateY(-4px);
}
.milestone-card .ms-date {
  font-size: 0.7rem; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--accent);
  font-weight: 700; margin-bottom: 0.5rem;
}
.milestone-card h4 {
  font-size: 1rem; color: var(--cream);
  margin-bottom: 0.3rem;
}
.milestone-card p {
  font-size: 0.82rem; color: var(--text-muted); line-height: 1.5;
}

/* ── Reading Challenge ── */
.challenge-content {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: start;
}
.challenge-info h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--cream); margin-bottom: 1rem;
}
.challenge-info > p {
  color: var(--text-muted); line-height: 1.9;
  margin-bottom: 2rem;
}
.challenge-progress {
  display: flex; gap: 2rem; margin-bottom: 2rem;
}
.challenge-stat {
  text-align: center;
}
.challenge-stat .cs-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; color: var(--accent);
  font-weight: 700;
  text-shadow: 0 0 15px var(--accent-glow);
}
.challenge-stat .cs-label {
  font-size: 0.75rem; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.1em;
}
.bingo-board {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 0.5rem;
}
.bingo-cell {
  aspect-ratio: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 0.5rem;
  font-size: 0.7rem; color: var(--text-dim);
  line-height: 1.3;
  transition: all 0.3s;
  cursor: default;
}
.bingo-cell:hover {
  border-color: var(--accent);
  background: rgba(201, 149, 107, 0.08);
  transform: scale(1.05);
}
.bingo-cell.free {
  background: rgba(201, 149, 107, 0.15);
  border-color: var(--accent);
  color: var(--accent);
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  font-size: 0.8rem;
}
.bingo-header {
  text-align: center; margin-bottom: 1.5rem;
}
.bingo-header h3 {
  font-size: 1.5rem; color: var(--accent);
  margin-bottom: 0.25rem;
}
.bingo-header p {
  font-size: 0.85rem; color: var(--text-muted);
}

/* ── Gift Guide ── */
.gift-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.gift-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  overflow: hidden;
  transition: all 0.4s;
  position: relative;
}
.gift-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  box-shadow: 0 20px 60px var(--shadow);
}
.gift-card-header {
  padding: 2rem 1.75rem 1.5rem;
  position: relative;
}
.gift-card-header::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, var(--accent-glow), transparent 70%);
  opacity: 0; transition: opacity 0.4s;
}
.gift-card:hover .gift-card-header::before { opacity: 1; }
.gift-card-icon {
  font-size: 2.5rem; margin-bottom: 1rem;
  display: block; position: relative; z-index: 1;
  filter: drop-shadow(0 0 8px var(--accent-glow));
}
.gift-card-header h3 {
  font-size: 1.2rem; color: var(--cream);
  margin-bottom: 0.3rem;
  position: relative; z-index: 1;
}
.gift-card-header p {
  font-size: 0.88rem; color: var(--text-muted);
  line-height: 1.6;
  position: relative; z-index: 1;
}
.gift-card-items {
  padding: 0 1.75rem 1.75rem;
  display: flex; flex-direction: column; gap: 0.6rem;
}
.gift-card-items li {
  list-style: none;
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.85rem; color: var(--text-dim);
}
.gift-card-items li::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0;
  box-shadow: 0 0 6px var(--accent-glow);
}
.gift-card-footer {
  padding: 1rem 1.75rem 1.5rem;
  border-top: 1px solid var(--border);
}
.gift-card-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; color: var(--accent);
  font-weight: 700;
}

/* ── Tooltips ── */
[data-tooltip] {
  position: relative;
}
[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute; bottom: calc(100% + 8px); left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: var(--bg-card);
  color: var(--text-dim);
  border: 1px solid var(--border);
  padding: 0.45rem 0.85rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-family: 'Lato', sans-serif;
  font-style: normal;
  font-weight: 400;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s, transform 0.25s;
  z-index: 200;
  box-shadow: 0 4px 20px var(--shadow);
  letter-spacing: normal;
  text-transform: none;
}
[data-tooltip]:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
[data-tooltip-pos="bottom"]::after {
  bottom: auto; top: calc(100% + 8px);
  transform: translateX(-50%) translateY(-4px);
}
[data-tooltip-pos="bottom"]:hover::after {
  transform: translateX(-50%) translateY(0);
}
[data-tooltip-pos="left"]::after {
  bottom: auto; top: 50%; left: auto; right: calc(100% + 8px);
  transform: translateY(-50%) translateX(4px);
}
[data-tooltip-pos="left"]:hover::after {
  transform: translateY(-50%) translateX(0);
}
[data-tooltip-pos="right"]::after {
  bottom: auto; top: 50%; left: calc(100% + 8px);
  transform: translateY(-50%) translateX(-4px);
}
[data-tooltip-pos="right"]:hover::after {
  transform: translateY(-50%) translateX(0);
}

/* ── Auth Pages ── */
.auth-page {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 6rem 2rem 4rem;
  background: var(--bg-dark);
  position: relative;
}
.auth-page::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(201, 149, 107, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 70%, rgba(139, 58, 66, 0.04) 0%, transparent 60%);
  pointer-events: none;
}
.auth-card {
  position: relative; z-index: 1;
  width: 100%; max-width: 440px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 3rem;
}
.auth-card h1 {
  font-size: 2rem; color: var(--cream);
  margin-bottom: 0.5rem; text-align: center;
}
.auth-card .auth-subtitle {
  text-align: center; color: var(--text-muted);
  margin-bottom: 2rem; font-size: 0.95rem;
}
.auth-tabs {
  display: flex; margin-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.auth-tab {
  flex: 1; padding: 0.85rem;
  background: none; border: none;
  color: var(--text-muted);
  font-family: 'Playfair Display', serif;
  font-size: 1rem; cursor: pointer;
  transition: all 0.3s;
  border-bottom: 2px solid transparent;
}
.auth-tab.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
.auth-tab:hover { color: var(--text-dim); }
.auth-form { display: none; }
.auth-form.active { display: block; }
.auth-error {
  background: rgba(197, 48, 48, 0.1);
  border: 1px solid rgba(197, 48, 48, 0.3);
  color: #e57373;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  font-size: 0.88rem;
  margin-bottom: 1.25rem;
  display: none;
}
.auth-error.show { display: block; }
.auth-success {
  background: rgba(107, 143, 92, 0.1);
  border: 1px solid rgba(107, 143, 92, 0.3);
  color: var(--sage-light);
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  font-size: 0.88rem;
  margin-bottom: 1.25rem;
  display: none;
}
.auth-success.show { display: block; }
.auth-divider {
  text-align: center; margin: 1.5rem 0;
  color: var(--text-muted); font-size: 0.85rem;
  position: relative;
}
.auth-divider::before, .auth-divider::after {
  content: ''; position: absolute; top: 50%;
  width: calc(50% - 1.5rem); height: 1px;
  background: var(--border);
}
.auth-divider::before { left: 0; }
.auth-divider::after { right: 0; }
.auth-footer {
  text-align: center; margin-top: 1.5rem;
  font-size: 0.88rem; color: var(--text-muted);
}
.auth-footer a {
  color: var(--accent); font-weight: 700;
  cursor: pointer;
}
.auth-footer a:hover { text-decoration: underline; }

/* ── Profile Page ── */
.profile-container {
  max-width: 900px; margin: 0 auto;
}
.profile-header {
  display: flex; align-items: center; gap: 2rem;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.profile-avatar {
  width: 90px; height: 90px; border-radius: 50%;
  background: var(--bg-card);
  border: 3px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.25rem; color: var(--accent);
  font-family: 'Playfair Display', serif;
  font-weight: 700; flex-shrink: 0;
  box-shadow: 0 0 25px var(--accent-glow);
}
.profile-meta h2 {
  font-size: 1.75rem; color: var(--cream);
  margin-bottom: 0.15rem;
}
.profile-meta .profile-email {
  color: var(--text-muted); font-size: 0.9rem;
}
.profile-meta .profile-joined {
  color: var(--text-muted); font-size: 0.8rem;
  margin-top: 0.25rem;
}
.profile-actions {
  margin-left: auto; display: flex; gap: 0.75rem;
}
.profile-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
}
.profile-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 2rem;
}
.profile-section h3 {
  font-size: 1.15rem; color: var(--accent);
  margin-bottom: 1.25rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.genre-tags {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
}
.genre-tag {
  background: rgba(201, 149, 107, 0.1);
  border: 1px solid var(--border);
  color: var(--text-dim);
  padding: 0.35rem 0.85rem; border-radius: 2rem;
  font-size: 0.8rem; cursor: pointer;
  transition: all 0.3s;
}
.genre-tag:hover, .genre-tag.selected {
  background: rgba(201, 149, 107, 0.2);
  border-color: var(--accent);
  color: var(--accent);
}
.wishlist-empty, .profile-empty {
  color: var(--text-muted); font-size: 0.9rem;
  font-style: italic; text-align: center;
  padding: 1.5rem 0;
}

/* ── Admin Panel ── */
.admin-container {
  max-width: 1200px; margin: 0 auto;
}
.admin-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.admin-header h2 {
  font-size: 1.75rem; color: var(--cream);
}
.admin-stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem; margin-bottom: 3rem;
}
.admin-stat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s;
}
.admin-stat:hover {
  border-color: var(--border-hover);
  box-shadow: 0 10px 30px var(--shadow);
}
.admin-stat .as-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; color: var(--accent);
  font-weight: 700;
}
.admin-stat .as-label {
  font-size: 0.8rem; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-top: 0.25rem;
}
.admin-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 2rem;
  margin-bottom: 2rem;
}
.admin-section h3 {
  font-size: 1.25rem; color: var(--accent);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}
.admin-table {
  width: 100%; border-collapse: collapse;
}
.admin-table th {
  text-align: left; padding: 0.75rem 1rem;
  font-size: 0.75rem; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  font-weight: 700;
}
.admin-table td {
  padding: 0.85rem 1rem;
  font-size: 0.9rem; color: var(--text-dim);
  border-bottom: 1px solid var(--border);
}
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: rgba(201, 149, 107, 0.03); }
.admin-badge {
  display: inline-block;
  padding: 0.2rem 0.6rem; border-radius: 1rem;
  font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.admin-badge.admin {
  background: rgba(139, 58, 66, 0.15);
  border: 1px solid rgba(139, 58, 66, 0.3);
  color: var(--burgundy-light);
}
.admin-badge.user {
  background: rgba(107, 143, 92, 0.1);
  border: 1px solid rgba(107, 143, 92, 0.3);
  color: var(--sage-light);
}
.admin-btn {
  padding: 0.35rem 0.85rem; border-radius: 0.5rem;
  font-size: 0.75rem; font-weight: 700;
  border: 1px solid var(--border);
  background: var(--bg-subtle);
  color: var(--text-dim);
  cursor: pointer; transition: all 0.2s;
}
.admin-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.admin-btn.danger {
  border-color: rgba(197, 48, 48, 0.3);
  color: #e57373;
}
.admin-btn.danger:hover {
  background: rgba(197, 48, 48, 0.1);
  border-color: #e57373;
}

/* ── Bug Report Modal ── */
.bug-modal-overlay {
  position: fixed; inset: 0; z-index: 10001;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s;
}
.bug-modal-overlay.open {
  opacity: 1; pointer-events: auto;
}
.bug-modal {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  width: 90%; max-width: 480px;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.3s;
  overflow: hidden;
}
.bug-modal-overlay.open .bug-modal {
  transform: translateY(0) scale(1);
}
.bug-modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
}
.bug-modal-header h3 {
  font-size: 1.1rem; color: var(--cream); margin: 0;
}
.bug-modal-close {
  background: none; border: none;
  color: var(--text-muted); font-size: 1.5rem;
  cursor: pointer; line-height: 1;
  transition: color 0.2s;
}
.bug-modal-close:hover { color: var(--cream); }
.bug-modal-body { padding: 1.5rem; }
.bug-modal-footer {
  display: flex; justify-content: flex-end; gap: 0.75rem;
  padding: 0 1.5rem 1.5rem;
}
.bug-modal-success {
  text-align: center; padding: 2.5rem 1.5rem;
}

/* ── Bug link in FAB ── */
.fab-bug-link {
  color: var(--text-muted) !important;
  font-size: 0.85rem;
}
.fab-bug-link:hover {
  color: var(--burgundy-light) !important;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .preview-grid { grid-template-columns: repeat(2, 1fr); }
  .about-content { grid-template-columns: 1fr; gap: 3rem; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .botm-content { grid-template-columns: 260px 1fr; gap: 3rem; }
  .rewards-content { grid-template-columns: 1fr; gap: 2.5rem; }
  .challenge-content { grid-template-columns: 1fr; gap: 3rem; }
  .milestone { min-width: 200px; }
  .milestone-card { padding: 1rem; }
}

@media (max-width: 768px) {
  .fab-panel { width: calc(100vw - 3rem); }
  .hero { min-height: 100svh; }
  .page-header { padding: 4rem 1.5rem 3rem; }
  .live-container { grid-template-columns: 1fr; }
  .contact-container { grid-template-columns: 1fr; }
  section { padding: 4rem 1.5rem; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .preview-grid { grid-template-columns: 1fr; }
  .about-stats { gap: 1.5rem; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form button { width: 100%; }
  .hero-scroll { display: none; }
  .profile-header { flex-direction: column; text-align: center; }
  .profile-actions { margin-left: 0; }
  .profile-grid { grid-template-columns: 1fr; }
  .admin-stats-row { grid-template-columns: repeat(2, 1fr); }
  .admin-table { font-size: 0.8rem; }
  .botm-content { grid-template-columns: 1fr; gap: 2rem; }
  .botm-cover { max-width: 260px; margin: 0 auto; }
  .schedule-grid { grid-template-columns: 1fr; }
  .tbr-grid { grid-template-columns: repeat(3, 1fr); }
  .gift-grid { grid-template-columns: 1fr; }
  .bingo-board { gap: 0.35rem; }
  .bingo-cell { font-size: 0.6rem; padding: 0.3rem; }
  .challenge-progress { gap: 1.5rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.5rem; }
  .page-header h1 { font-size: 2rem; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .shop-grid { grid-template-columns: 1fr; }
  .about-stats { flex-direction: column; gap: 1.25rem; }
  .tbr-grid { grid-template-columns: repeat(2, 1fr); }
  .bingo-cell { font-size: 0.55rem; border-radius: 0.4rem; }
}

/* ══════════════════════════════════════ */
/*  Admin CMS Tabs & Forms               */
/* ══════════════════════════════════════ */
.admin-tabs {
  display: flex; flex-wrap: wrap; gap: 0.4rem;
  margin-bottom: 2rem; padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.admin-tab {
  padding: 0.5rem 1rem; border-radius: 0.6rem;
  font-size: 0.8rem; font-weight: 700;
  background: transparent; border: 1px solid var(--border);
  color: var(--text-muted); cursor: pointer;
  transition: all 0.2s;
}
.admin-tab:hover { border-color: var(--accent); color: var(--text-dim); }
.admin-tab.active {
  background: var(--accent); color: var(--bg-dark);
  border-color: var(--accent);
}
.admin-tab span { margin-right: 0.3rem; }

.admin-form .form-group,
.admin-tab-content .form-group {
  margin-bottom: 1rem;
}
.admin-form label,
.admin-tab-content label {
  display: block; font-size: 0.75rem; font-weight: 700;
  color: var(--text-muted); text-transform: uppercase;
  letter-spacing: 0.08em; margin-bottom: 0.35rem;
}
.admin-form input, .admin-form textarea, .admin-form select,
.admin-tab-content input, .admin-tab-content textarea, .admin-tab-content select {
  width: 100%; padding: 0.6rem 0.85rem;
  background: var(--bg-subtle); border: 1px solid var(--border);
  border-radius: 0.5rem; color: var(--cream);
  font-size: 0.9rem; font-family: 'Lato', sans-serif;
  transition: border-color 0.2s;
}
.admin-form input:focus, .admin-form textarea:focus,
.admin-tab-content input:focus, .admin-tab-content textarea:focus {
  outline: none; border-color: var(--accent);
}
.admin-form-row {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}

/* CMS item cards (repeatable list items) */
.cms-item-card {
  background: var(--bg-subtle); border: 1px solid var(--border);
  border-radius: 0.75rem; padding: 1rem;
  margin-bottom: 0.75rem; transition: border-color 0.2s;
}
.cms-item-card:hover { border-color: var(--border-hover); }
.cms-item-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 0.75rem;
}
.cms-item-header strong { color: var(--cream); font-size: 0.9rem; }
.cms-item-remove {
  background: none; border: none; color: #e57373;
  font-size: 1.3rem; cursor: pointer; padding: 0 0.3rem;
  line-height: 1; transition: transform 0.2s;
}
.cms-item-remove:hover { transform: scale(1.2); }
.cms-item-inline {
  display: flex; align-items: center; gap: 0.6rem;
  flex-wrap: wrap;
}
.cms-item-inline input { width: auto; flex: 0 1 auto; }

/* Stats grid for dashboard */
.admin-stats-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem; margin-bottom: 1rem;
}
.admin-stat-card {
  background: var(--bg-subtle); border: 1px solid var(--border);
  border-radius: 0.75rem; padding: 1.25rem; text-align: center;
}
.admin-stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem; font-weight: 700; color: var(--accent);
}
.admin-stat-label {
  font-size: 0.7rem; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-top: 0.2rem;
}

/* Table wrapper for overflow */
.admin-table-wrap { overflow-x: auto; }

/* Simple bar chart */
.admin-chart {
  display: flex; align-items: flex-end; gap: 0.5rem;
  height: 160px; padding: 0.5rem 0;
}
.admin-chart-bar {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: flex-end; height: 100%;
  position: relative;
}
.admin-chart-fill {
  width: 100%; max-width: 60px; border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, var(--accent), var(--burgundy));
  transition: height 0.5s;
}
.admin-chart-label {
  font-size: 0.65rem; color: var(--text-muted);
  margin-top: 0.4rem;
}
.admin-chart-value {
  font-size: 0.7rem; color: var(--accent);
  margin-top: 0.15rem; font-weight: 700;
}

/* Toast notification */
.admin-toast {
  position: fixed; bottom: 2rem; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--accent); color: var(--bg-dark);
  padding: 0.7rem 1.5rem; border-radius: 0.6rem;
  font-size: 0.85rem; font-weight: 700;
  opacity: 0; transition: all 0.3s; z-index: 10002;
  pointer-events: none;
}
.admin-toast.show {
  opacity: 1; transform: translateX(-50%) translateY(0);
}

@media (max-width: 768px) {
  .admin-tabs { gap: 0.3rem; }
  .admin-tab { font-size: 0.7rem; padding: 0.4rem 0.7rem; }
  .admin-tab span { display: none; }
  .admin-form-row { grid-template-columns: 1fr; }
  .cms-item-inline { flex-direction: column; align-items: stretch; }
  .cms-item-inline input { width: 100%; }
}
