/* Aboreto Font */
@font-face {
  font-family: 'Aboreto';
  src: url('/fonts/Aboreto-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* CSS Variables */
:root {
  /* Luxurious beauty palette */
  --background: 30 25% 98%;
  --foreground: 20 20% 15%;

  --card: 30 30% 99%;
  --card-foreground: 20 20% 15%;

  --popover: 30 30% 99%;
  --popover-foreground: 20 20% 15%;

  /* Chocolate brown primary */
  --primary: 25 45% 35%;
  --primary-foreground: 0 0% 100%;

  /* Light yellow secondary */
  --secondary: 50 80% 75%;
  --secondary-foreground: 20 20% 25%;

  /* Muted warm tones */
  --muted: 30 20% 92%;
  --muted-foreground: 20 10% 45%;

  /* Chocolate brown accent */
  --accent: 25 45% 35%;
  --accent-foreground: 0 0% 100%;

  --destructive: 0 84% 60%;
  --destructive-foreground: 0 0% 100%;

  --border: 30 20% 88%;
  --input: 30 20% 88%;
  --ring: 25 45% 35%;

  --radius: 0.75rem;

  /* Custom tokens */
  --gold: 42 70% 55%;
  --gold-muted: 42 40% 75%;
  --light-yellow-accent: 50 80% 75%;
  --chocolate-light: 25 45% 50%;
  --chocolate-dark: 25 45% 25%;
  /* Design reference colors for Afro Braiders */
  --pale-gold: 45 60% 85%;
  --chocolate-brown: 25 45% 35%;
  --light-yellow: 50 80% 75%;
  --dark-brown: 20 50% 15%;
  --pink-badge: 345 70% 65%;
  --pink-accent: 345 70% 65%;
  
  /* Gradients */
  --gradient-hero: linear-gradient(135deg, hsl(15 60% 65% / 0.15) 0%, hsl(345 45% 35% / 0.1) 50%, hsl(42 70% 55% / 0.1) 100%);
  --gradient-card: linear-gradient(180deg, hsl(30 30% 99%) 0%, hsl(30 25% 96%) 100%);
  --gradient-button: linear-gradient(135deg, hsl(15 60% 65%) 0%, hsl(345 45% 45%) 100%);
  --gradient-gold: linear-gradient(135deg, hsl(42 70% 55%) 0%, hsl(35 60% 50%) 100%);
  
  /* Shadows */
  --shadow-soft: 0 4px 20px -4px hsl(20 20% 15% / 0.08);
  --shadow-card: 0 8px 30px -8px hsl(20 20% 15% / 0.1);
  --shadow-elevated: 0 20px 50px -15px hsl(20 20% 15% / 0.15);
  --shadow-glow: 0 0 40px hsl(15 60% 65% / 0.2);
}

/* Base Styles */
* {
  box-sizing: border-box;
  border-color: hsl(var(--border));
}

body {
  margin: 0;
  padding: 0;
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: 'Aboreto', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Aboreto', sans-serif;
  margin: 0;
}

/* Utility Classes */
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  position: relative;
  overflow: visible;
}

@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1400px;
  }
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: hsl(var(--background) / 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid hsl(var(--border) / 0.5);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: inherit;
}

.logo-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: hsl(var(--chocolate-brown));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  border: 2px solid #8b4513;
  position: relative;
}

.logo-icon::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #8b4513;
  pointer-events: none;
}

.logo-icon img {
  object-position: center top;
}

/* Logo crop adjustment: Preserve more hair, reduce neck crop */
/* Final crop alignment pending reference image */

.logo-text {
  font-family: 'Aboreto', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: hsl(var(--foreground));
}

nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  nav {
    display: flex;
  }
}

nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--dark-brown));
  text-decoration: none;
  transition: color 0.2s, border-bottom 0.2s;
  position: relative;
  padding-bottom: 0.25rem;
}

nav a:hover {
  color: hsl(var(--dark-brown));
  opacity: 0.8;
}

nav a.active {
  color: hsl(var(--dark-brown));
}

nav a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: hsl(var(--dark-brown));
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: hsl(var(--dark-brown));
  z-index: 60;
}

.mobile-menu-toggle svg {
  width: 1.5rem;
  height: 1.5rem;
}

.desktop-nav {
  display: none;
}

@media (min-width: 768px) {
  .desktop-nav {
    display: flex;
  }
  
  .mobile-menu-toggle {
    display: none;
  }
  
  .mobile-nav {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .desktop-nav {
    display: none;
  }
  
  /* Hide header CTA buttons on mobile - they're in mobile menu */
  .header-cta {
    display: none !important;
  }
  
  .mobile-nav {
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
    border-top: 1px solid hsl(var(--border) / 0.5);
    margin-top: 1rem;
    background: hsl(var(--background) / 0.98);
    backdrop-filter: blur(12px);
  }
  
  .mobile-nav.active {
    display: flex;
  }
  
  .mobile-nav a {
    display: block;
    padding: 0.875rem 1rem;
    color: hsl(var(--dark-brown));
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    border-bottom: 1px solid hsl(var(--border) / 0.3);
    transition: background 0.2s;
  }
  
  .mobile-nav a:last-child {
    border-bottom: none;
  }
  
  .mobile-nav a:hover,
  .mobile-nav a.active {
    background: hsl(var(--pale-gold) / 0.2);
    color: hsl(var(--dark-brown));
  }
  
  .mobile-nav-cta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem;
    margin-top: 0.5rem;
    border-top: 1px solid hsl(var(--border) / 0.5);
  }
  
  .mobile-nav-cta .btn {
    width: 100%;
    justify-content: center;
    min-height: 2.75rem;
    font-size: 0.9375rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.025em;
  }
  
  .mobile-nav-cta .btn-hero {
    background: #392013 !important;
    color: white !important;
    box-shadow: 0 2px 8px rgba(57, 32, 19, 0.3);
  }
  
  .mobile-nav-cta .btn-hero:hover,
  .mobile-nav-cta .btn-hero:active {
    background: rgba(57, 32, 19, 0.9) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(57, 32, 19, 0.4);
  }
  
  .mobile-nav-cta .btn-ghost {
    color: hsl(var(--dark-brown)) !important;
    border: 1px solid hsl(var(--border));
  }
  
  .mobile-nav-cta .btn-ghost:hover,
  .mobile-nav-cta .btn-ghost:active {
    background: hsl(var(--pale-gold) / 0.2) !important;
    color: hsl(var(--dark-brown)) !important;
  }
  
  .mobile-nav-cta form {
    width: 100%;
    margin: 0;
  }
  
  .mobile-nav-cta button[type="submit"] {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .mobile-nav-cta {
    padding: 0.875rem;
    gap: 0.625rem;
  }
  
  .mobile-nav-cta .btn {
    min-height: 2.5rem;
    font-size: 0.875rem;
    padding: 0.625rem 1.25rem;
  }
}

@media (max-width: 430px) {
  .mobile-nav-cta {
    padding: 0.75rem;
    gap: 0.5rem;
  }
  
  .mobile-nav-cta .btn {
    min-height: 2.5rem;
    font-size: 0.875rem;
    padding: 0.625rem 1rem;
  }
}
  
  /* Header Logo Responsive */
  .logo-link {
    flex-shrink: 1;
    min-width: 0;
  }
  
  .logo-link img[alt="AFRO BRAIDERS"] {
    height: 3.5rem !important;
    max-width: 100%;
  }
  
  .logo-icon {
    width: 3.5rem !important;
    height: 3.5rem !important;
    flex-shrink: 0;
  }
  
  .header-content {
    gap: 0.75rem;
  }
}

