@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Outfit:wght@500;600;700;800&display=swap');

:root {
  --aperol-orange: #FF5E13;
  --aperol-gradient: linear-gradient(135deg, #FF5E13 0%, #FF7A00 100%);
  --aperol-glow: rgba(255, 94, 19, 0.2);
  --bg-light: #FAFAFA;
  --glass-bg: rgba(255, 255, 255, 0.88);
  --glass-border: rgba(255, 255, 255, 0.95);
  --text-dark: #111111;
  --text-muted: #6E6E73;
  --radius-pill: 50px;
  --radius-sheet: 24px;
  --radius-card: 16px;
  --shadow-floating: 0 8px 24px rgba(0, 0, 0, 0.05);
  --shadow-btn-xl: 0 10px 24px rgba(255, 94, 19, 0.3);
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Outfit', sans-serif;
}

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

body, html {
  width: 100%;
  height: 100%;
  height: 100dvh;
  overflow: hidden;
  font-family: var(--font-main);
  background-color: #FFFFFF;
  color: var(--text-dark);
}

/* FULLSCREEN MAP */
#map {
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: #F8F8F8;
}

.leaflet-container {
  font-family: var(--font-main) !important;
  background: #F8F8F8 !important;
}

.leaflet-control-zoom {
  display: none !important;
}

.leaflet-div-icon {
  background: transparent !important;
  border: none !important;
}

.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-interactive,
.leaflet-marker-icon:focus,
.leaflet-interactive:focus {
  outline: none !important;
  border: none !important;
}

/* APEROL ORANGE MAP DOT MARKER */
.aperol-dot-content {
  width: 20px;
  height: 20px;
  background: var(--aperol-gradient);
  border: 3px solid #FFFFFF;
  border-radius: 50%;
  box-shadow: 0 4px 10px var(--aperol-glow);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.aperol-dot-content:hover {
  transform: scale(1.3);
}

/* CURRENT USER MARKER */
.user-dot-content {
  width: 16px;
  height: 16px;
  background: #007AFF;
  border: 2.5px solid #FFFFFF;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 122, 255, 0.4);
  animation: userPulse 2.5s infinite;
}

@keyframes userPulse {
  0% { box-shadow: 0 0 0 0 rgba(0, 122, 255, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(0, 122, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 122, 255, 0); }
}

/* SLEEK HORIZONTAL FLOATING HEADER BAR */
.floating-top-bar {
  position: fixed;
  top: calc(16px + env(safe-area-inset-top));
  right: 16px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  pointer-events: none;
}

.top-nav-actions {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  padding: 4px 6px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-floating);
}

.nav-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: transparent;
  border: none;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  outline: none;
}

.nav-btn:hover {
  background: rgba(0, 0, 0, 0.05);
  color: var(--aperol-orange);
}

.nav-btn:active {
  transform: scale(0.92);
}

.profile-avatar-sm {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--aperol-gradient);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease;
  margin-left: 2px;
}

.profile-avatar-sm:active {
  transform: scale(0.92);
}

/* LARGE LIQUID GLASS ACTION BUTTON AT BOTTOM */
.floating-controls-bottom {
  position: fixed;
  bottom: calc(24px + env(safe-area-inset-bottom));
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* RADIAL GRADIENT AURA DIRECTLY AROUND BUTTON */
.btn-radial-aura {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 170px;
  height: 170px;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0.7) 40%,
    rgba(255, 255, 255, 0) 70%
  );
}

