/* ============================================
   WON Social Wellness Club — Design System
   ============================================ */

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

/* === Tokens === */
:root {
  /* WON brand palette — forest green + copper on cream */
  --primary: #2F493B;
  --primary-light: #3B5A49;
  --primary-pale: #E8EEE9;
  --copper: #B0815E;
  --copper-light: #C28F69;
  --bg: #FAF5F1;
  --surface: #FFFFFF;
  --text: #404347;
  --text-subtle: #8A8580;
  --border: #E5DCD3;
  --white: #FFFFFF;
  --black: #1A1A1A;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 999px;
  --shadow-sm: 0 2px 8px rgba(47, 73, 59, 0.07);
  --shadow-md: 0 4px 20px rgba(47, 73, 59, 0.09);
  --shadow-lg: 0 8px 40px rgba(47, 73, 59, 0.14);
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --nav-height: 72px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === Password Gate === */
.password-gate {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.password-gate-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 40px;
  max-width: 340px;
  width: 100%;
}

.password-gate-logo {
  width: 80px;
  margin-bottom: 8px;
  filter: brightness(0) invert(1);
}

.password-gate-content h2 {
  color: var(--white);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.3px;
}

.password-gate-content>p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  text-align: center;
  line-height: 1.5;
}

.password-input-wrap {
  display: flex;
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-pill);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: border-color 0.3s ease;
}

.password-input-wrap:focus-within {
  border-color: rgba(255, 255, 255, 0.4);
}

.password-input-wrap input {
  flex: 1;
  padding: 14px 20px;
  color: var(--white);
  font-size: 15px;
  background: transparent;
}

.password-input-wrap input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.password-submit {
  width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  opacity: 0.7;
  transition: opacity 0.2s;
}

.password-submit:hover {
  opacity: 1;
}

.password-submit svg {
  width: 20px;
  height: 20px;
}

.password-error {
  color: #ff6b6b;
  font-size: 13px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.password-error.visible {
  opacity: 1;
}

/* === Reset === */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100vh;
  font-family: 'Outfit', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
  overflow: hidden;
  overscroll-behavior: none;
  user-select: none;
  -webkit-user-select: none;
  margin: 0;
  padding: 0;
}

img {
  display: block;
  max-width: 100%;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input {
  font-family: inherit;
  border: none;
  outline: none;
  background: none;
}

a {
  text-decoration: none;
  color: inherit;
}

/* === App Shell === */
.app-shell {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  overflow: hidden;
  overscroll-behavior: none;
  background: var(--bg);
}

/* === Screens === */
.screen {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: none;
  opacity: 0;
  visibility: hidden;
  transform: translateX(20px);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0s 0.4s;
}

.screen.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0s;
}

/* Detail screen: flex layout so footer stays pinned */
#screenDetail {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

#screenDetail .detail-scroll {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

.screen.slide-left {
  transform: translateX(-20px);
}

/* ============================================
   ONBOARDING
   ============================================ */
.onboarding {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  background: var(--black);
  transition: opacity 0.6s ease, visibility 0s 0.6s;
}

.onboarding.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.onboarding-slides {
  display: flex;
  width: 300%;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.onboarding-slide {
  width: calc(100% / 3);
  height: 100%;
  position: relative;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}

.onboarding-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 65%;
  overflow: hidden;
}

.onboarding-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.onboarding-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.onboarding-logo {
  position: absolute;
  top: calc(20px + var(--safe-top));
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: 80px;
  opacity: 0.9;
}

.onboarding-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 42%;
  padding: 32px 28px calc(20px + var(--safe-bottom));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(47, 73, 59, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.onboarding-text h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 12px;
}

.onboarding-text p {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.onboarding-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.onboarding-skip {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  padding: 8px 0;
  transition: color var(--transition);
}

.onboarding-skip:hover {
  color: rgba(255, 255, 255, 0.8);
}

.onboarding-skip.invisible {
  visibility: hidden;
}

.onboarding-dots {
  display: flex;
  gap: 6px;
}

.onboarding-dot {
  width: 24px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.25);
  transition: all var(--transition);
}

.onboarding-dot.active {
  width: 32px;
  background: var(--white);
}

.onboarding-next {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.onboarding-next:active {
  transform: scale(0.92);
}

.onboarding-next svg {
  width: 22px;
  height: 22px;
  color: var(--primary);
}

.onboarding-next.begin {
  width: auto;
  border-radius: var(--radius-pill);
  padding: 0 28px;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
}

/* ============================================
   HEADER
   ============================================ */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: calc(12px + var(--safe-top)) 20px 12px;
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 20;
}