@media (max-width: 480px) {
  .logo-link img[alt="AFRO BRAIDERS"] {
    height: 2rem !important;
  }
  
  .logo-icon {
    width: 2rem !important;
    height: 2rem !important;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: calc(var(--radius) - 2px);
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  text-decoration: none;
  gap: 0.5rem;
}

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

.btn-sm {
  height: 2rem;
  padding: 0 0.75rem;
  font-size: 0.875rem;
}

.btn-md {
  height: 2.5rem;
  padding: 0 1rem;
  font-size: 0.875rem;
}

.btn-lg {
  height: 3rem;
  padding: 0 1.5rem;
  font-size: 1rem;
}

.btn-xl {
  height: 3.5rem;
  padding: 0 2rem;
  font-size: 1.125rem;
}

.btn-ghost {
  background: transparent;
  color: hsl(var(--foreground));
  transition: all 0.3s ease;
}

.btn-ghost:hover {
  background: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
}

.btn-hero {
  background: #392013;
  color: white;
  box-shadow: 0 4px 20px -4px rgba(224, 187, 56, 0.4), var(--shadow-soft);
}

.btn-hero:hover {
  background: rgba(57, 32, 19, 0.9);
  box-shadow: 0 8px 30px -8px rgba(224, 187, 56, 0.6), var(--shadow-card);
  transform: translateY(-1px);
}

.btn-gold {
  background: rgba(255, 255, 255, 0.2);
  color: #FFD700;
  box-shadow: 0 4px 20px -4px rgba(255, 215, 0, 0.6), var(--shadow-soft);
}

.btn-gold:hover {
  background: rgba(255, 255, 255, 0.3);
  color: #FFD700;
  box-shadow: 0 8px 30px -8px rgba(255, 215, 0, 0.8), var(--shadow-card);
  transform: translateY(-1px);
}

.btn-gold:hover .btn-arrow {
  transform: translateX(4px);
}

.btn-outline {
  background: transparent;
  border: 1px solid hsl(var(--border));
  color: hsl(var(--foreground));
}

.btn-outline:hover {
  background: hsl(var(--muted));
}

.btn-view-all {
  background: white;
  color: hsl(var(--foreground));
  border: 1px solid hsl(var(--border));
  box-shadow: none;
}

.btn-view-all:hover {
  background: hsl(345 45% 35%);
  color: white;
  border-color: hsl(345 45% 35%);
  box-shadow: 0 4px 20px -4px rgba(224, 187, 56, 0.4), var(--shadow-soft);
}

.btn-view-all svg {
  color: inherit;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
  overflow-y: visible;
  padding-top: 5rem;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 64rem;
  margin: 0 auto;
  text-align: center;
  padding: 0 1rem;
  overflow: visible;
  isolation: isolate;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, hsl(15 60% 65% / 0.1) 0%, hsl(345 45% 35% / 0.05) 50%, hsl(42 70% 55% / 0.05) 100%);
  background-color: hsl(30 25% 98%);
}

.hero-decoration {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.3;
}

.hero-decoration-1 {
  top: 5rem;
  left: 2.5rem;
  width: 18rem;
  height: 18rem;
  background: hsl(var(--primary) / 0.1);
  animation: float 6s ease-in-out infinite;
}

.hero-decoration-2 {
  bottom: 5rem;
  right: 2.5rem;
  width: 24rem;
  height: 24rem;
  background: hsl(var(--gold) / 0.1);
  animation: float 6s ease-in-out infinite;
  animation-delay: 2s;
}

.hero-decoration-3 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: hsl(var(--light-yellow-accent) / 0.05);
  filter: blur(60px);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: hsl(var(--light-yellow-accent));
  backdrop-filter: blur(4px);
  border: 1px solid hsl(var(--primary) / 0.2);
  margin-bottom: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--foreground));
}

.hero-badge-dot {
  position: relative;
  width: 0.5rem;
  height: 0.5rem;
}

.hero-badge-dot::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: hsl(var(--primary));
  animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.hero-badge-dot::after {
  content: '';
  position: relative;
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: hsl(var(--primary));
}

.hero-title {
  font-family: 'Aboreto', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: hsl(var(--foreground));
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.text-gradient {
  background: var(--gradient-button);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
  max-width: 42rem;
  margin: 0 auto 2rem;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.25rem;
  }
}

.hero-search {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: 36rem;
  margin: 0 auto 2rem;
  padding-top: 1rem;
  position: relative;
  z-index: 1;
  overflow: visible;
}

@media (min-width: 640px) {
  .hero-search {
    flex-direction: row;
  }
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding-top: 2rem;
}

@media (min-width: 768px) {
  .hero-stats {
    gap: 3rem;
  }
}

.hero-stat {
  text-align: center;
}

.hero-stat-value {
  font-family: 'Aboreto', sans-serif;
  font-size: 1.875rem;
  font-weight: 700;
  color: hsl(var(--foreground));
}

@media (min-width: 768px) {
  .hero-stat-value {
    font-size: 2.25rem;
  }
}

.hero-stat-label {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

/* Sections */
.section {
  padding: 6rem 0;
}

.section-secondary {
  background: hsl(var(--secondary) / 0.5);
}

.section-title {
  font-family: 'Aboreto', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  color: hsl(var(--foreground));
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-subtitle {
  font-size: 1.125rem;
  text-align: center;
  color: hsl(var(--muted-foreground));
  max-width: 42rem;
  margin: 0 auto 3rem;
}

/* Grid */
.grid {
  display: grid;
  gap: 1.5rem;
}

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

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

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

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

@media (min-width: 640px) {
  .grid-sm-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .grid-md-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .grid-md-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-lg-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .grid-lg-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .grid-lg-2 {
    grid-column: span 2;
  }
  
  .grid-lg-1 {
    grid-column: span 1;
  }
}

/* Cards */
.card {
  background: hsl(var(--dark-brown));
  border-radius: 1rem;
  box-shadow: 0 4px 20px -4px rgba(0, 0, 0, 0.08), 0 2px 8px -2px rgba(0, 0, 0, 0.04);
  border: none;
  outline: none;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: white;
}

.card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 12px 40px -8px rgba(0, 0, 0, 0.25), 0 4px 12px -2px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(224, 187, 56, 0.1);
}

.salon-card {
  position: relative;
}

.salon-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 1rem;
  padding: 1px;
  background: linear-gradient(135deg, rgba(224, 187, 56, 0.3), rgba(224, 187, 56, 0.1), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.salon-card:hover::before {
  opacity: 1;
}

.card-elevated {
  background: var(--gradient-card);
  box-shadow: var(--shadow-card);
}

.card-content {
  padding: 1.5rem;
  color: white;
  position: relative;
  z-index: 1;
}

.salon-card .card-content {
  background: linear-gradient(to bottom, hsl(var(--dark-brown)), hsl(var(--dark-brown)));
  transition: background 0.3s ease;
}

.salon-card:hover .card-content {
  background: linear-gradient(to bottom, hsl(var(--dark-brown)), rgba(45, 24, 16, 0.98));
}

.salon-card .card-content h3 {
  transition: color 0.3s ease;
}

.salon-card:hover .card-content h3 {
  color: rgba(255, 255, 255, 0.95);
}

.salon-card .card-content p,
.salon-card .card-content span {
  transition: color 0.3s ease;
}

.salon-card:hover .card-content p,
.salon-card:hover .card-content span {
  color: rgba(255, 255, 255, 0.9);
}

.salon-card-image {
  position: relative;
  height: 200px;
  background: #1a0f0a;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 0.5rem 0.5rem 0 0;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), filter 0.3s ease;
}

.salon-card:hover .salon-card-image {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.salon-card-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.4) 100%);
  pointer-events: none;
  z-index: 1;
}

