/* ==========================================================================
   ESMERALDA STYLE - HAUTE LUXURY & HIGH-CONVERTING DESIGN SYSTEM
   Luminous Silk, Alabaster Pearl & Brushed Champagne Gold
   (100% Mobile-First Responsive & Pixel-Perfect on all screens)
   ========================================================================== */

:root {
  /* --- HAUTE LUXURY BRUSHED GOLD PALETTE --- */
  --gold-900: #543b10;
  --gold-800: #6e4e16;
  --gold-700: #8c651e;
  --gold-600: #aa7c28;
  --gold-500: #c59b4c;
  --gold-400: #d8af65;
  --gold-300: #e8c688;
  --gold-200: #f5dfb8;
  --gold-100: #fbf0dc;
  --gold-50:  #fdf8f0;

  --gold-gradient: linear-gradient(135deg, #c59b4c 0%, #aa7c28 100%);
  --gold-gradient-hover: linear-gradient(135deg, #d8af65 0%, #b88a38 100%);
  --gold-gradient-subtle: linear-gradient(135deg, #fdf8f0 0%, #f7eddc 100%);

  /* --- LUMINOUS PURITY & HYGIENE SURFACES --- */
  --bg-page: #f8f6f0;
  --bg-surface: #ffffff;
  --bg-surface-elevated: #ffffff;
  --bg-subtle: #f4efe6;
  --bg-input: #ffffff;

  /* --- CONTRAST & TYPOGRAPHY (Deep Espresso & Warm Slate) --- */
  --text-title: #1a1714;
  --text-main: #332d28;
  --text-secondary: #665d53;
  --text-muted: #94897c;
  --text-white: #ffffff;

  /* --- BORDERS & GLASS --- */
  --border-subtle: #e8e1d5;
  --border-gold: rgba(197, 155, 76, 0.32);
  --border-gold-active: #c59b4c;

  /* --- TRUST & FUNCTIONAL --- */
  --status-available: #059669;
  --whatsapp-green: #25d366;
  --whatsapp-dark: #075e54;
  --google-blue: #1a73e8;

  /* --- SHADOWS --- */
  --shadow-xs: 0 1px 3px rgba(50, 40, 30, 0.04);
  --shadow-sm: 0 3px 12px rgba(50, 40, 30, 0.06);
  --shadow-md: 0 8px 25px rgba(50, 40, 30, 0.08);
  --shadow-lg: 0 16px 45px rgba(50, 40, 30, 0.12);
  --shadow-gold: 0 6px 20px rgba(197, 155, 76, 0.28);
  --shadow-float: 0 -8px 30px rgba(40, 32, 22, 0.1);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;

  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-page);
  color: var(--text-main);
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  background: radial-gradient(circle at 50% 0%, #ffffff 0%, #f9f6f0 55%, #f2ebdf 100%);
  color: var(--text-main);
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
  max-width: 100vw;
  padding-bottom: 140px;
}

/* Background Atmospheric Glows */
.bg-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
}

.bg-glow-1 {
  top: -120px;
  left: 15%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(216, 175, 101, 0.15) 0%, transparent 70%);
  opacity: 0.7;
}

.bg-glow-2 {
  top: 45%;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(197, 155, 76, 0.1) 0%, transparent 70%);
  opacity: 0.6;
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-title);
  font-weight: 700;
  line-height: 1.2;
}

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

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

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

/* App Container */
.app-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 16px;
  overflow-x: hidden;
}

@media (max-width: 640px) {
  .app-container {
    padding: 0 12px;
  }
}

/* ==========================================================================
   HEADER & SALON HERO
   ========================================================================== */
.salon-header {
  padding-top: 20px;
  margin-bottom: 20px;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-full);
  margin-bottom: 18px;
  box-shadow: var(--shadow-sm);
}

.brand-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-500);
  box-shadow: 0 0 10px rgba(197, 155, 76, 0.3);
  flex-shrink: 0;
}

.brand-title-wrap {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-name {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text-title);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand-subtitle {
  font-size: 0.72rem;
  color: var(--gold-700);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.btn-nav-action {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 12px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  background: #ffffff;
  color: var(--text-main);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
  white-space: nowrap;
}

.btn-nav-action:hover {
  background: #fdfaf3;
  border-color: var(--gold-500);
  color: var(--gold-800);
  transform: translateY(-1px);
}

.btn-nav-action.whatsapp {
  background: #f0fdf4;
  border-color: rgba(37, 211, 102, 0.35);
  color: #15803d;
}

.btn-nav-action.whatsapp:hover {
  background: var(--whatsapp-green);
  color: #ffffff;
  border-color: var(--whatsapp-green);
}

@media (max-width: 520px) {
  .btn-nav-action span {
    display: none;
  }
  .btn-nav-action.admin-btn span {
    display: inline;
    font-size: 0.74rem;
  }
}

/* Salon Hero Card */
.hero-card {
  position: relative;
  background: #ffffff;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: 26px 22px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.hero-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 340px;
  height: 100%;
  background: radial-gradient(circle at 100% 0%, rgba(216, 175, 101, 0.16) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
}

@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .hero-card {
    padding: 20px 16px;
  }
}

.hero-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.badge-gold {
  background: #fcf6eb;
  color: var(--gold-800);
  border: 1px solid #ebd4b0;
}

.badge-rating {
  background: #faf6f0;
  color: var(--text-main);
  border: 1px solid var(--border-subtle);
}

.badge-status {
  background: #ecfdf5;
  color: #047857;
  border: 1px solid #a7f3d0;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #10b981;
  box-shadow: 0 0 6px #10b981;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.hero-title {
  font-size: 2.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-title);
  line-height: 1.15;
}

@media (max-width: 640px) {
  .hero-title {
    font-size: 1.65rem;
  }
}

.hero-desc {
  font-size: 0.94rem;
  color: var(--text-secondary);
  max-width: 620px;
  line-height: 1.6;
}

.hero-meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
  font-size: 0.84rem;
  color: var(--text-secondary);
}

