/* ============================================================
   Dionísio Burger — Design System Principal
   "Sabor de Brasa" — Estética Rústica / Vintage
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@1,700&display=swap');

/* ── Tokens ──────────────────────────────────────────────── */
:root {
  /* Cores */
  --bg:           #0D0D0D;
  --bg-surface:   #1C1C1C;
  --bg-elevated:  #252525;
  --bg-card:      #1C1C1C;
  --bg-hover:     #2a2a2a;
  --cream:        #EEDFC0;
  --cream-dim:    #c9b99a;
  --gold:         #C9A84C;
  --gold-bright:  #e2be6a;
  --gold-dark:    #8b6914;
  --ember:        #D4520A;
  --ember-dim:    #a33e07;
  --text-primary: #EEDFC0;
  --text-muted:   #8a7d68;
  --text-faint:   #5a5040;
  --border:       #2a2a2a;
  --border-subtle: #1C1C1C;
  --border-gold:  rgba(201,168,76,0.5);

  /* Tipografia */
  --font-display: 'Oswald', sans-serif;
  --font-body:    'Inter', sans-serif;
  --font-accent:  'Playfair Display', serif;

  /* Sombras */
  --shadow-card:  0 4px 24px rgba(0,0,0,0.6);
  --shadow-gold:  0 0 20px rgba(201,168,76,0.25);
  --shadow-ember: 0 0 30px rgba(212,82,10,0.2);

  /* Bordas */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --radius-xl: 22px;

  /* Transições */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --dur: 200ms;
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;

  /* Textura grunge sutil */
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E"),
    radial-gradient(ellipse at 50% 0%, rgba(201,168,76,0.05) 0%, transparent 70%);
  background-size: 300px 300px, 100% 100%;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ── Tipografia ──────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.15;
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); font-weight: 600; }
h3 { font-size: clamp(1.1rem, 2vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 500; }

.text-gold   { color: var(--gold); }
.text-cream  { color: var(--cream); }
.text-muted  { color: var(--text-muted); }
.text-ember  { color: var(--ember); }

/* ── Divisória Decorativa ────────────────────────────────── */
.divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 24px 0;
  color: var(--gold);
}
.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dark), transparent);
}
.divider-diamond {
  width: 10px; height: 10px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ── Navbar ──────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13,13,13,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--cream);
}
.navbar-logo img {
  height: 44px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  border-radius: 4px;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.navbar-links {
  display: none; /* Hide on mobile */
  align-items: center;
  gap: 32px;
}
@media (min-width: 992px) {
  .navbar-links { display: flex; }
}

.nav-link {
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: var(--cream);
  text-transform: uppercase;
  transition: color var(--dur) var(--ease);
  position: relative;
}
.nav-link:hover, .nav-link.active {
  color: var(--gold);
}
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--gold);
}

/* ── Botões ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  transition: all var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  transition: background var(--dur) var(--ease);
}

/* ── Ember Micro-interactions ────────────────────────────────────────────── */
@keyframes flicker {
  0%   { opacity: 1; box-shadow: 0 0 10px rgba(212,82,10,0.2); }
  50%  { opacity: 0.8; box-shadow: 0 0 25px rgba(212,82,10,0.6); }
  100% { opacity: 1; box-shadow: 0 0 10px rgba(212,82,10,0.2); }
}

.ember-glow {
  animation: flicker 3s infinite alternate ease-in-out;
}

.btn:hover::after { background: rgba(255,255,255,0.06); }
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-dark));
  color: #1a1100;
  box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.4), 0 4px 10px rgba(0,0,0,0.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn-primary:hover { 
  box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.4), 0 0 15px rgba(212,82,10,0.6); 
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover {
  background: rgba(201,168,76,0.1);
  box-shadow: var(--shadow-gold);
}

.btn-ember {
  background: linear-gradient(135deg, var(--ember), var(--ember-dim));
  color: #fff;
}
.btn-ember:hover { box-shadow: var(--shadow-ember); }

.btn-ghost {
  background: transparent;
  color: var(--cream-dim);
  padding: 10px 16px;
}
.btn-ghost:hover { color: var(--cream); background: rgba(255,255,255,0.05); }

.btn-sm { padding: 8px 16px; font-size: 0.8rem; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-full { width: 100%; }
.btn:disabled { opacity: 0.4; cursor: not-allowed; }

/* ── Cards ───────────────────────────────────────────────── */
.card {
  background: rgba(28, 28, 28, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: var(--shadow-card), var(--shadow-gold);
  border-color: rgba(201,168,76,0.6);
}

.card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: var(--bg-elevated);
}

.card-body { padding: 16px; }
.card-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 6px;
}
.card-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 12px;
}
.card-price {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold);
}

