/* ───────────────────────────────────────────────
   Roma 2026 · DLabs noir + textura romana
   ─────────────────────────────────────────────── */

:root {
  /* Tema claro, colores de la bandera: verde, blanco (travertino), rojo */
  --bg: #faf6ee;
  --bg-elevated: #ffffff;
  --bg-card: #ffffff;
  --bg-overlay: rgba(250, 246, 238, 0.90);
  --border: #e6dcc4;
  --border-strong: #d3c4a0;

  --text: #23190f;
  --text-muted: #6b5c46;
  --text-dim: #8c7d63;

  /* Verde bandiera como acento principal */
  --accent: #0b7a3f;
  --accent-soft: rgba(11, 122, 63, 0.10);
  /* Rosso tricolore para alertas/reservas pendientes */
  --accent-hot: #c8323a;
  --accent-hot-soft: rgba(200, 50, 58, 0.10);
  /* Verde cipreso, más apagado — estados "hecho/reservado", distinto del verde principal */
  --accent-cold: #4f7d68;
  --accent-cold-soft: rgba(79, 125, 104, 0.12);

  --gold: #b5822f;
  --gold-glow: rgba(197, 148, 66, 0.30);
  --gradient-gold: linear-gradient(135deg, #e3ba6c 0%, #c8933f 50%, #a5701f 100%);
  --gradient-green: linear-gradient(135deg, #159250 0%, #0b7a3f 55%, #085c30 100%);
  --gradient-card: linear-gradient(160deg, rgba(11, 122, 63, 0.05), rgba(200, 50, 58, 0.03) 45%, transparent 75%);

  --font-display: 'Source Serif 4', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  --tab-height: 64px;
  --header-height: 56px;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overscroll-behavior-y: none;
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  /* Lavado ambiental sutil con el orden de la bandera: verde arriba, rojo abajo */
  background:
    radial-gradient(ellipse 900px 500px at 15% -10%, rgba(11, 122, 63, 0.07), transparent 60%),
    radial-gradient(ellipse 700px 550px at 100% 15%, rgba(200, 50, 58, 0.06), transparent 55%),
    var(--bg);
}

/* Grano fino tipo papel/travertino — SVG inline, sin peticiones externas */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.045;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Marca de agua fotográfica muy tenue, fija detrás de todo el contenido */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.05;
  background-image: url('images/watermark-rome.webp');
  background-size: cover;
  background-position: center 20%;
  background-repeat: no-repeat;
}

#app {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  min-height: 100dvh;
  padding-bottom: calc(var(--tab-height) + var(--safe-bottom));
}

button {
  font-family: inherit;
  font-size: inherit;
  border: none;
  background: none;
  color: inherit;
  cursor: pointer;
  padding: 0;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: var(--text);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 10px 12px;
  width: 100%;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

textarea {
  resize: vertical;
  min-height: 80px;
  line-height: 1.5;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: var(--border-strong);
  border-radius: 3px;
}

/* ── Typography ─────────────────────────────── */
.serif {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.mono {
  font-family: var(--font-mono);
}

.muted { color: var(--text-muted); }
.dim   { color: var(--text-dim); }
.gold  { color: var(--gold); }
.hot   { color: var(--accent-hot); }
.cold  { color: var(--accent-cold); }
.accent{ color: var(--accent); }

/* ── Layout ─────────────────────────────────── */
.container {
  max-width: 540px;
  margin: 0 auto;
  padding: 0 16px;
}

.app-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--bg-overlay);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: calc(var(--safe-top) + 12px) 16px 12px;
}

/* Franja tricolor — verde, blanco, rojo — bien visible en cada pantalla */
.app-header::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 3px;
  background: linear-gradient(90deg,
    var(--accent) 0%, var(--accent) 33.33%,
    #fefdf9 33.33%, #fefdf9 66.66%,
    var(--accent-hot) 66.66%, var(--accent-hot) 100%);
}

.app-header-inner {
  max-width: 540px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 32px;
}

.app-header h1 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  padding-bottom: 5px;
  letter-spacing: -0.01em;
  position: relative;
  display: inline-block;
}

/* Firma de marca: la rayita roja bajo "Roma", como en el favicon */
.app-header h1::after {
  content: '';
  position: absolute;
  left: 1px;
  bottom: 0;
  width: 24px;
  height: 2px;
  border-radius: 1px;
  background: var(--accent-hot);
}

.app-header .subtitle {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 2px;
}

.back-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--text-muted);
  font-size: 14px;
  padding: 6px 10px 6px 4px;
  border-radius: 4px;
  margin-left: -8px;
}

.back-btn:active {
  background: var(--bg-card);
}

.header-actions {
  display: flex;
  gap: 4px;
}

.icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 4px;
  color: var(--text-muted);
  transition: background 0.15s;
}

.icon-btn:active {
  background: var(--bg-card);
  color: var(--text);
}

.icon-btn.is-spinning i {
  animation: icon-spin 0.8s linear infinite;
}

@keyframes icon-spin {
  to { transform: rotate(360deg); }
}

/* ── Main content ───────────────────────────── */
.main {
  padding: 16px;
  max-width: 540px;
  margin: 0 auto;
}

.page-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 8px 0 4px;
  line-height: 1.15;
}

.page-subtitle {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}