.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-meta-item i, .hero-meta-item svg {
  color: var(--gold-600);
  flex-shrink: 0;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
}

.btn-maps-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  background: #ffffff;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-title);
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
  text-align: center;
}

.btn-maps-link:hover {
  background: #fdfaf3;
  border-color: var(--gold-500);
  color: var(--gold-800);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* ==========================================================================
   TRUST & HYGIENE BAR (CONVERSION BOOSTER)
   ========================================================================== */
.trust-features-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 16px;
  margin-bottom: 22px;
  width: 100%;
}

@media (max-width: 820px) {
  .trust-features-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-top: 14px;
    margin-bottom: 18px;
  }
}

@media (max-width: 520px) {
  .trust-features-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    margin-top: 10px;
    margin-bottom: 16px;
  }
  .trust-feat-item {
    padding: 8px 10px;
    gap: 8px;
    border-radius: var(--radius-sm);
  }
  .trust-feat-icon {
    font-size: 1.05rem;
  }
  .trust-feat-text strong {
    font-size: 0.74rem;
  }
  .trust-feat-text span {
    font-size: 0.64rem;
  }
}

.trust-feat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xs);
  min-width: 0;
}

.trust-feat-icon {
  font-size: 1.3rem;
  line-height: 1;
  flex-shrink: 0;
}

.trust-feat-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
}

.trust-feat-text strong {
  font-size: 0.82rem;
  color: var(--text-title);
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.trust-feat-text span {
  font-size: 0.7rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ==========================================================================
   BOOKING FLOW & STEP WIZARD
   ========================================================================== */
.booking-section {
  margin-top: 10px;
  width: 100%;
}

/* Stepper Progress Bar (100% Contained & Non-Clipping on all screen widths) */
.stepper-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 24px;
  width: 100%;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
  position: relative;
  cursor: pointer;
  min-width: 0;
}

@media (max-width: 860px) {
  .stepper-nav {
    gap: 6px;
    margin-bottom: 20px;
  }
  .step-item {
    padding: 10px 4px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    text-align: center;
    border-radius: var(--radius-md);
  }
  .step-number {
    width: 24px;
    height: 24px;
    font-size: 0.72rem;
  }
  .step-text {
    align-items: center;
    width: 100%;
    min-width: 0;
  }
  .step-label {
    font-size: 0.72rem;
    line-height: 1.2;
    white-space: nowrap;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }
  .step-sublabel {
    display: none;
  }
}

@media (max-width: 440px) {
  .stepper-nav {
    gap: 4px;
    margin-bottom: 16px;
  }
  .step-item {
    padding: 8px 2px;
    gap: 2px;
    border-radius: var(--radius-sm);
  }
  .step-number {
    width: 20px;
    height: 20px;
    font-size: 0.68rem;
  }
  .step-label {
    font-size: 0.64rem;
    letter-spacing: -0.01em;
  }
}

.step-item.active {
  background: #fdfaf3;
  border-color: var(--gold-500);
  box-shadow: 0 4px 16px rgba(197, 155, 76, 0.18);
}

.step-item.completed {
  border-color: #ebd4b0;
  background: #fcf8f2;
}

.step-number {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #f0eae0;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: var(--transition);
}

.step-item.active .step-number {
  background: var(--gold-gradient);
  color: #ffffff;
  font-weight: 800;
  box-shadow: 0 2px 10px rgba(197, 155, 76, 0.45);
}

.step-item.completed .step-number {
  background: #ebd4b0;
  color: var(--gold-800);
}

.step-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
}

.step-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-title);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.step-sublabel {
  font-size: 0.7rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Wizard Step Containers */
.step-pane {
  display: none;
  animation: fadeIn 0.3s ease-in-out;
  width: 100%;
  padding-bottom: 70px;
}

.step-pane.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Section Header inside step */
.step-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.step-heading-wrap h2 {
  font-size: 1.45rem;
  color: var(--text-title);
  margin-bottom: 4px;
}

.step-heading-wrap p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* ==========================================================================
   STEP 1: SERVICES & CATEGORIES & SEARCH
   ========================================================================== */
.service-controls {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 22px;
  width: 100%;
}

.service-controls-top {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  width: 100%;
}

.service-controls-top .search-box-wrap {
  flex: 1;
  min-width: 220px;
}

.search-box-wrap {
  position: relative;
  width: 100%;
}

.search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold-600);
  pointer-events: none;
}

