/* ===== TOKENS ===== */
:root {
  --bg:          #0d0c0e;
  --bg-card:     #16141a;
  --bg-card-alt: #120f16;
  --bg-footer:   #080608;

  --gold:        #c9a84c;
  --gold-dim:    rgba(201,168,76,0.15);
  --gold-hover:  #dbbe6a;
  --purple:      #9b7fd4;
  --purple-dim:  rgba(155,127,212,0.15);
  --green:       #50a06e;
  --green-dim:   rgba(80,160,110,0.15);

  --text:        #f0ece6;
  --text-muted:  rgba(240,236,230,0.45);
  --text-dim:    rgba(240,236,230,0.25);
  --border:      rgba(255,255,255,0.07);

  --nav-h: 64px;
  --r:     10px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background-color: #07060f;
  background-image:
    radial-gradient(ellipse 65% 48% at 12% 18%,  rgba(18,12,58,0.72)  0%, transparent 70%),
    radial-gradient(ellipse 52% 62% at 90% 10%,  rgba(8,20,60,0.60)   0%, transparent 65%),
    radial-gradient(ellipse 72% 48% at 72% 90%,  rgba(22,8,50,0.65)   0%, transparent 70%),
    radial-gradient(ellipse 42% 65% at 25% 82%,  rgba(5,16,44,0.55)   0%, transparent 62%),
    radial-gradient(ellipse 30% 30% at 55% 38%,  rgba(14,10,42,0.40)  0%, transparent 80%),
    radial-gradient(ellipse 18% 22% at 45% 32%,  rgba(28,16,75,0.38)  0%, transparent 100%),
    radial-gradient(ellipse 14% 18% at 80% 54%,  rgba(10,24,68,0.32)  0%, transparent 100%),
    radial-gradient(ellipse 22% 16% at 32% 64%,  rgba(14,20,58,0.28)  0%, transparent 100%),
    radial-gradient(ellipse 16% 24% at 62% 72%,  rgba(20,12,52,0.30)  0%, transparent 100%),
    radial-gradient(ellipse 100% 100% at 50% 50%, rgba(7,6,18,0.55)   0%, transparent 100%);
  background-attachment: fixed;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body::after {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='256' height='256'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='256' height='256' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button { cursor: pointer; }
/* keep all content above body::after noise layer */
nav, header, main, section, footer, .hero { position: relative; z-index: 1; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: 'Cinzel', serif; font-weight: 400; color: var(--text); line-height: 1.15; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: clamp(1rem, 2vw, 1.25rem); }

.gold  { color: var(--gold); }
.muted { color: var(--text-muted); }

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
section { padding: 72px 0; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 11px 26px; border-radius: 6px;
  font-family: 'Inter', sans-serif; font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  border: 1px solid transparent; transition: all 0.2s; white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(155deg, #7448cc 0%, #4f2fa8 100%);
  color: #fff;
  border-color: rgba(160,110,240,0.5);
  box-shadow: 0 4px 22px rgba(90,50,180,0.55), inset 0 1px 0 rgba(255,255,255,0.12);
}
.btn-primary:hover {
  background: linear-gradient(155deg, #8458dc 0%, #5e3cbe 100%);
  border-color: rgba(180,130,255,0.65);
  box-shadow: 0 6px 30px rgba(90,50,180,0.75), inset 0 1px 0 rgba(255,255,255,0.16);
  color: #fff;
}
.btn-secondary {
  background: transparent;
  color: var(--gold);
  border-color: rgba(201,168,76,0.7);
  box-shadow: 0 0 14px rgba(201,168,76,0.12);
}
.btn-secondary:hover {
  background: rgba(201,168,76,0.1);
  border-color: var(--gold);
  box-shadow: 0 0 22px rgba(201,168,76,0.28);
  color: var(--gold-hover);
}
.btn-gold      { background: var(--gold); color: #141210; border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-hover); border-color: var(--gold-hover); }
.btn-outline   { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-outline:hover { background: var(--gold-dim); }
.btn-ghost     { background: transparent; color: var(--text-muted); border-color: var(--border); }
.btn-ghost:hover { color: var(--text); border-color: rgba(255,255,255,0.15); }
.btn-purple    { background: var(--purple-dim); color: var(--purple); border-color: transparent; }
.btn-purple:hover { background: rgba(155,127,212,0.25); }
.btn-green     { background: var(--green); color: #141210; border-color: var(--green); }
.btn-green:hover { background: #62b880; }
.btn-green-outline { background: transparent; color: var(--green); border-color: var(--green); }
.btn-green-outline:hover { background: var(--green-dim); }
.pill   { border-radius: 40px; padding: 7px 16px; font-size: 0.8rem; }
.btn-sm { padding: 7px 16px; font-size: 0.8rem; }
.btn:disabled { opacity: 0.45; cursor: not-allowed; }

/* ===== NAV ===== */
.nav {
  position: sticky; top: 0; z-index: 200;
  background: var(--bg); border-bottom: 1px solid var(--border);
  height: var(--nav-h);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; gap: 16px; }
.nav-logo   { display: flex; align-items: center; gap: 10px; }
.nav-logo-star { color: var(--gold); font-size: 1.3rem; line-height: 1; flex-shrink: 0; }
.nav-logo-cauldron {
  width: 48px; height: 48px; flex-shrink: 0;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: brightness(1.1);
}
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-name { font-family: 'Cinzel', serif; font-size: 1.05rem; font-weight: 600; color: var(--text); letter-spacing: 0.08em; }
.nav-logo-sub  { font-family: 'Cinzel', serif; font-size: 0.58rem; letter-spacing: 0.22em; color: var(--gold); text-transform: uppercase; }
.nav-menu { display: flex; align-items: center; gap: 32px; flex: 1; justify-content: center; }
.nav-menu a { font-size: 0.8rem; color: var(--text-muted); letter-spacing: 0.04em; transition: color 0.18s; }
.nav-menu a:hover, .nav-menu a.active { color: var(--text); }

/* ── Nav dropdown ── */
.nav-dropdown-parent { position: relative; }
.nav-dropdown {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(-4px);
  min-width: 180px; background: #1a1825; border: 1px solid var(--border);
  border-radius: 10px; padding: 14px 0 6px; list-style: none; margin: 0;
  box-shadow: 0 12px 32px rgba(0,0,0,.5);
  opacity: 0; pointer-events: none;
  transition: opacity .15s, transform .15s; z-index: 300;
}
.nav-dropdown-parent:hover .nav-dropdown {
  opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
.nav-dropdown li a {
  display: block; padding: 8px 18px; color: var(--text-muted);
  font-size: .8rem; letter-spacing: .03em; white-space: nowrap;
  transition: color .15s, background .15s;
}
.nav-dropdown li a:hover { color: var(--gold); background: rgba(255,255,255,.04); }
.nav-dropdown-divider { height: 1px; background: var(--border); margin: 4px 0; }

.card-name-tag {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 6px 15px; border-radius: 20px;
  background: rgba(201,168,76,.18); border: 1px solid rgba(201,168,76,.55);
  color: #e8c96a; font-family: 'Cinzel', serif;
  font-size: .82rem; letter-spacing: .05em; pointer-events: none;
  text-shadow: 0 1px 4px rgba(0,0,0,.4);
}

.nav-right { display: flex; align-items: center; gap: 14px; }
.lang-switcher { display: flex; gap: 2px; }
.lang-btn {
  padding: 4px 9px; border: 1px solid transparent; background: none;
  font-family: 'Inter', sans-serif; font-size: 0.75rem; color: var(--text-dim);
  border-radius: 4px; transition: all 0.18s;
}
.lang-btn.active { background: var(--bg-card); border-color: var(--border); color: var(--text); }
.lang-btn:hover { color: var(--text); }
.nav-phone { font-size: 0.82rem; font-weight: 500; color: var(--gold); white-space: nowrap; display: flex; align-items: center; gap: 6px; }
.nav-mobile-btn { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; }
.nav-mobile-btn span { display: block; width: 20px; height: 1.5px; background: var(--text-muted); transition: all 0.25s; transform-origin: center; }
.nav-mobile-btn.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-mobile-btn.open span:nth-child(2) { opacity: 0; }
.nav-mobile-btn.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  display: block;
  position: relative;
  border-bottom: none;
  background: #07060f center center / auto 100% no-repeat;
  background-image: var(--hero-bg, none);
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(to right,  #07060f 0%, rgba(7,6,15,0) 45%),
    linear-gradient(to left,   #07060f 0%, rgba(7,6,15,0) 30%),
    linear-gradient(to bottom, #07060f 0%, rgba(7,6,15,0) 18%),
    linear-gradient(to top,    #07060f 0%, rgba(7,6,15,0) 15%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; padding: 80px 0; align-items: center;
  min-height: 600px;
}
.hero-content {}
.hero-eyebrow {
  display: block; font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px;
}
.hero-content h1 { margin-bottom: 10px; }
.hero-h1 .h1-brand, .hero-h1 .h1-sub { display: block; }
.tagline {
  display: block; font-family: 'Cinzel', serif; font-size: 1rem;
  color: var(--gold); letter-spacing: 0.05em; margin-bottom: 20px;
}
.hero-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.78; max-width: 400px; }
.hero-buttons { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 32px; }
.hero-mobile-cta { display: none; }

/* Dir cards (hero right) */
.dir-cards { display: flex; flex-direction: column; gap: 10px; }
.dir-card {
  display: flex; flex-direction: row; align-items: center;
  gap: 14px; padding: 18px 20px;
  background: rgba(10,8,18,0.75); border: 1px solid rgba(255,255,255,0.13);
  border-radius: 10px; transition: all 0.2s; backdrop-filter: blur(8px);
}
.dir-card:hover {
  background: rgba(14,10,28,0.85);
  border-color: color-mix(in srgb, var(--dc-color, var(--purple)) 55%, transparent);
  box-shadow: 0 0 18px color-mix(in srgb, var(--dc-color, var(--purple)) 18%, transparent);
}
.dir-card.large { padding: 22px 20px; }
.dir-icon {
  width: 44px; height: 44px; flex-shrink: 0; border-radius: 10px;
  background: color-mix(in srgb, var(--dc-color, var(--purple)) 18%, transparent);
  border: 1px solid color-mix(in srgb, var(--dc-color, var(--purple)) 40%, transparent);
  display: flex; align-items: center; justify-content: center;
  color: var(--dc-color, var(--purple));
  box-shadow: 0 0 12px color-mix(in srgb, var(--dc-color, var(--purple)) 22%, transparent);
}
.dir-icon svg { width: 22px; height: 22px; }
.dir-card.large .dir-icon { width: 50px; height: 50px; }
.dir-card.large .dir-icon svg { width: 26px; height: 26px; }
.dir-card-body { flex: 1; min-width: 0; }
.dir-card-title {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Cinzel', serif; font-size: 0.88rem; color: var(--text);
  margin-bottom: 4px; font-weight: 400;
}
.dir-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--dc-color, var(--purple)); flex-shrink: 0; }
.dir-card-sub { font-size: 0.74rem; color: var(--text-muted); line-height: 1.45; }
.dir-title-mobile { display: none; }
.dir-arrow { font-size: 1.1rem; color: var(--text-dim); transition: all 0.2s; flex-shrink: 0; }
.dir-card:hover .dir-arrow { color: var(--gold); transform: translateX(3px); }

/* ===== STATS ===== */
.stats { border-bottom: 1px solid var(--border); padding: 0; }
.stats-inner { display: grid; grid-template-columns: repeat(5, 1fr); }
.stat-item {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 22px 10px; border-right: 1px solid var(--border); gap: 4px;
}
.stat-item:last-child { border-right: none; }
.stat-icon { color: var(--purple); margin-bottom: 6px; filter: drop-shadow(0 0 6px rgba(155,127,212,0.7)); }
.stat-icon svg { width: 22px; height: 22px; }
.stat-val { font-family: 'Cinzel', serif; font-size: 1.5rem; color: var(--text); line-height: 1.1; }
.stat-lbl { font-size: 0.7rem; color: var(--text-muted); }

/* ===== SECTION LABELS ===== */
.section-tag {
  display: inline-block; font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--purple); margin-bottom: 10px;
}
.section-head { text-align: center; margin-bottom: 36px; }
.section-head h2 { margin-top: 4px; }
.section-head .diamond { color: var(--gold); font-size: 0.9rem; display: block; margin-top: 10px; }

/* ===== ABOUT ===== */
.about { background: var(--bg); border-bottom: 1px solid var(--border); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.about-inner > div:first-child h2 { margin-bottom: 16px; }
.about-body { color: var(--text-muted); font-size: 0.88rem; line-height: 1.78; margin-bottom: 28px; white-space: pre-line; }

.proof-list { display: flex; flex-direction: column; gap: 12px; }
.proof-card {
  display: flex; flex-direction: row; align-items: center; gap: 0;
  border: 1px solid var(--border); border-radius: 10px; overflow: hidden;
  background: var(--bg-card); transition: border-color 0.2s;
}
.proof-card:hover { border-color: rgba(255,255,255,0.14); }
.proof-img {
  width: 110px; flex-shrink: 0;
  background: var(--bg-card-alt) center/cover no-repeat;
  background-image: var(--proof-img, none);
  min-height: 100px;
  display: flex; align-items: flex-start; justify-content: flex-end; padding: 8px;
}
.proof-img-icon {
  font-size: 1.1rem; background: rgba(14,12,10,0.7); border-radius: 5px; padding: 4px 6px;
}
.proof-content { padding: 14px 16px; flex: 1; min-width: 0; }
.proof-title { font-family: 'Cinzel', serif; font-size: 0.78rem; color: var(--text); margin-bottom: 5px; letter-spacing: 0.02em; }
.proof-text  { font-size: 0.76rem; color: var(--text-muted); line-height: 1.55; }

/* ===== SERVICES ===== */
.services { padding: 0; background: transparent; }
.services-label { padding: 40px 0 24px; }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.svc-card {
  position: relative; overflow: hidden; border-radius: 12px;
  aspect-ratio: 3 / 4;
  display: block;
  border: 1px solid rgba(255,255,255,0.07);
  transition: transform 0.22s, border-color 0.22s;
}
.svc-card:hover { transform: translateY(-3px); border-color: rgba(255,255,255,0.16); }
.svc-img {
  position: absolute; inset: 0;
  background: #0d0b10 left top / 100% auto no-repeat;
  background-image: var(--svc-img, none);
}
.svc-img::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(to top,
      rgba(var(--sc-rgb, 4,3,10), 0.52) 0%,
      transparent 42%),
    linear-gradient(to top,
      rgba(4,3,10,0.96) 0%,
      rgba(4,3,10,0.65) 32%,
      rgba(4,3,10,0.18) 58%,
      transparent 100%);
}
.svc-body {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 22px 20px; z-index: 2;
}
.svc-label {
  font-size: 0.58rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--sc-color, var(--gold)); margin-bottom: 6px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}
.svc-title { font-family: 'Cinzel', serif; font-size: 1.05rem; color: #fff; margin-bottom: 8px; line-height: 1.3; }
.svc-desc  { font-size: 0.76rem; color: rgba(255,255,255,0.72); line-height: 1.55; margin-bottom: 14px; }
.svc-link  {
  font-size: 0.78rem; font-weight: 500; color: var(--sc-color, var(--gold));
  transition: opacity 0.18s;
}
.svc-card:hover .svc-link { opacity: 0.8; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero { background: var(--bg-card); border-bottom: 1px solid var(--border); padding: 52px 0 44px; }
.page-hero h1 { margin-bottom: 8px; }
.page-hero p  { color: var(--text-muted); font-size: 0.9rem; }

/* ===== FILTER BAR ===== */
.filter-bar { padding: 24px 0; display: flex; gap: 8px; flex-wrap: wrap; }
.filter-btn {
  padding: 7px 16px; border: 1px solid var(--border); background: transparent;
  border-radius: 20px; font-family: 'Inter', sans-serif; font-size: 0.8rem;
  color: var(--text-muted); transition: all 0.18s;
}
.filter-btn:hover, .filter-btn.active { border-color: var(--gold); color: var(--gold); background: var(--gold-dim); }

/* ===== PRODUCT CARDS (shop) ===== */
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--border); margin-bottom: 2px; }
.product-card { background: var(--bg-card); display: flex; flex-direction: column; transition: background 0.18s; }
.product-card:hover { background: var(--bg-card-alt); }
.product-img { aspect-ratio: 4/3; background: var(--bg-card-alt); position: relative; overflow: hidden; }
.product-img img { width: 100%; height: 100%; object-fit: cover; }
.product-img-placeholder { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; color: var(--text-dim); font-size: 0.75rem; }
.product-img-placeholder .ph-icon { font-size: 2rem; opacity: 0.4; }
.stock-badge { position: absolute; top: 10px; right: 10px; padding: 3px 8px; border-radius: 4px; font-size: 0.7rem; font-weight: 500; }
.stock-badge.low { background: rgba(201,168,76,0.2); color: var(--gold); }
.stock-badge.out { background: rgba(220,50,50,0.15); color: #e06060; }
.product-body { padding: 18px 20px; flex: 1; display: flex; flex-direction: column; }
.product-cat  { font-size: 0.62rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 4px; }
.product-name { font-family: 'Cinzel', serif; font-size: 0.88rem; color: var(--text); margin-bottom: 4px; line-height: 1.35; }
.product-desc { font-size: 0.77rem; color: var(--text-muted); line-height: 1.5; margin-bottom: 14px; flex: 1; }
.product-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.product-price { font-family: 'Cinzel', serif; font-size: 0.95rem; color: var(--gold); font-weight: 700; }

/* ===== GROUP CARDS (shop) ===== */
.groups-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--border); margin-bottom: 2px; }
.group-card { background: var(--bg-card); display: flex; flex-direction: column; transition: background 0.18s; cursor: pointer; }
.group-card:hover { background: var(--bg-card-alt); }
.group-card-img { aspect-ratio: 4/3; background: var(--bg-card-alt) center/cover no-repeat; position: relative; overflow: hidden; }
.group-card-body { padding: 18px 20px; flex: 1; display: flex; flex-direction: column; }
.group-card-name { font-family: 'Cinzel', serif; font-size: 0.88rem; color: var(--text); margin: 4px 0; line-height: 1.35; }
.group-card-desc { font-size: 0.77rem; color: var(--text-muted); line-height: 1.5; margin-bottom: 14px; flex: 1; }

/* Group items modal */
.modal-group { max-width: 680px; }
.group-modal-header { margin-bottom: 24px; }
.group-modal-header h3 { margin-bottom: 4px; }
.group-modal-price { font-family: 'Cinzel', serif; color: var(--gold); font-size: 0.95rem; margin-bottom: 4px; }
.group-modal-desc  { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; }
.group-items-grid  { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.group-item-card { display: flex; flex-direction: column; background: var(--bg-card-alt); border-radius: 6px; overflow: hidden; }
.group-item-card.sold-out { opacity: 0.55; }
.group-item-img { aspect-ratio: 1/1; background: var(--bg-card) center/cover no-repeat; position: relative; overflow: hidden; }
.group-item-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.group-item-body { padding: 10px; display: flex; flex-direction: column; gap: 8px; }
.group-item-name { font-size: 0.78rem; color: var(--text); line-height: 1.3; }

/* ===== MASTERCLASS CARDS ===== */
.mc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--border); }
.mc-card { background: var(--bg-card); display: flex; flex-direction: column; transition: background 0.18s; }
.mc-card:hover { background: var(--bg-card-alt); }
.mc-img { aspect-ratio: 16/9; overflow: hidden; background: var(--bg-card-alt); display: flex; align-items: center; justify-content: center; font-size: 2.5rem; opacity: 0.7; }
.mc-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.mc-title { font-family: 'Cinzel', serif; font-size: 0.95rem; color: var(--text); margin-bottom: 8px; flex: 1; }
.mc-body .btn { margin-top: auto; }
.mc-desc  { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; flex: 1; margin-bottom: 14px; }
.mc-meta  { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.mc-price { font-family: 'Cinzel', serif; font-size: 0.9rem; color: var(--gold); }
.mc-group { font-size: 0.75rem; color: var(--text-dim); }

/* ===== PROPS CARDS ===== */
.props-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--border); }
.prop-card { background: var(--bg-card); display: flex; flex-direction: column; transition: background 0.18s; }
.prop-card:hover { background: var(--bg-card-alt); }
.prop-img  { aspect-ratio: 4/3; background: #0e0c0a; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; opacity: 0.6; overflow: hidden; }
.prop-img-photo { opacity: 1; }
.prop-img-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.prop-body { padding: 20px 22px; flex: 1; display: flex; flex-direction: column; }
.prop-title { font-family: 'Cinzel', serif; font-size: 0.95rem; color: var(--text); margin-bottom: 8px; }
.prop-desc  { font-size: 0.79rem; color: var(--text-muted); line-height: 1.6; flex: 1; margin-bottom: 14px; }
.prop-footer { display: flex; justify-content: space-between; align-items: center; margin-top: auto; }
.prop-price { font-family: 'Cinzel', serif; font-size: 0.95rem; color: var(--green); }
.prop-tag   { font-size: 0.65rem; padding: 3px 8px; border-radius: 4px; background: var(--green-dim); color: var(--green); font-weight: 500; letter-spacing: 0.08em; }
.props-hero-strip { background: var(--bg-card); border-bottom: 1px solid var(--border); padding: 52px 0 44px; }
.props-hero-strip p { color: var(--text-muted); font-size: 0.9rem; max-width: 560px; line-height: 1.7; margin-top: 12px; }
.props-contact-strip { background: var(--bg-card); padding: 48px 0; border-top: 1px solid var(--border); text-align: center; }
.props-contact-strip h3 { margin-bottom: 8px; }
.props-contact-strip p { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 20px; }
.contact-btns { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(10,8,6,0.78);
  display: flex; align-items: center; justify-content: center;
  z-index: 500; opacity: 0; pointer-events: none; transition: opacity 0.2s; padding: 20px;
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }
.modal {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px;
  padding: 32px; width: 100%; max-width: 460px; position: relative;
  max-height: 90vh; overflow-y: auto;
}
.modal-close { position: absolute; top: 14px; right: 16px; background: none; border: none; font-size: 1.2rem; color: var(--text-dim); line-height: 1; padding: 4px; transition: color 0.18s; }
.modal-close:hover { color: var(--text); }
.modal h3 { margin-bottom: 4px; }
.modal-product { font-size: 0.82rem; color: var(--gold); margin-bottom: 20px; }

/* ===== FORMS ===== */
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 0.78rem; color: var(--text-muted); margin-bottom: 5px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 10px 13px; border: 1px solid var(--border); border-radius: 6px;
  font-family: 'Inter', sans-serif; font-size: 0.85rem; color: var(--text);
  background: rgba(255,255,255,0.04); transition: border-color 0.18s; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 80px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-msg { font-size: 0.8rem; margin-top: 10px; padding: 8px 12px; border-radius: 6px; display: none; }
.form-msg.success { display: block; background: var(--green-dim); color: var(--green); }
.form-msg.error   { display: block; background: rgba(220,50,50,0.12); color: #e06060; }

/* ===== NOTICE ===== */
.notice { background: var(--bg-card); border-top: 1px solid var(--border); padding: 44px 0; }
.notice-inner { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px; max-width: 560px; margin: 0 auto; }
.notice h3 { color: var(--text); }
.notice p  { font-size: 0.88rem; color: var(--text-muted); }
.notice-btns { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* ===== ADMIN ===== */
.admin-wrap { min-height: 100vh; background: var(--bg); padding: 40px 0; }
.admin-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px; padding: 32px; max-width: 880px; margin: 0 auto; }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th { text-align: left; font-size: 0.68rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-dim); padding: 0 0 10px; border-bottom: 1px solid var(--border); }
.admin-table td { padding: 12px 0; border-bottom: 1px solid var(--border); vertical-align: middle; }
.admin-qty-input { width: 68px; padding: 6px 10px; border: 1px solid var(--border); border-radius: 5px; font-family: 'Inter', sans-serif; font-size: 0.88rem; text-align: center; background: rgba(255,255,255,0.04); color: var(--text); }
.admin-product-name { font-size: 0.85rem; color: var(--text); }
.admin-product-cat  { font-size: 0.72rem; color: var(--text-dim); }
.admin-price { font-family: 'Cinzel', serif; font-size: 0.85rem; color: var(--gold); }

/* ===== FOOTER ===== */
.footer { background: var(--bg-footer); border-top: 1px solid var(--border); padding: 48px 0 28px; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1.2fr; gap: 48px; margin-bottom: 36px; }
.footer-brand p { font-size: 0.8rem; color: var(--text-dim); margin-top: 12px; max-width: 240px; line-height: 1.65; }
.social-links { display: flex; gap: 8px; margin-top: 16px; }
.social-link { width: 32px; height: 32px; border: 1px solid var(--border); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 600; color: var(--text-dim); transition: all 0.18s; }
.social-link:hover { border-color: var(--gold); color: var(--gold); }
.footer-nav h4, .footer-contact h4 { font-family: 'Cinzel', serif; font-size: 0.78rem; color: var(--text-muted); margin-bottom: 14px; letter-spacing: 0.04em; }
.footer-nav ul { display: flex; flex-direction: column; gap: 9px; }
.footer-nav a { font-size: 0.8rem; color: var(--text-dim); transition: color 0.18s; }
.footer-nav a:hover { color: var(--gold); }
.footer-contact p { font-size: 0.8rem; color: var(--text-dim); line-height: 1.85; }
.footer-contact a { color: var(--text-dim); transition: color 0.18s; }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { font-size: 0.75rem; color: var(--text-dim); }
.footer-siblings { display: flex; gap: 16px; }
.footer-siblings a { font-size: 0.75rem; font-weight: 500; }

/* ===== BREADCRUMB ===== */
.breadcrumb { padding: 14px 0; font-size: 0.75rem; color: var(--text-dim); display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.breadcrumb a { color: var(--text-dim); transition: color 0.18s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { opacity: 0.4; }
.breadcrumb-cur { color: var(--text-muted); }

/* ===== PRODUCT DETAIL PAGE ===== */
.product-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; padding: 24px 0 56px; align-items: start; }

.gallery-main { position: relative; aspect-ratio: 1; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; margin-bottom: 12px; cursor: zoom-in; }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.gallery-main:hover img { transform: scale(1.03); }
.gallery-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 5rem; opacity: 0.15; }
.gallery-badge { position: absolute; top: 14px; left: 14px; background: rgba(14,12,10,0.85); border: 1px solid var(--gold); color: var(--gold); padding: 4px 10px; border-radius: 4px; font-size: 0.7rem; font-weight: 500; letter-spacing: 0.05em; }
.gallery-zoom { position: absolute; top: 12px; right: 12px; background: rgba(14,12,10,0.7); border: 1px solid var(--border); border-radius: 6px; padding: 7px; color: var(--text-muted); line-height: 0; transition: all 0.18s; cursor: pointer; }
.gallery-zoom:hover { border-color: var(--gold); color: var(--gold); }
.gallery-thumbs { display: flex; align-items: center; gap: 8px; }
.gallery-nav { width: 30px; height: 30px; border: 1px solid var(--border); background: var(--bg-card); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; color: var(--text-muted); cursor: pointer; flex-shrink: 0; transition: all 0.18s; }
.gallery-nav:hover { border-color: var(--gold); color: var(--gold); }
.gallery-thumb { width: 64px; height: 64px; flex-shrink: 0; background: var(--bg-card); border: 1px solid var(--border); border-radius: 6px; overflow: hidden; cursor: pointer; transition: border-color 0.18s; }
.gallery-thumb.active { border-color: var(--gold); }
.gallery-thumb:hover:not(.active) { border-color: rgba(255,255,255,0.2); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb-ph { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; opacity: 0.3; }

.product-info {}
.prod-cat-tag { font-size: 0.62rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.prod-title { font-family: 'Cinzel', serif; font-size: clamp(1.4rem, 2.5vw, 2rem); color: var(--text); line-height: 1.15; margin-bottom: 16px; }
.prod-price { font-family: 'Cinzel', serif; font-size: 1.7rem; color: var(--gold); margin-bottom: 14px; }
.stock-row { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; margin-bottom: 6px; }
.stock-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.stock-dot.in  { background: var(--green); box-shadow: 0 0 5px var(--green); }
.stock-dot.out { background: #e06060; }
.stock-ok  { color: var(--green); }
.stock-out { color: #e06060; }
.tax-note  { font-size: 0.73rem; color: var(--text-dim); margin-bottom: 20px; }
.prod-divider { border: none; border-top: 1px solid var(--border); margin: 20px 0; }
.variants-label { font-size: 0.76rem; color: var(--text-muted); margin-bottom: 10px; }
.variant-pills { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 10px; }
.variant-pill { padding: 5px 13px; border: 1px solid var(--border); border-radius: 20px; font-size: 0.76rem; color: var(--text-muted); background: transparent; cursor: pointer; transition: all 0.18s; }
.variant-pill:hover { border-color: rgba(255,255,255,0.2); color: var(--text); }
.variant-pill.active { border-color: var(--gold); color: var(--gold); background: var(--gold-dim); }
.variants-more { font-size: 0.76rem; color: var(--text-dim); margin-bottom: 22px; display: inline-block; }

.prod-actions { display: flex; flex-direction: column; gap: 10px; margin-bottom: 14px; }
.btn-cart { width: 100%; padding: 14px 20px; background: var(--purple); color: #fff; border: none; border-radius: 6px; font-family: 'Inter', sans-serif; font-size: 0.88rem; font-weight: 500; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; transition: background 0.18s; }
.btn-cart:hover { background: #b095e8; }
.btn-cart:disabled { opacity: 0.4; cursor: not-allowed; }
.btn-buynow { width: 100%; padding: 13px 20px; background: transparent; color: var(--gold); border: 1px solid var(--gold); border-radius: 6px; font-family: 'Inter', sans-serif; font-size: 0.88rem; font-weight: 500; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; transition: all 0.18s; }
.btn-buynow:hover { background: var(--gold-dim); }
.btn-buynow:disabled { opacity: 0.4; cursor: not-allowed; }
.wishlist-btn { background: none; border: none; color: var(--text-dim); font-size: 0.78rem; cursor: pointer; display: flex; align-items: center; gap: 6px; padding: 2px 0; transition: color 0.18s; }
.wishlist-btn:hover { color: #e06060; }

.prod-tabs-wrap { border-top: 1px solid var(--border); }
.prod-tabs { display: flex; border-bottom: 1px solid var(--border); overflow-x: auto; }
.prod-tab-btn { padding: 13px 20px; background: none; border: none; border-bottom: 2px solid transparent; font-family: 'Inter', sans-serif; font-size: 0.8rem; color: var(--text-dim); cursor: pointer; white-space: nowrap; transition: all 0.18s; margin-bottom: -1px; }
.prod-tab-btn.active { color: var(--text); border-bottom-color: var(--gold); }
.prod-tab-btn:hover:not(.active) { color: var(--text-muted); }
.prod-tab-panel { display: none; padding: 32px 0; }
.prod-tab-panel.active { display: block; }

.desc-layout { display: grid; grid-template-columns: 1fr 140px 1fr; gap: 28px; align-items: start; }
.desc-col h3 { font-size: 0.95rem; color: var(--text); margin-bottom: 10px; }
.desc-col p  { font-size: 0.83rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.features-list { display: flex; flex-direction: column; gap: 14px; }
.feature-item  { display: flex; align-items: flex-start; gap: 11px; }
.feature-icon  { font-size: 1rem; line-height: 1.2; flex-shrink: 0; }
.feature-title { font-size: 0.8rem; font-weight: 500; color: var(--text); margin-bottom: 2px; }
.feature-text  { font-size: 0.75rem; color: var(--text-muted); }

.spec-img-col { width: 140px; }
.spec-img-box { background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px; padding: 20px 16px; text-align: center; aspect-ratio: 1/2; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.spec-img-dim { font-family: 'Cinzel', serif; font-size: 0.75rem; color: var(--text-muted); margin-top: 8px; }

.spec-table { width: 100%; border-collapse: collapse; }
.spec-table tr { border-bottom: 1px solid var(--border); }
.spec-table tr:last-child { border-bottom: none; }
.spec-table td { padding: 10px 6px; font-size: 0.79rem; vertical-align: middle; }
.spec-table td:first-child { color: var(--text-dim); white-space: nowrap; padding-right: 14px; }
.spec-table td:last-child  { color: var(--text); }

.trust-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: var(--border); border-radius: var(--r); overflow: hidden; margin-top: 40px; }
.trust-item  { background: var(--bg-card); padding: 22px 16px; text-align: center; }
.trust-icon  { font-size: 1.5rem; margin-bottom: 8px; }
.trust-title { font-family: 'Cinzel', serif; font-size: 0.72rem; color: var(--text); margin-bottom: 4px; }
.trust-text  { font-size: 0.71rem; color: var(--text-muted); line-height: 1.5; }

.reviews-wrap { margin-top: 52px; }
.reviews-header { display: grid; grid-template-columns: 180px 1fr; gap: 36px; align-items: start; margin-bottom: 24px; }
.reviews-kpi-title { font-family: 'Cinzel', serif; font-size: 0.85rem; color: var(--text); margin-bottom: 8px; }
.reviews-stars { color: var(--gold); font-size: 1.2rem; letter-spacing: 3px; margin-bottom: 6px; }
.reviews-score { font-family: 'Cinzel', serif; font-size: 2.4rem; color: var(--text); line-height: 1; }
.reviews-count { font-size: 0.75rem; color: var(--text-dim); margin-top: 4px; }
.reviews-grid  { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.review-card   { background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px; padding: 20px; }
.review-stars  { color: var(--gold); font-size: 0.8rem; letter-spacing: 2px; margin-bottom: 10px; }
.review-text   { font-size: 0.79rem; color: var(--text-muted); line-height: 1.65; font-style: italic; margin-bottom: 12px; }
.review-author { font-size: 0.73rem; color: var(--text-dim); }

.addinfo-table { width: 100%; border-collapse: collapse; max-width: 500px; }
.addinfo-table tr { border-bottom: 1px solid var(--border); }
.addinfo-table td { padding: 11px 8px; font-size: 0.82rem; }
.addinfo-table td:first-child { color: var(--text-dim); width: 160px; }
.addinfo-table td:last-child  { color: var(--text); }

.shipping-content { max-width: 580px; }
.shipping-item { padding: 18px 0; border-bottom: 1px solid var(--border); }
.shipping-item:last-child { border-bottom: none; }
.shipping-item h4 { font-family: 'Cinzel', serif; font-size: 0.82rem; color: var(--text); margin-bottom: 6px; }
.shipping-item p  { font-size: 0.8rem; color: var(--text-muted); line-height: 1.65; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-inner   { grid-template-columns: 1fr 1fr; }
  .products-grid, .groups-grid { grid-template-columns: repeat(2, 1fr); }
  .mc-grid, .props-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid  { grid-template-columns: repeat(2, 1fr); }
  .about-inner    { grid-template-columns: 1fr; gap: 36px; }
  /* product page */
  .product-layout { grid-template-columns: 1fr; gap: 32px; }
  .desc-layout    { grid-template-columns: 1fr 1fr; }
  .spec-img-col   { display: none; }
  .trust-strip    { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid   { grid-template-columns: repeat(2, 1fr); }
  .reviews-header { grid-template-columns: 1fr; gap: 16px; }
}
@media (max-width: 768px) {
  /* Hero: strip background from section (dir-cards make it too tall) */
  .hero { background-image: none; }
  .hero::after { display: none; }
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 0; gap: 0; min-height: 0;
    align-items: stretch;
  }
  /* Background only behind the text area */
  .hero-content {
    min-height: 460px;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding-top: 80px; padding-bottom: 24px;
    position: relative; isolation: isolate;
  }
  .hero-content::before {
    content: '';
    position: absolute; inset: 0; z-index: -1;
    background: #07060f center center / cover no-repeat;
    background-image: var(--hero-bg);
  }
  .hero-content::after {
    content: '';
    position: absolute; inset: 0; z-index: -1;
    background:
      linear-gradient(to bottom, #07060f 0%, rgba(7,6,15,0) 22%),
      linear-gradient(to top,    #07060f 0%, rgba(7,6,15,0.75) 32%, rgba(7,6,15,0) 62%);
    pointer-events: none;
  }
  /* Buttons hidden inside hero — shown in sticky bar below */
  .hero-buttons { display: none; }

  /* Dir-cards: solid dark block below photo */
  .dir-cards {
    flex-direction: column; gap: 8px;
    background: rgba(7,6,15,0.98);
    border-top: 1px solid rgba(255,255,255,0.09);
    padding: 14px 0;
  }
  .dir-card     { padding: 13px 16px; }
  .dir-card.large { padding: 13px 16px; }
  .dir-icon     { width: 38px; height: 38px; }
  .dir-card-sub { display: none; }
  .dir-title-desktop { display: none; }
  .dir-title-mobile  { display: inline; }

  /* Sticky CTA bar */
  .hero-mobile-cta {
    display: flex; gap: 10px;
    position: fixed; bottom: 0; left: 0; right: 0;
    padding: 12px 20px;
    background: rgba(6,5,16,0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-top: 1px solid rgba(255,255,255,0.1);
    z-index: 50;
  }
  .hero-mobile-cta .btn { flex: 1; justify-content: center; font-size: 0.68rem; }

  /* Space so content doesn't hide behind fixed bar */
  body { padding-bottom: 74px; }
  .nav-menu {
    display: none; position: absolute; top: var(--nav-h); left: 0; right: 0;
    background: var(--bg-card); flex-direction: column; align-items: flex-start;
    padding: 20px 24px; gap: 14px; border-bottom: 1px solid var(--border);
    z-index: 100;
  }
  .nav-menu.open { display: flex; }
  .nav-mobile-btn { display: flex; }
  .nav-phone { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .mc-grid, .props-grid, .products-grid, .groups-grid { grid-template-columns: 1fr; }
  .group-items-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-card { aspect-ratio: 3 / 2; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  section { padding: 48px 0; }
  .desc-layout    { grid-template-columns: 1fr; }
  .reviews-grid   { grid-template-columns: 1fr; }
  .prod-tabs { overflow-x: auto; }
  .stat-item:nth-child(4), .stat-item:nth-child(5) { border-right: none; }
  .proof-img { width: 80px; }
  .about-inner { gap: 24px; }
}
@media (max-width: 600px) {
  .stats-inner  { grid-template-columns: repeat(3, 1fr); }
  .stat-item:nth-child(3) { border-right: none; }
}
@media (max-width: 480px) {
  .form-row      { grid-template-columns: 1fr; }
  .modal         { padding: 24px 18px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .trust-strip   { grid-template-columns: 1fr 1fr; }
  .stats-inner   { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(even) { border-right: none; }
}

/* ===== SKELETON LOADER ===== */
@keyframes skeleton-pulse {
  0%   { opacity: 0.4; }
  50%  { opacity: 0.9; }
  100% { opacity: 0.4; }
}
.skeleton-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  padding: 32px 0 80px;
  grid-column: 1 / -1;
}
.skeleton-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  animation: skeleton-pulse 1.4s ease-in-out infinite;
}
.skeleton-img  { aspect-ratio: 1/1; background: var(--border); }
.skeleton-body { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 10px; }
.skeleton-line { height: 12px; border-radius: 6px; background: var(--border); }
.skeleton-line.short { width: 50%; }
.skeleton-line.btn   { width: 70px; height: 28px; border-radius: 6px; margin-left: auto; }

/* ===== CART NAV ICON ===== */
.nav-cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  color: var(--text-muted);
  text-decoration: none;
  transition: color .18s;
  padding: 4px;
}
.nav-cart-btn:hover { color: var(--gold); }
.cart-badge {
  position: absolute;
  top: -4px;
  right: -6px;
  background: var(--gold);
  color: #1a1a2e;
  font-size: .6rem;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 8px;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  line-height: 1;
}

/* ===== CART TOAST ===== */
.cart-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--gold);
  color: #1a1a2e;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: .88rem;
  font-weight: 600;
  z-index: 9999;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .25s, transform .25s;
  pointer-events: none;
}
.cart-toast.visible { opacity: 1; transform: translateY(0); }

/* ===== CART PAGE ===== */
.cart-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.cart-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 16px;
}
.cart-item-photo {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bg-card-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}
.cart-item-photo img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-size: .9rem; font-weight: 500; color: var(--text); margin-bottom: 4px; }
.cart-item-price { font-family: 'Cinzel', serif; font-size: .9rem; color: var(--gold); }
.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card-alt);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 4px;
}
.cart-item-qty button {
  width: 28px;
  height: 28px;
  border: none;
  background: none;
  color: var(--text);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 6px;
  transition: background .15s;
}
.cart-item-qty button:hover { background: var(--border); }
.cart-item-qty span { min-width: 22px; text-align: center; font-size: .9rem; }
.cart-item-remove {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1rem;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  transition: color .15s, background .15s;
  flex-shrink: 0;
}
.cart-item-remove:hover { color: #e57373; background: rgba(229,115,115,.1); }
.cart-total-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 32px;
}
.cart-total-label { font-size: .95rem; color: var(--text-muted); }
.cart-total-value { font-family: 'Cinzel', serif; font-size: 1.2rem; font-weight: 700; color: var(--gold); }
.cart-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}
.cart-empty h2 { font-size: 1.3rem; margin-bottom: 8px; color: var(--text); }
@media (max-width: 480px) {
  .cart-item { flex-wrap: wrap; gap: 10px; }
  .cart-item-info { flex-basis: calc(100% - 88px); }
  .cart-item-qty { margin-left: auto; }
}