.page-brief {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 24px 0 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--border-strong), transparent 85%);
}

/* ── Countdown ──────────────────────────────── */
.countdown {
  background: var(--gradient-card), var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 14px 16px;
  margin-bottom: 20px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

.countdown::after {
  content: '';
  position: absolute;
  right: -40px;
  top: 50%;
  width: 170px;
  height: 170px;
  transform: translateY(-50%);
  background:
    radial-gradient(circle at 35% 65%, var(--gold-glow), transparent 55%),
    radial-gradient(circle at 65% 35%, var(--accent-hot-soft), transparent 60%);
  opacity: 0.85;
  pointer-events: none;
}

.countdown-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
}

.countdown-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: right;
}

/* ── Day cards (home) ───────────────────────── */
.day-card {
  background: var(--gradient-card), var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 16px;
  margin-bottom: 12px;
  display: block;
  position: relative;
  overflow: hidden;
  transition: border-color 0.15s, transform 0.1s;
}

.day-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent) 50%, transparent);
  opacity: 0.55;
}

.day-card:active {
  transform: scale(0.99);
}

.day-card.is-today {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold-glow);
}

.day-card.is-today::before {
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
  opacity: 1;
}

.day-card.is-past {
  opacity: 0.55;
}

.day-card.is-done {
  opacity: 0.7;
}

.day-card .day-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
  gap: 12px;
}

.day-card .dow {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}

.day-card .date {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

.day-card .counter {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  white-space: nowrap;
}

.day-card .counter strong {
  color: var(--text);
  font-weight: 500;
}

.day-card .day-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin: 4px 0 10px;
}

.day-card .progress {
  height: 2px;
  background: var(--bg-elevated);
  border-radius: 1px;
  overflow: hidden;
  margin-top: 12px;
}

.day-card .progress-bar {
  height: 100%;
  background: var(--gradient-green);
  transition: width 0.3s ease;
}

.day-card.is-today .progress-bar {
  background: var(--gradient-gold);
}

/* ── POI rows (day view) ────────────────────── */
.poi-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.poi-row {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 12px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: opacity 0.2s, border-color 0.15s;
  text-align: left;
  width: 100%;
}

.poi-row:active {
  transform: scale(0.995);
}

.poi-row.is-checked {
  opacity: 0.5;
}

.poi-row.is-optional {
  border-style: dashed;
}

.poi-check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  margin-top: 2px;
  transition: all 0.2s;
}

.poi-check.is-checked {
  background: linear-gradient(135deg, #82ab9a, var(--accent-cold));
  border-color: var(--accent-cold);
  color: var(--bg);
}

.poi-row.is-checked .poi-check {
  background: linear-gradient(135deg, #82ab9a, var(--accent-cold));
  border-color: var(--accent-cold);
  color: var(--bg);
}

.poi-body {
  flex: 1;
  min-width: 0;
}

.poi-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.poi-row.is-checked .poi-name {
  text-decoration: line-through;
  text-decoration-color: var(--text-dim);
}

.poi-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.poi-meta .dot {
  width: 2px;
  height: 2px;
  background: var(--text-dim);
  border-radius: 50%;
}

.poi-type-icon {
  flex-shrink: 0;
  color: var(--text-muted);
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.poi-actions {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex-shrink: 0;
}

.poi-maps {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: var(--text-muted);
  border-radius: 4px;
}

.poi-maps:active {
  background: var(--bg-elevated);
}

.booking-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--accent-hot);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-left: 4px;
}

.reserved-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--accent-cold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-left: 4px;
}

/* ── POI sheet (modal) ──────────────────────── */
.sheet-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 100;
  opacity: 0;
  animation: fadeIn 0.2s forwards;
}

.sheet {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border-strong);
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  z-index: 101;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  transform: translateY(100%);
  animation: slideUp 0.25s ease forwards;
}

@keyframes fadeIn { to { opacity: 1; } }
@keyframes slideUp { to { transform: translateY(0); } }

.sheet-handle {
  width: 36px;
  height: 4px;
  background: var(--border-strong);
  border-radius: 2px;
  margin: 8px auto 4px;
  position: relative;
  z-index: 1;
}

.sheet-thumb-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
}

.sheet-thumb {
  width: 84px;
  height: 84px;
  object-fit: cover;
  display: block;
  border-radius: 10px;
  box-shadow: 0 0 0 1px var(--border);
}

.sheet-thumb-wrap.is-tappable {
  cursor: pointer;
}

.sheet-thumb-badge {
  position: absolute;
  right: -6px;
  bottom: -6px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gradient-green);
  color: #f4f5f0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 2px var(--bg-elevated);
}

/* ── Audioguía interactiva sobre la imagen ──────── */
.hotspot-lightbox {
  position: fixed;
  inset: 0;
  z-index: 400;
  background: rgba(20, 15, 8, 0.92);
  display: flex;
  flex-direction: column;
  animation: fadeIn 0.2s ease forwards;
}

.hotspot-close {
  position: absolute;
  top: calc(var(--safe-top) + 14px);
  right: 14px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.35);
  color: #f4f5f0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hotspot-image-wrap {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  overflow: hidden;
  padding: 0 8px;
}

