/* ═══════════════════════════════════════════════════════════════
   DABA SERVICES — Website Stylesheet
   Brand: Yellow #FFD700 · Black #1A1A1A · White #FFF
   Layout inspired by Booksy.com, adapted for Moroccan marketplace
   ═══════════════════════════════════════════════════════════════ */

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

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --brand-yellow: #FFD700;
  --brand-yellow-hover: #E6C200;
  --brand-yellow-light: #FFF8DC;
  --brand-black: #1A1A1A;
  --brand-black-light: #2D2D2D;
  --bg-primary: #FFFFFF;
  --bg-secondary: #F7F7F7;
  --bg-dark: #1A1A1A;
  --text-primary: #1A1A1A;
  --text-secondary: #6B7280;
  --text-muted: #9CA3AF;
  --text-white: #FFFFFF;
  --border: #E5E7EB;
  --border-light: #F3F4F6;
  --success: #22C55E;
  --warning: #F59E0B;
  --danger: #EF4444;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --container: 1200px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-primary);
}

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

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

button {
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: var(--transition);
}

ul,
ol {
  list-style: none;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* ── Navbar ────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin: 0 auto;
  height: 72px;
  padding: 0 15px;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.lang-switcher {
  position: relative;
}

.btn-lang {
  background: none;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}

.lang-dropdown {
  position: absolute;
  top: 110%;
  right: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  display: none;
  flex-direction: column;
  width: 140px;
  overflow: hidden;
  z-index: 1000;
}

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

.lang-opt {
  padding: 12px 16px;
  background: none;
  border: none;
  text-align: left;
  font-size: 14px;
  font-weight: 600;
  width: 100%;
}

.lang-opt:hover {
  background: var(--bg-secondary);
  color: var(--brand-yellow);
}

/* ── Mobile Nav Toggle ────────────────────────────────────── */
.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  margin: 0 10px 0 0;
  padding: 0;
  z-index: 1001;
}

.mobile-nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--brand-black);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-nav-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ── Mobile Menu Drawer ─────────────────────────────────── */
.mobile-menu-drawer {
  position: fixed;
  inset: 0;
  z-index: 2000;
  visibility: hidden;
  transition: visibility 0.4s;
}

.mobile-menu-drawer.active {
  visibility: visible;
}

.mobile-menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.mobile-menu-drawer.active .mobile-menu-backdrop {
  opacity: 1;
}

.mobile-menu-content {
  position: absolute;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 360px;
  height: 100%;
  background: #fff;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu-drawer.active .mobile-menu-content {
  right: 0;
}

.mobile-menu-header {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #f3f4f6;
}

.mobile-menu-close {
  background: #f3f4f6;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-body {
  flex: 1;
  overflow-y: auto;
  padding: 32px 24px;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-nav-link {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  text-decoration: none;
  transition: color 0.2s;
}

.mobile-nav-link.active {
  color: #FFD700;
}

.mobile-menu-divider {
  height: 1px;
  background: #f3f4f6;
  margin: 10px 0;
}

.mobile-auth-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-lang-section h4 {
  font-size: 14px;
  color: #9CA3AF;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.mobile-lang-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.mobile-lang-opt {
  padding: 10px;
  border-radius: 10px;
  border: 1.5px solid #f3f4f6;
  background: #fff;
  font-size: 13px;
  font-weight: 700;
  color: #4B5563;
  transition: all 0.2s;
}

.mobile-lang-opt.active {
  border-color: #111827;
  background: #111827;
  color: #fff;
}

.mobile-menu-footer {
  padding: 24px;
  border-top: 1px solid #f3f4f6;
  text-align: center;
  color: #9CA3AF;
  font-size: 13px;
}

/* ── Navbar Responsiveness ─────────────────────────────── */
@media (max-width: 1024px) {
  .navbar-actions {
    display: none !important;
  }

  .mobile-nav-toggle {
    display: flex;
  }
}

@media (max-width: 768px) {
  .navbar-search {
    display: none;
  }
}

.navbar-logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 38px;
  width: auto;
}

.logo-img-footer {
  filter: brightness(0) invert(1);
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
}

.navbar-nav a:hover {
  color: var(--text-primary);
}

.navbar-nav a.active {
  color: var(--text-primary);
  font-weight: 600;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-lang {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  background: transparent;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
}

.btn-lang:hover {
  border-color: var(--brand-black);
}

/* Navbar Search */
.navbar-search {
  display: flex;
  align-items: center;
  flex: 1;
  max-width: 580px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-full);
  background: var(--bg-primary);
  margin: 0 24px;
  height: 46px;
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-4px);
}

.navbar.scrolled .navbar-search,
body.is-explore .navbar-search,
body.is-profile-page .navbar-search,
.navbar-search.has-search {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

@media (min-width: 1025px) {
  body.is-business-page .navbar-search,
  body.is-profile-page .navbar-search {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
}

.navbar-search:focus-within {
  border-color: var(--brand-black);
  box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.06);
}

.nav-search-field {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  flex: 1;
  min-width: 0;
}

.nav-search-field:first-child {
  flex: 1.6;
}

.nav-search-field svg {
  flex-shrink: 0;
}

.nav-search-field input {
  border: none;
  outline: none;
  background: transparent;
  font-family: inherit;
  font-size: 14px;
  color: var(--text-primary);
  width: 100%;
  min-width: 0;
}

.nav-search-field input::placeholder {
  color: var(--text-muted);
}

.nav-search-divider {
  width: 1px;
  height: 24px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
  margin:5px 0;
}

.btn-primary {
  background: var(--brand-black);
  color: var(--text-white);
}

.btn-primary:hover {
  background: var(--brand-black-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-yellow {
  background: var(--brand-yellow);
  color: var(--brand-black);
}

.btn-yellow:hover {
  background: var(--brand-yellow-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--brand-black);
}

.btn-white {
  background: white;
  color: var(--brand-black);
}

.btn-white:hover {
  background: var(--bg-secondary);
}

.btn-sm {
  padding: 8px 20px;
  font-size: 13px;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 17px;
}

/* ── Hero Section ──────────────────────────────────────────── */
.hero {
  position: relative;
  margin-top: 72px;
  padding: 80px 0 60px;
  background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 50%, #1A1A1A 100%);
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><radialGradient id="g" cx="50%" cy="0%" r="80%"><stop offset="0%" stop-color="%23FFD700" stop-opacity="0.08"/><stop offset="100%" stop-color="transparent"/></radialGradient></defs><rect fill="url(%23g)" width="100" height="100"/></svg>');
  background-size: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: rgba(255, 215, 0, 0.15);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: var(--radius-full);
  color: var(--brand-yellow);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.explore-hero {
  display: none !important;
}

@media (max-width: 776px) {
  .explore-hero {
    display: flex !important;
    margin-top: 72px;
    padding: 32px 0;
    min-height: auto;
    background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 50%, #1A1A1A 100%);
    border-bottom: 1px solid #222;
  }

  /* Keep the search bar clean on the dark background */
  .explore-hero .hero-search {
    background: #fff;
    border: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: none;
    padding: 8px;
    gap: 8px;
    border-radius: 16px;
  }

  .explore-hero .hero-search input {
    font-size: 16px;
    padding: 12px;
    color: #111;
  }

  .explore-hero .btn-yellow {
    padding: 12px 24px;
    font-size: 15px;
    border-radius: 10px;
  }
}





.hero h1 {
  font-size: 52px;
  font-weight: 900;
  color: var(--text-white);
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero h1 span {
  color: var(--brand-yellow);
}

.hero p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
  line-height: 1.7;
}

/* Hero Search Container */
.hero-search {
  display: flex;
  background: var(--bg-primary);
  border-radius: var(--radius-full);
  padding: 6px;
  align-items: center;
  gap: 4px;
  box-shadow: var(--shadow-xl);
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}

.hero-search-field {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 16px;
  min-width: 0;
}

.hero-search-field.field-what {
  flex: 1.5;
}

.hero-search-field.field-where,
.hero-search-field.field-when {
  flex: 1;
}

.hero-search-divider {
  width: 1px;
  height: 32px;
  background: #e5e7eb;
  flex-shrink: 0;
}

.hero-search-field input {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  padding: 14px 0;
  font-size: 15px;
  font-family: inherit;
  color: var(--text-primary);
  cursor: pointer;
}

.hero-search-field input::placeholder {
  color: var(--text-muted);
}

.hero-search .btn {
  padding: 14px 28px;
  border-radius: var(--radius-full);
  margin: 0;
}

/* Mobile responsive styles for hero search */
@media (max-width: 768px) {
  .hero-search {
    flex-direction: column;
    border-radius: 24px;
    padding: 16px;
    gap: 16px;
    align-items: stretch;
  }
  
  .hero-search-field {
    padding-left: 8px;
    padding-right: 8px;
    border-bottom: 1px solid #f3f4f6;
    padding-bottom: 12px;
  }

  .hero-search-field:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
  }

  .hero-search-divider {
    display: none;
  }

  .hero-search .btn {
    width: 100%;
    margin-top: 8px;
    border-radius: 12px;
  }
}

/* Category nav under hero */
.category-nav {
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 72px;
  z-index: 100;
  margin-top: 72px;
  /* Ensure it clears the navbar when it's the first element */
}

/* On pages with a visible hero, the hero handles the margin */
.hero+.category-nav {
  margin-top: 0;
}

/* explore-hero is only visible on mobile/tablet, so only override there */
@media (max-width: 1024px) {
  .explore-hero+.category-nav {
    margin-top: 0;
  }
}

.category-nav::before,
.category-nav::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
  transition: var(--transition);
  opacity: 0;
}

.category-nav::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-primary), transparent);
}

.category-nav::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-primary), transparent);
}

.category-nav.can-scroll-left::before {
  opacity: 1;
}

.category-nav.can-scroll-right::after {
  opacity: 1;
}

.category-nav-flex {
  display: flex;
  align-items: center;
  gap: 0;
}

.category-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-secondary);
  white-space: nowrap;
  margin-right: 20px;
  padding-right: 20px;
  border-right: 1px solid var(--border);
  height: 24px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.category-nav-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 0;
  overflow-x: auto;
  scrollbar-width: none;
  flex: 1;
  min-width: 0;
}

.category-nav-inner::-webkit-scrollbar {
  display: none;
}

/* Category Nav Carousel Buttons */
.cat-carousel-btn {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.2s;
  color: var(--text-primary);
  margin: 0 4px;
  flex-shrink: 0;
  outline: none;
}
.cat-carousel-btn:hover {
  background: #f3f4f6;
  border-color: #d1d5db;
}
.cat-carousel-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.cat-carousel-btn.prev {
  margin-right: 20px;
}
.cat-carousel-btn.next {
  margin-left: 20px;
}

.category-chip {
  display: flex;
  align-items: center;
  padding: 10px 24px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border);
  background: var(--bg-primary);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  cursor: pointer;
  transition: var(--transition);
}

.category-chip:hover {
  border-color: var(--brand-black);
  background: var(--bg-secondary);
}

.category-chip.active {
  background: var(--brand-black);
  color: var(--text-white);
  border-color: var(--brand-black);
}

/* ── Section Base ──────────────────────────────────────────── */
.section {
  padding: 80px 0;
}

.section-gray {
  background: var(--bg-secondary);
}

.section-dark {
  background: var(--bg-dark);
  color: var(--text-white);
}

.section-header {
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
}

.section-header p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-top: 8px;
}

.section-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.section-header-row h2 {
  font-size: 28px;
  font-weight: 800;
}

.see-all {
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-black);
  display: flex;
  align-items: center;
  gap: 4px;
}

.see-all:hover {
  color: var(--brand-yellow-hover);
  gap: 8px;
}

/* ── Recommended / Business Cards ──────────────────────────── */
.recommended-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 16px;
  scrollbar-width: none;
}

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

.business-card {
  flex: 0 0 calc((100% - 40px) / 3);
  min-width: 320px;
  border-radius: 28px;
  overflow: hidden;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

/* Tablet: 2 cards */
@media (max-width: 1024px) {
  .business-card {
    flex: 0 0 calc((100% - 20px) / 2);
    min-width: 280px;
  }
}

/* Mobile: 1 card with peek */
@media (max-width: 640px) {
  .business-card {
    flex: 0 0 85%;
    min-width: 280px;
  }

  .card-title {
    font-size: 18px;
  }
}

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

.card-image-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  position: relative;
  background-size: cover;
  background-position: center;
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.card-avatar {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: #fff;
}

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

.card-ad-badge {
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 8px;
  letter-spacing: 1px;
}

.card-close {
  margin-left: auto;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-info {
  color: #fff;
}

.card-title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 4px;
  line-height: 1.2;
}

.card-desc {
  font-size: 14px;
  opacity: 0.9;
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cta-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.cta-card {
  border-radius: 40px;
  padding: 40px 40px 0 40px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

.cta-card:hover {
  transform: translateY(-8px);
}

.cta-card-client {
  background: #FFD700;
}

.cta-card-worker {
  background: #1A1A1A;
}

.cta-card-worker .cta-app-icon {
  background: #FFD700;
  color: #1A1A1A;
}

.cta-app-label {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.cta-card-worker .cta-app-label {
  color: #FFD700;
}

.cta-card-content {
  text-align: center;
  max-width: 440px;
  margin: 0 auto;
  z-index: 1;
}

.cta-card-content h3 {
  font-size: 36px;
  font-weight: 800;
  color: #222;
  margin-bottom: 24px;
  line-height: 1.2;
}

.cta-card-content p {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 32px;
}

.cta-card-content strong {
  color: #222;
  font-weight: 800;
}

.cta-card-worker .cta-card-content h3 {
  color: #FFD700;
}

.cta-card-worker .cta-card-content p {
  color: rgba(255, 255, 255, 0.7);
}

.cta-card-worker .cta-card-content strong {
  color: #FFD700;
}

/* Phone input row */
.cta-input-row {
  display: flex;
  background: #fff;
  border-radius: 12px;
  padding: 6px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
}

.phone-input-group {
  display: flex;
  align-items: center;
  flex: 1;
  padding: 0 16px;
  gap: 12px;
}

.phone-input-group .flag {
  font-size: 14px;
  font-weight: 700;
  color: #222;
  white-space: nowrap;
}

.phone-input-group input {
  border: none;
  outline: none;
  font-size: 16px;
  width: 100%;
  color: #222;
}

.btn-download {
  background: #1a1a1a;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-download:hover {
  background: #000;
  transform: scale(1.05);
}

.btn-grow {
  background: #222;
  color: #fff;
  border: none;
  padding: 18px 36px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: 40px;
}

.btn-grow:hover {
  background: #000;
  transform: scale(1.05);
}

.cta-card-worker .btn-grow {
  background: #FFD700;
  color: #1A1A1A;
}

.cta-card-worker .btn-grow:hover {
  background: #E6C200;
}

.cta-card-visual {
  margin-top: auto;
  display: flex;
  justify-content: center;
  position: relative;
}

.cta-card-visual img {
  max-width: 100%;
  height: auto;
  border-radius: 20px 20px 0 0;
  display: block;
}

@media (max-width: 1024px) {
  .cta-duo {
    grid-template-columns: 1fr;
  }

  .cta-card-content h3 {
    font-size: 28px;
  }
}

.card-footer {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-top: 1px solid var(--border);
}

.card-brand {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
}

.card-btn {
  background: #2d2d2d;
  color: #fff;
  padding: 10px 24px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 700;
  transition: var(--transition);
}

.card-btn:hover {
  background: #000;
  transform: scale(1.05);
}

.tag {
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 500;
  background: var(--bg-secondary);
  color: var(--text-secondary);
}

.tag-yellow {
  background: var(--brand-yellow-light);
  color: #92400E;
}



/* ── Feature Sections (alternating text+image) ─────────────── */


/* ── Special Offers Carousel ───────────────────────────────── */
.offers-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: none;
}

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

.offer-card {
  min-width: 320px;
  border-radius: var(--radius-lg);
  border: 2px solid var(--brand-yellow);
  overflow: hidden;
  background: var(--bg-primary);
  transition: var(--transition);
}

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

.offer-card-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  background: var(--bg-secondary);
}

.offer-card-body {
  padding: 16px;
}

.offer-badges {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}

.badge {
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-flash {
  background: #FEF3C7;
  color: #92400E;
  border: 1px solid #FDE68A;
}

.badge-discount {
  background: var(--brand-yellow);
  color: var(--brand-black);
}

.offer-card-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.offer-card-price {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.offer-card-price .old {
  text-decoration: line-through;
  margin-right: 8px;
}

.offer-card-price .new {
  color: var(--brand-black);
  font-weight: 700;
}

.offer-card-business {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.offer-card-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--bg-secondary);
}

.offer-card-biz-name {
  font-size: 13px;
  font-weight: 600;
}

.offer-card-biz-rating {
  font-size: 12px;
  color: var(--text-muted);
}

.offer-card-biz-rating .star {
  color: var(--brand-yellow);
}

/* ── Special Offer Cards (Dark Theme) ──────────────────────── */
.special-offer-card {
  flex: 0 0 calc((100% - 40px) / 3);
  min-width: 320px;
  border-radius: 20px;
  overflow: hidden;
  background: #1A1A1A;
  color: #fff;
  transition: var(--transition);
}

.special-offer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 215, 0, 0.3);
}

.special-card-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  position: relative;
}