.liquid-glass-btn-lg {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 2px solid rgba(255, 255, 255, 0.95);
  color: var(--aperol-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 
    inset 0 2px 4px rgba(255, 255, 255, 0.95),
    inset 0 -2px 4px rgba(255, 94, 19, 0.15),
    0 12px 32px rgba(0, 0, 0, 0.08),
    0 4px 16px var(--aperol-glow);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  outline: none;
}

.liquid-glass-btn-lg:hover {
  background: rgba(255, 255, 255, 0.85);
  transform: scale(1.06) translateY(-2px);
  box-shadow: 
    inset 0 2px 4px rgba(255, 255, 255, 1),
    0 16px 36px rgba(0, 0, 0, 0.12),
    0 6px 20px var(--aperol-glow);
}

.liquid-glass-btn-lg:active {
  background: rgba(255, 255, 255, 0.75);
  transform: scale(0.92) translateY(0);
}

/* CRISP OVERLAY (NO HEAVY BLUR) */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background: rgba(0, 0, 0, 0.18); /* Light subtle darkening, map stays sharp! */
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  z-index: 200;
  display: none;
  align-items: flex-end;
  justify-content: center;
}

.modal-overlay.active {
  display: flex;
}

.sheet-modal {
  width: 100%;
  max-width: 480px;
  background: #FFFFFF;
  border-top-left-radius: var(--radius-sheet);
  border-top-right-radius: var(--radius-sheet);
  padding: 20px 24px calc(40px + env(safe-area-inset-bottom));
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.12);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  animation: slideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: 78dvh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

/* LIQUID GLASS CARD WITH SHARP SHADOWS & MINIMAL BLUR */
.badge-unlock-card {
  width: 90%;
  max-width: 330px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 32px;
  padding: 38px 24px 28px;
  text-align: center;
  box-shadow: 
    0 20px 50px rgba(0, 0, 0, 0.12),
    0 8px 24px rgba(255, 94, 19, 0.2),
    inset 0 1.5px 2px 0 rgba(255, 255, 255, 0.95),
    inset 0 -1.5px 2px 0 rgba(255, 94, 19, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  animation: liquidPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  margin: auto;
}

@keyframes liquidPop {
  0% { transform: scale(0.5) translateY(30px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}

.liquid-wave {
  position: absolute;
  top: -80px;
  left: -40px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255, 94, 19, 0.18) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  animation: liquidFloat 6s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes liquidFloat {
  0% { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(30px, 20px) rotate(45deg); }
}

.badge-unlock-icon-wrapper {
  position: relative;
  width: 84px;
  height: 84px;
  margin: 0 auto 18px;
}

.badge-unlock-ring {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,94,19,0.9) 0%, rgba(255,140,0,0.6) 50%, rgba(245,176,0,0.9) 100%);
  padding: 2.5px;
  animation: spinLiquidGlow 5s linear infinite;
  box-shadow: 0 6px 18px rgba(255, 94, 19, 0.2);
}

@keyframes spinLiquidGlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.badge-unlock-icon {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #FFFFFF;
  color: var(--aperol-orange);
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 2px 6px rgba(255, 255, 255, 0.9), 0 4px 12px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 2;
}

.badge-unlock-pill {
  display: inline-block;
  background: #FFF0E8;
  border: 1px solid rgba(255, 94, 19, 0.25);
  color: var(--aperol-orange);
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.9);
}

.badge-unlock-title {
  font-family: var(--font-heading);
  font-size: 23px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 6px;
  letter-spacing: -0.4px;
}

.badge-unlock-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.45;
  margin-bottom: 22px;
}

.btn-liquid {
  width: 100%;
  padding: 15px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: var(--aperol-gradient);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 28px var(--aperol-glow);
  transition: transform 0.2s ease;
}

.btn-liquid:active {
  transform: scale(0.96);
}

.sheet-handle {
  width: 36px;
  height: 4px;
  background: #E5E5E5;
  border-radius: 2px;
  margin: 0 auto 16px;
}

.sheet-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.sheet-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
}

.btn-close {
  border: none;
  background: #F2F2F7;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 16px;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stats-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.stat-pill {
  background: #FAFAFA;
  border: 1px solid #F0F0F0;
  border-radius: var(--radius-card);
  padding: 10px;
  text-align: center;
}

.stat-val {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--aperol-orange);
}

.stat-lbl {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
}