/* Se ajusta exactamente al tamaño renderizado de la imagen — los puntos se
   posicionan en % respecto a ESTA caja, no respecto al ancho del lightbox,
   para que no se salgan de la foto en pantallas con proporción distinta. */
.hotspot-image-inner {
  position: relative;
  max-width: 100%;
}

.hotspot-image-inner img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 78vh;
}

.hotspot-marker {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hotspot-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(197, 148, 66, 0.35), 0 1px 4px rgba(0, 0, 0, 0.4);
  animation: hotspot-pulse 1.8s ease-in-out infinite;
}

.hotspot-marker.is-active .hotspot-dot {
  background: var(--accent-hot);
  box-shadow: 0 0 0 5px rgba(200, 50, 58, 0.4), 0 1px 4px rgba(0, 0, 0, 0.4);
}

.hotspot-marker.is-speaking .hotspot-dot {
  animation: hotspot-pulse 0.9s ease-in-out infinite;
}

@keyframes hotspot-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.25); }
}

.hotspot-caption {
  padding: 16px 20px calc(20px + var(--safe-bottom));
  background: rgba(0, 0, 0, 0.35);
  min-height: 74px;
}

.hotspot-hint {
  text-align: center;
  color: rgba(245, 240, 228, 0.6);
  font-size: 13px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hotspot-caption-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.hotspot-caption-text {
  color: #f4f5f0;
  font-size: 14px;
  line-height: 1.6;
}

.hotspot-caption-image-wrap {
  margin-bottom: 10px;
}

.hotspot-caption-image {
  display: block;
  width: 100%;
  max-height: 240px;
  object-fit: contain;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.25);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.hotspot-caption-credit {
  margin-top: 4px;
  font-size: 10px;
  color: rgba(245, 240, 228, 0.45);
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}

.sheet-header {
  padding: 12px 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.sheet-close {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  color: var(--text-muted);
  flex-shrink: 0;
  margin-right: -8px;
}

.sheet-close:active {
  background: var(--bg-card);
}

.sheet-content {
  padding: 8px 20px calc(24px + var(--safe-bottom));
  overflow-y: auto;
  max-width: 540px;
  margin: 0 auto;
  width: 100%;
}

.sheet-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 4px;
  line-height: 1.2;
}

.sheet-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.sheet-address {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.booking-banner {
  background: rgba(200, 66, 58, 0.08);
  border: 1px solid rgba(200, 66, 58, 0.3);
  border-radius: 4px;
  padding: 12px 14px;
  margin-bottom: 16px;
}

.booking-banner .banner-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--accent-hot);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.booking-banner .banner-text {
  font-size: 13px;
  color: var(--text);
  line-height: 1.5;
}

.booking-banner.is-reserved {
  background: rgba(107, 142, 127, 0.08);
  border-color: rgba(107, 142, 127, 0.3);
}

.booking-banner.is-reserved .banner-label {
  color: var(--accent-cold);
}

.sheet-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 20px;
}

.sheet-actions.has-three {
  grid-template-columns: 1fr 1fr 1fr;
}

.action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: 4px;
  padding: 10px;
  color: var(--text);
  font-size: 13px;
  font-weight: 500;
  transition: all 0.15s;
}

.action-btn:active {
  background: var(--border);
}

.action-btn.primary {
  background: var(--gradient-green);
  color: #f4f5f0;
  border-color: transparent;
  box-shadow: 0 2px 10px rgba(11, 122, 63, 0.22);
}

.action-btn.primary:active {
  filter: brightness(0.92);
}

.action-btn.done {
  background: var(--accent-cold);
  color: #f4f5f0;
  border-color: var(--accent-cold);
}

.action-btn.danger {
  color: var(--accent-hot);
}

.action-btn.outline {
  background: transparent;
}

.sheet-notes {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 16px;
}

.sheet-tips {
  background: var(--bg-card);
  border-left: 2px solid var(--accent);
  padding: 12px 14px;
  margin-bottom: 20px;
}

.sheet-tips .tips-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.sheet-tips ul {
  margin: 0;
  padding-left: 18px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.sheet-tips li {
  margin-bottom: 4px;
}

.sheet-curiosity {
  background: var(--bg-card);
  border-left: 2px solid var(--gold);
  padding: 12px 14px;
  margin-bottom: 16px;
}

.sheet-curiosity .curiosity-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.sheet-curiosity .curiosity-text {
  font-size: 13px;
  color: var(--text);
  line-height: 1.6;
}

.note-block {
  margin-top: 12px;
}

.note-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

/* ── Achievements ───────────────────────────── */
.achievements-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

@media (min-width: 540px) {
  .achievements-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.badge {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 140px;
  position: relative;
  transition: all 0.2s;
}

.badge.locked {
  opacity: 0.45;
}

.badge.unlocked {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(229, 192, 123, 0.1), transparent 70%);
  box-shadow: 0 0 0 1px var(--gold-glow), 0 4px 16px rgba(229, 192, 123, 0.1);
}

.badge-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.badge.unlocked .badge-icon {
  color: var(--gold);
}

.badge-name {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.2;
}

.badge-desc {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.4;
}

.badge-lock {
  position: absolute;
  top: 8px;
  right: 8px;
  color: var(--text-dim);
}

/* ── Stats ──────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 28px;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 14px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-num .total {
  color: var(--text-dim);
  font-size: 16px;
  font-weight: 400;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── Settings ───────────────────────────────── */
.setting-row {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.setting-row:last-child {
  border-bottom: none;
}

.setting-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.setting-help {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 6px;
  line-height: 1.5;
}

.input-with-toggle {
  position: relative;
}

.input-toggle {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  padding: 4px;
}

.setting-btn-group {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* ── Tab bar ────────────────────────────────── */
.tabbar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-overlay);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  display: flex;
  z-index: 50;
  padding-bottom: var(--safe-bottom);
}

.tabbar::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -3px;
  height: 3px;
  background: linear-gradient(90deg,
    var(--accent) 0%, var(--accent) 33.33%,
    #fefdf9 33.33%, #fefdf9 66.66%,
    var(--accent-hot) 66.66%, var(--accent-hot) 100%);
}