.input-search {
  width: 100%;
  padding: 13px 14px 13px 44px;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  color: var(--text-title);
  font-size: 0.92rem;
  outline: none;
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
}

.input-search:focus {
  border-color: var(--gold-500);
  box-shadow: 0 0 14px rgba(197, 155, 76, 0.2);
  background: #ffffff;
}

.view-mode-toggle {
  display: flex;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 4px;
  gap: 4px;
  box-shadow: var(--shadow-xs);
  flex-shrink: 0;
}

.view-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-secondary);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.view-toggle-btn.active {
  background: var(--gold-gradient);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(197, 155, 76, 0.35);
}

@media (max-width: 640px) {
  .service-controls-top {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  .service-controls-top .search-box-wrap {
    width: 100%;
    min-width: 0;
  }
  .view-mode-toggle {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .view-toggle-btn {
    justify-content: center;
    width: 100%;
    padding: 9px 6px;
  }
}

.category-tabs {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.cat-tab {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 16px;
  border-radius: var(--radius-full);
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: 0.84rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
  cursor: pointer;
  user-select: none;
}

.cat-tab:hover {
  color: var(--gold-800);
  border-color: var(--gold-400);
  background: #fdfaf3;
  transform: translateY(-1px);
}

.cat-tab.active {
  background: var(--gold-gradient);
  color: #ffffff;
  font-weight: 800;
  border-color: var(--gold-600);
  box-shadow: 0 4px 15px rgba(197, 155, 76, 0.35);
}

.cat-tab-badge {
  font-size: 0.72rem;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.05);
  color: var(--text-secondary);
  padding: 1px 7px;
  border-radius: var(--radius-full);
  transition: var(--transition);
}

.cat-tab.active .cat-tab-badge {
  background: rgba(255, 255, 255, 0.28);
  color: #ffffff;
}

@media (max-width: 820px) {
  .category-tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    width: 100%;
    overflow-x: visible;
  }
  .cat-tab {
    width: 100%;
    justify-content: center;
    padding: 10px 8px;
    font-size: 0.82rem;
    border-radius: var(--radius-md);
    white-space: normal;
    text-align: center;
  }
  .cat-tab svg {
    flex-shrink: 0;
  }
}

@media (max-width: 440px) {
  .category-tabs {
    gap: 6px;
  }
  .cat-tab {
    padding: 9px 4px;
    font-size: 0.76rem;
    gap: 5px;
    border-radius: var(--radius-sm);
  }
  .cat-tab-name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .cat-tab-badge {
    font-size: 0.68rem;
    padding: 1px 5px;
  }
}

/* Services Grid & Containers */
.services-container {
  display: block;
  width: 100%;
  padding-bottom: 70px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 18px;
  width: 100%;
}

@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

.service-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
  box-shadow: var(--shadow-sm);
  width: 100%;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-400);
  box-shadow: var(--shadow-md);
}

.service-card.has-selected {
  border-color: var(--gold-500);
  box-shadow: 0 0 20px rgba(197, 155, 76, 0.22);
}

.service-img-wrap {
  position: relative;
  width: 100%;
  height: 190px;
  background-color: #f3ede2;
  overflow: hidden;
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.4s ease;
  display: block;
}

.service-card:hover .service-img {
  transform: scale(1.06);
}

.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(26, 23, 20, 0.5) 100%);
  pointer-events: none;
}

.service-category-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  z-index: 3;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--gold-800);
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-xs);
}

.service-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  background: rgba(26, 23, 20, 0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fdf8f0;
  border: 1px solid rgba(197, 155, 76, 0.4);
}

.service-body {
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-title {
  font-size: 1.15rem;
  margin-bottom: 6px;
  font-weight: 700;
  color: var(--text-title);
}

.service-desc {
  font-size: 0.86rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 14px;
  flex: 1;
}

/* Service Options List */
.service-options-list {
  border-top: 1px solid var(--border-subtle);
  padding-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-option-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  background: #faf7f2;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
}

.service-option-row:hover {
  background: #fdfaf3;
  border-color: var(--gold-400);
}

.service-option-row.selected {
  background: #fbf5ea;
  border-color: var(--gold-500);
}

.option-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: transparent;
  flex-shrink: 0;
  margin-right: 10px;
}

.service-option-row.selected .option-check {
  background: var(--gold-gradient);
  border-color: var(--gold-500);
  color: #ffffff;
}

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

.option-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-title);
  white-space: normal;
  line-height: 1.3;
}

.option-duration {
  font-size: 0.74rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

.option-price {
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--gold-800);
  margin-left: 8px;
  flex-shrink: 0;
}

/* ==========================================================================
   KOIBOX ACCORDION VIEW
   ========================================================================== */
.koibox-accordion-container {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  padding-bottom: 70px;
}

.koibox-acc-group {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  width: 100%;
}

.koibox-acc-group.active {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-md);
}

.koibox-acc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  cursor: pointer;
  background: #ffffff;
  border-bottom: 1px solid transparent;
  transition: var(--transition);
  user-select: none;
  gap: 8px;
}

.koibox-acc-group.active .koibox-acc-header {
  border-bottom-color: var(--border-subtle);
  background: #fdfbf7;
}

