/* ============================================================================
 * adventures.css — Modulo Avventure
 * Tutti gli stili sono scope-prefissati .adv-* per evitare collisioni.
 * Riusa le variabili globali del design system (--malta-red, --gray-*).
 * ========================================================================== */

.adv-section {
  --adv-accent: var(--malta-red, #FF5F5F);
  --adv-accent-strong: var(--malta-red-dark, #E54545);
  --adv-accent-soft: rgba(255, 95, 95, 0.10);
  --adv-radius: 16px;
  --adv-radius-pill: 999px;
  --adv-shadow-card: 0 4px 6px -1px rgba(0, 0, 0, 0.10);
  --adv-shadow-card-hover: 0 10px 15px -3px rgba(0, 0, 0, 0.10);

  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  font-family: 'Nunito Sans', system-ui, -apple-system, sans-serif;
  color: var(--gray-900, #111827);
}

.adv-section.is-brand-denise {
  --adv-accent: #2fd16f;
  --adv-accent-strong: #1fa356;
  --adv-accent-soft: rgba(47, 209, 111, 0.12);
}

/* ---------- Header --------------------------------------------------------- */

.adv-header {
  display: flex;
  gap: 24px;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.adv-header-text { max-width: 640px; }

.adv-kicker {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--adv-accent);
  margin-bottom: 6px;
}

.adv-title {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  font-weight: 900;
  line-height: 1.15;
  margin: 0 0 8px;
}

.adv-lead {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--gray-600, #4b5563);
  margin: 0;
}

/* ---------- Brand switch (tablist) ---------------------------------------- */

.adv-brand-switch {
  display: inline-flex;
  background: var(--gray-100, #f3f4f6);
  border-radius: var(--adv-radius-pill);
  padding: 4px;
  gap: 4px;
}

.adv-brand-switch button {
  border: none;
  background: transparent;
  padding: 8px 16px;
  border-radius: var(--adv-radius-pill);
  font: inherit;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--gray-700, #374151);
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.adv-brand-switch button[aria-selected="true"] {
  background: var(--adv-accent);
  color: #fff;
}

.adv-brand-switch button:focus-visible {
  outline: 2px solid var(--adv-accent);
  outline-offset: 2px;
}

/* ---------- Strip meteo --------------------------------------------------- */

.adv-weather-strip {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--adv-accent-soft);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: var(--adv-radius);
  padding: 12px 16px;
  margin-bottom: 24px;
  font-size: 0.95rem;
  color: var(--gray-800, #1f2937);
}

.adv-weather-strip[hidden] { display: none; }
.adv-weather-emoji { font-size: 1.4rem; line-height: 1; }

/* ---------- Filtri -------------------------------------------------------- */

.adv-filters {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.adv-filter-row {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  flex: 1 1 auto;
}

.adv-search {
  position: relative;
  display: flex;
  align-items: center;
  flex: 1 1 220px;
  min-width: 220px;
}

.adv-search input {
  width: 100%;
  border: 1px solid var(--gray-200, #e5e7eb);
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
  font-size: 16px; /* iOS no-zoom */
  background: #fff;
  transition: border-color 0.2s ease;
}

.adv-search input:focus {
  border-color: var(--adv-accent);
  outline: none;
}

.adv-select {
  border: 1px solid var(--gray-200, #e5e7eb);
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
  font-size: 16px;
  background: #fff;
  cursor: pointer;
  min-width: 180px;
}

.adv-select:focus {
  border-color: var(--adv-accent);
  outline: none;
}

.adv-chip-group {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.adv-chip {
  border: 1px solid var(--gray-200, #e5e7eb);
  background: #fff;
  border-radius: var(--adv-radius-pill);
  padding: 8px 14px;
  font: inherit;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gray-700, #374151);
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.adv-chip:hover { border-color: var(--adv-accent); }
.adv-chip[aria-pressed="true"] {
  background: var(--adv-accent);
  color: #fff;
  border-color: var(--adv-accent);
}
.adv-chip:focus-visible {
  outline: 2px solid var(--adv-accent);
  outline-offset: 2px;
}

.adv-view-toggle {
  display: inline-flex;
  background: var(--gray-100, #f3f4f6);
  border-radius: var(--adv-radius-pill);
  padding: 4px;
  gap: 4px;
}

.adv-view-toggle button {
  border: none;
  background: transparent;
  padding: 8px 16px;
  border-radius: var(--adv-radius-pill);
  font: inherit;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--gray-700, #374151);
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.adv-view-toggle button[aria-selected="true"] {
  background: #fff;
  color: var(--adv-accent);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.08);
}

.adv-view-toggle button:focus-visible {
  outline: 2px solid var(--adv-accent);
  outline-offset: 2px;
}

/* ---------- Results grid -------------------------------------------------- */

.adv-results {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.adv-results.is-map {
  display: block;
  min-height: 480px;
}

.adv-empty {
  padding: 40px 20px;
  text-align: center;
  color: var(--gray-500, #6b7280);
  background: var(--gray-50, #f9fafb);
  border-radius: var(--adv-radius);
}

.adv-empty[hidden] { display: none; }

/* ---------- Card ---------------------------------------------------------- */

.adv-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--adv-radius);
  overflow: hidden;
  box-shadow: var(--adv-shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.adv-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--adv-shadow-card-hover);
}

.adv-card-media {
  aspect-ratio: 16 / 10;
  background: var(--gray-100, #f3f4f6);
  overflow: hidden;
}

.adv-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.adv-card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  flex: 1 1 auto;
}

.adv-card-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.adv-tag {
  padding: 4px 10px;
  border-radius: var(--adv-radius-pill);
  font-size: 0.75rem;
  font-weight: 800;
  background: var(--adv-accent-soft);
  color: var(--adv-accent-strong);
  text-transform: capitalize;
}

.adv-tag--time {
  background: var(--gray-100, #f3f4f6);
  color: var(--gray-700, #374151);
}

.adv-card-title {
  font-family: 'Nunito', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.25;
  margin: 0;
  color: var(--gray-900, #111827);
}

.adv-card-op {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--gray-600, #4b5563);
}

.adv-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  border-radius: var(--adv-radius-pill);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.adv-badge--licensed {
  background: rgba(47, 209, 111, 0.14);
  color: #1a8a4a;
}

/* Brand badge: nascosto di default, mostrato se card e' curatedBy=denise
   OPPURE se la sezione e' in skin denise (in quest'ultimo caso tutte le card visibili sono di denise). */
.adv-badge--brand {
  background: var(--adv-accent);
  color: #fff;
  display: none;
}

.adv-card[data-curated="denise"] .adv-badge--brand,
.adv-section.is-brand-denise .adv-badge--brand {
  display: inline-flex;
}

.adv-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 4px;
  font-size: 0.9rem;
}

.adv-rating {
  font-weight: 700;
  color: var(--gray-800, #1f2937);
}
.adv-rating small {
  color: var(--gray-500, #6b7280);
  font-weight: 400;
}

.adv-price {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  color: var(--adv-accent-strong);
  font-size: 1.05rem;
}

.adv-card-cta {
  margin-top: 6px;
  padding: 10px 18px;
  border-radius: var(--adv-radius-pill);
  background: var(--adv-accent);
  color: #fff;
  border: none;
  font: inherit;
  font-weight: 800;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.adv-card-cta:hover { background: var(--adv-accent-strong); }
.adv-card-cta:active { transform: scale(0.98); }
.adv-card-cta:focus-visible {
  outline: 2px solid var(--adv-accent-strong);
  outline-offset: 2px;
}

/* ---------- Map container ------------------------------------------------- */

.adv-map {
  height: 520px;
  border-radius: var(--adv-radius);
  overflow: hidden;
  box-shadow: var(--adv-shadow-card);
  background: var(--gray-100, #f3f4f6);
}

.adv-map-fallback {
  display: grid;
  place-items: center;
  height: 100%;
  color: var(--gray-500, #6b7280);
  font-style: italic;
}

.adv-map-popup {
  font-family: 'Nunito Sans', sans-serif;
  min-width: 200px;
}
.adv-map-popup strong {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  margin-bottom: 4px;
}
.adv-map-popup .adv-map-popup-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
  font-size: 0.85rem;
  color: var(--gray-700, #374151);
}
.adv-map-popup .adv-map-popup-price {
  color: var(--adv-accent-strong);
  font-weight: 800;
}

/* Marker custom (divIcon) */
.adv-marker {
  width: 28px;
  height: 28px;
  border-radius: 50% 50% 50% 0;
  background: var(--adv-accent, #FF5F5F);
  transform: rotate(-45deg);
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

/* ---------- Modale -------------------------------------------------------- */

.adv-modal[hidden] { display: none; }

.adv-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 9000;
  padding: 20px;
}

.adv-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(2px);
}

.adv-modal-card {
  position: relative;
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  max-width: 420px;
  width: 100%;
  box-shadow: 0 14px 30px rgba(17, 24, 39, 0.18);
}

.adv-modal-card h3 {
  font-family: 'Nunito', sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
  margin: 0 0 12px;
}

.adv-modal-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--gray-600, #4b5563);
  margin: 0 0 20px;
}

.adv-modal-btn {
  padding: 10px 22px;
  border-radius: 50px;
  background: var(--adv-accent, #FF5F5F);
  color: #fff;
  border: none;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.adv-modal-btn:hover { background: var(--adv-accent-strong, #E54545); }
.adv-modal-btn:focus-visible {
  outline: 2px solid var(--adv-accent-strong, #E54545);
  outline-offset: 2px;
}

/* ============================================================================
 * Mini-widget teaser (.adv-preview-*) — vive nella widgets-section della
 * landing come anteprima compatta. La sezione completa e' su adventures.html.
 * ========================================================================== */

.adv-preview-widget {
  --adv-accent: var(--malta-red, #FF5F5F);
  --adv-accent-strong: var(--malta-red-dark, #E54545);
  font-family: 'Nunito Sans', system-ui, -apple-system, sans-serif;
}

.adv-preview-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.adv-preview-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--adv-accent), var(--adv-accent-strong));
  color: #fff;
  flex-shrink: 0;
}

.adv-preview-title-block { flex: 1; min-width: 0; }

.adv-preview-kicker {
  display: block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--adv-accent);
  margin-bottom: 2px;
}

.adv-preview-heading {
  font-family: 'Nunito', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0;
  color: var(--gray-900, #111827);
  line-height: 1.2;
}

.adv-preview-lead {
  font-size: 0.9rem;
  color: var(--gray-600, #4b5563);
  margin: 0 0 14px;
  line-height: 1.45;
}

.adv-preview-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}

.adv-preview-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  background: var(--gray-50, #f9fafb);
  border: 1px solid transparent;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.adv-preview-item:hover {
  background: #fff;
  border-color: var(--adv-accent);
  transform: translateX(2px);
}

.adv-preview-item:focus-visible {
  outline: 2px solid var(--adv-accent);
  outline-offset: 2px;
}

.adv-preview-thumb {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--gray-100, #f3f4f6);
  flex-shrink: 0;
}

.adv-preview-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.adv-preview-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.adv-preview-cat {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--adv-accent-strong);
}

.adv-preview-title {
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-900, #111827);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.adv-preview-price {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--gray-700, #374151);
}

.adv-preview-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--adv-accent);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.9rem;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.adv-preview-cta:hover { background: var(--adv-accent-strong); transform: translateX(2px); }
.adv-preview-cta:focus-visible {
  outline: 2px solid var(--adv-accent-strong);
  outline-offset: 2px;
}

/* ---------- Utility ------------------------------------------------------- */

.adv-section .sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Mobile -------------------------------------------------------- */

@media (max-width: 720px) {
  .adv-section { padding: 40px 16px; }
  .adv-header { align-items: flex-start; }
  .adv-filter-row { flex-direction: column; align-items: stretch; }
  .adv-search, .adv-select { width: 100%; min-width: 0; }
  .adv-results { grid-template-columns: 1fr; }
  .adv-map { height: 420px; }
  .adv-brand-switch, .adv-view-toggle { width: 100%; }
  .adv-brand-switch button, .adv-view-toggle button { flex: 1; }
}

/* ==========================================================================
 * Booking popup (.advbk-*) — condiviso tra schede attività e pagina dettaglio
 * ========================================================================== */
.advbk {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  font-family: 'Nunito Sans', system-ui, -apple-system, sans-serif;
}
.advbk[hidden] { display: none; }
.advbk-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(2px);
}
.advbk-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 470px;
  max-height: 92vh;
  overflow: auto;
  background: #fff;
  border-radius: 18px;
  padding: 26px 24px 22px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.35);
}
.advbk-x {
  position: absolute;
  top: 10px;
  right: 14px;
  border: 0;
  background: transparent;
  font-size: 1.7rem;
  line-height: 1;
  color: #9ca3af;
  cursor: pointer;
}
.advbk-x:hover { color: #111827; }
.advbk-kicker {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--malta-red, #FF5F5F);
}
.advbk-activity-title {
  margin: 6px 0 6px;
  font-family: 'Nunito', sans-serif;
  font-size: 1.3rem;
  font-weight: 900;
  color: #111827;
  line-height: 1.15;
}
.advbk-activity-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  color: #6b7280;
  font-size: 0.9rem;
}
.advbk-price { color: var(--malta-red-dark, #E54545); font-weight: 800; }
.advbk-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 18px;
}
.advbk-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #374151;
}
.advbk-field--full { margin-top: 12px; }
.advbk-field input,
.advbk-field select,
.advbk-field textarea {
  font: inherit;
  font-weight: 600;
  color: #111827;
  padding: 10px 12px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #fff;
  width: 100%;
}
.advbk-field textarea { resize: vertical; }
.advbk-field input:focus,
.advbk-field select:focus,
.advbk-field textarea:focus {
  outline: 2px solid rgba(255, 95, 95, 0.45);
  outline-offset: 1px;
  border-color: var(--malta-red, #FF5F5F);
}
.advbk-note {
  margin: 12px 0 0;
  font-size: 0.78rem;
  color: #9ca3af;
}
.advbk-feedback {
  margin: 12px 0 0;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 700;
}
.advbk-feedback--error { background: #fff1f1; color: #b91c1c; border: 1px solid #fecaca; }
.advbk-feedback--success { background: #effdf4; color: #15803d; border: 1px solid #bbf7d0; }
.advbk-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 18px;
}
.advbk-btn {
  border: 0;
  border-radius: 999px;
  padding: 11px 20px;
  font-weight: 800;
  font-size: 0.9rem;
  cursor: pointer;
}
.advbk-btn--ghost { background: #f3f4f6; color: #374151; }
.advbk-btn--ghost:hover { background: #e5e7eb; }
.advbk-btn--primary { background: var(--malta-red, #FF5F5F); color: #fff; }
.advbk-btn--primary:hover { background: var(--malta-red-dark, #E54545); }
.advbk-btn--primary:disabled { opacity: 0.6; cursor: default; }

@media (max-width: 480px) {
  .advbk-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
 * Card actions (View details + Book) + detail modal extras
 * ========================================================================== */
.adv-card { cursor: pointer; }

.adv-card-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
}
.adv-card-actions .adv-card-cta { flex: 1; margin-top: 0; }
.adv-card-details {
  flex: 0 0 auto;
  padding: 10px 14px;
  border-radius: var(--adv-radius-pill, 999px);
  border: 1px solid var(--gray-200, #e5e7eb);
  background: #fff;
  color: var(--adv-accent-strong, #E54545);
  font-weight: 800;
  font-size: 0.85rem;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}
.adv-card-details:hover { border-color: var(--adv-accent, #FF5F5F); }

/* Detail modal: assicura le variabili accent anche fuori dal contenitore modulo */
.adv-modal {
  --adv-accent: var(--malta-red, #FF5F5F);
  --adv-accent-strong: var(--malta-red-dark, #E54545);
}
.adv-modal-x {
  position: absolute;
  top: 10px;
  right: 12px;
  z-index: 2;
  border: 0;
  background: rgba(255, 255, 255, 0.88);
  width: 34px;
  height: 34px;
  border-radius: 999px;
  font-size: 1.5rem;
  line-height: 1;
  color: #374151;
  cursor: pointer;
}
.adv-modal-x:hover { color: #111827; }
.adv-detail-card {
  max-width: 460px;
  padding: 0 0 22px;
  max-height: 92vh;
  overflow: auto;
}
.adv-detail-media { height: 200px; overflow: hidden; border-radius: 18px 18px 0 0; background: var(--gray-100, #f3f4f6); }
.adv-detail-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.adv-detail-tags { display: flex; gap: 8px; padding: 16px 22px 0; }
.adv-detail-title { margin: 10px 22px 0; font-family: 'Nunito', sans-serif; font-size: 1.4rem; font-weight: 900; line-height: 1.15; }
.adv-detail-op { display: flex; align-items: center; gap: 8px; padding: 6px 22px 0; color: var(--gray-600, #4b5563); font-weight: 600; }
.adv-detail-meta { display: flex; flex-wrap: wrap; gap: 6px 14px; padding: 10px 22px 0; color: var(--gray-700, #374151); font-weight: 700; align-items: center; }
.adv-detail-meta .adv-price { color: var(--adv-accent-strong, #E54545); }
.adv-detail-tagrow { display: flex; flex-wrap: wrap; gap: 6px; padding: 12px 22px 0; }
.adv-detail-note { margin: 14px 22px 0; color: var(--gray-600, #4b5563); font-size: 0.9rem; line-height: 1.55; }
.adv-detail-actions { display: flex; gap: 10px; padding: 18px 22px 0; }
.adv-detail-actions .adv-card-cta { flex: 1; margin-top: 0; }
.adv-modal-btn--ghost { background: var(--gray-100, #f3f4f6); color: var(--gray-700, #374151); }
.adv-modal-btn--ghost:hover { background: var(--gray-200, #e5e7eb); }