.tab {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px 4px 10px;
  color: var(--text-dim);
  font-size: 10px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 0.15s;
  min-height: var(--tab-height);
}

.tab svg {
  margin-bottom: 4px;
}

.tab-icon-img {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 4px;
  box-shadow: 0 0 0 1px var(--border-strong);
  filter: grayscale(65%);
  transition: filter 0.15s;
}

.tab.active .tab-icon-img {
  filter: grayscale(0%);
  box-shadow: 0 0 0 1.5px var(--accent);
}

.tab.active {
  color: var(--accent);
}

.tab:active {
  color: var(--text);
}

/* ── Toast ──────────────────────────────────── */
.toast {
  position: fixed;
  top: calc(var(--safe-top) + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(-100%);
  background: var(--bg-elevated);
  border: 1px solid var(--border-strong);
  border-radius: 4px;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--text);
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 90vw;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.25s ease;
  pointer-events: none;
}

.toast.visible {
  transform: translateX(-50%) translateY(0);
}

.toast.gold {
  border-color: var(--gold);
  color: var(--gold);
}

.toast-icon {
  color: var(--gold);
  display: flex;
  align-items: center;
}

/* ── Confetti canvas ────────────────────────── */
#confetti-root canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 150;
}

/* ── Chat ───────────────────────────────────── */
.chat-wrapper {
  display: flex;
  flex-direction: column;
  height: calc(100vh - var(--tab-height) - var(--safe-bottom));
  height: calc(100dvh - var(--tab-height) - var(--safe-bottom));
  max-width: 540px;
  margin: 0 auto;
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bubble {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.5;
  word-wrap: break-word;
}

.bubble.user {
  align-self: flex-end;
  background: var(--gradient-green);
  color: #f4f5f0;
  border-bottom-right-radius: 4px;
}

.bubble.assistant {
  align-self: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-bottom-left-radius: 4px;
}

.bubble.assistant.error {
  border-color: var(--accent-hot);
  color: var(--accent-hot);
}

.bubble p { margin: 0 0 8px; }
.bubble p:last-child { margin: 0; }
.bubble ul, .bubble ol { margin: 4px 0 8px; padding-left: 20px; }
.bubble code {
  font-family: var(--font-mono);
  background: var(--bg);
  padding: 1px 4px;
  border-radius: 3px;
  font-size: 12px;
}
.bubble pre {
  background: var(--bg);
  padding: 8px;
  border-radius: 4px;
  overflow-x: auto;
  margin: 6px 0;
}
.bubble.user a { color: #f4f5f0; text-decoration: underline; }
.bubble strong { font-weight: 700; }

.typing {
  display: flex;
  gap: 4px;
  padding: 6px 0;
}

.typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-dim);
  animation: typing 1.2s infinite;
}

.typing span:nth-child(2) { animation-delay: 0.2s; }
.typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
  0%, 60%, 100% { opacity: 0.3; }
  30% { opacity: 1; }
}

.chat-input-bar {
  display: flex;
  gap: 8px;
  padding: 10px 12px;
  border-top: 1px solid var(--border);
  background: var(--bg-elevated);
  align-items: flex-end;
}

.chat-input {
  flex: 1;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 8px 14px;
  font-size: 14px;
  resize: none;
  max-height: 120px;
  min-height: 36px;
  line-height: 1.4;
}

.chat-send {
  width: 36px;
  height: 36px;
  background: var(--gradient-green);
  color: #f4f5f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: opacity 0.15s;
}

.chat-send:disabled {
  opacity: 0.4;
}

.chat-mic {
  width: 36px;
  height: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  color: var(--text-muted);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.15s;
}

.chat-mic.is-listening {
  background: var(--accent-hot);
  border-color: var(--accent-hot);
  color: #fdf6f0;
  animation: mic-pulse 1.1s infinite;
}

@keyframes mic-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200, 50, 58, 0.45); }
  50% { box-shadow: 0 0 0 8px rgba(200, 50, 58, 0); }
}

.chat-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
  color: var(--text-muted);
}

.chat-empty .serif {
  font-size: 22px;
  color: var(--text);
  margin-bottom: 10px;
}

.chat-empty p {
  margin: 6px 0;
  font-size: 14px;
  line-height: 1.5;
}

.chat-setup {
  padding: 24px;
}

.chat-setup h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 10px;
}

.chat-setup p {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.5;
}

.today-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 14px 16px 6px;
  margin-bottom: 20px;
}