.koibox-acc-title-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.koibox-acc-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  background: #fbf5ea;
  border: 1px solid var(--gold-400);
  color: var(--gold-700);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.koibox-acc-title {
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--text-title);
  white-space: nowrap;
}

.koibox-acc-badge {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  background: #f3eee5;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.koibox-acc-selected-badge {
  font-size: 0.7rem;
  font-weight: 800;
  color: #ffffff;
  background: var(--gold-gradient);
  padding: 3px 8px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.koibox-acc-chevron {
  width: 22px;
  height: 22px;
  color: var(--text-secondary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.koibox-acc-group.active .koibox-acc-chevron {
  transform: rotate(180deg);
  color: var(--gold-700);
}

.koibox-acc-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #faf8f4;
  width: 100%;
}

.koibox-acc-group:not(.active) .koibox-acc-body {
  display: none;
}

.koibox-service-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: var(--shadow-xs);
  width: 100%;
}

.koibox-service-card.has-selected {
  border-color: var(--gold-500);
}

.koibox-service-top {
  display: flex;
  gap: 14px;
  align-items: center;
}

.koibox-service-thumb {
  width: 68px;
  height: 68px;
  border-radius: var(--radius-md);
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid var(--border-gold);
}

.koibox-service-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
  min-width: 0;
}

.koibox-service-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-title);
  line-height: 1.3;
}

.koibox-service-desc {
  font-size: 0.83rem;
  color: var(--text-secondary);
  line-height: 1.45;
  margin-top: 2px;
}

/* ==========================================================================
   STEP 2: STAFF / ESPECIALISTAS
   ========================================================================== */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
  width: 100%;
}

@media (max-width: 640px) {
  .staff-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.staff-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  width: 100%;
}

.staff-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-400);
  box-shadow: var(--shadow-md);
}

.staff-card.selected {
  background: #fdfaf3;
  border-color: var(--gold-500);
  box-shadow: 0 0 20px rgba(197, 155, 76, 0.22);
}

.staff-avatar-wrap {
  position: relative;
  width: 86px;
  height: 86px;
  margin-bottom: 14px;
}

.staff-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #f0eae0;
  transition: var(--transition);
}

.staff-card.selected .staff-avatar {
  border-color: var(--gold-500);
  box-shadow: 0 0 14px rgba(197, 155, 76, 0.35);
}

.staff-check-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.5);
  transition: var(--transition);
}

.staff-card.selected .staff-check-badge {
  opacity: 1;
  transform: scale(1);
}

.staff-name {
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--text-title);
  margin-bottom: 3px;
}

.staff-role {
  font-size: 0.8rem;
  color: var(--gold-700);
  font-weight: 700;
  margin-bottom: 6px;
}

.staff-bio {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

.staff-category-pill {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  background: #fdf6ea;
  border: 1px solid var(--border-gold);
  color: var(--gold-800);
  margin-bottom: 8px;
}

.staff-card.disabled {
  opacity: 0.52;
  background: #fbf9f5;
  border-color: #e5dfd5;
  cursor: not-allowed;
  filter: grayscale(0.25);
}

.staff-card.disabled:hover {
  transform: none;
  box-shadow: none;
  border-color: #e5dfd5;
}

.staff-card.recommended {
  border-color: var(--gold-400);
  box-shadow: 0 4px 18px rgba(197, 155, 76, 0.18);
}

.staff-tag-status {
  margin-top: 10px;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.74rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.staff-tag-status.eligible {
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.staff-tag-status.disabled {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* ==========================================================================
   STEP 3: CALENDAR & TIME SLOTS
   ========================================================================== */
.calendar-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  width: 100%;
}

@media (max-width: 820px) {
  .calendar-layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.calendar-card, .time-slots-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  width: 100%;
}

@media (max-width: 640px) {
  .calendar-card, .time-slots-card {
    padding: 16px;
  }
}

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

.cal-month-title {
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--text-title);
  text-transform: capitalize;
}

.cal-nav-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f5efe6;
  color: var(--text-title);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.cal-nav-btn:hover {
  background: #ebd4b0;
  color: var(--gold-900);
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  text-align: center;
  width: 100%;
}

.cal-day-header {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  padding: 6px 0;
  text-transform: uppercase;
}

.cal-day-cell {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-title);
  background: #faf8f4;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  min-width: 0;
}

.cal-day-cell:hover:not(.disabled):not(.other-month) {
  background: #fcf5eb;
  border-color: var(--gold-400);
}

.cal-day-cell.selected {
  background: var(--gold-gradient) !important;
  color: #ffffff !important;
  font-weight: 800;
  box-shadow: 0 3px 12px rgba(197, 155, 76, 0.45);
}

.cal-day-cell.today {
  border-color: var(--gold-500);
}

.cal-day-cell.disabled, .cal-day-cell.other-month {
  opacity: 0.25;
  cursor: not-allowed;
  background: transparent;
}

/* Calendar availability indicator */
.cal-dot-indicator {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  margin: 2px auto 0;
  background: #059669;
  box-shadow: 0 0 5px #059669;
}

.cal-dot-indicator.full {
  background: #ef4444;
  box-shadow: 0 0 5px #ef4444;
}

/* Time Slots */
.slots-header {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px;
}

.slots-header h3 {
  font-size: 1.1rem;
  color: var(--text-title);
}

.slots-selected-date {
  font-size: 0.86rem;
  color: var(--gold-800);
  font-weight: 700;
}

.slots-group-title {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin: 12px 0 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(76px, 1fr));
  gap: 6px;
  width: 100%;
}