/* ── Formulários ─────────────────────────────────────────── */
.form-group { margin-bottom: 18px; }
.form-label {
  display: block;
  font-size: 0.78rem;
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-bottom: 7px;
}
.form-control {
  width: 100%;
  background: var(--bg-elevated);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--cream);
  padding: 12px 14px;
  font-size: 0.95rem;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  outline: none;
}
.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.form-control::placeholder { color: var(--text-faint); }

textarea.form-control { resize: vertical; min-height: 90px; }

/* ── Badge ───────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-family: var(--font-display);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
}
.badge-gold   { background: rgba(201,168,76,0.2); color: var(--gold); border: 1px solid var(--border-gold); }
.badge-ember  { background: rgba(212,82,10,0.2);  color: var(--ember); }
.badge-green  { background: rgba(74,222,128,0.15); color: #4ade80; }
.badge-red    { background: rgba(248,113,113,0.15); color: #f87171; }
.badge-blue   { background: rgba(96,165,250,0.15); color: #60a5fa; }
.badge-muted  { background: rgba(255,255,255,0.07); color: var(--text-muted); }

/* ── Toast / Alertas ─────────────────────────────────────── */
#toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.toast {
  min-width: 280px;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  background: var(--bg-elevated);
  border-left: 4px solid var(--gold);
  font-size: 0.9rem;
  color: var(--cream);
  box-shadow: var(--shadow-card);
  animation: slideIn 0.3s var(--ease) forwards;
}
.toast.error   { border-color: #f87171; }
.toast.success { border-color: #4ade80; }

@keyframes slideIn {
  from { transform: translateX(110%); opacity: 0; }
  to   { transform: translateX(0);    opacity: 1; }
}
@keyframes fadeOut {
  to { opacity: 0; transform: translateX(110%); }
}

/* ── Loader ──────────────────────────────────────────────── */
.spinner {
  width: 40px; height: 40px;
  border: 3px solid var(--border);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 40px auto;
}
@keyframes spin { to { transform: rotate(360deg); } }

.page-loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  gap: 16px;
  color: var(--text-muted);
  font-family: var(--font-display);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

/* ── Layout Utilitários ──────────────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 720px; margin: 0 auto; padding: 0 24px; }

.section { padding: 64px 0; }
.section-title {
  text-align: center;
  margin-bottom: 12px;
  color: var(--cream);
}
.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 40px;
}

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-8  { gap: 8px;  }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }

.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }

.text-center { text-align: center; }
.text-right  { text-align: right; }

/* ── Overlay / Modal ─────────────────────────────────────── */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s var(--ease), visibility 0.25s;
}
.overlay.active {
  opacity: 1;
  visibility: visible;
}
.modal {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 32px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.25s var(--ease);
}
.overlay.active .modal { transform: translateY(0); }

.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  transition: color var(--dur);
}
.modal-close:hover { color: var(--cream); }