.header-left,
.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.header-icon:active {
  background: var(--surface);
}

.header-icon svg {
  width: 20px;
  height: 20px;
  color: var(--text);
}

.header-logo {
  height: 28px;
  width: auto;
}

.header-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  overflow: hidden;
}

.header-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header-avatar {
  cursor: pointer;
}

/* --- Language Switcher --- */
.lang-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.lang-flag {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lang-dropdown {
  position: fixed;
  top: calc(63px + var(--safe-top));
  right: 72px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  display: none;
  flex-direction: column;
  gap: 4px;
  z-index: 100;
  min-width: 160px;
}

.lang-dropdown.open {
  display: flex;
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  background: transparent;
  cursor: pointer;
  transition: background var(--transition);
}

.lang-option:hover {
  background: var(--bg);
}

.lang-option img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
}

.lang-option span {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}

/* --- Notification Badge --- */
.header-icon {
  position: relative;
}

.notif-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  background: #ef4444;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  border: 2px solid var(--bg);
}

/* --- Notification Backdrop --- */
.notif-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.notif-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

/* --- Notification Panel --- */
.notif-panel {
  position: fixed;
  top: calc(63px + var(--safe-top));
  left: 0;
  right: 0;
  background: var(--bg);
  /* border-bottom: 1px solid var(--border); */
  /* box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12); */
  z-index: 100;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.32, 0.72, 0, 1);
}

.notif-panel.open {
  max-height: 400px;
}

.notif-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px 8px;
}

.notif-panel-header strong {
  font-size: 16px;
  font-weight: 700;
}

.notif-panel-header button {
  font-size: 13px;
  color: var(--primary);
  font-weight: 500;
}

.notif-item {
  display: flex;
  gap: 12px;
  padding: 12px 20px;
  border-top: 1px solid var(--border);
  transition: background var(--transition);
}

.notif-item.unread {
  background: rgba(47, 73, 59, 0.04);
}

.notif-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.notif-icon svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
}

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

.notif-body p {
  font-size: 13px;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 2px;
}

.notif-body span {
  font-size: 11px;
  color: var(--text-subtle);
}

/* --- Onboarding Install Hint --- */
.onboarding-install-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-pill);
  margin-top: 12px;
}

.onboarding-install-hint svg {
  width: 18px;
  height: 18px;
  color: rgba(255, 255, 255, 0.8);
  flex-shrink: 0;
}

.onboarding-install-hint span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   HOME HERO
   ============================================ */
.home-hero {
  position: relative;
  width: calc(100% - 40px);
  margin: 0 20px 0;
  height: 220px;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.home-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(47, 73, 59, 0.85) 0%, rgba(47, 73, 59, 0.3) 50%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.home-hero-content {
  color: var(--white);
}

.home-hero-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 4px;
}

.home-hero-subtitle {
  font-size: 14px;
  font-weight: 300;
  opacity: 0.8;
}

/* === Upcoming Booking Card === */
.home-upcoming {
  padding: 16px 20px 0;
}

.home-upcoming-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: var(--primary);
  border-radius: var(--radius-lg);
  color: var(--white);
  cursor: pointer;
  transition: all var(--transition);
}

.home-upcoming-card:active {
  transform: scale(0.98);
}

.home-upcoming-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.home-upcoming-icon svg {
  width: 22px;
  height: 22px;
  color: var(--white);
}

.home-upcoming-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.home-upcoming-label {
  font-size: 11px;
  font-weight: 400;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.home-upcoming-info strong {
  font-size: 16px;
  font-weight: 600;
}

.home-upcoming-date {
  font-size: 12px;
  opacity: 0.7;
}

.home-upcoming-badge {
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

/* ============================================
   SEARCH SECTION (Home)
   ============================================ */
.search-section {
  padding: 16px 20px 8px;
}

.search-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  margin-bottom: 12px;
  transition: border-color var(--transition);
}

.search-box:focus-within {
  border-color: var(--primary);
}

.search-box svg {
  width: 20px;
  height: 20px;
  color: var(--text-subtle);
  flex-shrink: 0;
}

.search-box input {
  flex: 1;
  font-size: 15px;
  color: var(--text);
}

.search-box input::placeholder {
  color: var(--text-subtle);
}

.search-dates {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}

.search-date {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border);
  font-size: 14px;
  color: var(--text-subtle);
}