@media (max-width: 520px) {
  .slots-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }
}

.time-slot-btn {
  padding: 10px 4px;
  border-radius: var(--radius-md);
  background: #faf8f4;
  border: 1px solid var(--border-subtle);
  color: var(--text-title);
  font-size: 0.88rem;
  font-weight: 700;
  text-align: center;
  transition: var(--transition);
}

.time-slot-btn:hover:not(:disabled) {
  background: #fdf8f0;
  border-color: var(--gold-400);
  color: var(--gold-800);
}

.time-slot-btn.selected {
  background: var(--gold-gradient);
  color: #ffffff;
  font-weight: 800;
  border-color: var(--gold-600);
  box-shadow: 0 3px 12px rgba(197, 155, 76, 0.4);
}

.time-slot-btn.occupied {
  opacity: 0.35 !important;
  background: #fef2f2 !important;
  border-color: #fecaca !important;
  color: #ef4444 !important;
  text-decoration: line-through;
  cursor: not-allowed !important;
  pointer-events: none !important;
}

/* ==========================================================================
   STEP 4: CLIENT DETAILS FORM & TICKET
   ========================================================================== */
.form-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 20px;
  width: 100%;
}

@media (max-width: 820px) {
  .form-layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.form-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  width: 100%;
}

@media (max-width: 640px) {
  .form-card {
    padding: 18px 16px;
  }
}

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

.form-label {
  display: block;
  font-size: 0.86rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--text-title);
}

.form-label .req {
  color: var(--gold-700);
}

.form-input, .form-textarea {
  width: 100%;
  padding: 12px 14px;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--text-title);
  font-size: 0.92rem;
  outline: none;
  transition: var(--transition);
  font-family: inherit;
}

.form-input:focus, .form-textarea:focus {
  border-color: var(--gold-500);
  box-shadow: 0 0 14px rgba(197, 155, 76, 0.2);
  background: #ffffff;
}

.form-textarea {
  resize: vertical;
  min-height: 80px;
}

.form-policy-check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-secondary);
  cursor: pointer;
  margin-top: 12px;
}

.form-policy-check input {
  margin-top: 3px;
  accent-color: var(--gold-600);
}

/* Appointment Summary Card inside form */
.ticket-preview-card {
  background: #fdfbf7;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  width: 100%;
}

@media (max-width: 640px) {
  .ticket-preview-card {
    padding: 18px 16px;
  }
}

.ticket-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--border-subtle);
  margin-bottom: 14px;
}

.ticket-brand {
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--text-title);
}

.ticket-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 0.88rem;
  gap: 8px;
}

.ticket-label {
  color: var(--text-muted);
  flex-shrink: 0;
}

.ticket-value {
  color: var(--text-title);
  font-weight: 700;
  text-align: right;
  word-break: break-word;
}

.ticket-services-list {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 10px 12px;
  margin: 8px 0 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ticket-service-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.86rem;
  gap: 8px;
}

.ticket-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 14px;
  border-top: 1px solid var(--border-subtle);
  margin-top: auto;
}

.ticket-total-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold-800);
}

/* ==========================================================================
   STEP 5: CONFIRMATION SUCCESS VIEW
   ========================================================================== */
.success-card {
  max-width: 640px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  width: 100%;
}

.success-icon-wrap {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #fbf5ea;
  border: 2px solid var(--gold-500);
  color: var(--gold-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 18px;
  box-shadow: 0 0 20px rgba(197, 155, 76, 0.25);
  animation: bounceIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes bounceIn {
  0% { transform: scale(0.3); opacity: 0; }
  60% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(1); }
}

.success-title {
  font-size: 1.75rem;
  color: var(--text-title);
  margin-bottom: 6px;
}

.success-subtitle {
  color: var(--text-secondary);
  font-size: 0.92rem;
  margin-bottom: 22px;
}

.confirmation-ticket {
  background: #faf8f4;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 20px;
  text-align: left;
  margin-bottom: 24px;
}

.success-action-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-whatsapp-confirm {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 20px;
  background: var(--whatsapp-green);
  color: #ffffff;
  border-radius: var(--radius-md);
  font-size: 1.02rem;
  font-weight: 800;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-confirm:hover {
  background: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.4);
}

.btn-gcal-confirm {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 18px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1d4ed8;
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  font-weight: 700;
  transition: var(--transition);
}

.btn-gcal-confirm:hover {
  background: var(--google-blue);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-ics-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 14px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: var(--transition);
}

.btn-ics-download:hover {
  color: var(--text-title);
  text-decoration: underline;
}

.btn-reset-booking {
  margin-top: 8px;
  padding: 10px;
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: var(--transition);
}

.btn-reset-booking:hover {
  color: var(--text-title);
}

/* ==========================================================================
   FLOATING BOTTOM BAR (CART / RESUMEN DE RESERVA)
   ========================================================================== */
.floating-booking-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-gold);
  padding: 10px 16px;
  padding-bottom: max(12px, env(safe-area-inset-bottom));
  box-shadow: var(--shadow-float);
  transform: translateY(120%);
  transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.1);
  width: 100%;
}

