/* ══════════════════════════════════════════
   NOVA RESTAURANT — AR MENU STYLES
   Dark Neon Futuristic Theme
══════════════════════════════════════════ */

:root {
  --bg:        #050508;
  --bg2:       #0a0a12;
  --bg3:       #0f0f1a;
  --surface:   #111120;
  --surface2:  #181830;
  --border:    rgba(255,255,255,0.07);
  --border2:   rgba(99,255,200,0.2);

  --neon:      #00ffe0;
  --neon2:     #ff3cac;
  --neon3:     #ffb800;
  --neon4:     #7b5ea7;
  --neon-dim:  rgba(0,255,224,0.15);

  --text:      #e8e8f0;
  --text2:     #8888aa;
  --text3:     #555570;

  --font-head: 'Orbitron', sans-serif;
  --font-body: 'Rajdhani', sans-serif;
  --font-mono: 'Space Mono', monospace;

  --radius:    12px;
  --radius2:   20px;
  --glow:      0 0 20px rgba(0,255,224,0.3);
  --glow2:     0 0 40px rgba(0,255,224,0.15);
  --shadow:    0 20px 60px rgba(0,0,0,0.6);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}
a { color: var(--neon); text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
img, model-viewer { display: block; }

/* ══════════ LOADER ══════════ */
#loader {
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.loader-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,255,224,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,255,224,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: gridScroll 8s linear infinite;
}
@keyframes gridScroll {
  from { background-position: 0 0; }
  to   { background-position: 40px 40px; }
}
.loader-inner { position: relative; z-index: 1; text-align: center; }
.loader-logo {
  position: relative;
  width: 120px; height: 120px;
  margin: 0 auto 32px;
  display: flex; align-items: center; justify-content: center;
}
.logo-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--neon);
  animation: ringPulse 2s ease-in-out infinite;
}
.logo-ring:nth-child(1) { width: 120px; height: 120px; opacity: 0.3; animation-delay: 0s; }
.logo-ring.ring2       { width: 90px;  height: 90px;  opacity: 0.5; animation-delay: 0.3s; border-color: var(--neon2); }
.logo-ring.ring3       { width: 60px;  height: 60px;  opacity: 0.7; animation-delay: 0.6s; }
@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50%       { transform: scale(1.1); opacity: 0.8; }
}
.logo-text {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 900;
  color: var(--neon);
  text-shadow: var(--glow);
  letter-spacing: 4px;
  position: relative; z-index: 1;
}
.loader-bar-wrap {
  width: 240px; height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  margin: 0 auto 16px;
  overflow: hidden;
}
.loader-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--neon2), var(--neon));
  box-shadow: 0 0 10px var(--neon);
  transition: width 0.3s ease;
}
.loader-status {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--neon);
  letter-spacing: 1px;
  opacity: 0.7;
}

/* ══════════ PARTICLES ══════════ */
#particleCanvas {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

/* ══════════ HEADER ══════════ */
#mainHeader {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(5,5,8,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  height: 64px;
}
.header-glow {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon), transparent);
  opacity: 0.4;
}
.header-content {
  max-width: 1200px; margin: 0 auto;
  height: 64px; display: flex; align-items: center; gap: 24px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: inherit;
  flex-shrink: 0;
}
.brand-icon {
  font-size: 20px; color: var(--neon);
  text-shadow: var(--glow);
  animation: iconPulse 3s ease-in-out infinite;
}
@keyframes iconPulse {
  0%,100% { text-shadow: 0 0 10px var(--neon); }
  50%      { text-shadow: 0 0 30px var(--neon), 0 0 60px var(--neon); }
}
.brand-name { display: flex; flex-direction: column; line-height: 1.1; }
.brand-title { font-family: var(--font-head); font-size: 16px; font-weight: 900; color: var(--neon); letter-spacing: 3px; }
.brand-sub   { font-family: var(--font-mono); font-size: 8px; letter-spacing: 3px; color: var(--text2); }