.search-date svg {
  width: 18px;
  height: 18px;
}

.btn-primary {
  width: 100%;
  padding: 16px;
  background: var(--primary);
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--radius-lg);
  transition: background var(--transition), transform var(--transition);
}

.btn-primary:active {
  transform: scale(0.98);
  background: var(--primary-light);
}

/* ============================================
   CATEGORIES GRID
   ============================================ */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 20px 16px;
}

.section-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
}

.section-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--primary);
  opacity: 0.7;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 0 20px 16px;
}

.category-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1.3;
  transition: all var(--transition);
}

.category-card:active {
  transform: scale(0.97);
}

.category-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(47, 73, 59, 0.8) 0%, rgba(47, 73, 59, 0.1) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 14px;
}

.category-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* ============================================
   NEARBY SECTION (Horizontal Scroll)
   ============================================ */
.nearby-scroll {
  display: flex;
  gap: 14px;
  padding: 0 20px 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.nearby-scroll::-webkit-scrollbar {
  display: none;
}

.nearby-card {
  flex-shrink: 0;
  width: 200px;
  scroll-snap-align: start;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition);
}

.nearby-card:active {
  transform: scale(0.97);
}

.nearby-card-img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.nearby-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(to top, rgba(47, 73, 59, 0.85), transparent);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.nearby-card-info h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}

.nearby-card-info span {
  font-size: 11px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
}

.nearby-card-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.nearby-card-arrow svg {
  width: 16px;
  height: 16px;
  color: var(--white);
}

/* ============================================
   EXPLORE / LIST SCREEN
   ============================================ */
.explore-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: calc(12px + var(--safe-top)) 20px 12px;
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 20;
}

.explore-back {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.explore-back svg {
  width: 20px;
  height: 20px;
  color: var(--text);
}

.explore-back:active {
  background: var(--surface);
}

.explore-title {
  font-size: 16px;
  font-weight: 600;
}

.explore-filter-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px 16px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.explore-filter-bar::-webkit-scrollbar {
  display: none;
}

.filter-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--surface);
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  font-size: 13px;
  color: var(--text);
  white-space: nowrap;
}

.filter-pill svg {
  width: 14px;
  height: 14px;
  color: var(--text-subtle);
}

.filter-pill.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.filter-pill.active svg {
  color: var(--white);
}

.explore-sort {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px 12px;
}

.explore-sort-tabs {
  display: flex;
  gap: 4px;
}

.sort-tab {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-subtle);
}

.sort-tab.active {
  background: var(--primary);
  color: var(--white);
}

.sort-tab svg {
  width: 18px;
  height: 18px;
}

.sort-label {
  font-size: 13px;
  color: var(--text-subtle);
  display: flex;
  align-items: center;
  gap: 4px;
}

.sort-label strong {
  color: var(--text);
  font-weight: 600;
}

.explore-list {
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-bottom: calc(var(--nav-height) + var(--safe-bottom) + 20px);
}

.explore-card {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all var(--transition);
}

.explore-card:active {
  transform: scale(0.98);
  border-color: var(--primary);
}

.explore-card-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.explore-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 16px;
  min-width: 0;
}

.explore-card-name {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
}

.explore-card-meta {
  font-size: 12px;
  color: var(--text-subtle);
  display: flex;
  align-items: center;
  gap: 6px;
}

.explore-card-meta span {
  white-space: nowrap;
}

.explore-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
}

.explore-card-price {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-subtle);
}

.explore-card-price strong {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}

.explore-card-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
}

.explore-card-rating svg {
  width: 14px;
  height: 14px;
  color: var(--copper);
}

/* ============================================
   DETAIL SCREEN
   ============================================ */
.detail-hero {
  position: relative;
  width: 100%;
  height: 45vh;
  min-height: 320px;
  overflow: hidden;
}

.detail-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), transparent);
  z-index: 5;
}

.detail-hero-actions {
  position: absolute;
  top: calc(12px + var(--safe-top));
  left: 16px;
  right: 16px;
  display: flex;
  justify-content: space-between;
  z-index: 10;
}

.detail-hero-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.detail-hero-btn:active {
  background: rgba(255, 255, 255, 0.4);
}

.detail-hero-btn svg {
  width: 20px;
  height: 20px;
  color: var(--white);
}

.detail-hero-right {
  display: flex;
  gap: 8px;
}

.detail-rating-badge {
  position: absolute;
  bottom: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  background: var(--primary);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  z-index: 5;
}

.detail-rating-badge svg {
  width: 14px;
  height: 14px;
  color: var(--copper);
}

