/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&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%;

  /* Rose gold primary */
  --primary: 15 60% 65%;
  --primary-foreground: 30 25% 98%;

  /* Soft cream secondary */
  --secondary: 35 30% 94%;
  --secondary-foreground: 20 20% 25%;

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

  /* Burgundy accent */
  --accent: 345 45% 35%;
  --accent-foreground: 30 25% 98%;

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

  --border: 30 20% 88%;
  --input: 30 20% 88%;
  --ring: 15 60% 65%;

  --radius: 0.75rem;

  /* Custom tokens */
  --gold: 42 70% 55%;
  --gold-muted: 42 40% 75%;
  --rose: 350 60% 75%;
  --blush: 15 45% 92%;
  --plum: 320 30% 25%;
  
  /* 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: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 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: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: var(--gradient-button);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
}

.logo-text {
  font-family: 'Playfair Display', 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(--muted-foreground));
  text-decoration: none;
  transition: color 0.2s;
}

nav a:hover {
  color: hsl(var(--foreground));
}

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

/* 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: var(--gradient-button);
  color: hsl(var(--primary-foreground));
  box-shadow: var(--shadow-soft);
}

.btn-hero:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-1px);
}

.btn-gold {
  background: var(--gradient-gold);
  color: hsl(var(--foreground));
  box-shadow: var(--shadow-soft);
}

.btn-gold:hover {
  box-shadow: 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: 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(--rose) / 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(--blush));
  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: 'Playfair Display', 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: 'Playfair Display', 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: 'Playfair Display', 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: var(--gradient-card);
  border-radius: var(--radius);
  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: all 0.3s;
}

.card:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-elevated);
}

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

.card-content {
  padding: 1.25rem;
}

.salon-card-image {
  position: relative;
  height: 12rem;
  background: linear-gradient(135deg, hsl(var(--blush)), hsl(var(--rose) / 0.2), hsl(var(--primary) / 0.1));
  overflow: hidden;
}

.salon-card-image::before {
  content: '✨';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3.75rem;
  opacity: 0.3;
}

.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);
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  border-radius: 9999px;
  font-weight: 500;
}

.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: var(--gradient-gold);
  color: hsl(var(--primary-foreground));
  box-shadow: var(--shadow-soft);
}

.badge-boosted {
  background: linear-gradient(to right, hsl(var(--accent)), hsl(var(--primary)));
  color: hsl(var(--primary-foreground));
  box-shadow: var(--shadow-soft);
}

.badge-founding {
  background: linear-gradient(to right, hsl(var(--gold)), hsl(var(--gold-muted)));
  color: hsl(var(--foreground));
  box-shadow: var(--shadow-soft);
}

.badge-service {
  background: hsl(var(--blush));
  color: hsl(var(--foreground));
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

.badge-service-hair {
  background: hsl(350 60% 95%);
  color: hsl(350 60% 40%);
}

.badge-service-hair svg {
  color: hsl(350 60% 60%);
}

.badge-service-nails {
  background: hsl(42 70% 95%);
  color: hsl(42 70% 40%);
}

.badge-service-nails svg {
  color: hsl(42 70% 55%);
}

.badge-service-lashes {
  background: hsl(320 30% 95%);
  color: hsl(320 30% 40%);
}

.badge-service-lashes svg {
  color: hsl(320 30% 50%);
}

.badge-service-barber {
  background: hsl(210 50% 96%);
  color: hsl(210 50% 30%);
}

.badge-service-barber svg {
  color: hsl(210 50% 60%);
}

.badge-service-braiders {
  background: hsl(280 50% 96%);
  color: hsl(280 50% 30%);
}

.badge-service-braiders svg {
  color: hsl(280 50% 60%);
}

.badge-service-makeup {
  background: hsl(340 60% 96%);
  color: hsl(340 60% 30%);
}

.badge-service-makeup svg {
  color: hsl(340 60% 60%);
}

.badge-top-country {
  background: linear-gradient(to right, hsl(var(--gold)), hsl(var(--gold-muted)), hsl(var(--gold)));
  color: hsl(var(--foreground));
  box-shadow: var(--shadow-soft);
  border: 1px solid hsl(var(--gold) / 0.3);
}

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

.star {
  width: 1rem;
  height: 1rem;
  color: hsl(var(--gold));
  fill: hsl(var(--gold));
}

.star-empty {
  color: hsl(var(--muted-foreground) / 0.3);
  fill: none;
}

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

.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: 'Playfair Display', 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: 'Playfair Display', 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: 'Playfair Display', 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(20 20% 15%);
  color: hsl(var(--primary-foreground));
  padding: 4rem 0;
}

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

@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(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
}

.footer-text {
  font-size: 0.875rem;
  opacity: 0.7;
}

.footer-section h4 {
  font-weight: 600;
  margin-bottom: 1rem;
}

.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(--primary-foreground));
  opacity: 0.7;
  text-decoration: none;
  transition: opacity 0.2s;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-bottom {
  border-top: 1px solid hsl(var(--primary-foreground) / 0.2);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.875rem;
  opacity: 0.5;
}

/* 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: 'Inter', 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: 'Inter', 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;
}

.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));
}

@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;
  }
}
  padding-bottom: 4rem;
}

.browse-filters {
  padding: 1rem 1.25rem;
  border-radius: 0.75rem;
  background: #f8f7f5;
  border: none;
  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(--muted-foreground));
  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: hsl(var(--muted-foreground));
  flex-shrink: 0;
}

.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: 1.25rem;
  font-size: 0.875rem;
  line-height: 1.5;
  font-weight: 500;
  border: 1px solid hsl(var(--border) / 0.3);
  background: white;
  color: hsl(var(--foreground));
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  white-space: nowrap;
}

.service-filter-chip:hover {
  border-color: hsl(var(--border));
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.service-filter-chip.active {
  background: hsl(var(--primary) / 0.1);
  border-color: hsl(var(--primary) / 0.3);
  color: hsl(var(--primary));
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

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

.service-filter-chip.hair {
  background: hsl(350 60% 97%);
  color: hsl(350 60% 35%);
}

.service-filter-chip.hair.active {
  background: hsl(350 60% 92%);
  border-color: hsl(350 60% 60%);
  color: hsl(350 60% 40%);
}

.service-filter-chip.hair svg {
  color: hsl(350 60% 60%);
}

.service-filter-chip.nails {
  background: hsl(42 70% 97%);
  color: hsl(42 70% 35%);
}

.service-filter-chip.nails.active {
  background: hsl(42 70% 92%);
  border-color: hsl(42 70% 60%);
  color: hsl(42 70% 40%);
}

.service-filter-chip.nails svg {
  color: hsl(42 70% 60%);
}

.service-filter-chip.lashes {
  background: hsl(320 30% 97%);
  color: hsl(320 30% 35%);
}

.service-filter-chip.lashes.active {
  background: hsl(320 30% 92%);
  border-color: hsl(320 30% 50%);
  color: hsl(320 30% 40%);
}

.service-filter-chip.lashes svg {
  color: hsl(320 30% 50%);
}

.service-filter-chip.barber {
  background: hsl(210 50% 97%);
  color: hsl(210 50% 35%);
}

.service-filter-chip.barber.active {
  background: hsl(210 50% 92%);
  border-color: hsl(210 50% 60%);
  color: hsl(210 50% 40%);
}

.service-filter-chip.barber svg {
  color: hsl(210 50% 60%);
}

.service-filter-chip.braiders {
  background: hsl(280 50% 97%);
  color: hsl(280 50% 35%);
}

.service-filter-chip.braiders.active {
  background: hsl(280 50% 92%);
  border-color: hsl(280 50% 60%);
  color: hsl(280 50% 40%);
}

.service-filter-chip.braiders svg {
  color: hsl(280 50% 60%);
}

.service-filter-chip.makeup {
  background: hsl(340 60% 97%);
  color: hsl(340 60% 35%);
}

.service-filter-chip.makeup.active {
  background: hsl(340 60% 92%);
  border-color: hsl(340 60% 60%);
  color: hsl(340 60% 40%);
}

.service-filter-chip.makeup svg {
  color: hsl(340 60% 60%);
}

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

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

.empty-state-title {
  font-family: 'Playfair Display', 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;
}

.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(--blush)), hsl(var(--rose) / 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(--blush) / 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);
}

.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: 'Playfair Display', 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:hover,
.rating-input input[type="radio"]:hover ~ .rating-star {
  color: hsl(var(--gold));
}

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

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

.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: 'Playfair Display', 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(--blush) / 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(--blush));
  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(to right, hsl(var(--primary)), hsl(var(--accent)), hsl(var(--primary)));
  color: hsl(var(--primary-foreground));
  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: 'Playfair Display', 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));
}

.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(--foreground));
}

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

.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: 'Playfair Display', serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 0.75rem;
}

.auth-image-text {
  font-size: 1rem;
  color: hsl(var(--muted-foreground));
  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: 'Playfair Display', serif;
  font-size: 1.625rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 0.25rem;
}

.auth-subtitle {
  color: hsl(var(--muted-foreground));
  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: 'Inter', 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: 'Inter', 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: 'Playfair Display', 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: 'Playfair Display', 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: 'Inter', 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;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.5rem 1rem;
  border: 2px solid hsl(var(--border));
  border-radius: var(--radius);
  background: white;
  transition: all 0.2s;
  text-align: center;
  cursor: pointer;
}

.category-card svg {
  color: hsl(var(--muted-foreground));
  transition: color 0.2s;
}

.category-card span {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--foreground));
}

.category-option input[type="radio"]:checked + .category-card {
  border-color: hsl(var(--primary));
  background: hsl(var(--primary) / 0.05);
}

.category-option input[type="radio"]:checked + .category-card svg {
  color: hsl(var(--primary));
}

.category-option:hover .category-card {
  border-color: hsl(var(--primary) / 0.5);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* 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;
}

.service-checkbox input[type="checkbox"]:checked + .service-badge {
  border-color: hsl(var(--primary));
  box-shadow: 0 0 0 3px hsl(var(--primary) / 0.1);
  transform: scale(1.05);
}

.service-checkbox:hover .service-badge {
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* 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-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: 'Playfair Display', 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: 'Playfair Display', 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: 'Playfair Display', 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: 'Playfair Display', 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-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);
  }
}

@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;
  }
}