.special-rating-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  padding: 6px 12px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  display: table;
  align-items: center;
  gap: 6px;
}

.special-rating-badge .star {
  color: #FFD700;
}

.special-rating-badge .count {
  font-weight: 400;
  opacity: 0.7;
  font-size: 12px;
}

.special-card-body {
  padding: 20px;
}

.special-badges {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}

.s-badge {
  padding: 5px 12px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.s-badge-outline {
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.8);
  background: transparent;
}

.s-badge-solid {
  background: #FFD700;
  color: #1A1A1A;
  border: none;
}

.special-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.special-title {
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.s-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #FFD700;
  flex-shrink: 0;
}

.special-price {
  font-size: 16px;
  font-weight: 700;
  color: #FFD700;
  white-space: nowrap;
}

.special-location {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 10px;
}

.special-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.s-tag {
  padding: 4px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}

.special-sep {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 0 0 14px;
}

.special-provider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.s-provider-logo {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  object-fit: cover;
}

.s-provider-info {
  flex: 1;
}

.s-provider-name {
  font-size: 14px;
  font-weight: 700;
}

.s-provider-rating {
  font-size: 12px;
  color: #FFD700;
}

.s-provider-rating .count {
  color: rgba(255, 255, 255, 0.4);
}

.s-provider-price-small {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
}

.special-book-btn {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 12px;
  background: #FFD700;
  color: #1A1A1A;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: var(--transition);
}

.special-book-btn:hover {
  background: #E6C200;
  transform: scale(1.02);
}

/* ── Rate and Review ───────────────────────────────────────── */
.reviews-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 20px;
  scrollbar-width: none;
}

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

.review-card {
  flex: 0 0 calc(50% - 10px);
  background: #fff;
  border: 1px solid #EBEBEB;
  border-radius: 32px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: var(--transition);
  cursor: pointer;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

/* Carousel Navigation */
.carousel-container {
  position: relative;
}

.carousel-nav {
  display: flex;
  gap: 12px;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #EBEBEB;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #000;
  cursor: pointer;
  transition: var(--transition);
}

.carousel-btn:hover {
  background: var(--brand-yellow);
  border-color: var(--brand-yellow);
}

.carousel-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.review-card-header {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.review-biz-img {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  object-fit: cover;
}

.review-info {
  flex: 1;
}

.review-biz-name {
  font-size: 22px;
  font-weight: 800;
  color: #000;
  margin-bottom: 4px;
}

.review-service-name {
  font-size: 18px;
  color: #666;
  margin-bottom: 4px;
}

.review-date {
  font-size: 16px;
  color: #999;
}

.review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
}

.review-stars span {
  font-size: 20px;
  color: #FFD700;
}

.review-tap-to-rate {
  text-align: right;
  font-size: 18px;
  font-weight: 700;
  color: #FFD700;
  display: block;
}

.review-comment {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
  margin: 0 0 16px;
}

.review-client {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid #f0f0f0;
}

.review-client-img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}

.review-client-name {
  font-size: 13px;
  font-weight: 600;
  color: #444;
}



/* ── Recommended Section (High Fidelity) ─────────────────── */
.rec-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 20px;
  scrollbar-width: none;
}

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

.rec-card {
  flex: 0 0 calc((100% - 40px) / 3);
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid #EBEBEB;
  transition: var(--transition);
}

/* Tablet: 2 elements */
@media (max-width: 1024px) {
  .rec-card {
    flex: 0 0 calc((100% - 20px) / 2);
  }
}

/* Mobile: 1 element with peek */
@media (max-width: 640px) {
  .rec-card {
    flex: 0 0 85%;
  }

  .rec-card-hero {
    height: 180px;
  }

  .rec-thumb {
    height: 60px;
  }

  .rec-biz-name {
    font-size: 18px;
  }
}

.rec-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.rec-card-hero {
  height: 240px;
  position: relative;
  background-size: cover;
  background-position: center;
}

.rec-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  padding: 6px 12px;
  border-radius: 12px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}

.rec-badge .star {
  color: #FFD700;
}

.rec-badge .reviews {
  font-weight: 400;
  opacity: 0.8;
  font-size: 13px;
}

.rec-save-btn {
  position: absolute;
  bottom: 12px;
  top: auto;
  right: 12px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s;
  z-index: 2;
  cursor: pointer;
}

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

.rec-thumb {
  height: 80px;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
}

.rec-card-body {
  padding: 15px 20px 20px;
}

.rec-biz-name {
  font-size: 20px;
  font-weight: 800;
  color: #000;
  margin-bottom: 4px;
}

.rec-location {
  font-size: 15px;
  color: #999;
  margin-bottom: 16px;
}

.rec-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.rec-distance {
  font-size: 16px;
  font-weight: 700;
  color: #666;
}

.rec-price {
  font-size: 16px;
  font-weight: 700;
  color: #000;
}


/* ── Footer ────────────────────────────────────────────────── */
.footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 32px;
  border-top: 3px solid var(--brand-yellow);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .navbar-logo {
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.8;
  max-width: 300px;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  padding: 6px 0;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--brand-yellow);
  padding-left: 4px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  padding: 0;
}

.footer-social a:hover {
  background: var(--brand-yellow);
  color: var(--brand-black);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links a:hover {
  color: var(--brand-yellow);
}

/* ── Loading Skeleton ──────────────────────────────────────── */
.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

/* ── Animations ────────────────────────────────────────────── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
}

.animate-delay-1 {
  animation-delay: 0.1s;
}

.animate-delay-2 {
  animation-delay: 0.2s;
}

.animate-delay-3 {
  animation-delay: 0.3s;
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 40px;
  }

  .cta-duo {
    grid-template-columns: 1fr;
  }

  .feature-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .feature-split.reverse {
    direction: ltr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cities-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .navbar-nav {
    display: none;
  }

  .navbar-search {
    display: none;
  }

  .hero {
    padding: 60px 0 40px;
    min-height: 20px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 15px;
  }

  .hero-search {
    flex-direction: column;
  }

  .hero-search .btn {
    width: 100%;
  }

  .section {
    padding: 60px 0;
  }

  .section-header-row h2 {
    font-size: 22px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .app-cta {
    flex-direction: column;
    padding: 40px 24px;
    text-align: center;
  }

  .store-buttons {
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .cities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-text h2 {
    font-size: 28px;
  }

  .cta-card {
    min-height: 280px;
    padding: 28px;
  }

  .cta-card h3 {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 28px;
  }

  .business-card {
    min-width: 320px;
    max-width: 250px;
  }

  .offer-card {
    min-width: 280px;
  }
}

/* ── Special Offers Section (Dark Cards Override) ─────────── */
#specialOffersSection {
  background: #fff;
}

.special-offer-card {
  flex: 0 0 calc((100% - 40px) / 3);
  min-width: 320px;
  border-radius: 28px;
  overflow: hidden;
  background: #1A1A1A;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.special-offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.special-card-image {
  height: 220px;
  position: relative;
  background-size: cover;
  background-position: center;
}

.special-rating-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: 6px 14px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
}

.special-rating-badge .star {
  color: #FFD700;
  margin-right: 4px;
}

.special-rating-badge .count {
  opacity: 0.7;
  font-weight: 400;
  margin-left: 4px;
}

.special-card-body {
  padding: 20px;
}

.special-badges {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}

.s-badge {
  font-size: 11px;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 10px;
  letter-spacing: 0.5px;
}

.s-badge-outline {
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.8);
  background: transparent;
}

.s-badge-solid {
  background: #FFD700;
  color: #1A1A1A;
}

.special-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}

.special-title {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.special-title .s-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FFD700;
  flex-shrink: 0;
}

.special-price {
  font-size: 16px;
  font-weight: 700;
  color: #FFD700;
}

.special-location {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  margin-bottom: 12px;
}

.special-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.special-tags .s-tag {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px 12px;
  border-radius: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

.special-sep {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 0 0 16px 0;
}

.special-provider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.s-provider-logo {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: cover;
}

.s-provider-info {
  flex: 1;
}

.s-provider-name {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.s-provider-rating {
  font-size: 13px;
  font-weight: 700;
  color: #FFD700;
}

.s-provider-rating .count {
  color: rgba(255, 255, 255, 0.4);
  font-weight: 400;
  margin-left: 2px;
}

.s-provider-price-small {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.06);
  padding: 8px 12px;
  border-radius: 10px;
}

.special-book-btn {
  width: 100%;
  background: #FFD700;
  color: #1A1A1A;
  border: none;
  padding: 14px;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition: var(--transition);
}

.special-book-btn:hover {
  background: #E6C200;
  transform: scale(1.02);
}

/* Mobile Adjustments for Carousel */
@media (max-width: 768px) {
  .review-card {
    flex: 0 0 85%;
  }

  .carousel-nav {
    display: none;
    /* Hide arrows on mobile, let users swipe */
  }
}

/* ── Search Modal ────────────────────────────────────────── */
.search-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: none;
  /* Shown via JS */
  align-items: center;
  justify-content: center;
}

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

.search-modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
}

.search-modal-content {
  position: relative;
  width: 100%;
  max-width: 650px;
  background: #fff;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  animation: modalIn 0.3s ease-out;
}

@keyframes modalIn {
  from {
    transform: translateY(20px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-header {
  padding: 24px 32px;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  gap: 20px;
}

.modal-close {
  background: #f5f5f5;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
}

.modal-body {
  padding: 32px;
  max-height: 70vh;
  overflow-y: auto;
}

.modal-search-group {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #f8f9fa;
  padding: 24px;
  border-radius: 20px;
  margin-bottom: 32px;
}

.m-search-field label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #666;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.m-input-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid #eee;
}

.m-input-wrapper input {
  border: none;
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  outline: none;
}

.modal-section {
  margin-bottom: 32px;
}

.modal-section h3 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 16px;
}

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

.m-cat-item {
  background: #fff;
  border: 1px solid #eee;
  padding: 16px;
  border-radius: 16px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s;
}

.m-cat-item span {
  display: block;
  font-size: 24px;
  margin-bottom: 4px;
}

.m-cat-item:hover {
  border-color: var(--brand-yellow);
  background: var(--brand-yellow-light);
}

.modal-locations-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.m-loc-btn {
  padding: 10px 20px;
  border-radius: 12px;
  background: #f5f5f5;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.m-loc-btn:hover {
  border-color: var(--brand-yellow);
  background: var(--brand-yellow-light);
}

.modal-footer {
  padding: 24px 32px;
  border-top: 1px solid #eee;
}

.btn-full {
  width: 100%;
  padding: 16px;
  font-size: 16px;
}

/* Mobile Adjustments for Modal */
@media (max-width: 650px) {
  .search-modal-content {
    height: 100%;
    border-radius: 0;
    max-width: none;
  }

  .modal-body {
    max-height: calc(100vh - 160px);
  }

  .modal-categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── Flatpickr Custom Theme ──────────────────────────────── */
.flatpickr-calendar {
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid #eee;
}

.flatpickr-day.selected,
.flatpickr-day.selected:hover {
  background: var(--brand-yellow) !important;
  border-color: var(--brand-yellow) !important;
  color: #1A1A1A !important;
}

.flatpickr-months .flatpickr-month {
  background: #fff;
  color: #1A1A1A;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
  font-weight: 700;
}

.flatpickr-day.today {
  border-color: var(--brand-yellow);
}

.flatpickr-day:hover {
  background: #f5f5f5;
}

/* ── Modal Suggestions List ────────────────────────────── */
.m-suggestions-list {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border: 1px solid #eee;
  margin-top: 8px;
  max-height: 200px;
  overflow-y: auto;
  z-index: 10001;
  display: none;
}

.suggestion-item {
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  transition: 0.2s;
}

.suggestion-item:hover {
  background: var(--brand-yellow-light);
  color: #000;
}

/* ── Language Switcher ──────────────────────────────────── */
.lang-switcher {
  position: relative;
  display: inline-block;
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border: 1px solid #eee;
  min-width: 140px;
  padding: 8px;
  display: none;
  /* Shown via active class */
  z-index: 1000;
  animation: dropdownFade 0.2s ease-out;
}

.lang-dropdown.active {
  display: block;
}

@keyframes dropdownFade {
  from {
    transform: translateY(10px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.lang-opt {
  display: block;
  width: 100%;
  padding: 10px 14px;
  text-align: left;
  background: none;
  border: none;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.2s;
}

.lang-opt:hover {
  background: #f8f9fa;
  color: var(--brand-yellow-dark);
}

/* Arabic RTL support helper */
[dir="rtl"] .lang-dropdown {
  left: 0;
  right: auto;
}

[dir="rtl"] .lang-opt {
  text-align: right;
}

/* ── Auth Modal ─────────────────────────────────────────── */
.auth-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
}

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

.auth-modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
}

.auth-modal-content {
  position: relative;
  width: 100%;
  max-width: 440px;
  background: #fff;
  border-radius: 32px;
  padding: 32px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  animation: modalIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.auth-modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  font-size: 20px;
  color: #9CA3AF;
  cursor: pointer;
  z-index: 10;
}

.auth-tabs {
  display: flex;
  background: #f5f5f5;
  padding: 6px;
  border-radius: 20px;
  margin-bottom: 32px;
}

.auth-tab {
  flex: 1;
  padding: 14px;
  border: none;
  background: none;
  font-size: 16px;
  font-weight: 700;
  color: #9CA3AF;
  border-radius: 16px;
  cursor: pointer;
  transition: 0.2s;
}

.auth-tab.active {
  background: #fff;
  color: #1A1A1A;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.auth-body {
  padding: 0 4px 20px 4px;
  /* Added 20px bottom padding */
  max-height: 60vh;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #eee transparent;
}

.auth-body::-webkit-scrollbar {
  width: 6px;
}

.auth-body::-webkit-scrollbar-thumb {
  background: #eee;
  border-radius: 10px;
}

.auth-section-label {
  font-size: 13px;
  font-weight: 800;
  color: #9CA3AF;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.auth-role-selector {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
}

.role-opt {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  border: 1.5px solid #eee;
  border-radius: 18px;
  font-size: 16px;
  font-weight: 700;
  color: #9CA3AF;
  cursor: pointer;
  transition: 0.2s;
}

.role-opt.active {
  border-color: #1A1A1A;
  background: #FFFBED;
  color: #1A1A1A;
  box-shadow: 0 0 0 1px #1A1A1A;
}

.role-opt svg {
  stroke: currentColor;
}

.role-desc {
  font-size: 14px;
  color: #9CA3AF;
  margin-bottom: 32px;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.auth-field label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #9CA3AF;
  margin-bottom: 10px;
}

.phone-input-wrapper,
.pass-input-wrapper,
.m-input-wrapper-v2 {
  display: flex;
  align-items: center;
  background: #f9f9f9;
  border: 1.5px solid #eee;
  border-radius: 20px;
  padding: 4px 20px;
  height: 64px;
  transition: 0.2s;
}

.phone-input-wrapper:focus-within,
.pass-input-wrapper:focus-within,
.m-input-wrapper-v2:focus-within {
  border-color: #FFD700;
  background: #fff;
}

.phone-country {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-right: 16px;
  border-right: 1px solid #eee;
  margin-right: 16px;
}

.phone-country img {
  width: 24px;
  border-radius: 4px;
}

.phone-country span {
  font-size: 16px;
  font-weight: 700;
  color: #1A1A1A;
}

.auth-field input {
  border: none;
  background: none;
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  color: #1A1A1A;
  outline: none;
}

.auth-field input::placeholder {
  color: #D1D5DB;
}

.pass-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
}

.btn-auth-submit {
  background: #1A1A1A;
  color: #FFD700;
  border: none;
  border-radius: 20px;
  height: 64px;
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  margin-top: 12px;
  transition: 0.2s;
  padding: 20px;
}

.btn-auth-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.auth-footer {
  text-align: center;
  margin-top: 24px;
}

.forgot-link:hover {
  text-decoration: underline;
}

/* ── Explore Page ────────────────────────────────────────── */
.explore-page {
  padding: 50px 0 64px;
  /* Space for fixed navbar */
  min-height: 100vh;
  background: #fcfcfc;
}

@media (max-width: 768px) {
  .explore-page {
    padding: 0 0 64px;
  }
}

.explore-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid #eee;
}

.explore-info h1 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 4px;
}