.floating-booking-bar.visible {
  transform: translateY(0);
}

.floating-bar-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
}

.floating-summary {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.floating-count-badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fbf5ea;
  border: 1.5px solid var(--gold-500);
  color: var(--gold-800);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.92rem;
  flex-shrink: 0;
}

.floating-text-wrap {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.floating-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 700;
}

.floating-total {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--gold-800);
  line-height: 1.1;
}

.floating-duration {
  font-size: 0.78rem;
  color: var(--text-secondary);
}

.floating-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.btn-step-prev {
  padding: 11px 14px;
  border-radius: var(--radius-md);
  background: #f5f0e6;
  border: 1px solid var(--border-subtle);
  color: var(--text-title);
  font-weight: 700;
  font-size: 0.86rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
}

.btn-step-prev:hover {
  background: #ebd4b0;
  color: var(--gold-900);
}

.btn-step-next {
  padding: 11px 20px;
  border-radius: var(--radius-md);
  background: var(--gold-gradient);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: var(--shadow-gold);
  transition: var(--transition);
  white-space: nowrap;
}

.btn-step-next:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(197, 155, 76, 0.45);
}

.btn-step-next:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: none;
}

@media (max-width: 520px) {
  .floating-booking-bar {
    padding: 8px 10px;
    padding-bottom: max(10px, env(safe-area-inset-bottom));
  }
  .floating-summary {
    gap: 6px;
  }
  .floating-count-badge {
    width: 30px;
    height: 30px;
    font-size: 0.82rem;
  }
  .floating-total {
    font-size: 1.05rem;
  }
  .btn-step-next {
    padding: 9px 13px;
    font-size: 0.82rem;
  }
  .btn-step-prev {
    padding: 9px 9px;
    font-size: 0.78rem;
  }
}

/* ==========================================================================
   EXTRA SECTIONS: REVIEWS, SCHEDULE & LOCATION
   ========================================================================== */
.extra-section {
  margin-top: 40px;
  width: 100%;
}

.section-title-wrap {
  text-align: center;
  margin-bottom: 24px;
}

.section-subtitle {
  color: var(--gold-700);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.section-main-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-title);
}

/* Reviews Grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  width: 100%;
}

.review-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xs);
  width: 100%;
}

.review-stars {
  color: var(--gold-500);
  margin-bottom: 10px;
  font-size: 0.92rem;
  letter-spacing: 2px;
}

.review-text {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.55;
  font-style: italic;
  margin-bottom: 14px;
  flex: 1;
}

.review-author-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-subtle);
  padding-top: 10px;
  gap: 8px;
}

.review-author {
  font-weight: 700;
  font-size: 0.86rem;
  color: var(--text-title);
}

.review-service {
  font-size: 0.76rem;
  color: var(--gold-700);
  font-weight: 600;
}

/* Location & Schedule Split */
.info-split-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 20px;
  width: 100%;
}

@media (max-width: 820px) {
  .info-split-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.info-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  width: 100%;
}

.info-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.info-card-header i, .info-card-header svg {
  color: var(--gold-600);
  font-size: 1.25rem;
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
}

.schedule-table tr {
  border-bottom: 1px solid var(--border-subtle);
}

.schedule-table tr:last-child {
  border-bottom: none;
}

.schedule-table td {
  padding: 10px 0;
  font-size: 0.88rem;
}

.schedule-table td:first-child {
  font-weight: 700;
  color: var(--text-title);
}

.schedule-table td:last-child {
  text-align: right;
  color: var(--text-secondary);
}

/* Footer */
.app-footer {
  margin-top: 50px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  width: 100%;
}

.footer-brand {
  font-weight: 700;
  color: var(--text-title);
  margin-bottom: 4px;
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 90vw;
}

.toast {
  padding: 12px 18px;
  background: #ffffff;
  border: 1px solid var(--gold-500);
  border-radius: var(--radius-md);
  color: var(--text-title);
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: var(--shadow-lg);
  animation: slideInRight 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* ==========================================================================
   ADMIN / SALON PIN MODAL
   ========================================================================== */
.admin-btn {
  background: #fbf5ea !important;
  border-color: rgba(197, 155, 76, 0.4) !important;
  color: var(--gold-800) !important;
}

.admin-btn:hover {
  background: #ebd4b0 !important;
  border-color: var(--gold-600) !important;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 23, 20, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  animation: fadeIn 0.25s ease;
}

.modal-card {
  background: #ffffff;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: 26px 20px;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  animation: scaleUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes scaleUp {
  from { transform: scale(0.92); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f3ede2;
  border: 1px solid var(--border-subtle);
  color: var(--text-title);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.modal-close-btn:hover {
  background: #ebd4b0;
  color: var(--gold-900);
}

.pin-modal-card {
  max-width: 340px;
  text-align: center;
}

.pin-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fbf5ea;
  border: 1px solid var(--gold-400);
  color: var(--gold-700);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.modal-title {
  font-size: 1.35rem;
  color: var(--text-title);
  margin-bottom: 4px;
}

.modal-subtitle {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin-bottom: 18px;
}

.pin-display {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 14px;
}

.pin-dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 2px solid var(--border-subtle);
  background: #f3ede2;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.pin-dot.filled {
  background: var(--gold-gradient);
  border-color: var(--gold-600);
  box-shadow: 0 0 10px rgba(197, 155, 76, 0.5);
  transform: scale(1.15);
}

.pin-error-msg {
  color: #dc2626;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 12px;
  animation: shake 0.3s ease;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-6px); }
  75% { transform: translateX(6px); }
}