.badges-filter-bar {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding-bottom: 10px;
  margin-bottom: 14px;
  scrollbar-width: none;
}
.badges-filter-bar::-webkit-scrollbar { display: none; }

.filter-chip {
  padding: 6px 14px;
  border-radius: 18px;
  background: #F2F2F7;
  border: none;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  white-space: nowrap;
  cursor: pointer;
}

.filter-chip.active {
  background: var(--aperol-orange);
  color: #FFFFFF;
}

.badges-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.badge-card {
  background: #FAFAFA;
  border: 1px solid #F0F0F0;
  border-radius: var(--radius-card);
  padding: 12px 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 0.4;
  filter: grayscale(1);
  position: relative;
  transition: all 0.2s ease;
}

.badge-card.unlocked {
  opacity: 1;
  filter: grayscale(0);
  background: #FFFFFF;
  border-color: #FFD4C2;
  box-shadow: 0 4px 12px rgba(255, 94, 19, 0.08);
}

.badge-icon {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  color: var(--aperol-orange);
  background: #FFF0E8;
  border-radius: 6px;
  padding: 3px 8px;
  margin-bottom: 6px;
  display: inline-block;
  letter-spacing: 0.5px;
}

.badge-name {
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
}

.badge-desc {
  font-size: 9.5px;
  color: var(--text-muted);
  margin-top: 2px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.list-feed {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.list-item {
  background: #FAFAFA;
  border: 1px solid #F0F0F0;
  border-radius: var(--radius-card);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.list-item-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.list-item-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #FFF0E8;
  color: var(--aperol-orange);
  font-family: var(--font-heading);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.list-item-title {
  font-size: 13px;
  font-weight: 700;
}

.list-item-sub {
  font-size: 11px;
  color: var(--text-muted);
}

.list-item-actions {
  display: flex;
  gap: 6px;
}

.btn-item-action {
  border: none;
  background: #FFFFFF;
  border: 1px solid #E5E5E5;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-group {
  margin-bottom: 14px;
}

.form-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  display: block;
}

.form-input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #E5E5E5;
  background: #FAFAFA;
  font-family: var(--font-main);
  font-size: 14px;
  outline: none;
}

.form-input:focus {
  border-color: var(--aperol-orange);
  background: #FFFFFF;
}

.btn-submit {
  width: 100%;
  padding: 14px;
  border-radius: 14px;
  border: none;
  background: var(--aperol-gradient);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--shadow-btn-xl);
  margin-top: 8px;
}

.toast {
  position: fixed;
  top: calc(75px + env(safe-area-inset-top));
  left: 50%;
  transform: translateX(-50%) translateY(-20px);
  background: #FFFFFF;
  border: 1.5px solid #FFD4C2;
  border-radius: 30px;
  padding: 8px 18px;
  box-shadow: 0 8px 24px rgba(255, 94, 19, 0.15);
  font-weight: 700;
  font-size: 12px;
  color: var(--aperol-orange);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 300;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* STATISTICS DASHBOARD STYLES */
.dash-section-title {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--text-muted);
  margin: 18px 0 10px;
}

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

.hero-card {
  background: #F7F7F8;
  border: 1px solid #EEEEEE;
  border-radius: 16px;
  padding: 16px 14px;
  text-align: center;
}

.hero-icon {
  font-size: 20px;
  margin-bottom: 4px;
}

.hero-val {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.1;
}

.hero-lbl {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 4px;
}

.dash-card {
  background: #F7F7F8;
  border: 1px solid #EEEEEE;
  border-radius: 16px;
  padding: 16px;
}

/* WEEKDAY BAR CHART */
.bar-chart-container {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 120px;
  padding-top: 16px;
  gap: 6px;
}

.bar-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  justify-content: flex-end;
}

.bar-val {
  font-size: 10px;
  font-weight: 700;
  color: var(--aperol-orange);
  margin-bottom: 3px;
}

.bar-fill-wrap {
  width: 100%;
  max-width: 28px;
  height: 75px;
  background: #EFEFEF;
  border-radius: 8px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  position: relative;
}