.explore-info p {
  color: #666;
  font-size: 16px;
}

.explore-sort {
  display: flex;
  align-items: center;
  gap: 12px;
}

.explore-sort span {
  font-size: 14px;
  font-weight: 600;
  color: #666;
}

.explore-sort select {
  padding: 10px 16px;
  border: 1px solid #ddd;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  outline: none;
  background: #fff;
}

.explore-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
}

/* Sidebar Filters */
.explore-sidebar {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 24px;
  padding: 24px;
  position: sticky;
  top: 100px;
  height: fit-content;
}

.filter-group {
  margin-bottom: 32px;
}

.filter-group h4 {
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #999;
}

.filter-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.filter-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: #1A1A1A;
  cursor: pointer;
}

.filter-item input {
  width: 18px;
  height: 18px;
  accent-color: var(--brand-yellow);
}

.price-inputs {
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-inputs input {
  width: 100%;
  padding: 12px;
  border: 1px solid #eee;
  border-radius: 12px;
  font-size: 14px;
  background: #f9f9f9;
}

/* Results Grid */
.results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.explore-pagination {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}

/* Responsive Explore */
@media (max-width: 1024px) {
  .explore-layout {
    grid-template-columns: 1fr;
  }

  .explore-sidebar {
    display: none;
  }

  .results-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .explore-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .results-grid {
    grid-template-columns: 1fr;
  }
}

.explore-results .business-card {
  flex: none;
  min-width: 0;
  width: 100%;
}

/* Mobile Adjustments */
@media (max-width: 480px) {
  .auth-modal-content {
    height: 100%;
    max-width: none;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

.explore-search-trigger {
  max-width: 700px;
  margin: 0 auto 48px;
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 20px;
  padding: 8px 8px 8px 24px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: 0.3s;
}

.explore-search-trigger:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.explore-search-trigger input {
  flex: 1;
  border: none;
  outline: none;
  padding: 12px;
  font-size: 16px;
  background: transparent;
  cursor: pointer;
  color: #1A1A1A;
}

.explore-search-trigger .btn {
  padding: 12px 32px;
  border-radius: 14px;
}

@media (max-width: 640px) {
  .explore-search-trigger {
    padding: 6px 6px 6px 16px;
    margin-bottom: 32px;
  }

  .explore-search-trigger input {
    font-size: 14px;
  }

  .explore-search-trigger .btn {
    padding: 10px 20px;
  }
}

/* ── Explore Results Header ────────────────────────────── */
.explore-results-header {
  margin-bottom: 40px;
  padding-top: 40px;
}

.erh-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 48px;
}

.erh-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-filter {
  background: #f3f3f3;
  border: 1px solid #eee;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #1A1A1A;
  transition: 0.2s;
}

.btn-filter:hover {
  background: #e9e9e9;
}

.erh-sort {
  background: #f3f3f3;
  border: 1px solid #eee;
  padding: 0 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  height: 42px;
}

.erh-sort span {
  font-size: 13px;
  color: #666;
  white-space: nowrap;
}

.erh-select-wrapper select {
  background: transparent;
  border: none;
  font-size: 14px;
  font-weight: 700;
  color: #1A1A1A;
  outline: none;
  cursor: pointer;
  padding-right: 4px;
}

.btn-map {
  background: #fff;
  border: 1px solid #eee;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #666;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: 0.2s;
}

.btn-map:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}

.erh-bottom {
  margin-top: 24px;
}

.erh-title {
  font-size: 32px;
  font-weight: 700;
  color: #2D2D2D;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.erh-meta {
  font-size: 13px;
  color: #666;
  display: flex;
  align-items: center;
  gap: 4px;
}

.info-icon {
  font-size: 14px;
  color: #999;
}

@media (max-width: 768px) {
  .erh-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .erh-right {
    width: 100%;
    display: flex;
    justify-content: flex-end;
  }

  .erh-title {
    font-size: 24px;
  }
}

.explore-partner-offers {
  margin-top: 32px;
  padding-bottom: 8px;
}

.explore-partner-offers .recommended-scroll {
  padding-bottom: 8px;
}

.carousel-container {
  position: relative;
  width: 100%;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: 0.2s;
  color: #1A1A1A;
}

.carousel-nav:hover {
  background: #f9f9f9;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  transform: translateY(-50%) scale(1.05);
}

.carousel-nav:disabled {
  opacity: 0.3;
  pointer-events: none;
}

.carousel-nav.prev {
  left: -22px;
}

.carousel-nav.next {
  right: -22px;
}

@media (max-width: 768px) {
  .carousel-nav {
    display: none;
  }
}

/* ── Carousel Nav in Header ────────────────────────────── */
.carousel-nav-header {
  display: flex;
  gap: 8px;
  align-items: center;
}

.carousel-nav-header .carousel-nav {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  transform: none;
  width: 36px;
  height: 36px;
  box-shadow: none;
  border: 1px solid #e0e0e0;
}

.carousel-nav-header .carousel-nav:hover {
  transform: scale(1.1);
  background: #f5f5f5;
}

.carousel-nav-header .carousel-nav svg {
  width: 20px;
  height: 20px;
}

.carousel-nav-header .carousel-nav:disabled {
  opacity: 0.3;
  pointer-events: none;
}

/* ── Business List Card (2-Column Layout) ────────────────── */
.business-list-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 32px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.business-list-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--brand-yellow);
}

/* Gallery Column (Left) */
.bl-gallery-col {
  padding: 24px 0 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bl-image-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
  background: #f3f4f6;
}

.bl-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.bl-gallery {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}

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

.bl-thumb {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  border: 2px solid transparent;
  flex-shrink: 0;
  cursor: pointer;
  transition: all 0.2s;
}


/* Details Column (Right) */
.bl-content {
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
}

/* Responsive Stacking */
@media (max-width: 768px) {
  .business-list-card {
    grid-template-columns: 1fr;
  }

  .bl-gallery-col {
    padding: 20px;
  }

  .bl-image-wrap {
    aspect-ratio: 16 / 9;
  }
}

.bl-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.bl-info h3 {
  font-size: 24px;
  font-weight: 800;
  margin: 0 0 5px 0 !important;
  color: #1a1a1a;
  letter-spacing: -0.5px;
}

.bl-rating {
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}

.bl-rating .star {
  color: #FFD700;
  font-size: 18px;
}

.bl-rating .count {
  color: #9CA3AF;
  font-weight: 500;
}

.bl-location {
  font-size: 15px;
  color: #6B7280;
  display: flex;
  align-items: center;
  gap: 6px;
}

.bl-services {
  border-top: 1.5px solid #F3F4F6;
  padding-top: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bl-service-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #f3f4f6;
  transition: all 0.2s ease;
}

.bl-service-item:hover {
  border-color: #ffd700;
  background: #fffdf0;
  transform: translateX(4px);
}

.bl-service-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.bl-service-name {
  font-size: 15px;
  font-weight: 700;
  color: #111827;
}

.bl-service-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bl-service-duration {
  font-size: 13px;
  color: #6B7280;
  font-weight: 500;
}

.bl-service-price {
  font-size: 14px;
  font-weight: 800;
  color: #111827;
}

.btn-book-service {
  padding: 6px 16px;
  background: #111827;
  color: #fff;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-book-service:hover {
  background: #ffd700;
  color: #111827;
}

.bl-footer {
  margin-top: 24px;
  display: flex;
  justify-content: flex-end;
}

.btn-book-list {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #111827 !important;
    text-decoration: none !important;
    text-transform: none !important;
    text-underline-offset: unset !important;
    letter-spacing: 0.1px !important;
    transition: all 0.25s ease !important;
    padding: 11px !important;
    /* background: #ccc !important; */
    background-color: #ccc !important;
    border: none !important;
    border-radius: 10px !important;
    box-shadow: none !important;
}

@media (max-width: 900px) {
  .business-list-card {
    grid-template-columns: 1fr;
  }

  .bl-image-wrap {
    height: 220px;
    min-height: auto;
  }

  .bl-content {
    padding: 24px;
  }
}

/* ── Typography & Global Polish ───────────────────────────── */
h1,
h2,
h3 {
  letter-spacing: -0.02em;
}

.section-header-row h2 {
  font-size: 32px;
  font-weight: 900;
  position: relative;
  display: inline-block;
}

.erh-title {
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -1.5px;
  color: #111827;
}

.category-chip {
  padding: 10px 24px;
  font-weight: 700;
  border: 1.5px solid transparent;
  background: #F3F4F6;
  color: #4B5563;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-chip:hover {
  background: #E5E7EB;
  color: #111827;
  transform: translateY(-1px);
}

.category-chip.active {
  background: #111827;
  color: #FFD700;
  border-color: #111827;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Skeleton Loading Polish */
.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #f8f8f8 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
}

@keyframes skeleton-loading {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

.is-explore .results-grid {
  display: flex !important;
  flex-direction: column !important;
  gap: 24px;
}

.explore-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #E5E7EB;
}

.page-numbers {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-page {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1.5px solid #E5E7EB;
  background: #fff;
  color: #111827;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-page:hover:not(:disabled) {
  border-color: #111827;
  background: #F9FAFB;
  transform: translateY(-2px);
}

.btn-page.active {
  background: #111827;
  color: #FFD700;
  border-color: #111827;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

.page-dots {
  color: #9CA3AF;
  font-weight: 700;
  padding: 0 8px;
}

@media (max-width: 640px) {
  .explore-pagination {
    gap: 12px;
  }

  .btn-page {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }

  .page-numbers button:nth-child(n+4):not(:last-child) {
    display: none;
  }
}

/* ── Explore Page Responsiveness ─────────────────────────── */
@media (max-width: 768px) {
  .explore-results-header .erh-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
  }

  .erh-left {
    display: contents;
    /* Let children join the grid */
  }

  .erh-right {
    display: contents;
  }

  .btn-filter,
  .btn-map {
    width: 100%;
    height: 48px;
    justify-content: center;
    border-radius: 14px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .btn-filter {
    order: 1;
    background: #fff;
    border: 1.5px solid #E5E7EB;
  }

  .btn-map {
    order: 2;
    background: #111827;
    color: #FFD700;
    border: none;
  }

  .erh-sort {
    grid-column: span 2;
    order: 3;
    width: 100%;
    background: #F3F4F6;
    padding: 8px 16px;
    border-radius: 12px;
    justify-content: space-between;
  }

  .erh-select-wrapper select {
    background: transparent;
    border: none;
    font-weight: 700;
  }
}

@media (max-width: 640px) {
    .business-list-card {
      border-radius: 20px;
    }

    .bl-content {
      padding: 20px;
    }

    .bl-info h3 {
      font-size: 20px;
    }

    .bl-service-item {
      padding: 10px 0;
      border: none;
      background: transparent;
      border-bottom: 1px solid #f3f4f6;
    }

    .bl-service-item:hover {
      transform: none;
      background: transparent;
    }

    .btn-book-service {
      padding: 6px 12px;
      font-size: 12px;
    }

    .bl-footer {
      justify-content: center;
    }

    .btn-book-list {
      width: 100%;
      text-align: center;
      padding: 12px;
    }

    .explore-pagination {
      margin-top: 40px;
      padding-top: 30px;
    }
  }

  /* Ensure Category Nav doesn't hide behind fixed header if any */
  .category-nav {
    position: sticky;
    top: 72px;
    margin-top: 0;
    padding: 12px 0;
    background: #fff;
    border-bottom: 1px solid #f3f4f6;
    z-index: 90;
  }

  /* Ensure it doesn't have double margin when under the white hero */
  .explore-hero+.category-nav {
    margin-top: 0;
    border-top: none;
    padding-top: 0;
  }

  .popular-treatments-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #f3f4f6;
    padding-bottom: 60px;
  }

  .popular-title {
    font-size: 26px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
  }

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

  .treatment-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    background: #fff;
    border: 1px solid #ebebeb;
    border-radius: 12px;
    text-decoration: none;
    color: #4b5563;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s ease;
  }

  .treatment-item svg {
    color: #9ca3af;
    stroke-width: 1.5px;
  }

  .treatment-item:hover {
    border-color: #d1d5db;
    color: #111827;
    background: #fcfcfc;
  }

  .treatment-item:hover svg {
    color: #111827;
    transform: translateX(3px);
  }

  .show-more-btn {
    background: transparent;
    border: none;
    color: #9ca3af;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    padding: 8px 0;
    margin-top: 8px;
  }

  .explore-breadcrumbs {
    margin-top: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #9ca3af;
    font-weight: 500;
  }

  .explore-breadcrumbs a {
    color: #9ca3af;
    text-decoration: none;
  }

  .explore-breadcrumbs a:hover {
    color: #4b5563;
  }

  .explore-breadcrumbs .current {
    color: #4b5563;
    font-weight: 600;
  }

  .explore-breadcrumbs .sep {
    opacity: 0.6;
  }

  @media (max-width: 1024px) {
    .treatments-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

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

    .popular-title {
      font-size: 28px;
    }
  }
}