.nav-pills {
  display: flex; gap: 6px;
  flex: 1; overflow-x: auto;
  scrollbar-width: none;
}
.nav-pills::-webkit-scrollbar { display: none; }
.nav-pill {
  padding: 6px 14px;
  border-radius: 20px;
  font-family: var(--font-body);
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text2);
  border: 1px solid transparent;
  white-space: nowrap;
  transition: all 0.2s;
}
.nav-pill:hover { color: var(--neon); border-color: var(--border2); }
.nav-pill.active {
  color: var(--bg);
  background: var(--neon);
  box-shadow: 0 0 15px rgba(0,255,224,0.4);
}
.cart-btn {
  position: relative;
  width: 44px; height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border2);
  background: var(--surface);
  color: var(--neon);
  font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
  flex-shrink: 0;
}
.cart-btn:hover { background: var(--neon-dim); box-shadow: var(--glow); }
.cart-count {
  position: absolute; top: -6px; right: -6px;
  min-width: 18px; height: 18px;
  background: var(--neon2);
  color: white; font-size: 10px; font-weight: 700;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  padding: 0 4px;
  opacity: 0; transform: scale(0);
  transition: all 0.2s;
}
.cart-count.visible { opacity: 1; transform: scale(1); }

/* ══════════ HERO ══════════ */
.hero {
  min-height: 100vh;
  padding: 100px 24px 60px;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  gap: 40px;
  max-width: 1200px; margin: 0 auto;
}
.hero-scanlines {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background: repeating-linear-gradient(
    0deg,
    rgba(0,0,0,0) 0px,
    rgba(0,0,0,0) 2px,
    rgba(0,0,0,0.03) 2px,
    rgba(0,0,0,0.03) 4px
  );
}
.hero-content {
  flex: 1; max-width: 560px;
  position: relative; z-index: 1;
}
.hero-tag {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 3px;
  color: var(--neon);
  border: 1px solid var(--border2);
  padding: 6px 14px; border-radius: 4px;
  display: inline-block; margin-bottom: 24px;
  background: var(--neon-dim);
}
.hero-title {
  font-family: var(--font-head);
  font-weight: 900; line-height: 0.95;
  margin-bottom: 20px;
}
.hero-title .line1 {
  display: block;
  font-size: clamp(36px, 8vw, 72px);
  color: var(--text);
}
.hero-title .line2 {
  display: block;
  font-size: clamp(52px, 12vw, 110px);
  background: linear-gradient(135deg, var(--neon), var(--neon2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 30px rgba(0,255,224,0.5));
}
.hero-desc {
  font-size: 16px; color: var(--text2);
  max-width: 420px; margin-bottom: 36px; line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.btn-primary {
  position: relative; overflow: hidden;
  padding: 14px 32px; border-radius: var(--radius);
  background: var(--neon);
  color: var(--bg);
  font-family: var(--font-head); font-size: 13px; font-weight: 700; letter-spacing: 1px;
  transition: all 0.3s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 30px rgba(0,255,224,0.5); }
.btn-primary:active { transform: translateY(0); }
.btn-glow {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.3), transparent 70%);
  opacity: 0;
  transition: opacity 0.2s;
}
.btn-primary:hover .btn-glow { opacity: 1; }

.btn-ghost {
  padding: 14px 24px; border-radius: var(--radius);
  border: 1px solid var(--border2);
  color: var(--neon);
  font-family: var(--font-body); font-size: 15px; font-weight: 600;
  background: transparent;
  transition: all 0.3s;
}
.btn-ghost:hover { background: var(--neon-dim); box-shadow: var(--glow); }

.hero-3d-showcase {
  flex: 0 0 400px; height: 400px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.hero-viewer {
  width: 100%; height: 100%;
  border-radius: 50%;
  background: transparent;
  --poster-color: transparent;
}
.hero-model-ring {
  position: absolute; inset: -10px;
  border-radius: 50%;
  border: 1px solid rgba(0,255,224,0.2);
  animation: rotateSlow 20s linear infinite;
}
.hero-model-ring::before {
  content: ''; position: absolute;
  width: 8px; height: 8px;
  background: var(--neon);
  border-radius: 50%;
  top: 50%; left: -4px;
  transform: translateY(-50%);
  box-shadow: 0 0 15px var(--neon);
}
.hero-model-ring.ring2 {
  inset: -30px;
  border-color: rgba(255,60,172,0.15);
  animation: rotateSlow 30s linear infinite reverse;
}
@keyframes rotateSlow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* ══════════ MENU SECTION ══════════ */
.menu-section {
  padding: 80px 24px;
  max-width: 1200px; margin: 0 auto;
  position: relative; z-index: 1;
}
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 3px; color: var(--neon);
  margin-bottom: 12px; opacity: 0.7;
}
.section-title {
  font-family: var(--font-head); font-size: clamp(28px, 5vw, 48px);
  font-weight: 900; color: var(--text);
  margin-bottom: 12px;
}
.section-sub { font-size: 15px; color: var(--text2); }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