.bar-fill {
  width: 100%;
  background: var(--aperol-gradient);
  border-radius: 8px;
  transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  min-height: 4px;
}

.bar-lbl {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-muted);
  margin-top: 6px;
}

/* TIME SLOTS GRID */
.time-slots-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.time-slot-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #FFFFFF;
  border: 1px solid #EAEAEA;
  border-radius: 10px;
  padding: 8px 10px;
  font-size: 12px;
}

.time-slot-name {
  font-weight: 600;
  color: var(--text-dark);
}

.time-slot-count {
  font-weight: 800;
  color: var(--aperol-orange);
  background: #FFF0E8;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 11px;
}

/* TOP SPOTS LIST */
.top-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.top-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #FFFFFF;
  border: 1px solid #EAEAEA;
  border-radius: 12px;
  padding: 10px 12px;
}

.top-rank {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--aperol-gradient);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  flex-shrink: 0;
}

.top-info {
  flex: 1;
}

.top-name {
  font-weight: 700;
  font-size: 13px;
  color: var(--text-dark);
}

.top-sub {
  font-size: 11px;
  color: var(--text-muted);
}

.top-count-badge {
  font-size: 12px;
  font-weight: 800;
  color: var(--aperol-orange);
}

/* ==========================================================================
   INTERACTIVE ONBOARDING INTRO TOUR MODAL
   ========================================================================== */
.intro-card {
  position: relative;
  width: 90%;
  max-width: 380px;
  background: #FFFFFF;
  border-radius: 28px;
  padding: 28px 24px;
  box-shadow: 0 24px 60px rgba(255, 94, 19, 0.25);
  border: 1.5px solid rgba(255, 255, 255, 0.9);
  overflow: hidden;
  animation: popIn 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.intro-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #F2F2F7;
  border: none;
  font-size: 20px;
  color: #8E8E93;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s ease, color 0.2s ease;
}

.intro-close-btn:hover {
  background: #E5E5EA;
  color: #1A1A1A;
}

.intro-badge-glow {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 94, 19, 0.18) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
}

.intro-body {
  text-align: center;
  padding: 10px 0 16px;
}

.intro-icon-wrapper {
  width: 80px;
  height: 80px;
  background: #FFF0E8;
  border: 2px solid #FFD4C2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 8px 24px rgba(255, 94, 19, 0.15);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.intro-card:hover .intro-icon-wrapper {
  transform: scale(1.05) rotate(5deg);
}

.intro-icon {
  font-size: 38px;
  line-height: 1;
}

.intro-step-indicator {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--aperol-orange);
  margin-bottom: 6px;
}

.intro-title {
  font-family: var(--font-heading);
  font-size: 21px;
  font-weight: 800;
  color: #1A1A1A;
  margin-bottom: 10px;
  line-height: 1.25;
}

.intro-desc {
  font-size: 13.5px;
  color: #555555;
  line-height: 1.5;
  min-height: 64px;
}

.intro-footer {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 1px solid #F0F0F0;
  padding-top: 18px;
}

.intro-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.intro-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #E5E5EA;
  transition: all 0.3s ease;
}

.intro-dots .dot.active {
  width: 24px;
  border-radius: 10px;
  background: var(--aperol-orange);
}

.intro-actions {
  display: flex;
  gap: 12px;
}

.btn-intro-secondary {
  flex: 1;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid #E5E5EA;
  background: #F9F9F9;
  color: #333;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn-intro-secondary:hover:not(:disabled) {
  background: #F0F0F0;
}

.btn-intro-secondary:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.btn-intro-primary {
  flex: 1.5;
  padding: 12px;
  border-radius: 14px;
  border: none;
  background: var(--aperol-gradient);
  color: #FFFFFF;
  font-weight: 800;
  font-size: 14px;
  box-shadow: 0 6px 16px var(--aperol-glow);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-intro-primary:active {
  transform: scale(0.97);
}