/* ── Breadcrumbs (Global) ────────────────────────────────── */
.explore-breadcrumbs {
  margin-top: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #9ca3af;
  font-weight: 500;
}

.explore-breadcrumbs a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.2s;
}

.explore-breadcrumbs a:hover {
  color: #4b5563;
}

.explore-breadcrumbs .current {
  color: #4b5563;
  font-weight: 600;
}

.explore-breadcrumbs .sep {
  opacity: 0.6;
}

/* ── Business Page (Premium View) ────────────────────────── */
.biz-page {
  background: #fff;
  min-height: 100vh;
}

/* Mobile Header Overlay */
.biz-header-mobile {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: #fff;
  z-index: 1001;
  display: flex;
  align-items: center;
  padding: 0 16px;
  justify-content: space-between;
  border-bottom: 1px solid #f3f4f6;
  display: none;
  /* Desktop hidden */
}

@media (max-width: 768px) {
  .biz-header-mobile {
    display: none !important;
  }

  .biz-page {
    padding-top: 0;
  }

  /* Navbar remains visible as per standard header.php rules */
}

.biz-header-title {
  font-size: 16px;
  font-weight: 800;
  color: #111827;
  flex: 1;
  text-align: center;
  margin: 0 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.biz-back-btn,
.biz-action-btn {
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111827;
  cursor: pointer;
}

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

/* Gallery */
.biz-gallery {
  margin: 20px 0;
}

.biz-main-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  margin-bottom: 12px;
}

.show-all-photos {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: #fff;
  color: #111827;
  border: none;
  padding: 10px 20px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.biz-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.biz-thumb {
  aspect-ratio: 1;
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  cursor: pointer;
  transition: transform 0.2s;
}

.biz-thumb:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .biz-main-img {
    border-radius: 0;
    margin-left: -15px;
    width: calc(100% + 30px);
    aspect-ratio: 16 / 9;
  }

  .biz-gallery {
    margin: 0 0 20px 0;
  }

  .biz-thumbs {
    overflow-x: auto;
    display: flex;
    padding-bottom: 8px;
    margin-left: -15px;
    padding-left: 15px;
    width: calc(100% + 30px);
    scrollbar-width: none;
  }

  .biz-thumbs::-webkit-scrollbar {
    display: none;
  }

  .biz-thumb {
    flex: 0 0 100px;
  }
}

/* Biz Info */
.biz-info-section {
  padding: 10px 0 24px;
}

.biz-name {
  font-size: 32px;
  font-weight: 900;
  color: #111827;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.biz-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #6B7280;
  margin-bottom: 12px;
}

.biz-address {
  font-size: 15px;
  font-weight: 500;
}

.biz-rating-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
}

.biz-rating-row .star {
  color: #FFD700;
  font-size: 20px;
}

.rating-val {
  font-weight: 800;
  color: #111827;
  font-size: 16px;
}

.reviews-count {
  color: #9CA3AF;
  font-size: 15px;
}

.biz-tags {
  display: flex;
  gap: 10px;
}

.biz-tag {
  background: #F3F4F6;
  padding: 8px 16px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  color: #374151;
}

/* Tabs */
.biz-tabs {
  display: flex;
  border-bottom: 1px solid #f3f4f6;
  margin-bottom: 32px;
  gap: 32px;
}

.biz-tab {
  background: none;
  border: none;
  padding: 16px 0;
  font-size: 14px;
  font-weight: 800;
  color: #9CA3AF;
  letter-spacing: 0.5px;
  position: relative;
  cursor: pointer;
}

.biz-tab.active {
  color: #111827;
}

.biz-tab.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 3px;
  background: #FFD700;
  border-radius: 2px;
}

/* Services Content */
.services-toggle-wrap {
  margin-bottom: 24px;
}

.services-toggle {
  display: flex;
  background: #F3F4F6;
  padding: 4px;
  border-radius: 14px;
  width: fit-content;
}

.toggle-opt {
  background: none;
  border: none;
  padding: 10px 32px;
  font-size: 14px;
  font-weight: 700;
  color: #6B7280;
  border-radius: 11px;
  cursor: pointer;
  transition: all 0.2s;
}

.toggle-opt.active {
  background: #fff;
  color: #111827;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.service-search-wrap {
  margin-bottom: 32px;
}

.service-search {
  display: flex;
  align-items: center;
  background: #F3F4F6;
  padding: 14px 20px;
  border-radius: 16px;
  gap: 12px;
}

.service-search input {
  background: none;
  border: none;
  outline: none;
  flex: 1;
  font-size: 15px;
  font-weight: 500;
}

/* Categories */
.service-category {
  margin-bottom: 40px;
}

.category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1.5px solid #F3F4F6;
  margin-bottom: 16px;
  cursor: pointer;
}

.category-header h3 {
  font-size: 20px;
  font-weight: 800;
  color: #111827;
}

.service-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid #f9fafb;
}

.service-details h4 {
  font-size: 17px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 4px;
}

.s-duration {
  font-size: 14px;
  color: #9CA3AF;
  font-weight: 500;
}

.service-price-wrap {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.s-price {
  font-size: 17px;
  font-weight: 800;
  color: #111827;
}

.btn-book {
  background: #111827;
  color: #FFD700;
  border: none;
  padding: 8px 24px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s;
}

.btn-book:hover {
  transform: scale(1.05);
}

@media (max-width: 640px) {
  .biz-name {
    font-size: 26px;
  }

  .biz-tabs {
    gap: 16px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .biz-tabs::-webkit-scrollbar {
    display: none;
  }

  .biz-tab {
    white-space: nowrap;
  }

  .service-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .service-price-wrap {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.biz-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  margin-top: 100px;
}

@media (max-width: 1024px) {
  .biz-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.biz-sidebar {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.biz-sidebar-widget {
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 24px;
  padding: 24px;
}

.biz-map-widget {
  padding: 0;
  overflow: hidden;
  position: relative;
}

.sidebar-map {
  width: 100%;
  height: 240px;
}

.sidebar-map iframe {
  display: block;
}

.map-info-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-top: 1px solid #f3f4f6;
}

.map-info-logo {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
}

.map-overlay-card {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: #fff;
  border-radius: 16px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.map-overlay-card img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
}

.map-card-info h5 {
  font-size: 14px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 2px;
}

.map-card-info p {
  font-size: 12px;
  color: #6B7280;
  line-height: 1.3;
}

.map-dir-btn {
  margin-left: auto;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #f3f4f6;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9CA3AF;
  cursor: pointer;
}

.widget-title {
  font-size: 13px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.about-content p {
  font-size: 15px;
  color: #4B5563;
  line-height: 1.6;
  margin-bottom: 16px;
}

.show-more-link {
  background: none;
  border: none;
  color: #9CA3AF;
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  padding: 0;
}

.staff-grid {
  display: flex;
  gap: 20px;
}

.staff-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.staff-item.active .staff-avatar {
  border-color: #F59E0B;
}

.staff-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #f3f4f6;
  background: #f9fafb;
  transition: border-color 0.2s;
}

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

.staff-item span {
  font-size: 14px;
  font-weight: 700;
  color: #111827;
}

@media (max-width: 640px) {
  .staff-avatar {
    width: 64px;
    height: 64px;
  }

  .biz-sidebar-widget {
    padding: 20px;
    border-radius: 20px;
  }
}

/* ── Business Reviews Section ────────────────────────────── */
.biz-reviews-section {
  margin-top: 48px;
  padding-top: 40px;
  padding-bottom: 60px;
  margin-bottom: 60px;
  border-top: 1px solid #f3f4f6;
}

.reviews-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}

.reviews-section-title {
  font-size: 24px;
  font-weight: 800;
  color: #111827;
}

.write-review-link {
  background: none;
  border: none;
  color: #F59E0B;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Aggregate Summary */
.reviews-summary {
  display: flex;
  gap: 40px;
  margin-bottom: 32px;
  align-items: flex-start;
}

.reviews-score {
  text-align: center;
  flex-shrink: 0;
}

.score-number {
  display: block;
  font-size: 48px;
  font-weight: 900;
  color: #111827;
  line-height: 1;
  margin-bottom: 4px;
}

.score-stars {
  color: #F59E0B;
  font-size: 20px;
  letter-spacing: 2px;
  margin-bottom: 6px;
}

.total-reviews-count {
  font-size: 13px;
  color: #9CA3AF;
  font-weight: 600;
}

.reviews-bars {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 4px;
}

.bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bar-label {
  font-size: 13px;
  font-weight: 700;
  color: #6B7280;
  width: 32px;
  flex-shrink: 0;
}

.bar-track {
  flex: 1;
  height: 10px;
  background: #F3F4F6;
  border-radius: 6px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: #F59E0B;
  border-radius: 6px;
  transition: width 0.6s ease;
}

.bar-count {
  font-size: 13px;
  font-weight: 700;
  color: #9CA3AF;
  width: 28px;
  text-align: right;
  flex-shrink: 0;
}

/* Client Photos */
.client-photos-section {
  margin-bottom: 28px;
}

.client-photos-section h4 {
  font-size: 15px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 14px;
}

.client-photos-grid {
  display: flex;
  gap: 10px;
}

.client-photo {
  width: 80px;
  height: 80px;
  border-radius: 14px;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: transform 0.2s;
}

.client-photo:hover {
  transform: scale(1.08);
}

/* Filters */
.reviews-filters {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f3f4f6;
}

.reviews-filter-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 12px;
  border: 1.5px solid #E5E7EB;
  background: #fff;
  font-size: 14px;
  font-weight: 700;
  color: #374151;
  cursor: pointer;
  transition: 0.2s;
}

.reviews-filter-btn:hover,
.reviews-filter-btn.active {
  border-color: #111827;
  background: #111827;
  color: #FFD700;
}

.reviews-sort-select {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.reviews-sort-select span {
  font-size: 14px;
  color: #9CA3AF;
  font-weight: 600;
}

.reviews-sort-select select {
  border: none;
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  background: transparent;
  cursor: pointer;
  outline: none;
}

/* Review Cards */
.reviews-list {
  display: flex;
  flex-direction: column;
}

.review-item {
  padding: 28px 0;
  border-bottom: 1px solid #f3f4f6;
}

.review-item:last-child {
  border-bottom: none;
}

.review-item-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.reviewer-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #f3f4f6;
  flex-shrink: 0;
}

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

.reviewer-info {
  flex: 1;
}

.reviewer-name {
  font-size: 16px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 2px;
}

.reviewer-badge {
  font-size: 12px;
  color: #10B981;
  font-weight: 600;
}

.review-menu-btn {
  background: none;
  border: none;
  font-size: 20px;
  color: #9CA3AF;
  cursor: pointer;
  padding: 4px 8px;
}

.review-item-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.review-item-stars {
  color: #F59E0B;
  font-size: 18px;
  letter-spacing: 2px;
}

.review-item-date {
  font-size: 13px;
  color: #9CA3AF;
  font-weight: 500;
}

.review-service-info {
  margin-bottom: 12px;
}

.review-service-info p {
  font-size: 14px;
  color: #6B7280;
  line-height: 1.6;
}

.review-service-info strong {
  color: #374151;
  font-weight: 700;
}

.review-text {
  font-size: 15px;
  color: #374151;
  line-height: 1.6;
}

/* Reviews Pagination */
.reviews-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
  padding-top: 24px;
}

.rev-page-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1.5px solid #E5E7EB;
  background: #fff;
  font-size: 14px;
  font-weight: 700;
  color: #374151;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}

.rev-page-btn:hover {
  border-color: #111827;
}

.rev-page-btn.active {
  background: #111827;
  color: #FFD700;
  border-color: #111827;
}

.rev-page-dots {
  font-size: 14px;
  color: #9CA3AF;
  padding: 0 4px;
}

.rev-page-next {
  font-size: 18px;
}

@media (max-width: 640px) {
  .reviews-summary {
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
  }

  .reviews-bars {
    width: 100%;
    padding-top: 0;
  }

  .bar-row {
    width: 100%;
  }

  .bar-track {
    min-width: 0;
    /* Allow flex to shrink/grow properly */
  }

  .reviews-score {
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
  }

  .score-number {
    font-size: 36px;
  }

  .client-photo {
    width: 64px;
    height: 64px;
  }

  .reviews-filters {
    flex-wrap: wrap;
  }

  .reviews-sort-select {
    margin-left: 0;
  }
}

/* ── Gallery Active Thumb ────────────────────────────────── */
.biz-thumb.active {
  outline: 3px solid #FFD700;
  outline-offset: -3px;
  opacity: 1;
}

.biz-thumb:not(.active) {
  opacity: 0.6;
}

.biz-thumb:not(.active):hover {
  opacity: 1;
}

.biz-main-img {
  cursor: pointer;
}

/* ── Gallery Lightbox ────────────────────────────────────── */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
}

.gallery-lightbox.active {
  display: flex;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(10px);
}

.lightbox-img-wrap {
  position: relative;
  z-index: 2;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img-wrap img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: 16px;
  object-fit: contain;
  animation: lightboxFadeIn 0.3s ease;
}

@keyframes lightboxFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  z-index: 3;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.25);
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.lightbox-arrow:hover {
  background: rgba(255, 255, 255, 0.25);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.lightbox-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
}

@media (max-width: 640px) {
  .lightbox-arrow {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }

  .lightbox-prev {
    left: 8px;
  }

  .lightbox-next {
    right: 8px;
  }

  .lightbox-close {
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
  }
}

/* ── Toggle Panels ───────────────────────────────────────── */
.toggle-panel {
  display: none;
}

.toggle-panel.active {
  display: block;
}

.category-header svg {
  transition: transform 0.3s ease;
}