.today-card-header {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--accent-hot);
  margin-bottom: 10px;
}

.today-weather {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--text-dim);
  letter-spacing: 0.02em;
}

.today-weather.is-rainy {
  color: var(--accent-hot);
}

.packing-progress {
  margin-left: auto;
  color: var(--text-dim);
}

.today-item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  text-align: left;
  padding: 9px 0;
  border-top: 1px solid var(--border);
}

.today-item:first-of-type {
  border-top: none;
}

.today-item-time {
  font-size: 12px;
  color: var(--text-muted);
  flex-shrink: 0;
  width: 38px;
}

.today-item-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.today-item.is-done .today-item-icon {
  background: var(--bg-elevated);
  color: var(--text-dim);
}

.today-item-body {
  flex: 1;
  min-width: 0;
}

.today-item-title {
  font-size: 13px;
  font-weight: 600;
}

.today-item.is-done .today-item-title {
  color: var(--text-dim);
  text-decoration: line-through;
  font-weight: 500;
}

.today-item-countdown {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--accent-hot);
  margin-top: 1px;
}

.today-item-countdown.is-now {
  color: var(--accent-hot);
  font-weight: 700;
}

.packing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 14px 16px 6px;
  margin-bottom: 20px;
}

.packing-item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  text-align: left;
  padding: 9px 0;
  border-top: 1px solid var(--border);
}

.packing-item:first-of-type {
  border-top: none;
}

.packing-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}

.packing-item.is-done .packing-check {
  background: var(--accent);
  border-color: var(--accent);
}

.packing-label {
  font-size: 13.5px;
}

.packing-item.is-done .packing-label {
  color: var(--text-dim);
  text-decoration: line-through;
}

.food-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 16px;
  margin-bottom: 20px;
}

.wrapped-hero {
  text-align: center;
  padding: 20px 0 24px;
}

.wrapped-hero-title {
  font-size: 30px;
  font-weight: 700;
  color: var(--accent);
}

.wrapped-hero-sub {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.06em;
  margin-top: 4px;
}

.wrapped-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}

.wrapped-stat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 16px 12px;
  text-align: center;
}

.wrapped-stat-num {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--accent);
}

.wrapped-stat-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 2px;
}

.wrapped-section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent-hot);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.wrapped-top-food, .wrapped-expenses, .wrapped-achievements {
  margin-bottom: 24px;
}

.wrapped-top-food-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.wrapped-top-food-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}

.wrapped-top-food-body {
  padding: 12px 14px;
}

.wrapped-top-food-title {
  font-weight: 600;
  font-size: 15px;
}

.wrapped-top-food-stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 2px;
  margin-top: 4px;
}

.wrapped-expenses-total {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  color: var(--accent);
}

.wrapped-expenses-balance {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

.wrapped-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.wrapped-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold-soft, rgba(197, 148, 66, 0.12));
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 20px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
}

.wrapped-empty {
  color: var(--text-muted);
  font-size: 13px;
}

.gesture-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 16px;
  margin-bottom: 12px;
}

.gesture-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}

.gesture-move, .gesture-meaning {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.gesture-move strong, .gesture-meaning strong {
  color: var(--text);
  font-weight: 600;
}

.food-challenge {
  background: var(--accent-hot-soft);
  border: 1px dashed var(--accent-hot);
  border-radius: 8px;
  padding: 10px 12px;
  margin-bottom: 12px;
}

.food-challenge-label {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent-hot);
  margin-bottom: 3px;
}

.food-challenge-text {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
}

.food-challenge-reroll {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent-hot);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.food-save-gallery-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 9px;
  margin-bottom: 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg-elevated);
  font-size: 12px;
  color: var(--text-muted);
}

.food-save-gallery-btn[hidden] {
  display: none;
}

.food-detail-challenge {
  font-size: 13px;
  color: var(--accent-hot);
  font-style: italic;
  margin-top: -4px;
  margin-bottom: 14px;
}

.food-photo-picker {
  display: block;
  margin-bottom: 12px;
}

.food-photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 160px;
  border-radius: 8px;
  border: 1.5px dashed var(--border-strong);
  color: var(--text-dim);
  font-size: 12px;
  background-size: cover;
  background-position: center;
}

.food-photo-placeholder.has-photo {
  border-style: solid;
  border-color: var(--border);
}

.food-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.food-form input[type="text"],
.food-form textarea {
  padding: 11px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg-elevated);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  resize: vertical;
}

.food-form input[type="text"]:focus,
.food-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.food-empty {
  text-align: center;
  color: var(--text-muted);
  padding: 30px 20px;
  font-size: 14px;
}

.food-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.food-cell {
  position: relative;
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-elevated);
  background-size: cover;
  background-position: center;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
}

.food-cell-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 8px;
  background: linear-gradient(180deg, transparent, rgba(20, 15, 8, 0.82));
  text-align: left;
}

.food-cell-rating {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 1px;
}

.food-cell-title {
  color: #f4f5f0;
  font-size: 12px;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.food-detail-photo {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 14px;
  display: block;
}

.food-detail-rating {
  color: var(--gold);
  font-size: 20px;
  letter-spacing: 3px;
  margin: 4px 0 12px;
}

.expenses-summary {
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 24px 16px;
  margin-bottom: 20px;
}

.expenses-total {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
}

.expenses-total-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 2px;
}