.salon-card-badges {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  max-width: calc(100% - 1.5rem);
  z-index: 2;
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  border-radius: 9999px;
  font-weight: 500;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.salon-card:hover .badge {
  transform: translateY(-1px);
}

.badge-sm {
  padding: 0.125rem 0.5rem;
  font-size: 0.75rem;
}

.badge-md {
  padding: 0.25rem 0.75rem;
  font-size: 0.875rem;
}

.badge-featured {
  background: linear-gradient(135deg, #392013, rgba(57, 32, 19, 0.9));
  color: white;
  box-shadow: 0 4px 20px -4px rgba(224, 187, 56, 0.4), var(--shadow-soft);
  backdrop-filter: blur(4px);
}

.salon-card:hover .badge-featured {
  box-shadow: 0 6px 24px -4px rgba(224, 187, 56, 0.6), var(--shadow-soft);
}

.badge-boosted {
  background: linear-gradient(135deg, #392013, rgba(57, 32, 19, 0.9));
  color: white;
  box-shadow: 0 4px 20px -4px rgba(224, 187, 56, 0.4), var(--shadow-soft);
  backdrop-filter: blur(4px);
}

.salon-card:hover .badge-boosted {
  box-shadow: 0 6px 24px -4px rgba(224, 187, 56, 0.6), var(--shadow-soft);
}

.badge-founding {
  background: linear-gradient(135deg, #392013, rgba(57, 32, 19, 0.9));
  color: white;
  box-shadow: 0 4px 20px -4px rgba(224, 187, 56, 0.4), var(--shadow-soft);
  backdrop-filter: blur(4px);
}

.salon-card:hover .badge-founding {
  box-shadow: 0 6px 24px -4px rgba(224, 187, 56, 0.6), var(--shadow-soft);
}

.badge-service {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.2s ease;
}

.salon-card:hover .badge-service {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.badge-service-hair {
  background: #FFD700;
  color: #392013;
}

.badge-service-hair svg {
  color: #392013;
}

.badge-service-nails {
  background: #FFD700;
  color: #392013;
}

.badge-service-nails svg {
  color: #392013;
}

.badge-service-lashes {
  background: #FFD700;
  color: #392013;
}

.badge-service-lashes svg {
  color: #392013;
}

.badge-service-barber {
  background: #FFD700;
  color: #392013;
}

.badge-service-barber svg {
  color: #392013;
}

.badge-service-braiders {
  background: #FFD700;
  color: #8B4513;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.badge-service-braiders svg {
  color: #8B4513;
}

.badge-service-makeup {
  background: #FFD700;
  color: #392013;
}

.badge-service-makeup svg {
  color: #392013;
}

.badge-top-country {
  background: hsl(var(--chocolate-brown));
  color: white;
  box-shadow: var(--shadow-soft);
  border: 1px solid hsl(var(--chocolate-brown) / 0.3);
}

/* Star Rating */
.star-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-direction: row;
}

.star {
  width: 1rem;
  height: 1rem;
  color: #fbbf24;
  fill: #fbbf24;
  transition: all 0.2s ease;
}

.card .star {
  color: #fbbf24;
  fill: #fbbf24;
}

.star-empty {
  color: #d1d5db !important;
  fill: none !important;
  stroke: #d1d5db !important;
  stroke-width: 1.5;
}

.card .star-empty {
  color: rgba(255, 255, 255, 0.3);
  fill: none;
  stroke: rgba(255, 255, 255, 0.3);
  stroke-width: 1.5;
}

/* Review card stars - ensure correct display */
.review-card .star-rating .star {
  flex-shrink: 0;
}

.review-card .star-rating .star:not(.star-empty) {
  color: #fbbf24 !important;
  fill: #fbbf24 !important;
}

.review-card .star-rating .star.star-empty {
  color: #d1d5db !important;
  fill: none !important;
  stroke: #d1d5db !important;
}

.star-sm {
  width: 0.875rem;
  height: 0.875rem;
}

.star-md {
  width: 1rem;
  height: 1rem;
}

.star-lg {
  width: 1.25rem;
  height: 1.25rem;
}

/* Service Categories */
.service-category {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  padding: 2rem;
  text-align: left;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  background: none;
  display: block;
  width: 100%;
  min-height: 200px;
  text-decoration: none;
  color: inherit;
}

.service-category:hover {
  text-decoration: none;
  transform: scale(1.02);
}

.service-category:visited {
  text-decoration: none;
}

.service-category:active {
  text-decoration: none;
}


.service-category-bg {
  position: absolute;
  inset: 0;
  opacity: 1;
  border-radius: 1rem;
}

.service-category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
}

.service-category-content {
  position: relative;
  z-index: 10;
}

.service-category-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.service-category-icon svg,
.service-category-icon span {
  width: 1.75rem;
  height: 1.75rem;
  color: white;
}

.service-category-title {
  font-family: 'Aboreto', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
  text-decoration: none;
}

.service-category-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  text-decoration: none;
}

/* How It Works */
.how-it-works-step {
  position: relative;
  text-align: center;
}

.how-it-works-icon {
  position: relative;
  margin: 0 auto;
  width: 6rem;
  height: 6rem;
  border-radius: 1rem;
  background: var(--gradient-button);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-card);
  margin-bottom: 1.5rem;
  transition: all 0.3s;
}

.how-it-works-icon:hover {
  box-shadow: var(--shadow-elevated);
}

.how-it-works-number {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: hsl(var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  color: hsl(var(--primary-foreground));
  box-shadow: var(--shadow-soft);
}

.how-it-works-icon svg {
  width: 2.5rem;
  height: 2.5rem;
  color: hsl(var(--primary-foreground));
}

.how-it-works-title {
  font-family: 'Aboreto', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: hsl(var(--foreground));
}

.how-it-works-desc {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
  line-height: 1.6;
}

/* Join CTA */
.join-cta {
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}

.join-cta-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-button);
  opacity: 0.95;
}

.join-cta-radial {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1), transparent);
}

.join-cta-content {
  position: relative;
  z-index: 10;
  max-width: 64rem;
  margin: 0 auto;
  text-align: center;
  padding: 0 1rem;
  color: hsl(var(--primary-foreground));
}

.join-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  margin-bottom: 2rem;
}

.join-cta-title {
  font-family: 'Aboreto', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .join-cta-title {
    font-size: 3rem;
  }
}

.join-cta-text {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

.join-cta-benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.join-cta-benefit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
}

.join-cta-benefit svg {
  width: 1rem;
  height: 1rem;
}

/* Footer */
footer {
  background: hsl(var(--dark-brown));
  color: hsl(var(--pale-gold));
  padding: 0;
}

.footer-main {
  background: hsl(var(--dark-brown));
  padding: 4rem 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding: 4rem 0 0;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-brand {
  grid-column: span 1;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  text-decoration: none;
  color: inherit;
}

.footer-logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: hsl(var(--chocolate-brown));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.footer-logo-text {
  font-family: 'Aboreto', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: hsl(var(--pale-gold));
}

.footer-text {
  font-size: 0.875rem;
  color: hsl(var(--pale-gold) / 0.9);
}

.footer-section h4,
footer h4 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: hsl(var(--pale-gold));
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: hsl(var(--pale-gold) / 0.9);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: hsl(var(--pale-gold));
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.footer-social a {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: hsl(var(--dark-brown) / 0.8);
  border: 1px solid hsl(var(--pale-gold) / 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: hsl(var(--pale-gold));
  transition: all 0.2s;
}

.footer-social a:hover {
  background: hsl(var(--dark-brown) / 0.9);
  border-color: hsl(var(--pale-gold) / 0.4);
}

.footer-bottom {
  border-top: none;
  padding: 2rem 0;
  text-align: center;
  font-size: 0.875rem;
  color: hsl(var(--pale-gold));
  background: hsl(20 50% 8%);
}

/* Browse Page */
.browse-header {
  padding-top: 6rem;
}

.browse-search {
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}

.search-input-wrapper {
  position: relative;
  max-width: 600px;
}

.search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.25rem;
  height: 1.25rem;
  color: hsl(var(--muted-foreground));
  pointer-events: none;
}

.search-input {
  width: 100%;
  height: 3rem;
  padding: 0 1rem 0 3rem;
  border: 1px solid hsl(var(--border));
  border-radius: calc(var(--radius) - 2px);
  background: white;
  color: hsl(var(--foreground));
  font-size: 0.9375rem;
  transition: all 0.2s;
  font-family: 'Aboreto', sans-serif;
}

.search-input:focus {
  outline: none;
  border-color: hsl(var(--ring));
  box-shadow: 0 0 0 3px hsl(var(--ring) / 0.1);
}

.search-input::placeholder {
  color: hsl(var(--muted-foreground));
}

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.pagination-top {
  flex-shrink: 0;
}

.pagination-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border: 1px solid hsl(var(--border));
  border-radius: calc(var(--radius) - 2px);
  background: white;
  color: hsl(var(--foreground));
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Aboreto', sans-serif;
}