/* ── Status Colors ───────────────────────────────────────── */
.status-received   { color: #60a5fa; }
.status-preparing  { color: #fbbf24; }
.status-ready      { color: #a78bfa; }
.status-delivering { color: var(--ember); }
.status-completed  { color: #4ade80; }
.status-cancelled  { color: #f87171; }

/* ── Responsividade ──────────────────────────────────────── */
@media (max-width: 768px) {
  .container, .container-sm { padding: 0 16px; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 40px 0; }
  h1 { font-size: 2rem; }
}

@media (max-width: 480px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .navbar { padding: 0 16px; }
}

/* =====================================================================
   COMPONENTE: User Dropdown — Padrão Dionísio Burger
   Tema: Dark Gold / Sabor de Brasa — Replicável em todas as telas
   ===================================================================== */

/* ── Gatilho (trigger button) ────────────────────────────────── */
.dropdown-container {
  position: relative;
  display: inline-block;
}

.dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 6px;
  background: rgba(20, 20, 20, 0.65);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.dropdown-trigger:hover {
  background: rgba(20, 20, 20, 0.85);
  border-color: rgba(201,168,76,0.6);
  box-shadow: 0 0 10px rgba(201,168,76,0.2), 0 4px 12px rgba(0,0,0,0.6);
}

.dropdown-trigger:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ── Avatar (iniciais do usuário) ────────────────────────────── */
.dropdown-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  /* Gradiente ember→gold — coerente com a paleta Brasa */
  background: linear-gradient(135deg, var(--ember) 0%, var(--gold) 100%);
  border: 1.5px solid rgba(201,168,76,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a0a00;
  font-size: 0.68rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(212,82,10,0.35);
  transition: box-shadow 200ms var(--ease);
}

.dropdown-trigger:hover .dropdown-avatar {
  box-shadow: 0 0 14px rgba(212,82,10,0.55);
}

/* Chevron animate on open */
.dropdown-trigger .chevron-icon {
  width: 14px;
  height: 14px;
  color: var(--text-muted);
  transition: transform 200ms var(--ease), color 200ms var(--ease);
  flex-shrink: 0;
}

.dropdown-container.open .dropdown-trigger .chevron-icon,
.dropdown-menu.active ~ .chevron-icon {
  transform: rotate(180deg);
  color: var(--gold);
}

/* Rotate chevron when menu is active */
.dropdown-trigger[aria-expanded="true"] .chevron-icon {
  transform: rotate(180deg);
  color: var(--gold);
}

/* ── Painel do menu ───────────────────────────────────────────── */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 200;
  background: #1a1a1a;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 14px;
  box-shadow:
    0 8px 32px rgba(0,0,0,0.8),
    0 0 0 1px rgba(255,255,255,0.03) inset;
  min-width: 220px;
  padding: 6px;
  /* Animação de entrada */
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(0.97);
  transform-origin: top right;
  transition:
    opacity 180ms var(--ease),
    transform 180ms var(--ease),
    visibility 180ms;
  pointer-events: none;
}

.dropdown-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* ── Cabeçalho do menu (nome + email) ────────────────────────── */
.dropdown-header {
  padding: 10px 14px 12px;
  border-bottom: 1px solid rgba(201,168,76,0.12);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dropdown-header-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ember) 0%, var(--gold) 100%);
  border: 1.5px solid rgba(201,168,76,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a0a00;
  font-size: 0.8rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(212,82,10,0.3);
}

.dropdown-header-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  overflow: hidden;
}

.dropdown-header-name {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--cream);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dropdown-header-email {
  font-size: 0.72rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── Itens do menu ────────────────────────────────────────────── */
.dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  font-size: 0.84rem;
  font-family: var(--font-body);
  color: var(--cream-dim);
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition:
    background 150ms var(--ease),
    color 150ms var(--ease);
  position: relative;
}

.dropdown-item svg,
.dropdown-item [data-lucide] {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  color: var(--text-muted);
  transition: color 150ms var(--ease);
}

.dropdown-item:hover {
  background: rgba(201,168,76,0.08);
  color: var(--cream);
}

.dropdown-item:hover svg,
.dropdown-item:hover [data-lucide] {
  color: var(--gold);
}

.dropdown-item:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: -2px;
}

/* Variante danger (Sair) */
.dropdown-item.danger {
  color: rgba(248,113,113,0.85);
}

.dropdown-item.danger svg,
.dropdown-item.danger [data-lucide] {
  color: rgba(248,113,113,0.6);
}

.dropdown-item.danger:hover {
  background: rgba(239,68,68,0.1);
  color: #f87171;
}

.dropdown-item.danger:hover svg,
.dropdown-item.danger:hover [data-lucide] {
  color: #f87171;
}

/* ── Divisória ────────────────────────────────────────────────── */
.dropdown-divider {
  height: 1px;
  background: rgba(201,168,76,0.1);
  margin: 4px 6px;
}

/* ── Estado: visitante (não logado) ────────────────────────────── */
.user-guest-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px 7px 10px;
  background: rgba(20, 20, 20, 0.65);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 40px;
  color: var(--cream-dim);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s var(--ease);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.user-guest-btn:hover {
  background: rgba(201,168,76,0.1);
  border-color: rgba(201,168,76,0.4);
  color: var(--cream);
  box-shadow: 0 0 12px rgba(201,168,76,0.12);
}

.user-guest-btn svg,
.user-guest-btn [data-lucide] {
  width: 15px;
  height: 15px;
  color: var(--text-muted);
}

/* ── btn-gold-texture (compartilhado entre landing e outras telas) */
.btn-gold-texture {
  background:
    linear-gradient(135deg,
      rgba(255,255,255,0.12) 0%,
      transparent 50%,
      rgba(0,0,0,0.1) 100%),
    linear-gradient(to bottom, var(--gold-bright), var(--gold-dark));
  color: #1a0a00;
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.35),
    inset 0 -1px 0 rgba(0,0,0,0.25),
    0 4px 14px rgba(0,0,0,0.5),
    0 0 0 1px rgba(201,168,76,0.2);
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
  font-family: var(--font-display);
  letter-spacing: 0.08em;
}

.btn-gold-texture:hover {
  background:
    linear-gradient(135deg,
      rgba(255,255,255,0.18) 0%,
      transparent 50%,
      rgba(0,0,0,0.08) 100%),
    linear-gradient(to bottom, #f0d070, var(--gold));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.4),
    inset 0 -1px 0 rgba(0,0,0,0.2),
    0 6px 20px rgba(201,168,76,0.35),
    0 0 30px rgba(212,82,10,0.2);
  transform: translateY(-1px);
}

.btn-gold-texture:active {
  transform: translateY(0);
  box-shadow:
    inset 0 2px 4px rgba(0,0,0,0.3),
    0 2px 8px rgba(0,0,0,0.4);
}