.pin-keypad {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.pin-key {
  height: 48px;
  border-radius: var(--radius-md);
  background: #faf7f2;
  border: 1px solid var(--border-subtle);
  color: var(--text-title);
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.15s ease;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.pin-key:active {
  background: #ebd4b0;
  border-color: var(--gold-500);
  transform: scale(0.95);
}

.pin-key-action {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.pin-helper-text {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ==========================================================================
   ADMIN DASHBOARD VIEW
   ========================================================================== */
.admin-dashboard-view {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 0%, #ffffff 0%, #f9f6f0 60%, #f3ece0 100%);
  z-index: 9000;
  overflow-y: auto;
  padding: 16px 12px 120px;
  animation: fadeIn 0.3s ease;
}

.admin-container {
  max-width: 860px;
  margin: 0 auto;
  width: 100%;
}

.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-subtle);
}

.admin-header-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.admin-badge-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: #fbf5ea;
  border: 1px solid var(--gold-400);
  color: var(--gold-700);
  display: flex;
  align-items: center;
  justify-content: center;
}

.admin-title {
  font-size: 1.3rem;
  color: var(--text-title);
}

.admin-subtitle {
  font-size: 0.78rem;
  color: var(--text-secondary);
}

.btn-admin-action {
  padding: 8px 14px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.84rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-admin-action.secondary {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  color: var(--text-title);
  box-shadow: var(--shadow-xs);
}

.btn-admin-action.secondary:hover {
  background: #fdfaf3;
  color: var(--gold-800);
}

.btn-admin-primary {
  padding: 9px 18px;
  border-radius: var(--radius-md);
  background: var(--gold-gradient);
  border: none;
  color: #ffffff;
  font-weight: 800;
  font-size: 0.86rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  box-shadow: var(--shadow-gold);
  transition: var(--transition);
}

.btn-admin-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(197, 155, 76, 0.45);
}

/* Date bar */
.admin-date-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 10px 14px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-xs);
}

.admin-date-quick {
  display: flex;
  gap: 6px;
}

.admin-date-btn {
  padding: 7px 14px;
  border-radius: var(--radius-md);
  background: #faf7f2;
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  transition: var(--transition);
}

.admin-date-btn.active {
  background: var(--gold-gradient);
  color: #ffffff;
  border-color: var(--gold-600);
}

.admin-date-picker-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
}

.admin-nav-day-btn {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: #f5f0e6;
  border: 1px solid var(--border-subtle);
  color: var(--text-title);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.admin-date-input {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--text-title);
  padding: 7px 10px;
  font-family: inherit;
  font-size: 0.86rem;
  outline: none;
}

/* Stats Cards */
.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}

@media (max-width: 640px) {
  .admin-stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .admin-stats-grid .admin-stat-card:last-child {
    grid-column: 1 / -1;
  }
}

.admin-stat-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  box-shadow: var(--shadow-xs);
}

.stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 700;
}

.stat-value {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-title);
}

.stat-value.gold {
  color: var(--gold-800);
}

/* Controls Bar */
.admin-controls-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.admin-staff-pills {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding-bottom: 4px;
  -webkit-overflow-scrolling: touch;
}

.staff-filter-pill {
  padding: 6px 12px;
  border-radius: var(--radius-full);
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: var(--shadow-xs);
  cursor: pointer;
  transition: var(--transition);
}

.staff-filter-pill.active {
  background: var(--gold-gradient);
  color: #ffffff;
  border-color: var(--gold-600);
}

/* Timeline Cards */
.admin-timeline {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.admin-appt-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-left: 4px solid var(--gold-500);
  border-radius: var(--radius-lg);
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
}

.admin-appt-card.blocked {
  border-left-color: #ef4444;
  background: #fff8f8;
}

.admin-appt-card.completed {
  border-left-color: #3b82f6;
  opacity: 0.8;
}

.admin-appt-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px;
}

.admin-appt-time {
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--text-title);
  display: flex;
  align-items: center;
  gap: 6px;
}

.admin-appt-duration-badge {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  background: #f3ede2;
  padding: 2px 6px;
  border-radius: var(--radius-sm);
}

.admin-staff-badge {
  font-size: 0.76rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  background: #fbf5ea;
  color: var(--gold-800);
  border: 1px solid var(--gold-400);
}

.admin-appt-client-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.admin-client-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-title);
}

.admin-client-notes {
  font-size: 0.82rem;
  color: var(--text-secondary);
  font-style: italic;
  background: #f7f3eb;
  padding: 5px 8px;
  border-radius: var(--radius-sm);
}

.admin-services-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.admin-service-tag {
  font-size: 0.76rem;
  padding: 3px 8px;
  background: #faf8f4;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-title);
  font-weight: 600;
}

.admin-appt-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--border-subtle);
}