.expenses-split {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.expenses-split-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.expenses-split-item span {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.expenses-split-item strong {
  font-size: 16px;
  color: var(--text);
}

.expenses-split-divider {
  width: 1px;
  height: 26px;
  background: var(--border);
}

.expenses-balance {
  margin-top: 14px;
  font-size: 14px;
  color: var(--text-muted);
}

.expenses-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 14px 16px;
  margin-bottom: 20px;
}

.expense-payer-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.expense-payer-toggle {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.expense-payer-btn {
  flex: 1;
  padding: 9px 10px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg-elevated);
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
  transition: all 0.15s;
}

.expense-payer-btn.active {
  background: var(--accent-soft);
  border-color: var(--accent);
  color: var(--accent);
}

.expenses-form {
  display: flex;
  gap: 8px;
}

.expenses-form input[name="description"] {
  flex: 2;
}

.expenses-form input[name="amount"] {
  flex: 1;
  min-width: 0;
}

.expenses-form input {
  padding: 11px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg-elevated);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
}

.expenses-form input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.expenses-empty {
  text-align: center;
  color: var(--text-muted);
  padding: 30px 20px;
  font-size: 14px;
}

.expense-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  border-top: 1px solid var(--border);
}

.expense-row:first-of-type {
  border-top: none;
}

.expense-row-body {
  flex: 1;
  min-width: 0;
}

.expense-row-desc {
  font-size: 14px;
  font-weight: 600;
}

.expense-row-meta {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 2px;
}

.expense-row-amount {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  flex-shrink: 0;
}

.expense-row-delete {
  color: var(--text-dim);
  flex-shrink: 0;
  padding: 4px;
}

.tickets-empty {
  text-align: center;
  color: var(--text-muted);
  padding: 40px 20px;
  font-size: 14px;
}

.ticket-card {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 14px 16px;
  margin-bottom: 12px;
  text-align: left;
}

.ticket-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(212, 165, 116, 0.22), rgba(212, 165, 116, 0.06));
  box-shadow: inset 0 0 0 1px rgba(212, 165, 116, 0.28);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ticket-card-body {
  flex: 1;
}

.ticket-card-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
}

.ticket-card-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}

.ticket-qr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 18px;
}

.ticket-qr-thumb {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px;
}

.ticket-qr-thumb img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 4px;
}

.ticket-qr-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted);
  text-align: center;
}

.qr-lightbox {
  position: fixed;
  inset: 0;
  z-index: 400;
  background: rgba(20, 15, 8, 0.94);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 24px;
  animation: fadeIn 0.2s ease forwards;
}

.qr-lightbox-label {
  color: #f4f5f0;
  font-family: var(--font-mono);
  font-size: 13px;
  text-align: center;
}

.qr-lightbox-image {
  width: 100%;
  max-width: 340px;
  background: #fff;
  border-radius: 12px;
  padding: 16px;
}

.qr-lightbox-hint {
  color: rgba(245, 240, 228, 0.6);
  font-size: 12px;
  text-align: center;
  max-width: 260px;
}

.login-screen {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background: #1a140c;
}

.login-hero {
  flex: 0 0 auto;
  height: 46vh;
  min-height: 280px;
  max-height: 480px;
  position: relative;
  background: #1a140c url('../images/login-bg.jpg') center top / cover no-repeat;
}

.login-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 20, 12, 0) 78%, #1a140c 100%);
}

.login-body {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 24px 32px;
}

.login-card {
  width: 100%;
  max-width: 340px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 28px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.login-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 4px;
}

.login-subtitle {
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 24px;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.login-form input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg-elevated);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
}

.login-form input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.login-submit {
  margin-top: 4px;
  justify-content: center;
}

.login-error {
  color: var(--accent-hot);
  font-size: 13px;
  margin-top: 4px;
}

/* ── Utility ────────────────────────────────── */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.mt-2 { margin-top: 8px; }
.mt-4 { margin-top: 16px; }
.mb-2 { margin-bottom: 8px; }
.mb-4 { margin-bottom: 16px; }
.hidden { display: none !important; }

.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}

.empty-state .serif {
  font-size: 22px;
  color: var(--text);
  margin-bottom: 8px;
}

.empty-state p {
  font-size: 14px;
  margin: 4px 0;
}

/* ── v2: Tab bar destacada ──────────────────── */
.tab-featured {
  position: relative;
}

.tab-featured-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-green);
  color: #f4f5f0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
  margin-top: -22px;
  box-shadow: 0 4px 16px rgba(11, 122, 63, 0.35), 0 0 0 4px var(--bg);
  transition: transform 0.15s;
}

.tab-featured:active .tab-featured-circle {
  transform: scale(0.94);
}

.tab-featured.active {
  color: var(--accent);
}

.tab-featured.active .tab-featured-circle {
  background: var(--gradient-green);
  box-shadow: 0 4px 20px rgba(11, 122, 63, 0.32), 0 0 0 4px var(--bg);
}

/* ── v2: Chips (filtros) ────────────────────── */
.chip-row {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 2px 0 10px;
  scrollbar-width: none;
}

.chip-row::-webkit-scrollbar {
  display: none;
}