.pagination-btn:hover:not(:disabled) {
  border-color: hsl(var(--primary));
  background: hsl(var(--primary) / 0.05);
  color: hsl(var(--primary));
}

.pagination-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.pagination-pages {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pagination-page {
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.75rem;
  border: 1px solid hsl(var(--border));
  border-radius: calc(var(--radius) - 2px);
  background: white;
  color: hsl(var(--foreground));
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.pagination-page:visited {
  color: hsl(var(--foreground));
}

.pagination-page:hover {
  border-color: hsl(var(--primary));
  background: hsl(var(--primary) / 0.05);
  color: hsl(var(--primary));
}

.pagination-page.active {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  border-color: hsl(var(--primary));
}

.pagination-ellipsis {
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
}

@media (max-width: 768px) {
  .browse-header-top {
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
  }

  .pagination-top {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .pagination {
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
  }

  .pagination-btn {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
  }

  .pagination-page {
    min-width: 2.25rem;
    height: 2.25rem;
    padding: 0 0.5rem;
    font-size: 0.8125rem;
  }
}

.browse-filters {
  padding: 1rem 1.25rem;
  border-radius: 0.75rem;
  background: hsl(var(--pale-gold) / 0.3);
  border: 1px solid hsl(var(--chocolate-brown) / 0.2);
  margin-top: 1.5rem;
  margin-bottom: 3rem;
  position: relative;
  overflow: visible;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.browse-header-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
  gap: 2rem;
}

.browse-results {
  margin-top: 1rem;
  margin-bottom: 4rem;
  padding-bottom: 2rem;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  overflow: visible;
}

.filter-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--dark-brown));
  line-height: 1.5;
  height: 2.5rem;
}

.filter-label svg {
  width: 1rem;
  height: 1rem;
  color: hsl(var(--muted-foreground));
  flex-shrink: 0;
}

.browse-country-wrapper {
  width: auto;
  min-width: 180px;
  display: flex;
  align-items: center;
}

.browse-country-trigger {
  height: 2.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  padding: 0 1rem;
  background: white;
  border: 1px solid hsl(var(--border) / 0.4);
  border-radius: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.2s;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  white-space: nowrap;
}

.browse-country-trigger:hover {
  border-color: hsl(var(--border));
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.browse-country-trigger .country-globe-icon {
  color: #8b7355;
  width: 1rem;
  height: 1rem;
}

.browse-country-trigger .country-dropdown-text {
  color: hsl(var(--foreground));
  font-weight: 500;
}

.browse-country-trigger .country-dropdown-chevron {
  color: hsl(var(--muted-foreground));
  width: 0.875rem;
  height: 0.875rem;
}

/* Country Dropdown */
.country-dropdown-wrapper {
  position: relative;
  z-index: 1;
  min-width: 0;
  flex: 1;
  overflow: visible;
}

.country-dropdown-wrapper.open {
  z-index: 10001;
}

/* Ensure dropdown can escape parent containers */
.country-dropdown-wrapper.open {
  z-index: 10000;
}

.country-dropdown-trigger {
  width: 100%;
  height: 3.5rem;
  padding: 0 1rem;
  border-radius: calc(var(--radius) - 2px);
  border: 1px solid hsl(var(--border) / 0.5);
  background: hsl(var(--card) / 0.8);
  backdrop-filter: blur(4px);
  font-size: 1rem;
  color: hsl(var(--foreground));
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  transition: all 0.2s;
  text-align: left;
}

.country-dropdown-trigger:hover {
  border-color: hsl(var(--border));
  background: hsl(var(--card));
}

.country-dropdown-trigger:focus {
  outline: 2px solid hsl(var(--ring));
  outline-offset: 2px;
}

.country-dropdown-trigger:focus-visible {
  outline: 2px solid hsl(var(--ring));
  outline-offset: 2px;
}

.country-dropdown-text {
  flex: 1;
  color: hsl(var(--muted-foreground));
}

.country-dropdown-trigger:focus .country-dropdown-text,
.country-dropdown-wrapper.open .country-dropdown-text {
  color: hsl(var(--foreground));
}

.country-globe-icon {
  color: #392013;
  flex-shrink: 0;
}

/* Reset filter dropdown globe icons to use currentColor (original styling) */
.browse-country-trigger .country-globe-icon,
.country-dropdown-trigger .country-globe-icon {
  color: inherit;
}

.browse-country-trigger .country-globe-icon .globe-circle,
.browse-country-trigger .country-globe-icon .globe-line,
.browse-country-trigger .country-globe-icon .globe-highlight,
.country-dropdown-trigger .country-globe-icon .globe-circle,
.country-dropdown-trigger .country-globe-icon .globe-line,
.country-dropdown-trigger .country-globe-icon .globe-highlight {
  stroke: currentColor;
  fill: none;
}

/* Globe icon styling - only for empty state, not filter dropdown */

/* Empty state globe icon - brown and yellow earth/globe icon */
.empty-state-globe-icon {
  width: 120px;
  height: 120px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(57, 32, 19, 0.25));
  transition: transform 0.3s ease;
}

.empty-state-globe-icon:hover {
  transform: scale(1.05);
}

.country-dropdown-chevron {
  transition: transform 0.2s;
  color: hsl(var(--muted-foreground));
  flex-shrink: 0;
}

.country-dropdown-wrapper.open .country-dropdown-chevron {
  transform: rotate(180deg);
}

.country-dropdown-menu {
  position: fixed;
  background: white;
  border-radius: calc(var(--radius) - 2px);
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.2), 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border: none;
  z-index: 10000;
  display: none;
  overflow: hidden;
  box-sizing: border-box;
  animation: dropdownFadeIn 0.2s ease-out;
  min-width: 200px;
  flex-direction: column;
  max-height: calc(100vh - 2rem);
  width: auto;
}

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

.country-dropdown-wrapper.open .country-dropdown-menu {
  display: flex;
  flex-direction: column;
}

.country-dropdown-search {
  position: relative;
  padding: 0.75rem;
  border-bottom: 1px solid hsl(var(--border) / 0.5);
  background: white;
  border-radius: calc(var(--radius) - 2px) calc(var(--radius) - 2px) 0 0;
  flex-shrink: 0;
}

.country-dropdown-search svg {
  position: absolute;
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  color: hsl(var(--muted-foreground));
  pointer-events: none;
  width: 0.875rem;
  height: 0.875rem;
}

.country-search-input {
  width: 100%;
  height: 2.5rem;
  padding: 0 0.75rem 0 2.5rem;
  border: 1px solid hsl(var(--border));
  border-radius: calc(var(--radius) - 4px);
  font-size: 0.875rem;
  color: hsl(var(--foreground));
  background: white;
}

.country-search-input:focus {
  outline: none;
  border-color: hsl(var(--ring));
  box-shadow: 0 0 0 2px hsl(var(--ring) / 0.1);
}

.country-search-input::placeholder {
  color: hsl(var(--muted-foreground));
}

.country-dropdown-list {
  max-height: calc(100vh - 12rem);
  overflow-y: auto;
  overflow-x: visible;
  padding: 0.25rem 0;
  flex: 1;
  min-height: 0;
}

@media (max-width: 640px) {
  .country-dropdown-list {
    max-height: calc(100vh - 10rem);
  }
  
  .country-dropdown-search {
    padding: 0.5rem;
  }
  
  .country-item {
    padding: 0.625rem 0.875rem;
    font-size: 0.8125rem;
  }
}

.country-dropdown-list::-webkit-scrollbar {
  width: 8px;
}

.country-dropdown-list::-webkit-scrollbar-track {
  background: transparent;
  margin: 0.25rem 0;
}

.country-dropdown-list::-webkit-scrollbar-thumb {
  background: hsl(var(--muted-foreground) / 0.3);
  border-radius: 4px;
  transition: background 0.2s;
}

.country-dropdown-list::-webkit-scrollbar-thumb:hover {
  background: hsl(var(--muted-foreground) / 0.5);
}

/* Firefox scrollbar */
.country-dropdown-list {
  scrollbar-width: thin;
  scrollbar-color: hsl(var(--muted-foreground) / 0.3) transparent;
}