.detail-body {
  padding: 24px 20px;
  padding-bottom: 120px;
}

.detail-name {
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.detail-location {
  font-size: 14px;
  color: var(--primary);
  font-weight: 400;
  margin-bottom: 20px;
  opacity: 0.7;
}

.detail-description-label,
.detail-specs-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.detail-description {
  font-size: 14px;
  color: var(--text-subtle);
  line-height: 1.7;
  margin-bottom: 24px;
}

.detail-show-more {
  color: var(--primary);
  font-weight: 500;
  font-size: 14px;
}

.detail-specs {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.detail-spec {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-subtle);
}

.detail-spec svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
}

.detail-gallery {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.detail-gallery::-webkit-scrollbar {
  display: none;
}

.detail-gallery img {
  width: 80px;
  height: 60px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid transparent;
  transition: border-color var(--transition);
}

.detail-gallery img:first-child {
  border-color: var(--primary);
}

.detail-footer {
  flex-shrink: 0;
  width: 100%;
  padding: 16px 20px calc(16px + var(--safe-bottom));
  background: var(--bg);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 30;
}

.detail-price {
  display: flex;
  flex-direction: column;
}

.detail-price strong {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
}

.detail-price span {
  font-size: 12px;
  color: var(--text-subtle);
}

.btn-book {
  padding: 14px 28px;
  background: var(--primary);
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition);
}

.btn-book:active {
  transform: scale(0.96);
  background: var(--primary-light);
}

.btn-book svg {
  width: 18px;
  height: 18px;
}

/* ============================================
   BOOKINGS SCREEN
   ============================================ */
.bookings-content {
  padding: 0 20px;
  padding-bottom: calc(var(--nav-height) + var(--safe-bottom) + 20px);
}

.bookings-label {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}

.booking-featured {
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  margin-bottom: 32px;
  box-shadow: var(--shadow-md);
}

.booking-featured-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.booking-featured-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(47, 73, 59, 0.9), transparent 80%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.booking-featured-info h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.booking-featured-info span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.booking-featured-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.booking-featured-arrow svg {
  width: 18px;
  height: 18px;
  color: var(--white);
}

.bookings-past-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.booking-past-card {
  display: flex;
  gap: 14px;
  padding: 12px;
  background: var(--bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  align-items: center;
}

.booking-past-img {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-md);
  object-fit: cover;
  flex-shrink: 0;
}

.booking-past-body {
  flex: 1;
}

.booking-past-body h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.booking-past-body .booking-meta {
  font-size: 12px;
  color: var(--text-subtle);
  line-height: 1.5;
}

.booking-past-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.booking-past-arrow svg {
  width: 16px;
  height: 16px;
  color: var(--text);
}

/* ============================================
   BOTTOM NAVIGATION
   ============================================ */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  height: calc(var(--nav-height) + var(--safe-bottom));
  padding-bottom: var(--safe-bottom);
  background: var(--bg);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-around;
  z-index: 40;
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  color: var(--text-subtle);
  transition: color var(--transition);
  position: relative;
}

.nav-item.active {
  color: var(--primary);
}

.nav-item.active::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 3px;
  background: var(--primary);
  border-radius: 0 0 3px 3px;
}

.nav-item svg {
  width: 24px;
  height: 24px;
}