.chip {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 7px 14px;
  font-size: 12px;
  color: var(--text-muted);
  white-space: nowrap;
  transition: all 0.15s;
}

.chip:active {
  transform: scale(0.97);
}

.chip.active {
  background: var(--accent-soft);
  border-color: var(--accent);
  color: var(--accent);
}

.chip-location.active {
  background: rgba(107, 142, 127, 0.12);
  border-color: var(--accent-cold);
  color: var(--accent-cold);
}

/* ── v2: Guardados card (home) ──────────────── */
.saved-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 14px 16px;
  margin-bottom: 20px;
}

.saved-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(212, 165, 116, 0.22), rgba(212, 165, 116, 0.06));
  box-shadow: inset 0 0 0 1px rgba(212, 165, 116, 0.28);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.saved-card-body {
  flex: 1;
}

.saved-card-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
}

.saved-card-count {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ── v2: Sheet "Más" ─────────────────────────── */
.more-menu-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.more-menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 14px;
  color: var(--text);
}

.more-menu-item:hover {
  text-decoration: none;
}

.more-menu-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(212, 165, 116, 0.22), rgba(212, 165, 116, 0.06));
  box-shadow: inset 0 0 0 1px rgba(212, 165, 116, 0.28);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.more-menu-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
}

.more-menu-desc {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 2px;
}

/* ── v2: Sheet búsqueda global ───────────────── */
.sheet-full {
  max-height: 96vh;
}

.search-input {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 14px;
}

.search-result {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 4px;
  border-bottom: 1px solid var(--border);
}

.search-result:active {
  background: var(--bg-card);
}

.search-result-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
}

.search-result-sub {
  font-size: 11px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 1px;
}

/* ── v2: Chat quick actions + mensajes sistema ─ */
.chat-quick-actions {
  padding: 0 12px 8px;
}

.bubble.system {
  align-self: center;
  background: transparent;
  border: 1px dashed var(--border-strong);
  color: var(--text-dim);
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 6px 12px;
}

/* ── v2: Distance badge ─────────────────────── */
.distance-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  white-space: nowrap;
}

.distance-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.distance-badge.green { color: var(--accent-cold); }
.distance-badge.green .distance-dot { background: var(--accent-cold); }
.distance-badge.amber { color: var(--gold); }
.distance-badge.amber .distance-dot { background: var(--gold); }
.distance-badge.gray { color: var(--text-dim); }
.distance-badge.gray .distance-dot { background: var(--text-dim); }

/* ── v2: Búsqueda (Restaurantes/Extras) ─────── */
.search-wrap {
  position: relative;
  margin-bottom: 12px;
}

.search-wrap .search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-dim);
  pointer-events: none;
}

.search-wrap .search-input {
  padding-left: 38px;
  border-radius: 20px;
}

.results-count {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.chip-divider {
  width: 1px;
  align-self: stretch;
  background: var(--border);
  flex-shrink: 0;
  margin: 4px 2px;
}

/* ── v2: Restaurant / Extra cards ───────────── */
.restaurant-list, .extra-list, .nearby-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 6px;
}

.restaurant-card, .extra-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 14px;
  transition: border-color 0.15s, transform 0.1s;
}

.restaurant-card:active, .extra-card:active {
  transform: scale(0.995);
}

.restaurant-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}

.restaurant-card-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.restaurant-card-price {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent);
  flex-shrink: 0;
}

.restaurant-card-meta, .extra-card-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 4px;
}

.restaurant-card-specialty {
  font-size: 12px;
  color: var(--accent);
  margin-top: 6px;
}

.restaurant-card-notes, .extra-card-notes {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-top: 8px;
}

.extra-card-top {
  display: flex;
  align-items: center;
  gap: 8px;
}

.extra-card-icon {
  color: var(--accent);
  display: flex;
  flex-shrink: 0;
}

.extra-card-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
}

.extra-card-time {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-dim);
  margin-top: 6px;
}

.restaurant-card-actions, .extra-card-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.card-action-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 8px;
  font-size: 12px;
  color: var(--text-muted);
  transition: all 0.15s;
}

.card-action-btn:active {
  background: var(--border);
}

.card-action-btn.active {
  background: var(--accent-soft);
  border-color: var(--accent);
  color: var(--accent);
}

.day-picker {
  margin-top: 10px;
}

.day-picker-select {
  font-size: 13px;
  padding: 8px 10px;
}

/* ── v2: Sheet extras (specialty chips, review) ─ */
.sheet-specialty-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.sheet-specialty-chip {
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 11px;
  font-family: var(--font-mono);
}

.copy-btn {
  color: var(--text-dim);
  flex-shrink: 0;
  padding: 2px;
  margin-left: auto;
}

.copy-btn:active {
  color: var(--accent);
}

.review-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 14px;
  margin-top: 4px;
  margin-bottom: 16px;
}

.review-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.rating-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 10px;
}

.rating-star {
  color: var(--border-strong);
  transition: color 0.15s, transform 0.15s;
}

.rating-star svg {
  fill: none;
  transition: fill 0.15s;
}

.rating-star.active {
  color: var(--gold);
  transform: scale(1.08);
}

.rating-star.active svg {
  fill: var(--gold);
}

/* ── v2: Nearby ──────────────────────────────── */
.nearby-empty {
  text-align: center;
  padding: 40px 12px 20px;
}