.country-item {
  width: 100%;
  padding: 0.75rem 1rem;
  text-align: left;
  background: transparent;
  border: none;
  color: hsl(var(--foreground));
  font-size: 0.875rem;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease;
  display: block;
  position: relative;
}

.country-item:hover,
.country-item.highlighted {
  background: hsl(345 45% 35%);
  color: white;
}

.country-item.selected {
  background: hsl(345 45% 35%);
  color: white;
  font-weight: 500;
}

.country-item:focus {
  outline: none;
  background: hsl(345 45% 35%);
  color: white;
}

.country-item:focus-visible {
  outline: 2px solid hsl(var(--ring));
  outline-offset: -2px;
}

.service-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  height: 2.5rem;
}

.service-filter-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 2.5rem;
  padding: 0 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  line-height: 1.5;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid rgba(224, 187, 56, 0.25);
  background: #392013;
  color: #ffffff;
  transition: all 0.2s;
  box-shadow: 0 4px 14px -4px rgba(0, 0, 0, 0.45);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.service-filter-chip:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 30px -8px rgba(57, 32, 19, 0.4), var(--shadow-card);
  background: #392013;
  color: white;
}

.service-filter-chip.active {
  background: #FFD700;
  border-color: #FFD700;
  color: #392013;
  box-shadow: 0 10px 30px -8px rgba(255, 215, 0, 0.7), 0 0 0 1px rgba(255, 215, 0, 0.6);
}

.service-filter-chip svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  color: inherit;
}

.service-filter-chip.active svg {
  color: #392013;
}

/* All service filter chips use chocolate background by default (no override needed) */
/* Specific service classes can be used for icons/styling but don't override colors */

/* All active service filter chips use yellow background with chocolate brown text */
.service-filter-chip.hair.active,
.service-filter-chip.nails.active,
.service-filter-chip.lashes.active,
.service-filter-chip.barbers.active,
.service-filter-chip.barber.active,
.service-filter-chip.braiders.active,
.service-filter-chip.makeup.active {
  background: #FFD700;
  border-color: #FFD700;
  color: #392013;
  box-shadow: 0 10px 30px -8px rgba(255, 215, 0, 0.7), 0 0 0 1px rgba(255, 215, 0, 0.6);
}

.service-filter-chip.hair.active svg,
.service-filter-chip.nails.active svg,
.service-filter-chip.lashes.active svg,
.service-filter-chip.barbers.active svg,
.service-filter-chip.barber.active svg,
.service-filter-chip.braiders.active svg,
.service-filter-chip.makeup.active svg {
  color: #392013;
}

/* Browse Page Responsive Styles */
@media (max-width: 767px) {
  .browse-filters {
    padding: 1rem;
    margin-top: 1rem;
    margin-bottom: 2rem;
  }
  
  .filter-row {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }
  
  .filter-label {
    width: 100%;
    height: auto;
    margin-bottom: 0;
    font-size: 0.8125rem;
  }
  
  .browse-country-wrapper {
    width: 100% !important;
    min-width: 100% !important;
  }
  
  .browse-country-trigger {
    width: 100% !important;
    height: 2.75rem;
    font-size: 0.875rem;
  }
  
  /* Service Filter Buttons Responsive - 2 columns */
  .service-filters {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    height: auto;
    width: 100%;
  }
  
  .service-filter-chip {
    width: 100%;
    height: 2.5rem;
    font-size: 0.8125rem;
    padding: 0 0.875rem;
    justify-content: center;
    white-space: normal;
  }
}

@media (max-width: 480px) {
  .service-filter-chip {
    height: 2.25rem;
    font-size: 0.75rem;
    padding: 0 0.75rem;
  }
  
  .browse-country-trigger {
    height: 2.5rem;
    font-size: 0.8125rem;
  }
}

@media (max-width: 430px) {
  .service-filter-chip {
    height: 2.25rem;
    font-size: 0.75rem;
    padding: 0 0.625rem;
  }
}

.empty-state {
  text-align: center;
  padding: 4rem 0;
}

.empty-state-emoji {
  font-size: 3.75rem;
  margin-bottom: 1rem;
}

.empty-state-title {
  font-family: 'Aboreto', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: hsl(var(--foreground));
}

.empty-state-text {
  color: hsl(var(--muted-foreground));
  margin-bottom: 1.5rem;
}

/* Salon Profile */
.salon-profile {
  padding-top: 6rem;
  padding-bottom: 4rem;
}

/* Legacy gallery styles (kept for backward compatibility) */
.salon-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.salon-gallery-main {
  grid-column: span 2;
  height: 18rem;
  border-radius: 1rem;
  overflow: hidden;
  background: linear-gradient(135deg, hsl(var(--light-yellow-accent)), hsl(var(--light-yellow-accent) / 0.2), hsl(var(--primary) / 0.1));
  position: relative;
}

.salon-gallery-thumb {
  height: 9rem;
  border-radius: 0.75rem;
  overflow: hidden;
  background: linear-gradient(135deg, hsl(var(--primary) / 0.05), hsl(var(--light-yellow-accent) / 0.5));
  position: relative;
}

.salon-gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.salon-gallery-main:hover .salon-gallery-img,
.salon-gallery-thumb:hover .salon-gallery-img {
  transform: scale(1.05);
}

/* Simplified Gallery Layout - Primary Image + Grid */
.salon-gallery-simple {
  margin-bottom: 2rem;
}

.salon-gallery-primary {
  width: 100%;
  height: 24rem;
  border-radius: 1rem;
  overflow: hidden;
  background: hsl(var(--muted));
  margin-bottom: 1rem;
  position: relative;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.salon-gallery-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.salon-gallery-primary-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.salon-gallery-primary:hover .salon-gallery-primary-img {
  transform: scale(1.02);
}

.salon-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 0.75rem;
}

.salon-gallery-grid-item {
  aspect-ratio: 1;
  border-radius: 0.5rem;
  overflow: hidden;
  background: hsl(var(--muted));
  position: relative;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.salon-gallery-grid-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.salon-gallery-grid-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.salon-gallery-grid-item:hover .salon-gallery-grid-img {
  transform: scale(1.08);
}

@media (max-width: 768px) {
  .salon-gallery-primary {
    height: 18rem;
  }
  
  .salon-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }
}

.salon-sidebar {
  position: sticky;
  top: 6rem;
}

/* Review Form */
.review-form-section {
  background: white;
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid hsl(var(--border) / 0.5);
}

.review-form-title {
  font-family: 'Aboreto', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 1.5rem;
}