/* ── MENU CARD ── */
.menu-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
}
.menu-card::before {
  content: '';
  position: absolute; inset: 0; border-radius: var(--radius2);
  background: linear-gradient(135deg, rgba(0,255,224,0.05), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.menu-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(0,255,224,0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 30px rgba(0,255,224,0.1);
}
.menu-card:hover::before { opacity: 1; }
.menu-card.hidden { display: none; }

.card-viewer-wrap {
  height: 220px;
  background: radial-gradient(ellipse at center, #111130, #050508);
  position: relative; overflow: hidden;
}
.card-viewer {
  width: 100%; height: 100%;
  --poster-color: transparent;
}
.card-ar-badge {
  position: absolute; top: 10px; right: 10px;
  background: rgba(0,255,224,0.15);
  border: 1px solid var(--border2);
  border-radius: 6px;
  padding: 4px 8px;
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 1px;
  color: var(--neon);
}
.card-label-badge {
  position: absolute; top: 10px; left: 10px;
  border-radius: 6px;
  padding: 4px 8px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.5px;
  text-transform: uppercase;
}
.badge-veg  { background: rgba(0,200,100,0.2); color: #00c864; border: 1px solid rgba(0,200,100,0.3); }
.badge-nveg { background: rgba(255,60,60,0.2);  color: #ff4444; border: 1px solid rgba(255,60,60,0.3); }
.badge-hot  { background: rgba(255,100,0,0.2);  color: #ff6400; border: 1px solid rgba(255,100,0,0.3); }

.card-info { padding: 18px; }
.card-name {
  font-family: var(--font-head); font-size: 14px; font-weight: 700;
  letter-spacing: 0.5px; color: var(--text);
  margin-bottom: 6px;
}
.card-desc {
  font-size: 13px; color: var(--text2); line-height: 1.5;
  margin-bottom: 14px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-footer {
  display: flex; align-items: center; justify-content: space-between;
}
.card-price {
  font-family: var(--font-head); font-size: 18px; font-weight: 700;
  color: var(--neon);
}
.card-add-btn {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--neon);
  color: var(--bg);
  font-size: 20px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
  flex-shrink: 0;
}
.card-add-btn:hover { box-shadow: 0 0 20px rgba(0,255,224,0.5); transform: scale(1.1); }

/* ══════════ MODALS ══════════ */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-box {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: var(--radius2);
  padding: 40px;
  max-width: 480px; width: 100%;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s;
  box-shadow: var(--shadow), var(--glow2);
}
.modal-overlay.open .modal-box { transform: translateY(0); }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--surface2);
  color: var(--text2); font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.modal-close:hover { background: rgba(255,60,172,0.2); color: var(--neon2); }
.modal-title {
  font-family: var(--font-head); font-size: 20px; font-weight: 700;
  letter-spacing: 1px; color: var(--neon);
  margin-bottom: 28px;
}
.ar-steps { display: flex; flex-direction: column; gap: 16px; margin-bottom: 24px; }
.ar-step {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px; border-radius: var(--radius);
  background: var(--surface2); border: 1px solid var(--border);
}
.step-icon {
  font-size: 18px; color: var(--neon);
  font-family: var(--font-head); font-weight: 700;
  flex-shrink: 0;
}
.ar-step p { font-size: 14px; color: var(--text2); margin: 0; }
.ar-note {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--neon3); opacity: 0.8;
  padding: 12px; border-radius: 8px;
  background: rgba(255,184,0,0.08);
  border: 1px solid rgba(255,184,0,0.2);
}

/* ── ITEM MODAL ── */
.item-modal-box {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: var(--radius2);
  max-width: 900px; width: 100%;
  display: flex; gap: 0;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow), var(--glow2);
  max-height: 90vh;
  transform: scale(0.95);
  transition: transform 0.3s;
}
.modal-overlay.open .item-modal-box { transform: scale(1); }

.item-modal-viewer-wrap {
  flex: 0 0 400px;
  background: radial-gradient(ellipse at center, #111135, #050508);
  position: relative;
  display: flex; flex-direction: column;
}
.modal-viewer {
  flex: 1;
  --poster-color: transparent;
}
.viewer-controls-hint {
  display: flex; justify-content: center; gap: 20px;
  padding: 10px;
  font-family: var(--font-mono); font-size: 10px;
  color: var(--text3); letter-spacing: 0.5px;
}

.item-modal-info {
  flex: 1; padding: 32px;
  overflow-y: auto; display: flex; flex-direction: column; gap: 16px;
}
.item-modal-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.item-modal-name {
  font-family: var(--font-head); font-size: 22px; font-weight: 900;
  letter-spacing: 0.5px; color: var(--text);
}
.item-modal-desc { font-size: 15px; color: var(--text2); line-height: 1.7; }
.item-modal-meta { padding: 16px; background: var(--surface2); border-radius: var(--radius); border: 1px solid var(--border); }
.meta-row { display: flex; gap: 24px; }
.meta-block { flex: 1; }
.meta-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 1px; color: var(--text3); text-transform: uppercase; display: block; margin-bottom: 4px; }
.meta-value { font-family: var(--font-head); font-size: 16px; font-weight: 700; color: var(--text); }
.price-val  { color: var(--neon); font-size: 22px; }

.item-modal-actions { display: flex; gap: 14px; align-items: center; }
.qty-control {
  display: flex; align-items: center; gap: 12px;
  background: var(--surface2); border-radius: var(--radius);
  padding: 8px 16px; border: 1px solid var(--border);
}
.qty-btn {
  font-size: 20px; font-weight: 700;
  color: var(--neon); width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 6px; transition: all 0.2s;
}
.qty-btn:hover { background: var(--neon-dim); }
.qty-val { font-family: var(--font-head); font-size: 16px; font-weight: 700; min-width: 20px; text-align: center; }
.btn-order { flex: 1; justify-content: center; }

.btn-ar-full {
  width: 100%; padding: 14px;
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  background: transparent;
  color: var(--neon);
  font-family: var(--font-head); font-size: 13px; font-weight: 700; letter-spacing: 1px;
  transition: all 0.3s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-ar-full:hover { background: var(--neon-dim); box-shadow: var(--glow); }

/* ══════════ CART DRAWER ══════════ */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1500;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(380px, 100%);
  background: var(--surface);
  border-left: 1px solid var(--border2);
  z-index: 1600;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: -20px 0 60px rgba(0,0,0,0.5);
}
.cart-drawer.open { transform: translateX(0); }
.cart-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  flex-shrink: 0;
}
.cart-header h3 { font-family: var(--font-head); font-size: 16px; letter-spacing: 1px; color: var(--neon); }
.cart-close { color: var(--text2); font-size: 18px; }
.cart-items { flex: 1; overflow-y: auto; padding: 16px; }
.cart-empty { text-align: center; padding: 60px 20px; color: var(--text3); }
.empty-icon { font-size: 48px; margin-bottom: 12px; opacity: 0.3; }

.cart-item {
  display: flex; gap: 12px; align-items: center;
  padding: 12px;
  background: var(--surface2); border-radius: var(--radius);
  margin-bottom: 10px; border: 1px solid var(--border);
}
.cart-item-name { flex: 1; font-size: 14px; font-weight: 600; color: var(--text); }
.cart-item-qty  { font-family: var(--font-mono); font-size: 12px; color: var(--text2); }
.cart-item-price { font-family: var(--font-head); font-size: 14px; color: var(--neon); }
.cart-item-remove { color: var(--neon2); font-size: 16px; opacity: 0.6; transition: opacity 0.2s; }
.cart-item-remove:hover { opacity: 1; }

.cart-footer { padding: 20px 24px; border-top: 1px solid var(--border); flex-shrink: 0; }
.cart-total-row {
  display: flex; justify-content: space-between;
  font-size: 14px; color: var(--text2); margin-bottom: 8px;
}
.total-final { color: var(--text); font-family: var(--font-head); font-size: 18px; font-weight: 700; margin: 12px 0; }
#cartTotal { color: var(--neon); }
.btn-checkout { width: 100%; justify-content: center; margin-top: 4px; }

/* ══════════ ORDER SUCCESS ══════════ */
.order-success-box { text-align: center; }
.success-ring {
  width: 80px; height: 80px; border-radius: 50%;
  border: 2px solid var(--neon);
  box-shadow: var(--glow);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  animation: successPulse 1s ease-out;
}
@keyframes successPulse {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.success-check { font-size: 32px; color: var(--neon); }
.order-id { font-family: var(--font-mono); font-size: 12px; color: var(--text2); margin-bottom: 12px; }
.order-msg { font-size: 15px; color: var(--text2); margin-bottom: 28px; }

/* ══════════ CART FLY ANIMATION ══════════ */
.cart-fly {
  position: fixed;
  font-size: 24px; color: var(--neon);
  pointer-events: none; z-index: 9999;
  opacity: 0;
  filter: drop-shadow(0 0 8px var(--neon));
}

/* ══════════ TOAST ══════════ */
.toast {
  position: fixed; bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--surface2);
  border: 1px solid var(--border2);
  padding: 12px 24px; border-radius: 30px;
  font-size: 14px; font-weight: 600; color: var(--text);
  z-index: 9000;
  opacity: 0; pointer-events: none;
  transition: all 0.3s;
  white-space: nowrap;
}
.toast.visible { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ══════════ QR SECTION ══════════ */
.qr-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 60px 24px;
  position: relative; z-index: 1;
}
.qr-content {
  max-width: 800px; margin: 0 auto;
  display: flex; gap: 60px; align-items: center;
  flex-wrap: wrap; justify-content: center;
}
.qr-text { flex: 1; min-width: 240px; }
.qr-text h3 { font-family: var(--font-head); font-size: 28px; font-weight: 700; color: var(--text); margin-bottom: 12px; }
.qr-text p  { font-size: 15px; color: var(--text2); line-height: 1.7; }
.qr-box {
  background: white; padding: 20px; border-radius: 16px;
  display: inline-flex; flex-direction: column; align-items: center; gap: 10px;
}
.qr-url { font-size: 10px; color: #333; font-family: monospace; text-align: center; max-width: 160px; word-break: break-all; }

/* ══════════ FOOTER ══════════ */
.footer {
  padding: 40px 24px; text-align: center;
  border-top: 1px solid var(--border);
  position: relative; z-index: 1;
}
.footer-brand { font-family: var(--font-head); font-size: 20px; font-weight: 900; color: var(--neon); letter-spacing: 4px; margin-bottom: 8px; }
.footer-copy  { font-size: 13px; color: var(--text3); margin-bottom: 12px; }
.footer-links { font-size: 13px; color: var(--text2); display: flex; justify-content: center; gap: 10px; }
.footer-links a { color: var(--neon); }

/* ══════════ SCROLLBAR ══════════ */
::-webkit-scrollbar { width: 4px; height: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--neon); border-radius: 2px; }

/* ══════════ RESPONSIVE ══════════ */
@media (max-width: 768px) {
  .hero { flex-direction: column; text-align: center; padding-top: 84px; }
  .hero-content { max-width: 100%; }
  .hero-3d-showcase { flex: 0 0 260px; height: 260px; width: 260px; }
  .hero-actions { justify-content: center; }
  .item-modal-box { flex-direction: column; }
  .item-modal-viewer-wrap { flex: 0 0 280px; }
  .meta-row { flex-direction: column; gap: 12px; }
  .nav-pill { font-size: 12px; padding: 5px 10px; }
}
@media (max-width: 480px) {
  .menu-grid { grid-template-columns: 1fr; }
  .modal-box { padding: 24px; }
  .item-modal-info { padding: 20px; }
}