.nearby-empty-icon {
  color: var(--accent);
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.nearby-empty-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 12px;
}

.nearby-empty-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

.nearby-empty-privacy {
  font-size: 12px;
  color: var(--text-dim);
  margin-bottom: 24px;
}

.nearby-activate-btn {
  display: inline-flex;
  padding: 12px 24px;
}

.nearby-inline-msg {
  color: var(--accent-hot);
  font-size: 13px;
  margin-top: 16px;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

.nearby-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.nearby-status-text {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nearby-refresh-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--accent);
  font-size: 12px;
  font-family: var(--font-mono);
}

.nearby-zone-filter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 4px;
  padding: 8px 12px;
  font-size: 12px;
  margin-bottom: 12px;
}

.nearby-row {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 12px;
}

.nearby-row:active {
  transform: scale(0.995);
}

.nearby-row-distance {
  width: 56px;
  flex-shrink: 0;
}

.nearby-row-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
}

.nearby-row-subtitle {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-top: 2px;
}

/* ── v3: Transit block (Cómo llegar → Google Maps) ── */
.transit-block {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 2px 0 2px 14px;
  padding: 8px 0 8px 14px;
  border-left: 1.5px dashed var(--border-strong);
  color: var(--text-dim);
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.transit-block:active {
  color: var(--accent);
}

.transit-error {
  font-size: 12px;
  color: var(--accent-hot);
  line-height: 1.5;
  padding: 4px 0;
}

/* ── v3: Traductor ───────────────────────────── */
.translate-idle {
  text-align: center;
  padding: 40px 12px 20px;
}

.translate-idle-icon {
  color: var(--accent);
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.translate-idle-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 12px;
}

.translate-idle-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 320px;
  margin: 0 auto 24px;
}

.translate-photo-btn {
  display: inline-flex;
  padding: 12px 24px;
  cursor: pointer;
}

.translate-preview {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.translate-photo-preview {
  width: 100%;
  max-height: 50vh;
  object-fit: contain;
  border-radius: 4px;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
}

.translate-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.translate-loading {
  font-size: 13px;
  color: var(--text-dim);
  padding: 12px 0;
}

.translate-result {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 14px;
  font-size: 14px;
  line-height: 1.6;
  white-space: pre-wrap;
  user-select: text;
}

/* ── v3: Item chat (mini-chat en fichas) ────── */
.item-chat-dock {
  border-top: 1px solid var(--border);
  background: var(--bg-elevated);
  padding: 12px 20px calc(12px + var(--safe-bottom));
  flex-shrink: 0;
}

.item-chat-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.item-chat-locked {
  font-size: 12px;
  color: var(--text-dim);
}

.item-chat-messages {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: 160px;
  overflow-y: auto;
  margin-bottom: 8px;
}

.item-chat-messages:empty {
  display: none;
}

.item-chat-bubble {
  max-width: 90%;
  padding: 7px 11px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.4;
}

.item-chat-bubble.user {
  align-self: flex-end;
  background: var(--gradient-green);
  color: #f4f5f0;
  border-bottom-right-radius: 3px;
}

.item-chat-bubble.assistant {
  align-self: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-bottom-left-radius: 3px;
}

.item-chat-bubble.assistant.error {
  border-color: var(--accent-hot);
  color: var(--accent-hot);
}

.item-chat-typing {
  display: flex;
  gap: 3px;
  padding: 2px 0;
}

.item-chat-typing span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--text-dim);
  animation: typing 1.2s infinite;
}

.item-chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.item-chat-typing span:nth-child(3) { animation-delay: 0.4s; }

.item-chat-input-row {
  display: flex;
  gap: 8px;
  align-items: center;
}

.item-chat-input {
  flex: 1;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 8px 14px;
  font-size: 13px;
}

.item-chat-send {
  width: 32px;
  height: 32px;
  background: var(--gradient-green);
  color: #f4f5f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: opacity 0.15s;
}

.item-chat-send:disabled {
  opacity: 0.4;
}

/* ── Splash (solo primera vez) ──────────────── */
.splash {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 900px 700px at 50% 10%, rgba(11, 122, 63, 0.07), transparent 60%),
    var(--bg);
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.5s ease;
  padding-top: 12vh;
}

.splash.is-leaving {
  opacity: 0;
}

.splash-photo {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 54vh;
  object-fit: cover;
  object-position: center 30%;
  -webkit-mask-image: linear-gradient(to top, black 68%, transparent 100%);
  mask-image: linear-gradient(to top, black 68%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.splash-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 32px;
}

.splash-title {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 700;
  color: var(--accent);
  margin: 0;
  letter-spacing: -0.01em;
}

.splash-dates {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--accent-hot);
  letter-spacing: 0.12em;
  margin-top: 14px;
}

.splash-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 22px auto;
  max-width: 280px;
}

.splash-divider-line {
  flex: 1;
  height: 2px;
}

.splash-divider-green { background: var(--accent); }
.splash-divider-red { background: var(--accent-hot); }

.splash-divider-mark {
  color: var(--gold);
  font-size: 16px;
  flex-shrink: 0;
}

.splash-tagline {
  font-family: 'Allura', cursive;
  font-size: 44px;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-top: 4px;
}