.admin-appt-price {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gold-800);
}

.admin-appt-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.btn-card-action {
  padding: 5px 10px;
  border-radius: var(--radius-md);
  font-size: 0.78rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-card-action.whatsapp {
  background: #f0fdf4;
  border: 1px solid #86efac;
  color: #15803d;
}

.btn-card-action.whatsapp:hover {
  background: var(--whatsapp-green);
  color: #ffffff;
}

.btn-card-action.call {
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  color: #334155;
}

.btn-card-action.call:hover {
  background: #e2e8f0;
}

.btn-card-action.danger {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #dc2626;
}

.btn-card-action.danger:hover {
  background: #dc2626;
  color: #ffffff;
}

.btn-card-action.complete {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #2563eb;
}

.btn-card-action.complete:hover {
  background: #2563eb;
  color: #ffffff;
}

/* Manual Modal */
.manual-modal-card {
  max-width: 500px;
}

.segmented-control {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  background: #f5f0e6;
  padding: 4px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
}

.seg-item {
  text-align: center;
  padding: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
}

.seg-item input {
  display: none;
}

.seg-item.active {
  background: var(--gold-gradient);
  color: #ffffff;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

@media (max-width: 520px) {
  .form-grid-2 {
    grid-template-columns: 1fr;
  }
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 18px;
}

/* ==========================================================================
   ADMIN: SERVICES & PRICES MANAGEMENT MODULE
   ========================================================================== */
.admin-main-nav-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  background: #f4eee3;
  padding: 5px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-gold);
}

.admin-main-tab-btn {
  flex: 1;
  padding: 10px 16px;
  font-size: 0.92rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  border: none;
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
}

.admin-main-tab-btn.active {
  background: var(--gold-gradient);
  color: #ffffff;
  box-shadow: var(--shadow-sm);
}

.admin-catalog-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 14px 18px;
  box-shadow: var(--shadow-xs);
}

.admin-catalog-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.admin-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 16px;
}

@media (max-width: 640px) {
  .admin-services-grid {
    grid-template-columns: 1fr;
  }
}

.admin-catalog-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
  position: relative;
}

.admin-catalog-card:hover {
  border-color: var(--gold-400);
  box-shadow: var(--shadow-md);
}

.admin-catalog-card-header {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.admin-catalog-thumb {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid var(--border-gold);
}

.admin-catalog-info {
  flex: 1;
  min-width: 0;
}

.admin-catalog-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-title);
  line-height: 1.3;
}

.admin-catalog-meta {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.admin-catalog-options-list {
  background: #faf7f2;
  border-radius: var(--radius-md);
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.admin-catalog-opt-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.84rem;
  color: var(--text-main);
  border-bottom: 1px dashed rgba(197, 155, 76, 0.25);
  padding-bottom: 4px;
}

.admin-catalog-opt-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.admin-catalog-opt-price {
  font-weight: 800;
  color: var(--gold-800);
}

.admin-catalog-card-footer {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid var(--border-subtle);
}

.opt-edit-table {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 12px 0;
}

.opt-edit-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr auto;
  gap: 8px;
  align-items: center;
  background: #fbf9f5;
  padding: 8px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
}

@media (max-width: 520px) {
  .opt-edit-row {
    grid-template-columns: 1fr 1fr;
  }
  .opt-edit-row .btn-remove-opt {
    grid-column: 1 / -1;
  }
}

/* ==========================================================================
   PWA (PROGRESSIVE WEB APP) INSTALL BANNER & MODALS
   ========================================================================== */
.pwa-install-banner {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 520px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid var(--gold-400);
  border-radius: var(--radius-lg);
  box-shadow: 0 14px 40px rgba(84, 59, 16, 0.18);
  padding: 12px 16px;
  z-index: 999;
  animation: pwaSlideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes pwaSlideUp {
  from {
    opacity: 0;
    transform: translate(-50%, 25px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

.pwa-banner-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pwa-banner-logo {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid var(--border-gold);
  background: #121217;
  flex-shrink: 0;
}

.pwa-banner-text {
  flex: 1;
  min-width: 0;
}

.pwa-banner-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-title);
  line-height: 1.2;
}

.pwa-banner-text span {
  display: block;
  font-size: 0.76rem;
  color: var(--text-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 2px;
}

.btn-pwa-install {
  background: var(--gold-gradient);
  color: #ffffff;
  border: none;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 9px 15px;
  border-radius: var(--radius-full);
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: var(--shadow-gold);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-pwa-install:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(197, 155, 76, 0.45);
}

.btn-pwa-close {
  background: transparent;
  border: none;
  font-size: 1.3rem;
  line-height: 1;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.btn-pwa-close:hover {
  color: var(--text-title);
}

/* iOS PWA Step Instructions */
.ios-steps-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 18px 0;
}

.ios-step-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fdfaf5;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 12px;
}

.ios-step-num {
  width: 28px;
  height: 28px;
  background: var(--gold-gradient);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.ios-step-text {
  font-size: 0.88rem;
  color: var(--text-main);
  line-height: 1.4;
}

.ios-step-text strong {
  color: var(--gold-800);
}

.ios-step-icon {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  padding: 2px 6px;
  margin: 0 3px;
  font-size: 0.85rem;
}