/* ── Package Cards ───────────────────────────────────────── */
.package-card {
  background: #fff;
  border: 1.5px solid #f3f4f6;
  border-radius: 20px;
  padding: 28px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.package-card:hover {
  border-color: #FFD700;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

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

.package-name {
  font-size: 20px;
  font-weight: 800;
  color: #111827;
}

.package-badge {
  background: #FEF3C7;
  color: #B45309;
  font-size: 12px;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 8px;
  letter-spacing: 0.5px;
}

.package-desc {
  font-size: 15px;
  color: #6B7280;
  line-height: 1.6;
  margin-bottom: 16px;
}

.package-includes {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.package-includes li {
  font-size: 14px;
  font-weight: 600;
  color: #374151;
}

.package-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid #f3f4f6;
}

.package-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.pkg-old-price {
  font-size: 15px;
  font-weight: 600;
  color: #9CA3AF;
  text-decoration: line-through;
}

.pkg-new-price {
  font-size: 22px;
  font-weight: 900;
  color: #111827;
}

@media (max-width: 640px) {
  .package-card {
    padding: 20px;
  }

  .package-footer {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

  .package-footer .btn-book {
    width: 100%;
    text-align: center;
  }
}

/* ── Business Page Mobile Fine-tuning ────────────────────── */
@media (max-width: 768px) {
  .biz-layout {
    display: block;
    margin-top: 16px;
  }

  .biz-main-content {
    width: 100%;
  }

  .biz-sidebar {
    margin-top: 40px;
    padding-bottom: 40px;
  }

  .biz-name {
    font-size: 26px;
    margin-bottom: 8px;
  }

  .biz-info-section {
    padding-top: 0;
    padding-bottom: 20px;
    border-bottom: 1px solid #f3f4f6;
    margin-bottom: 20px;
  }

  .biz-gallery {
    margin-bottom: 24px;
  }

  .services-toggle-wrap {
    margin-bottom: 20px;
  }

  .services-toggle {
    width: 100%;
  }

  .toggle-opt {
    flex: 1;
    text-align: center;
    padding: 10px 16px;
    font-size: 14px;
  }

  .service-category {
    margin-bottom: 20px;
  }

  .service-search-wrap {
    margin-bottom: 16px;
  }

  .service-search-wrap input {
    font-size: 14px;
  }

  .biz-reviews-section {
    margin-bottom: 32px;
  }

  .reviews-header-row {
    flex-wrap: wrap;
    gap: 8px;
  }

  .biz-sidebar-widget {
    border-radius: 20px;
  }

  .sidebar-map {
    height: 200px;
  }

  .map-info-bar {
    padding: 12px 14px;
  }
}

@media (max-width: 480px) {
  .biz-page .container {
    padding: 0 16px;
  }

  .biz-name {
    font-size: 22px;
  }

  .biz-meta {
    flex-wrap: wrap;
    gap: 4px;
  }

  .biz-address {
    font-size: 14px;
  }

  .biz-tag {
    padding: 6px 12px;
    font-size: 12px;
  }

  .biz-tags {
    flex-wrap: wrap;
  }

  .category-header h3 {
    font-size: 17px;
  }

  .service-details h4 {
    font-size: 15px;
  }

  .s-price {
    font-size: 15px;
  }

  .btn-book {
    padding: 10px 18px;
    font-size: 13px;
  }

  .reviews-section-title {
    font-size: 20px;
  }

  .score-number {
    font-size: 32px;
  }

  .reviews-summary {
    padding: 0;
  }

  /* Sidebar widgets */
  .biz-sidebar-widget {
    padding: 18px;
    border-radius: 16px;
  }

  .widget-title {
    font-size: 13px;
  }

  .staff-grid {
    grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
    gap: 12px;
  }

  .staff-avatar {
    width: 50px;
    height: 50px;
  }

  /* Pagination touch targets */
  .rev-page-btn {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .reviews-pagination {
    flex-wrap: wrap;
    justify-content: center;
  }

  /* Package cards */
  .package-card {
    padding: 18px;
  }

  .package-name {
    font-size: 18px;
  }

  .pkg-new-price {
    font-size: 20px;
  }

  /* Lightbox */
  .lightbox-counter {
    font-size: 13px;
  }
}

/* ── Full Width Header/Footer for Business Page ──────────── */
body.is-explore .footer .container,
body.is-explore .explore-hero .container {
  padding-left: 40px !important;
  padding-right: 40px !important;
  width: 100%;
}

@media (max-width: 768px) {

  body.is-explore .footer .container,
  body.is-explore .explore-hero .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}

/* Ensure the layout container matches standard site width */
body.is-explore .biz-page .container {
  max-width: var(--container);
}

/* ═══════════════════════════════════════════════════════════════
   NAVBAR PROFILE AVATAR & DROPDOWN
   ═══════════════════════════════════════════════════════════════ */
.nav-profile {
  position: relative;
}

.nav-profile-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #FFD700;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  background: #f3f4f6;
  transition: all 0.2s ease;
}

.nav-profile-btn:hover {
  border-color: #E6C200;
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
}

.nav-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.nav-profile-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 280px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.04);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1100;
  overflow: hidden;
}

.nav-profile-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-profile-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px;
}

.dropdown-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #FFD700;
}

.dropdown-name {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: #111827;
}

.dropdown-email {
  display: block;
  font-size: 13px;
  color: #9CA3AF;
  font-weight: 500;
}

.nav-profile-divider {
  height: 1px;
  background: #f3f4f6;
  margin: 0;
}

.nav-profile-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  text-decoration: none;
  transition: background 0.15s;
}

.nav-profile-link:hover {
  background: #f9fafb;
}

.nav-profile-link svg {
  flex-shrink: 0;
  color: #6B7280;
}

.nav-profile-link.logout-link {
  color: #EF4444;
}

.nav-profile-link.logout-link svg {
  color: #EF4444;
}

/* ═══════════════════════════════════════════════════════════════
   PROFILE PAGE — Sidebar Layout
   ═══════════════════════════════════════════════════════════════ */
.profile-page {
  padding-top: 72px;
  min-height: 100vh;
  background: #f9fafb;
}

.profile-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  max-width: var(--container);
  margin: 0 auto;
  min-height: calc(100vh - 72px);
}

/* ── Left Sidebar ─────────────────────────────────────────── */
.profile-sidebar {
  background: #fff;
  border-right: 1px solid #f3f4f6;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 72px;
  height: calc(100vh - 72px);
  overflow-y: auto;
  scrollbar-width: none;
}

.profile-sidebar::-webkit-scrollbar {
  display: none;
}

.ps-header {
  text-align: center;
  padding-bottom: 24px;
  border-bottom: 1px solid #f3f4f6;
  margin-bottom: 20px;
}

.profile-avatar-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 14px;
  width: fit-content;
}


.profile-avatar-lg {
  display: block;
  margin: 0 auto;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #FFD700;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.profile-avatar-lg:hover {
  transform: scale(1.05);
}



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

.profile-edit-badge {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #FFD700;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.profile-edit-badge:hover {
  transform: scale(1.15);
}


.profile-edit-badge svg {
  color: #1A1A1A;
}

.profile-name {
  font-size: 20px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 4px;
}

.profile-email {
  font-size: 13px;
  color: #9CA3AF;
  margin-bottom: 10px;
}

.profile-account-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #111827;
  text-decoration: none;
  padding: 5px 14px;
  border: 1.5px solid #e5e7eb;
  border-radius: 20px;
  transition: all 0.2s;
}

.profile-account-link:hover {
  border-color: #FFD700;
  background: #fffef5;
}

.green-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22C55E;
}

/* Sidebar Stats */
.profile-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9fafb;
  border: 1px solid #f3f4f6;
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 20px;
}

.profile-stat {
  flex: 1;
  text-align: center;
}

.stat-value {
  display: block;
  font-size: 22px;
  font-weight: 900;
  color: #111827;
}

.stat-label {
  display: block;
  font-size: 12px;
  color: #9CA3AF;
  font-weight: 500;
  margin-top: 2px;
}

.profile-stat-divider {
  width: 1px;
  height: 36px;
  background: #e5e7eb;
}

/* Sidebar Navigation */
.ps-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.ps-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  text-decoration: none;
  color: #4B5563;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.15s;
}

.ps-nav-item:hover {
  background: #f3f4f6;
  color: #111827;
}

.ps-nav-item.active {
  background: #1A1A1A;
  color: #FFD700;
}

.ps-nav-item.active .ps-nav-icon {
  background: rgba(255, 215, 0, 0.15);
}

.ps-nav-item.active .ps-nav-icon svg {
  color: #FFD700;
}

.ps-nav-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ps-nav-icon svg {
  color: #6B7280;
}

.ps-nav-item span:first-of-type:not(.ps-nav-badge) {
  flex: 1;
}

.ps-nav-badge {
  font-size: 11px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 6px;
  background: #FEF3C7;
  color: #B45309;
}

.ps-nav-badge.red {
  background: #FEE2E2;
  color: #DC2626;
}

/* Sidebar Footer */
.ps-footer {
  padding-top: 20px;
  border-top: 1px solid #f3f4f6;
  margin-top: 16px;
}

.member-since {
  font-size: 12px;
  color: #D1D5DB;
  margin-bottom: 12px;
  text-align: center;
}

.logout-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  font-size: 14px;
  font-weight: 700;
  color: #EF4444;
  background: none;
  border: 1.5px solid #FEE2E2;
  cursor: pointer;
  padding: 10px;
  border-radius: 12px;
  transition: all 0.2s;
}

.logout-btn:hover {
  background: #FEE2E2;
  border-color: #FECACA;
}

.logout-btn svg {
  color: #EF4444;
}

/* ── Right Content Panel ──────────────────────────────────── */
.profile-content {
  padding: 40px 48px;
}

.pc-title {
  font-size: 28px;
  font-weight: 900;
  color: #111827;
  margin-bottom: 32px;
  letter-spacing: -0.5px;
}

.pc-section {
  display: none;
}

.pc-section.active {
  display: block;
}

.profile-section {
  margin-bottom: 28px;
}

.profile-section-label {
  font-size: 11px;
  font-weight: 800;
  color: #9CA3AF;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  padding-left: 4px;
}

/* Mode Switch */
.mode-switch-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #1A1A1A;
  border-radius: 20px;
  padding: 18px 20px;
  margin-bottom: 12px;
}

.mode-switch-info {
  display: flex;
  align-items: center;
  gap: 14px;
}

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

.mode-title {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: #fff;
}

.mode-desc {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

/* Toggle Switch */
.toggle-switch {
  position: relative;
  width: 48px;
  height: 26px;
  flex-shrink: 0;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #D1D5DB;
  border-radius: 26px;
  cursor: pointer;
  transition: all 0.3s;
}

.toggle-slider::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  top: 3px;
  left: 3px;
  transition: all 0.3s;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.toggle-switch input:checked+.toggle-slider {
  background: #1A1A1A;
}

.toggle-switch input:checked+.toggle-slider::before {
  transform: translateX(22px);
  background: #FFD700;
}

.toggle-switch.toggle-sm {
  width: 42px;
  height: 24px;
}

.toggle-switch.toggle-sm .toggle-slider::before {
  width: 18px;
  height: 18px;
}

.toggle-switch.toggle-sm input:checked+.toggle-slider::before {
  transform: translateX(18px);
}

/* Mode Tabs */
.mode-tabs {
  display: flex;
  background: #f3f4f6;
  border-radius: 12px;
  padding: 4px;
}

.mode-tab {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  color: #6B7280;
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
}

.mode-tab.active {
  background: #fff;
  color: #111827;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* Address Card */
.address-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 16px;
  padding: 16px 18px;
  text-decoration: none;
  transition: all 0.2s;
}

.address-card:hover {
  border-color: #e5e7eb;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.address-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.address-icon svg {
  color: #6B7280;
}

.address-info {
  flex: 1;
}

.address-title {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #111827;
}

.address-detail {
  display: block;
  font-size: 13px;
  color: #9CA3AF;
  margin-top: 2px;
}

/* Settings List */
.settings-list {
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 20px;
  overflow: hidden;
}

.settings-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  text-decoration: none;
  transition: background 0.15s;
  border-bottom: 1px solid #f9fafb;
  width: 100%;
  border: none;
  background: none;
  cursor: pointer;
  text-align: left;
}


.settings-item:last-child {
  border-bottom: none;
}

.settings-item:hover {
  background: #fafafa;
}

.settings-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.settings-icon svg {
  color: #374151;
}

.settings-label {
  flex: 1;
  font-size: 15px;
  font-weight: 600;
  color: #111827;
}

.settings-badge {
  font-size: 13px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 8px;
}

.settings-badge.yellow {
  color: #B45309;
  background: #FEF3C7;
}

.settings-badge.red {
  color: #DC2626;
  background: #FEE2E2;
}

.settings-badge.brand {
  color: #1A1A1A;
  background: #FFF8DC;
}

.settings-item>svg:last-child {
  flex-shrink: 0;
}

/* ── Profile Responsive ──────────────────────────────────── */
@media (max-width: 1024px) {
  .profile-layout {
    grid-template-columns: 280px 1fr;
  }

  .profile-content {
    padding: 32px;
  }
}

@media (max-width: 768px) {
  .profile-layout {
    grid-template-columns: 1fr;
  }

  .profile-sidebar {
    position: static;
    height: auto;
    border-right: none;
    border-bottom: 1px solid #f3f4f6;
    padding: 24px 16px;
  }

  .ps-nav {
    flex-direction: row;
    overflow-x: auto;
    gap: 8px;
    padding-bottom: 8px;
    scrollbar-width: none;
  }

  .ps-nav::-webkit-scrollbar {
    display: none;
  }

  .ps-nav-item {
    white-space: nowrap;
    padding: 10px 14px;
    flex-shrink: 0;
    font-size: 13px;
  }

  .ps-nav-icon {
    width: 30px;
    height: 30px;
  }

  .ps-nav-icon svg {
    width: 16px;
    height: 16px;
  }

  .ps-footer {
    display: none;
  }

  .profile-content {
    padding: 24px 16px 60px;
  }

  .pc-title {
    font-size: 22px;
    margin-bottom: 24px;
  }

  .profile-avatar-lg {
    width: 80px;
    height: 80px;
  }
}




/* ═══════════════════════════════════════════════════════════════
   ADDRESSES MANAGEMENT (Inside Profile Layout)
   ═══════════════════════════════════════════════════════════════ */
.address-cards-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 650px;
  /* Optimal reading width for addresses */
}


.addresses-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.back-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111827;
  transition: all 0.2s;
}

.back-btn:hover {
  background: #f3f4f6;
  transform: translateX(-2px);
}

.addresses-title {
  font-size: 24px;
  font-weight: 900;
  color: #111827;
  letter-spacing: -0.5px;
}




.address-manage-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  transition: transform 0.2s, box-shadow 0.2s;
}

.address-manage-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.address-map-preview {
  height: 180px;
  position: relative;
  background: #eee;
  overflow: hidden;
}

.address-map-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.google-logo {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.9);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.address-card-body {
  padding: 20px;
}

.address-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}

.address-name-line {
  font-size: 17px;
  font-weight: 800;
  color: #111827;
  margin: 0;
  line-height: 1.4;
}

.status-badge {
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 0.5px;
}

.status-badge.default {
  background: #1A1A1A;
  color: #FFD700;
}

.address-city {
  font-size: 14px;
  color: #6B7280;
  margin-bottom: 20px;
  font-weight: 500;
}

.address-card-actions {
  display: flex;
  gap: 10px;
}

.btn-outline-red {
  background: transparent;
  border: 1px solid #FEE2E2;
  color: #DC2626;
  font-weight: 700;
}

.btn-outline-red:hover {
  background: #FEE2E2;
}

.add-address-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: #fff;
  border: 2px dashed #e5e7eb;
  padding: 18px;
  border-radius: 20px;
  font-size: 16px;
  font-weight: 700;
  color: #4B5563;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 10px;
}

.add-address-btn:hover {
  border-color: #FFD700;
  background: #fffef5;
  color: #111827;
}

.add-address-btn svg {
  color: #9CA3AF;
}

.add-address-btn:hover svg {
  color: #FFD700;
}