.nav-item span {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* ============================================
   PROFILE SCREEN
   ============================================ */
.profile-content {
  display: flex;
  flex-direction: column;
  padding: 20px 20px 0;
}

/* --- Member Card --- */
.member-card {
  position: relative;
  background: linear-gradient(135deg, #1A2B22 0%, #2F493B 45%, #14201A 100%);
  border-radius: var(--radius-xl);
  padding: 24px;
  color: #fff;
  overflow: hidden;
  margin-bottom: 24px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.member-card-shimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  animation: shimmerSweep 3s ease-in-out infinite;
}

@keyframes shimmerSweep {
  0% {
    left: -100%;
  }

  100% {
    left: 200%;
  }
}

.member-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.member-card-logo {
  height: 24px;
  filter: brightness(0) invert(1);
}

.member-card-tier {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--copper), var(--copper-light), var(--copper));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.member-card-middle {
  margin-bottom: 20px;
}

.member-card-name {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.member-card-id {
  font-size: 12px;
  opacity: 0.5;
  font-family: 'Courier New', monospace;
  letter-spacing: 1.5px;
}

.member-card-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.member-card-qr {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 6px;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.member-card-qr svg {
  width: 36px;
  height: 36px;
  color: var(--primary);
}

.member-card-since {
  font-size: 11px;
  opacity: 0.4;
}

/* --- Wellness Score --- */
.wellness-score-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  margin-bottom: 16px;
}

.wellness-ring {
  position: relative;
  width: 90px;
  height: 90px;
  flex-shrink: 0;
}

.wellness-ring svg {
  width: 100%;
  height: 100%;
}

.wellness-ring-value {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.wellness-ring-value strong {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.wellness-ring-value span {
  font-size: 10px;
  color: var(--text-subtle);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.wellness-stats {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wellness-stat {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.wellness-stat strong {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
}

.wellness-stat span {
  font-size: 12px;
  color: var(--text-subtle);
}

/* --- Wellness Progress Bars --- */
.wellness-bars {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0 0 24px;
}

.wellness-bar-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.wellness-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-subtle);
}

.wellness-bar-label span:last-child {
  font-weight: 600;
  color: var(--text);
}

.wellness-bar-track {
  width: 100%;
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
}

.wellness-bar-fill {
  height: 100%;
  background: var(--primary);
  border-radius: 3px;
  transition: width 0.8s cubic-bezier(0.32, 0.72, 0, 1);
}

/* --- Concierge Center Nav FAB --- */
.nav-center-fab {
  position: relative;
}

.nav-fab-circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -30px;
  box-shadow: 0 4px 16px rgba(47, 73, 59, 0.3);
  transition: all var(--transition);
}

.nav-center-fab:active .nav-fab-circle {
  transform: scale(0.92);
}

.nav-fab-circle svg {
  width: 24px;
  height: 24px;
}

/* --- Concierge Sheet --- */
.concierge-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0s 0.3s;
}

.concierge-overlay.active {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0s;
}

.concierge-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.concierge-sheet {
  position: relative;
  width: 100%;
  max-width: 430px;
  background: var(--bg);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  padding: 12px 20px calc(24px + var(--safe-bottom));
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
}

.concierge-overlay.active .concierge-sheet {
  transform: translateY(0);
}

.concierge-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.concierge-subtitle {
  font-size: 14px;
  color: var(--text-subtle);
  margin-bottom: 20px;
}

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

.concierge-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 10px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.concierge-option:active {
  transform: scale(0.95);
  border-color: var(--primary);
}

.concierge-option-icon {
  width: 26px;
  height: 26px;
  color: var(--primary);
}

.concierge-option-icon svg {
  width: 100%;
  height: 100%;
}

.concierge-option span {
  font-size: 12px;
  font-weight: 500;
  color: var(--text);
  text-align: center;
}

/* --- Concierge Toast --- */
.concierge-toast {
  position: fixed;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  z-index: 300;
  transition: top 0.4s cubic-bezier(0.32, 0.72, 0, 1);
  box-shadow: 0 6px 20px rgba(47, 73, 59, 0.25);
}

.concierge-toast.visible {
  top: calc(20px + var(--safe-top));
}

.concierge-toast svg {
  width: 18px;
  height: 18px;
}

/* --- Profile Menu --- */
.profile-menu {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.profile-menu-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  transition: background var(--transition);
}

.profile-menu-item:active {
  background: var(--surface);
}

.profile-menu-item svg {
  width: 22px;
  height: 22px;
  color: var(--primary);
  flex-shrink: 0;
}

.profile-menu-item span {
  flex: 1;
  font-size: 15px;
  font-weight: 500;
}

.profile-menu-item .menu-arrow {
  width: 18px;
  height: 18px;
  color: var(--text-subtle);
}

/* ============================================
   INSTALL BANNER (PWA)
   ============================================ */
.install-banner {
  position: fixed;
  bottom: calc(24px + var(--safe-bottom));
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 400px;
  background: var(--primary);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 60;
  box-shadow: var(--shadow-lg);
  animation: slideUp 0.5s ease;
  text-align: center;
  border: 2px solid white;
}

.install-banner.visible {
  display: flex;
}

.install-banner-close {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 22px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1;
}

.install-banner-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.install-banner-icon img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

.install-banner-text {
  width: 100%;
}

.install-banner-text h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.install-banner-text p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 10px;
}

.install-steps {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.install-steps span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
}

.install-steps strong {
  color: var(--white);
}

.install-steps svg {
  color: rgba(255, 255, 255, 0.9);
}

@keyframes slideUp {
  from {
    transform: translateX(-50%) translateY(100%);
    opacity: 0;
  }

  to {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
}

/* ============================================
   BOOKING MODAL
   ============================================ */
.booking-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0s 0.3s;
}

.booking-overlay.active {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0s;
}

.booking-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.booking-sheet {
  position: relative;
  width: 100%;
  max-width: 430px;
  max-height: 85vh;
  background: var(--bg);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  padding: 12px 20px calc(20px + var(--safe-bottom));
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.booking-overlay.active .booking-sheet {
  transform: translateY(0);
}

.booking-sheet-handle {
  width: 36px;
  height: 4px;
  border-radius: 2px;
  background: var(--border);
  margin: 0 auto 16px;
}

.booking-sheet-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.booking-sheet-img {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  object-fit: cover;
}

.booking-sheet-info h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}

.booking-sheet-info span {
  font-size: 13px;
  color: var(--text-subtle);
}

.booking-section-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

/* Date Picker */
.booking-dates {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 20px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.booking-dates::-webkit-scrollbar {
  display: none;
}

.booking-date-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 56px;
  padding: 10px 8px;
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: all var(--transition);
}

.booking-date-item.selected {
  color: var(--white) !important;
}

.booking-date-item:active {
  transform: scale(0.95);
  color: var(--white) !important;
}

.booking-date-item.selected {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.booking-date-day {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  opacity: 0.7;
  color: var(--primary);
}

.booking-date-item.selected .booking-date-day {
  opacity: 1;
  color: var(--white) !important;
}

.booking-date-num {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
}

.booking-date-item.selected .booking-date-num {
  color: var(--white);
}

.booking-date-month {
  font-size: 10px;
  font-weight: 500;
  opacity: 0.6;
  color: var(--primary);
}

.booking-date-item.selected .booking-date-month {
  opacity: 0.9;
  color: var(--white);
}

/* Time Slots */
.booking-times {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 24px;
}

.booking-time-item {
  padding: 12px 8px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: all var(--transition);
}

.booking-time-item:active {
  transform: scale(0.95);
}

.booking-time-item.selected {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.booking-time-item.unavailable {
  opacity: 0.35;
  pointer-events: none;
  text-decoration: line-through;
}

/* Confirm Button */
.btn-confirm-booking {
  width: 100%;
  padding: 16px;
  background: var(--primary);
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.btn-confirm-booking:disabled {
  opacity: 0.4;
  pointer-events: none;
}

.btn-confirm-booking:active {
  transform: scale(0.98);
}

/* Success Sheet (slide-up like booking modal) */
.booking-success-screen {
  position: fixed;
  inset: 0;
  z-index: 250;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0s 0.3s;
}

.booking-success-screen.visible {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0s;
}

.booking-success-screen::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.booking-success-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 430px;
  padding: 12px 30px calc(30px + var(--safe-bottom));
  background: var(--bg);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
}

.booking-success-screen.visible .booking-success-content {
  transform: translateY(0);
}

.booking-success-content::before {
  content: '';
  width: 36px;
  height: 4px;
  border-radius: 2px;
  background: var(--border);
  margin-bottom: 24px;
}

.booking-success-check {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  animation: checkPop 0.5s cubic-bezier(0.32, 0.72, 0, 1) 0.2s both;
}

.booking-success-check svg {
  width: 40px;
  height: 40px;
  color: var(--white);
  stroke-dasharray: 30;
  stroke-dashoffset: 30;
  animation: checkDraw 0.4s ease 0.5s forwards;
}

@keyframes checkPop {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  60% {
    transform: scale(1.15);
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes checkDraw {
  to {
    stroke-dashoffset: 0;
  }
}

.booking-success-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.booking-success-subtitle {
  font-size: 14px;
  color: var(--text-subtle);
  margin-bottom: 32px;
}

.booking-success-card {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 16px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  margin-bottom: 32px;
  text-align: left;
}

.booking-success-card-img {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  object-fit: cover;
  flex-shrink: 0;
}

.booking-success-card-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.booking-success-card-info strong {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}

.booking-success-card-info span {
  font-size: 13px;
  color: var(--text-subtle);
}

.btn-back-home {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px;
  background: var(--primary);
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.btn-back-home svg {
  width: 20px;
  height: 20px;
}

.btn-back-home:active {
  transform: scale(0.98);
}

/* ============================================
   UTILITIES
   ============================================ */
.home-scroll-pad {
  padding-bottom: calc(var(--nav-height) + var(--safe-bottom) + 20px);
}

.hidden {
  display: none !important;
}