.review-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.rating-input {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.rating-input input[type="radio"] {
  display: none;
}

.rating-star {
  cursor: pointer;
  color: hsl(var(--muted-foreground));
  transition: color 0.2s;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rating-star svg {
  width: 2rem;
  height: 2rem;
}

.rating-star {
  cursor: pointer;
  color: hsl(var(--muted-foreground));
  transition: all 0.2s ease;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rating-star svg {
  width: 2rem;
  height: 2rem;
  transition: all 0.2s ease;
}

.rating-star:hover {
  transform: scale(1.15);
  color: #fbbf24;
}

.rating-input input[type="radio"]:checked + .rating-star,
.rating-input input[type="radio"]:checked ~ .rating-star {
  color: #fbbf24;
}

.rating-input input[type="radio"]:checked + .rating-star ~ .rating-star {
  color: hsl(var(--muted-foreground));
}

.salon-sidebar-card {
  background: var(--gradient-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  border: 1px solid hsl(var(--border) / 0.5);
  padding: 1.5rem;
}

.salon-avatar {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--gradient-button);
  display: flex;
  align-items: center;
  justify-content: center;
}

.salon-avatar::before {
  content: '✂️';
  font-size: 1.875rem;
}

.salon-name {
  font-family: 'Aboreto', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.25rem;
  color: hsl(var(--foreground));
}

.salon-owner {
  text-align: center;
  color: hsl(var(--muted-foreground));
  margin-bottom: 1.5rem;
}

.salon-info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 1rem;
}

.salon-info-item svg {
  width: 1.25rem;
  height: 1.25rem;
  color: hsl(var(--primary));
}

.salon-price-box {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  border-radius: 0.5rem;
  background: hsl(var(--light-yellow-accent) / 0.5);
  margin-bottom: 1.5rem;
}

.salon-price-box svg {
  width: 1.25rem;
  height: 1.25rem;
  color: hsl(var(--gold));
}

.salon-price-label {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.salon-price-value {
  font-weight: 600;
  color: hsl(var(--foreground));
}

.salon-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.salon-actions .btn {
  width: 100%;
}

.review-card {
  background: var(--gradient-card);
  border-radius: var(--radius);
  border: 1px solid hsl(var(--border) / 0.5);
  padding: 1.25rem;
  margin-bottom: 1rem;
}

.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: hsl(var(--light-yellow-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: hsl(var(--foreground));
}

.review-author-name {
  font-weight: 500;
  color: hsl(var(--foreground));
}

.review-date {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}

.review-text {
  color: hsl(var(--muted-foreground));
}

/* Early Access Banner */
.early-access-banner {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  padding: 1rem;
  background: linear-gradient(135deg, hsl(var(--dark-brown)), hsl(var(--dark-brown) / 0.9));
  color: white;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .early-access-banner {
    padding: 1.5rem;
  }
}

.early-access-banner::before,
.early-access-banner::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.early-access-banner::before {
  top: 0;
  right: 0;
  width: 8rem;
  height: 8rem;
  transform: translate(50%, -50%);
}

.early-access-banner::after {
  bottom: 0;
  left: 0;
  width: 6rem;
  height: 6rem;
  transform: translate(-50%, 50%);
}

.early-access-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .early-access-content {
    flex-direction: row;
    gap: 1.5rem;
  }
}

.early-access-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.early-access-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.early-access-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.early-access-text h3 {
  font-family: 'Aboreto', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.early-access-text p {
  font-size: 0.875rem;
  opacity: 0.8;
}

.early-access-features {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .early-access-features {
    margin-left: auto;
  }
}

.early-access-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.2);
  font-size: 0.875rem;
}

/* 404 Page */
.not-found {
  display: flex;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  background: hsl(var(--muted));
}

.not-found-content {
  text-align: center;
}

.not-found-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: hsl(var(--foreground));
}

.not-found-text {
  font-size: 1.25rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 1rem;
}

.not-found-link {
  color: hsl(var(--primary));
  text-decoration: underline;
}

.not-found-link:hover {
  color: hsl(var(--primary) / 0.9);
}

/* Animations */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}

/* Icons */
.icon {
  width: 1rem;
  height: 1rem;
  display: inline-block;
  vertical-align: middle;
}

.icon-sm {
  width: 0.875rem;
  height: 0.875rem;
}

.icon-xs {
  width: 0.75rem;
  height: 0.75rem;
}

.location-icon {
  color: hsl(var(--primary));
}

.card .location-icon {
  color: white;
}

.icon-md {
  width: 1.25rem;
  height: 1.25rem;
}

.icon-xl {
  width: 5rem;
  height: 5rem;
}

.icon-lg {
  width: 1.5rem;
  height: 1.5rem;
}