/* ── Addresses Responsive ────────────────────────────────── */
@media (max-width: 480px) {
  .addresses-container {
    padding: 16px 12px 80px;
  }

  .addresses-title {
    font-size: 20px;
  }

  .address-map-preview {
    height: 150px;
  }

  .address-card-actions {
    flex-wrap: wrap;
  }

  .address-card-actions .btn {
    flex: 1;
    min-width: 100px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   PROFILE IMAGE MANAGEMENT
   ═══════════════════════════════════════════════════════════════ */
.pi-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.pi-header-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.pi-title {
  font-size: 24px;
  font-weight: 900;
  color: #111827;
  margin: 0;
  letter-spacing: -0.5px;
}

.pi-delete-btn {
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  transition: transform 0.2s;
}

.pi-delete-btn:hover {
  transform: scale(1.1);
}

.pi-container {
  max-width: 500px;
}

.pi-description {
  font-size: 15px;
  line-height: 1.6;
  color: #6B7280;
  margin-bottom: 32px;
}

.pi-preview-card {
  background: #fff;
  border-radius: 32px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-bottom: 32px;
  border: 1px solid #f3f4f6;
}

.pi-image-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
}

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

.pi-edit-floating {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 54px;
  height: 54px;
  background: #FFD700;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(255, 215, 0, 0.4);
  cursor: pointer;
  transition: all 0.2s;
}

.pi-edit-floating:hover {
  transform: scale(1.1) rotate(5deg);
  background: #FFE44D;
}

.btn-pi-change {
  width: 100%;
  background: #1A1A1A;
  color: #FFD700;
  border: none;
  padding: 20px;
  border-radius: 20px;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.2s;
  text-transform: uppercase;
}

.btn-pi-change:hover {
  background: #000;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Profile Image Responsive */
@media (max-width: 480px) {
  .pi-title {
    font-size: 20px;
  }

  .pi-preview-card {
    border-radius: 24px;
  }

  .pi-edit-floating {
    width: 48px;
    height: 48px;
    bottom: 16px;
    right: 16px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   ACCOUNT SETTINGS (NEW PAGE)
   ═══════════════════════════════════════════════════════════════ */
.as-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.as-title {
  font-size: 24px;
  font-weight: 900;
  color: #111827;
  margin: 0;
  letter-spacing: -0.5px;
}

.as-container {
  max-width: 600px;
}

.as-menu-card {
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.as-menu-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  text-decoration: none;
  transition: all 0.2s;
  border-bottom: 1px solid #f9fafb;
}

.as-menu-item:last-child {
  border-bottom: none;
}

.as-menu-item:hover {
  background: #fafafa;
}

.as-menu-icon {
  width: 48px;
  height: 48px;
  background: #f3f4f6;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #374151;
}

.as-menu-label {
  flex: 1;
  font-size: 16px;
  font-weight: 700;
  color: #111827;
}

.as-chevron {
  flex-shrink: 0;
  transition: transform 0.2s;
}

.as-menu-item:hover .as-chevron {
  transform: translateX(3px);
  color: #111827;
}

/* Account Settings Responsive */
@media (max-width: 480px) {
  .as-title {
    font-size: 20px;
  }

  .as-menu-item {
    padding: 16px 20px;
  }

  .as-menu-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   PERSONAL DETAILS (PAGE)
   ═══════════════════════════════════════════════════════════════ */
.pd-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.pd-title {
  font-size: 24px;
  font-weight: 900;
  color: #111827;
  margin: 0;
  letter-spacing: -0.5px;
}

.pd-container {
  max-width: 500px;
}

.pd-section {
  margin-bottom: 32px;
}

.pd-section-label {
  font-size: 11px;
  font-weight: 800;
  color: #9CA3AF;
  letter-spacing: 1px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.pd-card {
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.pd-input-group {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  border-bottom: 1px solid #f9fafb;
}

.pd-input-group:last-child {
  border-bottom: none;
}

.pd-input-icon {
  width: 24px;
  display: flex;
  justify-content: center;
  flex-shrink: 0;
}

.pd-input {
  width: 100%;
  border: none;
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  padding: 4px 0;
  background: transparent;
  outline: none;
}

/* Segmented Control */
.pd-segmented-control {
  display: flex;
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 16px;
  padding: 4px;
  height: 60px;
}

.pd-seg-btn {
  flex: 1;
  border: none;
  background: transparent;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  color: #4B5563;
  cursor: pointer;
  transition: all 0.2s;
}

.pd-seg-btn.active {
  background: #1A1A1A;
  color: #FFD700;
}

/* Categories Link Card */
.pd-link-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 20px;
  padding: 20px 24px;
  text-decoration: none;
  margin-bottom: 32px;
  transition: all 0.2s;
}

.pd-link-card:hover {
  border-color: #e5e7eb;
  transform: translateY(-1px);
}

.pd-link-label {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
}

/* Save Button */
.btn-pd-save {
  width: 100%;
  background: #1A1A1A;
  color: #FFD700;
  border: none;
  padding: 20px;
  border-radius: 20px;
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-pd-save:hover {
  background: #000;
  transform: scale(1.01);
}

/* Responsive adjustment for personal details */
@media (max-width: 480px) {
  .pd-title {
    font-size: 20px;
  }

  .pd-input-group {
    padding: 14px 20px;
  }

  .pd-segmented-control {
    height: 54px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   GENERAL SETTINGS (PAGE)
   ═══════════════════════════════════════════════════════════════ */
.gs-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.gs-title {
  font-size: 24px;
  font-weight: 900;
  color: #111827;
  margin: 0;
  letter-spacing: -0.5px;
}

.gs-container {
  max-width: 500px;
}

.gs-section {
  margin-bottom: 32px;
}

.gs-section-label {
  font-size: 15px;
  font-weight: 800;
  color: #6B7280;
  margin-bottom: 16px;
}

.gs-card {
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.gs-item,
.gs-item-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid #f9fafb;
  text-decoration: none;
  transition: all 0.2s;
  width: 100%;
}

.gs-item:last-child,
.gs-item-link:last-child {
  border-bottom: none;
}

.gs-item-link:hover {
  background: #fafafa;
}

.gs-label,
.gs-item-main {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
}

.gs-item-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.gs-item-sub {
  font-size: 13px;
  font-weight: 600;
  color: #D1D5DB;
}

/* Responsive adjustment for general settings */
@media (max-width: 480px) {
  .gs-title {
    font-size: 20px;
  }

  .gs-item,
  .gs-item-link {
    padding: 16px 20px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   COUNTRY SELECT MODAL
   ═══════════════════════════════════════════════════════════════ */
.country-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.country-modal.active {
  opacity: 1;
  visibility: visible;
}

.country-modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.country-modal-content {
  position: relative;
  width: 100%;
  max-width: 460px;
  background: #fff;
  height: 100%;
  max-height: 85vh;
  border-radius: 32px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(40px);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.country-modal.active .country-modal-content {
  transform: translateY(0);
}

.country-modal-header {
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
}

.country-modal-title {
  font-size: 20px;
  font-weight: 900;
  color: #111827;
  margin: 0;
}

.country-modal-close {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: #111827;
  display: flex;
  align-items: center;
}

.country-modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 0 24px 24px;
}

.country-search-wrap {
  margin-bottom: 24px;
}

.country-search-input {
  width: 100%;
  background: #f9fafb;
  border: 1px solid #f3f4f6;
  border-radius: 16px;
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  outline: none;
  transition: all 0.2s;
}

.country-search-input:focus {
  background: #fff;
  border-color: #e5e7eb;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.country-list {
  display: flex;
  flex-direction: column;
}

.country-option {
  padding: 16px 0;
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  cursor: pointer;
  border-bottom: 1px solid #f9fafb;
  transition: all 0.15s;
}

.country-option:last-child {
  border-bottom: none;
}

.country-option:hover {
  color: #6B7280;
  transform: translateX(4px);
}

/* Country Modal Responsive */
@media (max-width: 480px) {
  .country-modal-content {
    max-height: 100%;
    border-radius: 0;
  }
}

/* ═══════════════════════════════════════════════════════════════
   CHANGE PASSWORD MODAL
   ═══════════════════════════════════════════════════════════════ */
.pw-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2300;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pw-modal.active {
  opacity: 1;
  visibility: visible;
}

.pw-modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.pw-modal-content {
  position: relative;
  width: 100%;
  max-width: 440px;
  background: #fff;
  border-radius: 32px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(40px);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.pw-modal.active .pw-modal-content {
  transform: translateY(0);
}

.pw-modal-header {
  padding: 32px 32px 16px;
  text-align: center;
}

.pw-modal-title {
  font-size: 24px;
  font-weight: 900;
  color: #111827;
  margin: 0;
}

.pw-modal-body {
  padding: 0 32px 32px;
}

.pw-field {
  margin-bottom: 20px;
}

.pw-field label {
  display: block;
  font-size: 11px;
  font-weight: 800;
  color: #9CA3AF;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.pw-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.pw-input {
  width: 100%;
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 16px;
  padding: 16px 50px 16px 20px;
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  outline: none;
  transition: all 0.2s;
}

.pw-input:focus {
  border-color: #e5e7eb;
  background: #fafafa;
}

.pw-toggle-eye {
  position: absolute;
  right: 16px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pw-modal-footer {
  padding: 0 32px 32px;
  display: flex;
  gap: 16px;
}

.btn-pw-cancel {
  flex: 1;
  background: #fff;
  border: 1px solid #e5e7eb;
  color: #111827;
  padding: 16px;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-pw-cancel:hover {
  background: #f9fafb;
}

.btn-pw-save {
  flex: 1.2;
  background: #1A1A1A;
  color: #FFD700;
  border: none;
  padding: 16px;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-pw-save.disabled {
  background: #E5E7EB;
  color: #9CA3AF;
  cursor: not-allowed;
}

.btn-pw-save:not(.disabled):hover {
  background: #000;
}

/* PW Modal Responsive */
@media (max-width: 480px) {
  .pw-modal-content {
    max-width: 90%;
    border-radius: 24px;
  }

  .pw-modal-header {
    padding: 24px 24px 12px;
  }

  .pw-modal-body {
    padding: 0 24px 24px;
  }

  .pw-modal-footer {
    padding: 0 24px 24px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   LANGUAGE MODAL
   ═══════════════════════════════════════════════════════════════ */
.lang-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2400;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.lang-modal.active {
  opacity: 1;
  visibility: visible;
}

.lang-modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.lang-modal-content {
  position: relative;
  width: 100%;
  max-width: 440px;
  background: #f9fafb;
  height: 100%;
  max-height: 90vh;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(40px);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.lang-modal.active .lang-modal-content {
  transform: translateY(0);
}

.lang-modal-header {
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border-bottom: 1px solid #f3f4f6;
}

.lang-modal-back {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: #111827;
  display: flex;
  align-items: center;
}

.lang-modal-title {
  font-size: 20px;
  font-weight: 900;
  color: #111827;
  margin: 0;
}

.lang-modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.lang-card {
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border-bottom: 1px solid #f9fafb;
  cursor: pointer;
  transition: all 0.2s;
}

.lang-option:last-child {
  border-bottom: none;
}

.lang-option:hover {
  background: #fafafa;
}

.lang-radio {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid #D1D5DB;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
}

.lang-option.selected .lang-radio {
  border-color: #111827;
  background: #111827;
}

.lang-option.selected .lang-radio::after {
  content: '';
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
}

.lang-flag {
  width: 32px;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.lang-name {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
}

/* Lang Modal Responsive */
@media (max-width: 480px) {
  .lang-modal-content {
    max-height: 100%;
    border-radius: 0;
  }
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT MODAL
   ═══════════════════════════════════════════════════════════════ */
.about-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-modal.active {
  opacity: 1;
  visibility: visible;
}

.about-modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.about-modal-content {
  position: relative;
  width: 100%;
  max-width: 440px;
  background: #f9fafb;
  height: 100%;
  max-height: 90vh;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(40px);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.about-modal.active .about-modal-content {
  transform: translateY(0);
}

.about-modal-header {
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border-bottom: 1px solid #f3f4f6;
}

.about-modal-back {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: #111827;
  display: flex;
  align-items: center;
}

.about-modal-title {
  font-size: 20px;
  font-weight: 900;
  color: #111827;
  margin: 0;
}

.about-modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
}

.about-hero {
  text-align: center;
  margin-bottom: 32px;
}

.about-logo-lg {
  width: 100px;
  height: 100px;
  background: #FFD700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(255, 215, 0, 0.3);
}

.about-brand {
  font-size: 28px;
  font-weight: 900;
  color: #111827;
  margin: 0 0 4px;
}

.about-tagline {
  font-size: 15px;
  font-weight: 600;
  color: #6B7280;
}

.about-section-card {
  background: #fff;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid #f3f4f6;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.about-section-label {
  font-size: 12px;
  font-weight: 800;
  color: #111827;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.about-text {
  font-size: 15px;
  line-height: 1.6;
  color: #4B5563;
  font-weight: 500;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.about-feature-card {
  background: #fff;
  padding: 20px;
  border-radius: 24px;
  border: 1px solid #f3f4f6;
  text-align: left;
}

.about-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.about-feature-icon.yellow {
  background: #FFD700;
  color: #111827;
}

.about-feature-title {
  font-size: 16px;
  font-weight: 800;
  color: #111827;
  margin: 0 0 4px;
}

.about-feature-desc {
  font-size: 13px;
  color: #6B7280;
  line-height: 1.4;
  font-weight: 500;
}

.about-socials {
  display: flex;
  justify-content: space-between;
}

.about-social-link {
  width: 48px;
  height: 48px;
  background: #f9fafb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111827;
  transition: all 0.2s;
}

.about-social-link:hover {
  background: #111827;
  color: #fff;
  transform: translateY(-2px);
}

.about-legal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin: 32px 0 20px;
}

.about-legal-link {
  font-size: 15px;
  font-weight: 700;
  color: #6B7280;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.about-version {
  text-align: center;
  font-size: 13px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 20px;
}

/* About Modal Responsive */
@media (max-width: 480px) {
  .about-modal-content {
    max-height: 100%;
    border-radius: 0;
  }

  .about-hero {
    margin-top: 20px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════════════════
   CUSTOMER SUPPORT PAGE
   ═══════════════════════════════════════════════════════════════ */
.cs-top-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.cs-back-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: #111827;
  display: flex;
  align-items: center;
}

.cs-main-title {
  font-size: 24px;
  font-weight: 900;
  color: #111827;
  margin: 0;
  letter-spacing: -0.5px;
}

.cs-search-container {
  margin-bottom: 32px;
}

.cs-search-box {
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.cs-search-box input {
  border: none;
  width: 100%;
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  outline: none;
}

.cs-tabs {
  display: flex;
  gap: 12px;
}

.cs-tab {
  flex: 1;
  background: #fff;
  border: 1px solid #f3f4f6;
  padding: 14px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 700;
  color: #9CA3AF;
  cursor: pointer;
  transition: all 0.2s;
}

.cs-tab.active {
  background: #1A1A1A;
  border-color: #1A1A1A;
  color: #FFD700;
}

.cs-faq-box {
  margin-bottom: 40px;
}

.cs-faq-item {
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 20px;
  margin-bottom: 12px;
  overflow: hidden;
}

.cs-faq-item.active {
  border-color: #FFD700;
}

.cs-faq-head {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 800;
  color: #111827;
}

.cs-faq-body {
  padding: 0 24px 20px;
  font-size: 14px;
  color: #6B7280;
  line-height: 1.6;
  font-weight: 500;
  display: none;
}

.cs-faq-item.active .cs-faq-body {
  display: block;
}

.cs-faq-item.active .cs-faq-head svg {
  transform: rotate(180deg);
  stroke: #FFD700;
}


.cs-legal-mini {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.cs-legal-mini a {
  font-size: 13px;
  font-weight: 700;
  color: #D1D5DB;
  text-decoration: none;
}

.cs-legal-mini span {
  color: #f3f4f6;
}

.cs-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px 0;
  position: relative;
}

.cs-divider::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: #f3f4f6;
}

.cs-divider span {
  position: relative;
  background: #f9fafb;
  padding: 0 16px;
  font-size: 11px;
  font-weight: 800;
  color: #D1D5DB;
  letter-spacing: 2px;
}

.cs-contact-hero {
  text-align: center;
  margin-bottom: 32px;
}

.cs-headphones {
  width: 80px;
  height: 80px;
  background: #FFD700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(255, 215, 0, 0.3);
}

.cs-contact-title {
  font-size: 24px;
  font-weight: 900;
  color: #111827;
  margin-bottom: 6px;
}

.cs-contact-subtitle {
  font-size: 14px;
  color: #6B7280;
  font-weight: 600;
}

.cs-form {
  max-width: 500px;
  margin: 0 auto;
}

.cs-form-group {
  margin-bottom: 24px;
}

.cs-field-label {
  display: block;
  font-size: 11px;
  font-weight: 800;
  color: #D1D5DB;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.cs-cat-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.cs-cat-tab {
  background: #fff;
  border: 1px solid #f3f4f6;
  padding: 16px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 800;
  color: #6B7280;
  cursor: pointer;
  transition: all 0.2s;
}

.cs-cat-tab.active {
  background: #1A1A1A;
  border-color: #1A1A1A;
  color: #FFD700;
}

.cs-form-input {
  width: 100%;
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 16px;
  padding: 18px 24px;
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  outline: none;
}

.cs-form-textarea {
  width: 100%;
  height: 160px;
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 20px;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  outline: none;
  resize: none;
}

.cs-track-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border: 1px solid #f3f4f6;
  padding: 18px 24px;
  border-radius: 18px;
  text-decoration: none;
  margin-bottom: 24px;
}

.cs-track-info {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 800;
  color: #111827;
}

.btn-cs-send {
  width: 100%;
  background: #1A1A1A;
  color: #FFD700;
  border: none;
  padding: 22px;
  border-radius: 20px;
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.2s;
  margin-bottom: 32px;
}

.btn-cs-send:hover {
  background: #000;
}

.cs-alt-reach {
  text-align: center;
}

.cs-alt-reach p {
  font-size: 13px;
  font-weight: 800;
  color: #6B7280;
  margin-bottom: 12px;
}

.cs-alt-reach a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: #9CA3AF;
  text-decoration: underline;
}

/* CS Responsive */
@media (max-width: 480px) {
  .cs-cat-tabs {
    grid-template-columns: 1fr 1fr;
  }

  .cs-tabs {
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .cs-tab {
    flex: 0 0 auto;
    white-space: nowrap;
  }
}











/* ═══════════════════════════════════════════════════════════════
   ADDRESS MODAL
   ═══════════════════════════════════════════════════════════════ */
.address-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.address-modal.active {
  opacity: 1;
  visibility: visible;
}

.address-modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.address-modal-content {
  position: relative;
  width: 100%;
  max-width: 460px;
  background: #f9fafb;
  height: 100%;
  max-height: 90vh;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(40px);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.address-modal.active .address-modal-content {
  transform: translateY(0);
}

.address-modal-header {
  padding: 24px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border-bottom: 1px solid #f3f4f6;
}

.address-modal-back {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: #111827;
  display: flex;
  align-items: center;
}

.address-modal-title {
  font-size: 20px;
  font-weight: 900;
  color: #111827;
  margin: 0;
}

.address-modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.addr-field {
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 12px;
  border: 1px solid #e5e7eb;
}

.addr-field label {
  display: block;
  font-size: 11px;
  font-weight: 800;
  color: #9CA3AF;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.addr-field input {
  width: 100%;
  border: none;
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  padding: 0;
  outline: none;
  background: transparent;
}

.addr-field input::placeholder {
  color: #D1D5DB;
}

.addr-map-area {
  margin: 20px 0;
  border-radius: 20px;
  overflow: hidden;
  height: 200px;
  position: relative;
  background: #eee;
  border: 1px solid #e5e7eb;
}

.addr-map-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.btn-addr-save {
  width: 100%;
  background: #1A1A1A;
  color: #FFD700;
  border: none;
  padding: 18px;
  border-radius: 18px;
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 10px;
}

.btn-addr-save:hover {
  background: #000;
  transform: scale(1.02);
}

/* Responsive adjustment for modal */
@media (max-width: 480px) {
  .address-modal-content {
    max-height: 100%;
    border-radius: 0;
  }
}

/* ═══════════════════════════════════════════════════════════════
   MY REVIEWS PAGE
   ═══════════════════════════════════════════════════════════════ */
.mr-summary-card {
  display: flex;
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 24px;
  padding: 24px;
  margin-bottom: 32px;
  gap: 32px;
  align-items: center;
  border-top: 1.5px solid #FFD700;
}

.mr-summary-left {
  text-align: center;
}

.mr-avg-num {
  font-size: 48px;
  font-weight: 900;
  color: #111827;
  line-height: 1;
  margin-bottom: 8px;
}

.mr-stars-row {
  color: #FFD700;
  font-size: 20px;
  margin-bottom: 4px;
}

.mr-reviews-count {
  font-size: 13px;
  font-weight: 600;
  color: #9CA3AF;
}

.mr-summary-right {
  flex: 1;
}

.mr-bar-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.mr-bar-row:last-child { margin-bottom: 0; }

.mr-bar-row .num {
  font-size: 13px;
  font-weight: 700;
  color: #111827;
  width: 10px;
}

.mr-bar-row .s {
  font-size: 11px;
  color: #FFD700;
}

.mr-bar-track {
  flex: 1;
  height: 6px;
  background: #f3f4f6;
  border-radius: 3px;
  overflow: hidden;
}

.mr-bar-fill {
  height: 100%;
  background: #FFD700;
  border-radius: 3px;
}

.mr-bar-row .val {
  font-size: 13px;
  font-weight: 700;
  color: #9CA3AF;
  width: 10px;
  text-align: right;
}

.mr-photos-section {
  margin-bottom: 32px;
}

.mr-section-label {
  font-size: 14px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 16px;
}

.mr-photos-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.mr-photo-item {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
  background: #f3f4f6;
}

.mr-photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mr-photo-item.grad-purple {
  background: linear-gradient(45deg, #a855f7, #ec4899);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mr-icon-box {
  color: #fff;
  font-weight: 900;
  font-size: 24px;
}

.mr-controls {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
}

.mr-control-btn {
  background: #fff;
  border: 1px solid #f3f4f6;
  padding: 10px 16px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

.mr-control-btn:hover {
  border-color: #D1D5DB;
}

.mr-card {
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 24px;
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.01);
}

.mr-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.mr-biz-avatar {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  overflow: hidden;
  background: #f3f4f6;
}

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

.mr-biz-name {
  font-size: 16px;
  font-weight: 800;
  color: #111827;
  margin: 0 0 2px;
}

.mr-date {
  font-size: 12px;
  font-weight: 600;
  color: #9CA3AF;
}

.mr-card-stars {
  color: #D1D5DB;
  font-size: 14px;
  margin-bottom: 12px;
}

.mr-card-stars .star.filled {
  color: #FFD700;
}

.mr-text {
  font-size: 15px;
  line-height: 1.6;
  color: #4B5563;
  font-weight: 500;
  margin-bottom: 16px;
}

.mr-card-photos {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.mr-card-photos img {
  width: 100px;
  height: 100px;
  border-radius: 12px;
  object-fit: cover;
}

.mr-card-actions {
  display: flex;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid #f9fafb;
}

.mr-action-btn {
  background: none;
  border: none;
  padding: 0;
  font-size: 14px;
  font-weight: 700;
  color: #6B7280;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
}

.mr-action-btn:hover { color: #111827; }
.mr-action-btn.delete { color: #EF4444; }
.mr-action-btn.delete:hover { color: #DC2626; }

.mr-top-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.mr-back-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111827;
  text-decoration: none;
  flex-shrink: 0;
  transition: all 0.2s;
}

.mr-back-btn:hover {
  background: #e5e7eb;
}

.mr-main-title {
  font-size: 24px;
  font-weight: 900;
  color: #111827;
  margin: 0;
}

/* MR Responsive */
@media (max-width: 480px) {
  .mr-summary-card {
    flex-direction: column;
    text-align: left;
    align-items: stretch;
    gap: 20px;
  }

  .mr-summary-left {
    border-right: none;
    border-bottom: 1px solid #f3f4f6;
    padding-right: 0;
    padding-bottom: 20px;
  }

  .mr-main-title {
    font-size: 20px;
  }

  .mr-avg-num {
    font-size: 40px;
  }
}



.business-list-card {
  display: flex;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.business-list-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.bl-image-wrap {
  width: 320px;
  height: 280px;
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
}

.bl-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.bl-gallery {
  position: relative;
  bottom: 2px;
  left: 2px;
  right: 0;
  display: flex;
  gap: 8px;
  z-index: 5;
}

.bl-thumb {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.2s;
  margin: 0 auto;
}



.bl-content {
  flex: 1;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.bl-header {
  margin-bottom: 20px;
}

.bl-rating {
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 6px;
}

.bl-rating .star {
  color: #FFD700;
}

.bl-rating .count {
  color: #9CA3AF;
  font-weight: 500;
}

.bl-content h3 {
  font-size: 22px;
  font-weight: 900;
  color: #111827;
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}

.bl-location {
  font-size: 14px;
  font-weight: 600;
  color: #6B7280;
  display: flex;
  align-items: center;
  gap: 4px;
}

.bl-services {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bl-service-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #f3f4f6;
}

.bl-service-item:last-child {
  border-bottom: none;
}

.bl-service-name {
  font-size: 15px;
  font-weight: 700;
  color: #111827;
}

.bl-service-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: 20px;
}

.bl-service-duration {
  font-size: 13px;
  color: #9CA3AF;
  font-weight: 600;
}

.bl-service-price {
  font-size: 14px;
  font-weight: 800;
  color: #111827;
}

.btn-book-service {
  padding: 8px 20px;
  background: #f3f4f6;
  color: #111827;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-book-service:hover {
  background: #111827;
  color: #fff;
}

.bl-footer {
  margin-top: auto;
  padding-top: 16px;
}

.btn-book-list {
  font-size: 15px;
  font-weight: 800;
  color: #111827;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Explore Responsive */
@media (max-width: 900px) {
  .business-list-card {
    flex-direction: column;
  }

  .bl-image-wrap {
    width: 100%;
    height: 240px;
  }

  .bl-content {
    padding: 20px;
  }
}

/* ═══════════════════════════════════════════════════════
   MY FAVORITES PAGE  (.fav-*)
═══════════════════════════════════════════════════════ */

/* Summary bar */
.fav-summary-bar {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.fav-summary-stat {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 14px;
  padding: 14px 20px;
  flex: 1;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

.fav-summary-stat svg {
  color: #FFD700;
  flex-shrink: 0;
}

.fav-summary-count {
  font-size: 22px;
  font-weight: 900;
  color: #111827;
  line-height: 1;
}

.fav-summary-label {
  font-size: 12px;
  font-weight: 600;
  color: #6B7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* View Toggle */
.fav-view-toggle {
  display: flex;
  gap: 4px;
  background: #f3f4f6;
  border-radius: 12px;
  padding: 4px;
}

.fav-view-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 7px 10px;
  border-radius: 8px;
  color: #9CA3AF;
  display: flex;
  align-items: center;
  transition: all 0.2s;
}

.fav-view-btn.active {
  background: #fff;
  color: #111827;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

/* Favorites Grid */
.fav-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.fav-grid.list-view {
  grid-template-columns: 1fr;
}

/* Favorite Card */
.fav-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #f3f4f6;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}

.fav-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.fav-card-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  background: linear-gradient(135deg, #1A1A1A 0%, #374151 100%);
}

.fav-card-img-placeholder {
  width: 100%;
  height: 160px;
  background: linear-gradient(135deg, #1A1A1A 0%, #374151 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: 900;
  color: rgba(255,255,255,0.5);
  letter-spacing: -1px;
}

.fav-remove-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  background: rgba(0,0,0,0.5);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.2s, transform 0.2s;
  backdrop-filter: blur(4px);
}

.fav-remove-btn:hover {
  background: #ef4444;
  transform: scale(1.1);
}

.fav-card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #FFD700;
  color: #1A1A1A;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.fav-card-body {
  padding: 14px 16px 16px;
}

.fav-card-name {
  font-size: 15px;
  font-weight: 800;
  color: #111827;
  margin: 0 0 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fav-card-location {
  font-size: 12px;
  color: #6B7280;
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.fav-card-location svg {
  flex-shrink: 0;
}

.fav-card-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 8px;
}

.fav-card-stars {
  color: #FFD700;
  font-size: 13px;
  letter-spacing: 1px;
}

.fav-card-rating-num {
  font-size: 13px;
  font-weight: 700;
  color: #111827;
}

.fav-card-rating-count {
  font-size: 12px;
  color: #9CA3AF;
}

.fav-card-services {
  font-size: 12px;
  color: #6B7280;
  margin: 0 0 12px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.fav-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #f3f4f6;
  padding-top: 12px;
  margin-top: 4px;
}

.fav-card-price {
  font-size: 13px;
  font-weight: 700;
  color: #111827;
}

.fav-card-price span {
  font-weight: 400;
  color: #9CA3AF;
}

.fav-book-btn {
  background: #111827;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: background 0.2s, transform 0.15s;
}

.fav-book-btn:hover {
  background: #FFD700;
  color: #1A1A1A;
  transform: scale(1.03);
}

/* List view card override */
.fav-grid.list-view .fav-card {
  display: flex;
  border-radius: 14px;
}

.fav-grid.list-view .fav-card-img,
.fav-grid.list-view .fav-card-img-placeholder {
  width: 130px;
  height: auto;
  min-height: 100px;
  flex-shrink: 0;
  border-radius: 0;
}

.fav-grid.list-view .fav-card-body {
  flex: 1;
}

/* Recently Viewed */
.fav-recent-section {
  margin-bottom: 24px;
}

.fav-recent-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: thin;
  scrollbar-color: #e5e7eb transparent;
}

.fav-recent-scroll::-webkit-scrollbar {
  height: 4px;
}

.fav-recent-scroll::-webkit-scrollbar-thumb {
  background: #e5e7eb;
  border-radius: 4px;
}

.fav-recent-chip {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 40px;
  padding: 7px 14px 7px 8px;
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

.fav-recent-chip:hover {
  border-color: #FFD700;
  box-shadow: 0 2px 8px rgba(255,215,0,0.2);
}

.fav-recent-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
  background: #374151;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  overflow: hidden;
  flex-shrink: 0;
}

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

.fav-recent-name {
  font-size: 13px;
  font-weight: 700;
  color: #111827;
  white-space: nowrap;
}

.fav-recent-city {
  font-size: 11px;
  color: #9CA3AF;
}

/* Empty State */
.fav-empty-state {
  text-align: center;
  padding: 60px 20px;
}

.fav-empty-icon {
  margin: 0 auto 20px;
  width: 96px;
  height: 96px;
  background: #f9fafb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fav-empty-title {
  font-size: 20px;
  font-weight: 800;
  color: #111827;
  margin: 0 0 10px;
}

.fav-empty-text {
  font-size: 14px;
  color: #6B7280;
  max-width: 300px;
  margin: 0 auto 24px;
  line-height: 1.6;
}

.fav-empty-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFD700;
  color: #1A1A1A;
  font-size: 14px;
  font-weight: 800;
  padding: 12px 24px;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.2s;
}

.fav-empty-cta:hover {
  background: #111827;
  color: #FFD700;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* Loading Skeleton */
.fav-loading {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.fav-skeleton-card {
  height: 280px;
  background: linear-gradient(90deg, #f3f4f6 25%, #e9ecef 50%, #f3f4f6 75%);
  background-size: 200% 100%;
  animation: favSkeletonShimmer 1.4s ease-in-out infinite;
  border-radius: 18px;
}

@keyframes favSkeletonShimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Online badge */
.fav-online-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #22c55e;
  border-radius: 50%;
  margin-right: 4px;
  vertical-align: middle;
}

/* Responsive */
@media (max-width: 640px) {
  .fav-grid {
    grid-template-columns: 1fr;
  }
  .fav-summary-bar {
    flex-direction: column;
  }
}

/* ═══════════════════════════════════════════════════════════════
   MY CONVERSATIONS / CHAT SYSTEM
   ═══════════════════════════════════════════════════════════════ */
.chat-list {
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 20px;
  overflow: hidden;
}

.chat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  border-bottom: 1px solid #f9fafb;
  cursor: pointer;
  transition: all 0.2s ease;
}

.chat-item:last-child {
  border-bottom: none;
}

.chat-item:hover {
  background: #fdfdfd;
}

.chat-item.unread {
  background: #fffbef;
}

.chat-avatar-wrap {
  position: relative;
  flex-shrink: 0;
}

.chat-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f4f6;
  font-weight: 700;
  color: #4b5563;
  font-size: 16px;
  border: 1px solid #e5e7eb;
}

.chat-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.chat-online-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 12px;
  height: 12px;
  background: #22c55e;
  border: 2px solid #fff;
  border-radius: 50%;
}

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

.chat-header-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 4px;
}

.chat-name {
  font-weight: 700;
  font-size: 15px;
  color: #111827;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.chat-date {
  font-size: 12px;
  color: #9ca3af;
  flex-shrink: 0;
}

.chat-preview-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-preview {
  font-size: 13px;
  color: #6b7280;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.chat-item.unread .chat-preview {
  color: #111827;
  font-weight: 600;
}

.chat-badge {
  background: #ffd700;
  color: #111827;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
  min-width: 18px;
  text-align: center;
}

/* Chat Loading Skeleton */
.chat-loading {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chat-skeleton-item {
  height: 80px;
  background: linear-gradient(90deg, #f3f4f6 25%, #e9ecef 50%, #f3f4f6 75%);
  background-size: 200% 100%;
  animation: favSkeletonShimmer 1.4s ease-in-out infinite;
  border-radius: 20px;
}

.chat-empty-state {
  text-align: center;
  padding: 60px 20px;
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 24px;
}

.chat-empty-icon {
  margin-bottom: 18px;
}

.chat-empty-title {
  font-size: 18px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 8px;
}

.chat-empty-text {
  color: #6b7280;
  font-size: 14px;
  max-width: 320px;
  margin: 0 auto 24px;
}

.chat-empty-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffd700;
  color: #111827;
  font-weight: 800;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.chat-empty-cta:hover {
  background: #111827;
  color: #ffd700;
}

/* Chat detail screen style */
#chatDetailScreen {
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 600px;
}

.chat-detail-header {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid #f3f4f6;
  background: #fff;
  gap: 12px;
}

.chat-detail-back-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: #111827;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s;
}

.chat-detail-back-btn:hover {
  background: #f3f4f6;
}

.chat-detail-user-info {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.chat-detail-avatar-wrap {
  position: relative;
}

.chat-detail-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #4b5563;
  font-size: 14px;
  border: 1px solid #e5e7eb;
  object-fit: cover;
}

.chat-detail-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.chat-detail-online-dot {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 10px;
  height: 10px;
  background: #22c55e;
  border: 2px solid #fff;
  border-radius: 50%;
}

.chat-detail-name {
  font-weight: 800;
  font-size: 15px;
  color: #111827;
}

.chat-detail-status {
  font-size: 12px;
  color: #22c55e;
  font-weight: 500;
}

.chat-detail-status.offline {
  color: #9ca3af;
}

.chat-detail-options-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: #6b7280;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.chat-detail-options-btn:hover {
  background: #f3f4f6;
  color: #111827;
}

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

/* Chat bubble styling */
.chat-msg-row {
  display: flex;
  width: 100%;
}

.chat-msg-row.sent {
  justify-content: flex-end;
}

.chat-msg-row.received {
  justify-content: flex-start;
}

.chat-bubble {
  max-width: 70%;
  padding: 12px 16px;
  font-size: 14px;
  line-height: 1.5;
  position: relative;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.chat-msg-row.sent .chat-bubble {
  background: #ffd700;
  color: #111827;
  border-radius: 18px 18px 4px 18px;
}

.chat-msg-row.received .chat-bubble {
  background: #fff;
  color: #111827;
  border-radius: 18px 18px 18px 4px;
  border: 1px solid #f1f2f4;
}

.chat-msg-image {
  max-width: 100%;
  border-radius: 12px;
  margin-bottom: 6px;
  display: block;
}

.chat-msg-meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  font-size: 10px;
  color: #888;
  margin-top: 4px;
}

.chat-msg-row.sent .chat-msg-meta {
  color: rgba(17, 24, 39, 0.6);
}

.chat-msg-tick {
  font-size: 10px;
  display: inline-block;
}

.chat-input-footer {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  background: #fff;
  border-top: 1px solid #f3f4f6;
  gap: 10px;
}

.chat-input-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: #6b7280;
  padding: 6px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.chat-input-btn:hover {
  background: #f3f4f6;
  color: #111827;
}

.chat-input-field {
  flex: 1;
  background: #f3f4f6;
  border: none;
  border-radius: 24px;
  padding: 12px 20px;
  font-size: 14px;
  font-family: inherit;
  color: #111827;
  outline: none;
  transition: background 0.2s;
}

.chat-input-field:focus {
  background: #eaecef;
}

.chat-send-btn {
  background: #111827;
  color: #ffd700;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
}

.chat-send-btn:hover {
  background: #000;
  transform: scale(1.05);
}

/* Support for custom template card styles if messages type is rich / html */
.chat-custom-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  padding: 12px;
  margin-bottom: 6px;
  font-size: 13px;
  color: #374151;
  text-align: center;
}

.chat-custom-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  #chatDetailScreen {
    height: calc(100vh - 200px);
  }
}

/* ═══════════════════════════════════════════════════════════════
   MY BOOKINGS PAGE / ACTIVITIES
   ═══════════════════════════════════════════════════════════════ */
.booking-tabs {
  display: flex;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f3f4f6;
  overflow-x: auto;
  scrollbar-width: none; /* Firefox */
}
.booking-tabs::-webkit-scrollbar {
  display: none; /* Safari and Chrome */
}

.booking-tab {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 12px 20px;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 100px;
  outline: none;
}

.booking-tab:hover {
  border-color: #ffd700;
  background: #fffdf5;
}

.booking-tab.active {
  background: #111827;
  border-color: #111827;
  box-shadow: 0 4px 15px rgba(17, 24, 39, 0.15);
}

.booking-tab .tab-label {
  font-weight: 700;
  font-size: 13px;
  color: #6b7280;
  transition: color 0.2s;
}

.booking-tab.active .tab-label {
  color: #ffd700;
}

.booking-tab .tab-badge {
  font-size: 11px;
  font-weight: 900;
  padding: 2px 8px;
  border-radius: 10px;
  min-width: 20px;
  text-align: center;
  transition: all 0.2s;
}

.booking-tab .tab-badge.yellow {
  background: #fef3c7;
  color: #d97706;
}
.booking-tab.active .tab-badge.yellow {
  background: #ffd700;
  color: #111827;
}

.booking-tab .tab-badge.green {
  background: #d1fae5;
  color: #059669;
}
.booking-tab.active .tab-badge.green {
  background: #10b981;
  color: #fff;
}

.booking-tab .tab-badge.gray {
  background: #f3f4f6;
  color: #4b5563;
}
.booking-tab.active .tab-badge.gray {
  background: #6b7280;
  color: #fff;
}

.booking-controls {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: 20px 0 16px;
}

.sort-by-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sort-by-label {
  font-size: 13px;
  font-weight: 700;
  color: #6b7280;
}

.booking-sort-select {
  border: 1px solid #e5e7eb;
  padding: 8px 16px;
  border-radius: 12px;
  font-family: inherit;
  font-weight: 700;
  font-size: 13px;
  color: #111827;
  outline: none;
  cursor: pointer;
  background: #fff;
  transition: border-color 0.2s;
}
.booking-sort-select:focus {
  border-color: #ffd700;
}

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

.booking-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 24px;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.booking-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.04);
}

.booking-card.status-pending {
  border: 1.5px solid #ffd700;
}

.booking-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.booking-card-badges {
  display: flex;
  gap: 8px;
  align-items: center;
}

.booking-status-badge {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 8px;
  letter-spacing: 0.5px;
}

.booking-status-badge.pending {
  color: #b45309;
  background: #fef3c7;
}
.booking-status-badge.confirmed {
  color: #047857;
  background: #d1fae5;
}
.booking-status-badge.completed {
  color: #374151;
  background: #f3f4f6;
}
.booking-status-badge.canceled {
  color: #b91c1c;
  background: #fee2e2;
}

.booking-mobile-badge {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 8px;
  color: #0f766e;
  background: #ccfbf1;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.booking-card-time-ago {
  font-size: 12px;
  color: #9ca3af;
  font-weight: 500;
}

.booking-card-date-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 900;
  color: #111827;
  margin-bottom: 6px;
}

.booking-card-time-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #6b7280;
  font-weight: 600;
  margin-bottom: 18px;
}

.booking-card-services {
  border-top: 1px dashed #e5e7eb;
  padding-top: 14px;
  margin-bottom: 18px;
}

.booking-service-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  font-size: 14px;
}
.booking-service-item:last-child {
  margin-bottom: 0;
}

.booking-service-name {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: #374151;
}

.booking-service-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

.booking-service-price {
  font-weight: 750;
  color: #111827;
}

.booking-card-divider {
  border: none;
  border-top: 1px solid #f3f4f6;
  margin: 18px 0;
}

.booking-biz-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.booking-biz-info {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.booking-biz-img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid #e5e7eb;
  flex-shrink: 0;
}

.booking-biz-img-placeholder {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #4b5563;
  font-size: 14px;
  border: 1px solid #e5e7eb;
  flex-shrink: 0;
}

.booking-biz-details {
  min-width: 0;
}

.booking-biz-name {
  font-weight: 800;
  font-size: 14px;
  color: #111827;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.booking-biz-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: #6b7280;
  font-weight: 600;
}

.booking-biz-rating .star {
  color: #ffd700;
}

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

.booking-total-box {
  background: #f3f4f6;
  color: #111827;
  font-weight: 800;
  font-size: 14px;
  padding: 8px 14px;
  border-radius: 12px;
  white-space: nowrap;
}

.booking-fav-btn {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: #fff;
  transition: all 0.2s;
  color: #9ca3af;
}

.booking-fav-btn:hover,
.booking-fav-btn.active {
  color: #ef4444;
  border-color: #fee2e2;
  background: #fff5f5;
}

.booking-actions {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.booking-btn-action {
  flex: 1;
  height: 46px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  outline: none;
}

.booking-btn-action.chat {
  background: #111827;
  color: #ffd700;
}
.booking-btn-action.chat:hover {
  background: #000;
}

.booking-btn-action.track {
  background: #111827;
  color: #ffd700;
}
.booking-btn-action.track:hover {
  background: #000;
}

.booking-btn-cancel {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: none;
  background: #fee2e2;
  color: #dc2626;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
  outline: none;
}
.booking-btn-cancel:hover {
  background: #fecaca;
  transform: scale(1.02);
}

/* Skeletons */
.booking-loading {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.booking-skeleton-card {
  height: 220px;
  background: linear-gradient(90deg, #f3f4f6 25%, #e9ecef 50%, #f3f4f6 75%);
  background-size: 200% 100%;
  animation: favSkeletonShimmer 1.4s ease-in-out infinite;
  border-radius: 24px;
}

/* Empty State */
.booking-empty-state {
  text-align: center;
  padding: 60px 20px;
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 24px;
}
.booking-empty-icon {
  margin-bottom: 18px;
}
.booking-empty-title {
  font-size: 18px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 8px;
}
.booking-empty-text {
  color: #6b7280;
  font-size: 14px;
  max-width: 320px;
  margin: 0 auto 24px;
}
.booking-empty-cta {
  display: inline-flex;
  align-items: center;
  background: #ffd700;
  color: #111827;
  font-weight: 800;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.2s;
}
.booking-empty-cta:hover {
  background: #111827;
  color: #ffd700;
}

/* Modal styling */
.booking-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  backdrop-filter: blur(4px);
}

.booking-modal-content {
  background: #fff;
  border-radius: 24px;
  width: 90%;
  max-width: 440px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  animation: modalSlideIn 0.3s ease-out;
}

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

.booking-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid #f3f4f6;
}

.booking-modal-header h3 {
  font-size: 16px;
  font-weight: 800;
  color: #111827;
  margin: 0;
}

.booking-modal-close {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: #9ca3af;
}

.booking-modal-body {
  padding: 24px;
}

.track-map-mock {
  background: #fffdf5;
  border: 1.5px dashed #ffd700;
  border-radius: 18px;
  padding: 20px;
  text-align: center;
  margin-bottom: 24px;
}

.track-map-mock p {
  font-weight: 800;
  font-size: 14px;
  color: #111827;
  margin: 12px 0 4px;
}

.track-eta {
  font-size: 12px;
  color: #d97706;
  font-weight: 700;
}

.track-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.track-step {
  font-size: 13px;
  font-weight: 600;
  color: #9ca3af;
  padding-left: 20px;
  position: relative;
}

.track-step::before {
  content: '';
  position: absolute;
  left: 0;
  top: 5px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e5e7eb;
}

.track-step.active {
  color: #111827;
}

.track-step.active::before {
  background: #22c55e;
}

/* Switch toggle styling */
.switch-toggle {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.switch-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider-round {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 24px;
}

.slider-round:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.switch-toggle input:checked + .slider-round {
  background-color: var(--success, #22C55E);
}

.switch-toggle input:checked + .slider-round:before {
  transform: translateX(20px);
}

@media (max-width: 480px) {
    .bl-info h3 {
        font-size: 24px !important;
    }
}

.promo-badge-explore {
    bottom: 10px !important;
}