/* Utilities */
.text-center {
  text-align: center;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.mt-4 {
  margin-top: 1rem;
}

.pt-8 {
  padding-top: 2rem;
}

.pb-6 {
  padding-bottom: 1.5rem;
}

.pb-16 {
  padding-bottom: 4rem;
}

.space-y-3 > * + * {
  margin-top: 0.75rem;
}

.space-y-4 > * + * {
  margin-top: 1rem;
}

.space-y-6 > * + * {
  margin-top: 1.5rem;
}

.space-y-8 > * + * {
  margin-top: 2rem;
}

.flex {
  display: flex;
}

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

.items-center {
  align-items: center;
}

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

.justify-between {
  justify-content: space-between;
}

.gap-1 {
  gap: 0.25rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.w-full {
  width: 100%;
}

.max-w-4xl {
  max-width: 56rem;
}

.max-w-5xl {
  max-width: 64rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.text-sm {
  font-size: 0.875rem;
}

.text-base {
  font-size: 1rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-3xl {
  font-size: 1.875rem;
}

.text-4xl {
  font-size: 2.25rem;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.text-foreground {
  color: hsl(var(--dark-brown));
}

.text-muted-foreground {
  color: hsl(var(--dark-brown) / 0.7);
}

.leading-relaxed {
  line-height: 1.6;
}

.rounded-xl {
  border-radius: 0.75rem;
}

.rounded-2xl {
  border-radius: 1rem;
}

.rounded-full {
  border-radius: 9999px;
}

.border-b {
  border-bottom: 1px solid;
}

.border-t {
  border-top: 1px solid;
}

.border-border {
  border-color: hsl(var(--border));
}

.border-border\/50 {
  border-color: hsl(var(--border) / 0.5);
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .salon-gallery {
    grid-template-columns: 1fr;
  }
  
  .salon-gallery-main {
    grid-column: span 1;
  }
}

/* Authentication Pages */
.auth-main {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  padding: 4rem 0 3rem;
  margin-top: 1rem;
}

.auth-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  align-items: center;
}

.auth-image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
  background: var(--gradient-hero);
  border-radius: var(--radius);
  min-height: 450px;
}

.auth-image-content {
  text-align: center;
  max-width: 380px;
}

.auth-image-icon {
  width: 4.5rem;
  height: 4.5rem;
  margin: 0 auto 1.5rem;
  color: hsl(var(--primary));
  opacity: 0.9;
}

.auth-image-title {
  font-family: 'Aboreto', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: hsl(var(--dark-brown));
  margin-bottom: 0.75rem;
}

.auth-image-text {
  font-size: 1rem;
  color: hsl(var(--dark-brown) / 0.7);
  line-height: 1.6;
  margin: 0;
}

.auth-form-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-card {
  background: white;
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
  border: 1px solid hsl(var(--border) / 0.5);
  width: 100%;
  max-width: 400px;
}

.auth-card-compact {
  padding: 1.5rem;
}

.auth-header {
  text-align: left;
  margin-bottom: 1rem;
}

.auth-title {
  font-family: 'Aboreto', sans-serif;
  font-size: 1.625rem;
  font-weight: 700;
  color: hsl(var(--dark-brown));
  margin-bottom: 0.25rem;
}

.auth-subtitle {
  color: hsl(var(--dark-brown) / 0.7);
  font-size: 0.8125rem;
  margin: 0;
}

.auth-form {
  margin-bottom: 0.5rem;
}

.auth-form .btn {
  height: 2.5rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.form-group {
  margin-bottom: 0.75rem;
}

.form-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: hsl(var(--foreground));
  margin-bottom: 0.25rem;
}

.form-input {
  width: 100%;
  height: 2.25rem;
  padding: 0 0.75rem;
  border: 1px solid hsl(var(--border));
  border-radius: calc(var(--radius) - 2px);
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  font-size: 0.8125rem;
  transition: all 0.2s;
  font-family: 'Aboreto', sans-serif;
}

.form-input:focus {
  outline: none;
  border-color: hsl(var(--ring));
  box-shadow: 0 0 0 3px hsl(var(--ring) / 0.1);
}

.form-input::placeholder {
  color: hsl(var(--muted-foreground));
}

.form-hint {
  font-size: 0.6875rem;
  color: hsl(var(--muted-foreground));
  margin-top: 0.1875rem;
  margin-bottom: 0;
  line-height: 1.3;
}

.form-link {
  color: hsl(var(--primary));
  text-decoration: none;
  transition: color 0.2s;
}

.form-link:hover {
  color: hsl(var(--accent));
  text-decoration: underline;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  margin-top: 0.375rem;
  margin-bottom: 0;
}

.form-checkbox input[type="checkbox"] {
  width: 1.125rem;
  height: 1.125rem;
  margin-top: 0.125rem;
  cursor: pointer;
  accent-color: hsl(var(--primary));
}

.form-checkbox label {
  font-size: 0.8125rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.4;
  cursor: pointer;
}

.auth-divider {
  position: relative;
  text-align: center;
  margin: 2rem 0;
}

.auth-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: hsl(var(--border));
}

.auth-divider span {
  position: relative;
  background: white;
  padding: 0 1rem;
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
}

.auth-social {
  margin-bottom: 1.5rem;
}

.btn-social {
  width: 100%;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0 1rem;
  border: 1px solid hsl(var(--border));
  border-radius: calc(var(--radius) - 2px);
  background: white;
  color: hsl(var(--foreground));
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Aboreto', sans-serif;
}

.btn-social:hover {
  border-color: hsl(var(--border) / 0.8);
  background: hsl(var(--muted) / 0.5);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.btn-social svg {
  width: 1.125rem;
  height: 1.125rem;
}

.auth-footer {
  text-align: center;
  padding-top: 0.875rem;
  margin-top: 0.875rem;
  border-top: 1px solid hsl(var(--border) / 0.5);
}

.auth-footer p {
  margin: 0;
  color: hsl(var(--muted-foreground));
  font-size: 0.8125rem;
}

.auth-link {
  color: hsl(var(--primary));
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.auth-link:hover {
  color: hsl(var(--accent));
  text-decoration: underline;
}

@media (max-width: 968px) {
  .auth-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
  }

  .auth-image {
    min-height: 280px;
    padding: 2rem;
  }

  .auth-image-title {
    font-size: 2rem;
  }

  .auth-image-text {
    font-size: 0.9375rem;
  }

  .auth-form-wrapper {
    padding: 0;
  }

  .auth-card {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .auth-main {
    padding: 3rem 0 2rem;
    margin-top: 0.5rem;
  }

  .auth-card-compact {
    padding: 1.5rem;
  }

  .auth-header {
    margin-bottom: 1rem;
  }

  .auth-title {
    font-size: 1.5rem;
  }

  .auth-subtitle {
    font-size: 0.75rem;
  }

  .auth-image {
    min-height: 250px;
    padding: 1.5rem;
  }

  .auth-image-icon {
    width: 3.5rem;
    height: 3.5rem;
    margin-bottom: 1rem;
  }

  .auth-image-title {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
  }

  .auth-image-text {
    font-size: 0.875rem;
  }

  .form-group {
    margin-bottom: 0.625rem;
  }

  .form-label {
    font-size: 0.75rem;
    margin-bottom: 0.1875rem;
  }

  .form-input {
    height: 2.125rem;
    font-size: 0.8125rem;
    padding: 0 0.625rem;
  }

  .auth-form .btn {
    height: 2.375rem;
    font-size: 0.8125rem;
  }

  .form-checkbox {
    margin-top: 0.25rem;
    gap: 0.5rem;
  }

  .form-checkbox label {
    font-size: 0.75rem;
    line-height: 1.3;
  }

  .auth-footer {
    padding-top: 0.875rem;
    margin-top: 0.875rem;
  }

  .auth-footer p {
    font-size: 0.75rem;
  }
}

/* Salon Profile Management */
.salon-manage-main {
  padding: 4rem 0 3rem;
  margin-top: 1rem;
}

.salon-manage-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2.5rem;
  gap: 1.5rem;
}

.salon-manage-title {
  font-family: 'Aboreto', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 0.5rem;
}

.salon-manage-subtitle {
  color: hsl(var(--muted-foreground));
  font-size: 0.9375rem;
  margin: 0;
}

.salon-manage-form {
  max-width: 900px;
  margin: 0 auto;
}

.salon-manage-section {
  background: white;
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid hsl(var(--border) / 0.5);
}

.salon-manage-section-title {
  font-family: 'Aboreto', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 0.5rem;
}

.salon-manage-section-subtitle {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.form-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.form-textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid hsl(var(--border));
  border-radius: calc(var(--radius) - 2px);
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  font-size: 0.875rem;
  font-family: 'Aboreto', sans-serif;
  resize: vertical;
  transition: all 0.2s;
  line-height: 1.5;
}

.form-textarea:focus {
  outline: none;
  border-color: hsl(var(--ring));
  box-shadow: 0 0 0 3px hsl(var(--ring) / 0.1);
}

.form-textarea::placeholder {
  color: hsl(var(--muted-foreground));
}

/* Category Selection */
.category-selection {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.category-option {
  position: relative;
  cursor: pointer;
}

.category-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.category-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.5rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  /* Default: Dark brown background with white text (unselected state) */
  background: #392013;
  transition: all 0.2s;
  text-align: center;
  cursor: pointer;
  min-height: 3.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.category-card-text {
  font-size: 0.9375rem;
  font-weight: 500;
  color: white;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}

/* Selected state: Yellow background with chocolate brown text */
.category-option input[type="radio"]:checked + .category-card {
  border-color: #FFD700;
  background: #FFD700;
  box-shadow: 0 0 0 3px rgba(57, 32, 19, 0.2), 0 4px 12px rgba(255, 215, 0, 0.3);
  transform: scale(1.05);
}

.category-option input[type="radio"]:checked + .category-card .category-card-text {
  color: #392013;
  font-weight: 600;
}

/* Hover state: Maintain current state styling */
.category-option:hover .category-card {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(57, 32, 19, 0.3);
}

.category-option:hover input[type="radio"]:checked + .category-card {
  box-shadow: 0 0 0 3px rgba(57, 32, 19, 0.2), 0 6px 16px rgba(255, 215, 0, 0.4);
}

.category-option:hover .category-card .category-card-text {
  color: white;
}

.category-option:hover input[type="radio"]:checked + .category-card .category-card-text {
  color: #392013;
}

/* Services Selection */
.services-selection {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.service-checkbox {
  position: relative;
  cursor: pointer;
}

.service-checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.service-checkbox .service-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: calc(var(--radius) - 2px);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  border: 2px solid transparent;
  /* Default: Dark brown background with white text (unselected state) */
  background: #392013;
  color: white;
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.service-checkbox .service-badge svg {
  color: white;
}

/* Selected/Checked state: Yellow background with chocolate brown text */
.service-checkbox input[type="checkbox"]:checked + .service-badge {
  background: #FFD700;
  color: #392013;
  border-color: #FFD700;
  box-shadow: 0 0 0 3px rgba(57, 32, 19, 0.2), 0 4px 12px rgba(255, 215, 0, 0.3);
  transform: scale(1.05);
}

.service-checkbox input[type="checkbox"]:checked + .service-badge svg {
  color: #392013;
}

/* Hover state: Maintain current state styling */
.service-checkbox:hover .service-badge {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(57, 32, 19, 0.3);
}

.service-checkbox:hover input[type="checkbox"]:checked + .service-badge {
  box-shadow: 0 0 0 3px rgba(57, 32, 19, 0.2), 0 6px 16px rgba(255, 215, 0, 0.4);
}

/* Actions */
.salon-manage-actions {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid hsl(var(--border) / 0.5);
}

@media (max-width: 768px) {
  .salon-manage-main {
    padding: 3rem 0 2rem;
    margin-top: 0.5rem;
  }

  .salon-manage-header {
    flex-direction: column;
    margin-bottom: 2rem;
  }

  .salon-manage-title {
    font-size: 1.75rem;
  }

  .salon-manage-section {
    padding: 1.5rem;
  }

  .salon-manage-section-title {
    font-size: 1.25rem;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }

  .category-card {
    padding: 0.875rem 1.25rem;
    min-height: 3rem;
  }

  .category-card-text {
    font-size: 0.875rem;
  }

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

  .services-selection {
    gap: 0.5rem;
  }

  .salon-manage-actions {
    flex-direction: column-reverse;
  }

  .salon-manage-actions .btn {
    width: 100%;
  }
}

/* Image Upload Styles */
.image-upload-container {
  margin-top: 1rem;
}

.image-upload-area {
  border: 2px dashed hsl(var(--border));
  border-radius: var(--radius);
  padding: 3rem 2rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  background: hsl(var(--muted) / 0.3);
}

.image-upload-area:hover:not(.disabled) {
  border-color: hsl(var(--primary));
  background: hsl(var(--primary) / 0.05);
}

.image-upload-area.drag-over {
  border-color: hsl(var(--primary));
  background: hsl(var(--primary) / 0.1);
  transform: scale(1.02);
}

.image-upload-area.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.image-upload-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.image-upload-icon {
  width: 3rem;
  height: 3rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 0.5rem;
}

.image-upload-text {
  font-size: 1rem;
  font-weight: 500;
  color: hsl(var(--foreground));
  margin: 0;
}

.image-upload-hint {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin: 0;
}

.image-preview-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.image-preview-item {
  position: relative;
  aspect-ratio: 1;
}

.image-preview-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid hsl(var(--border));
  background: hsl(var(--muted));
}

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

.image-preview-remove {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.7);
  border: none;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  z-index: 10;
}

.image-preview-remove:hover {
  background: rgba(220, 38, 38, 0.9);
  transform: scale(1.1);
}

.image-preview-remove svg {
  width: 1rem;
  height: 1rem;
}

.image-preview-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  padding: 0.75rem;
  opacity: 0;
  transition: opacity 0.2s;
}

.image-preview-item:hover .image-preview-overlay {
  opacity: 1;
}

.image-preview-name {
  color: white;
  font-size: 0.75rem;
  font-weight: 500;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 640px) {
  .image-upload-area {
    padding: 2rem 1.5rem;
  }

  .image-upload-icon {
    width: 2.5rem;
    height: 2.5rem;
  }

  .image-preview-container {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 0.75rem;
  }

  .image-preview-overlay {
    opacity: 1;
  }
}

/* Dashboard Styles */
.dashboard-main {
  padding: 4rem 0 3rem;
  margin-top: 1rem;
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2.5rem;
  gap: 2rem;
}

.dashboard-title {
  font-family: 'Aboreto', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 0.5rem;
}

.dashboard-subtitle {
  color: hsl(var(--muted-foreground));
  font-size: 0.9375rem;
  margin: 0;
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.stat-card {
  background: white;
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid hsl(var(--border) / 0.5);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.stat-icon {
  width: 3rem;
  height: 3rem;
  border-radius: calc(var(--radius) - 2px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.stat-icon-views {
  background: hsl(15 60% 95%);
  color: hsl(15 60% 50%);
}

.stat-icon-reviews {
  background: hsl(42 70% 95%);
  color: hsl(42 70% 50%);
}

.stat-icon-rating {
  background: hsl(var(--gold) / 0.15);
  color: hsl(var(--gold));
}

.stat-icon-messages {
  background: hsl(345 45% 95%);
  color: hsl(345 45% 50%);
}

.stat-content {
  flex: 1;
}

.stat-label {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin: 0 0 0.25rem;
}

.stat-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin: 0 0 0.25rem;
  font-family: 'Aboreto', sans-serif;
}

.stat-change {
  font-size: 0.75rem;
  font-weight: 500;
  margin: 0;
}

.stat-change.positive {
  color: hsl(142 70% 45%);
}

.stat-change.neutral {
  color: hsl(var(--muted-foreground));
}

.dashboard-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}

.dashboard-section {
  background: white;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid hsl(var(--border) / 0.5);
  margin-bottom: 2rem;
}

.dashboard-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.dashboard-section-title {
  font-family: 'Aboreto', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin: 0;
}

.profile-overview-card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.profile-overview-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.profile-overview-avatar {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: var(--gradient-button);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.profile-overview-name {
  font-family: 'Aboreto', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin: 0 0 0.25rem;
}

.profile-overview-owner {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
  margin: 0;
}

.profile-overview-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem 0;
  border-top: 1px solid hsl(var(--border) / 0.5);
  border-bottom: 1px solid hsl(var(--border) / 0.5);
}

.profile-info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
}

.profile-overview-services {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.profile-services-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--foreground));
  margin: 0;
}

.profile-services-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.profile-overview-status {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid hsl(var(--border) / 0.5);
}

.status-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.status-badge {
  padding: 0.25rem 0.75rem;
  border-radius: calc(var(--radius) - 4px);
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
}

.status-active {
  background: hsl(142 70% 95%);
  color: hsl(142 70% 30%);
}

.status-inactive {
  background: #fff3cd;
  color: #856404;
}

.status-featured {
  background: hsl(var(--gold) / 0.15);
  color: hsl(var(--gold));
}

.status-text {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.recent-reviews {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.recent-review-item {
  padding: 1.25rem;
  background: hsl(var(--muted) / 0.3);
  border-radius: calc(var(--radius) - 2px);
  border: 1px solid hsl(var(--border) / 0.5);
}

.recent-review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.recent-review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.recent-review-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.875rem;
}

.recent-review-name {
  font-weight: 600;
  color: hsl(var(--foreground));
  margin: 0 0 0.125rem;
  font-size: 0.875rem;
}

.recent-review-date {
  color: hsl(var(--muted-foreground));
  font-size: 0.75rem;
  margin: 0;
}

.recent-review-text {
  color: hsl(var(--foreground));
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
}

.quick-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.quick-action-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  border: 1px solid hsl(var(--border));
  border-radius: calc(var(--radius) - 2px);
  background: white;
  color: hsl(var(--foreground));
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s;
}

.quick-action-btn:hover {
  border-color: hsl(var(--primary));
  background: hsl(var(--primary) / 0.05);
  color: hsl(var(--primary));
}

.profile-completion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.completion-progress {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.completion-bar {
  flex: 1;
  height: 0.5rem;
  background: hsl(var(--muted));
  border-radius: 9999px;
  overflow: hidden;
}

.completion-fill {
  height: 100%;
  background: var(--gradient-button);
  border-radius: 9999px;
  transition: width 0.3s;
}

.completion-percentage {
  font-weight: 600;
  color: hsl(var(--foreground));
  font-size: 0.875rem;
  min-width: 3rem;
  text-align: right;
}

.completion-text {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin: 0;
}

.completion-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.completion-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: hsl(var(--foreground));
}

.completion-item svg {
  flex-shrink: 0;
}

.completion-item.completed {
  color: hsl(142 70% 35%);
}

.completion-item:not(.completed) {
  color: hsl(var(--muted-foreground));
}

@media (max-width: 968px) {
  .dashboard-content {
    grid-template-columns: 1fr;
  }

  .dashboard-header {
    flex-direction: column;
  }

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

/* Account Settings Styles */
.account-settings {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.account-settings-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 0.5rem;
  gap: 1rem;
}

.account-settings-title {
  font-size: 1rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin: 0 0 0.25rem 0;
}

.account-settings-description {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin: 0;
}

.btn-danger {
  background: hsl(0 84% 60%);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background-color 0.2s;
}

.btn-danger:hover {
  background: hsl(0 84% 50%);
}

.btn-danger svg {
  width: 1rem;
  height: 1rem;
}

@media (max-width: 640px) {
  .dashboard-main {
    padding: 3rem 0 2rem;
  }

  .dashboard-title {
    font-size: 1.75rem;
  }

  .dashboard-stats {
    grid-template-columns: 1fr;
  }

  .dashboard-section {
    padding: 1.5rem;
  }

  .profile-overview-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .account-settings-item {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Search Suggestions Styles */
.search-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid hsl(var(--border));
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  margin-top: 0.5rem;
  z-index: 1000;
  max-height: 400px;
  overflow-y: auto;
}

.search-suggestions-list {
  padding: 0.5rem;
}

.search-suggestion-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 0.375rem;
  text-decoration: none;
  color: hsl(var(--foreground));
  transition: background-color 0.15s;
  cursor: pointer;
}

.search-suggestion-item:hover,
.search-suggestion-item.highlighted {
  background: hsl(var(--muted) / 0.5);
}

.suggestion-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.suggestion-content {
  flex: 1;
  min-width: 0;
}

.suggestion-text {
  font-weight: 500;
  font-size: 0.9375rem;
  color: hsl(var(--foreground));
  margin-bottom: 0.25rem;
}

.suggestion-subtext {
  font-size: 0.8125rem;
  color: hsl(var(--muted-foreground));
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .search-suggestions {
    max-height: 300px;
  }
  
  .search-suggestion-item {
    padding: 0.625rem;
  }
  
  .suggestion-text {
    font-size: 0.875rem;
  }
  
  .suggestion-subtext {
    font-size: 0.75rem;
  }
}
