/* ============================================================
   CHACARASHOW - Complete Design System
   ============================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;0,9..40,800;1,9..40,400&family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Backgrounds - LIGHT */
  --bg-page: #FFFFFF;
  --bg-subtle: #F7F7F7;
  --bg-elevated: #FFFFFF;
  --bg-input: #F0F0F0;
  --bg-card: #FFFFFF;
  --bg-card2: #F7F7F7;
  --bg-dark: #F7F7F7;
  --bg-dark2: #F0F0F0;
  --bg-darkest: #F7F7F7;

  /* Green Palette - keeping for compatibility */
  --green-900: #1B4332;
  --green-800: #2D6A4F;
  --green-700: #40916C;
  --green-600: #52B788;
  --green-500: #74C69D;
  --green-400: #95D5B2;
  --green-300: #B7E4C7;
  --green-100: #D8F3DC;

  /* Brand colors */
  --primary: #00A699;
  --primary-hover: #008489;
  --primary-light: rgba(0, 166, 153, 0.08);

  /* Accent - coral for CTAs */
  --accent: #E31C5F;
  --accent-hover: #C13584;
  --accent-light: rgba(227, 28, 95, 0.08);

  /* Text - dark on light */
  --text-primary: #222222;
  --text-secondary: #717171;
  --text-muted: #B0B0B0;
  --text-dark: #222222;

  /* Borders - subtle */
  --border: #EBEBEB;
  --border-hover: #DDDDDD;
  --border-light: rgba(0, 0, 0, 0.06);

  /* Shadows - soft */
  --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.14);
  --shadow-green: 0 4px 20px rgba(0, 166, 153, 0.2);
  --shadow-accent: 0 4px 20px rgba(227, 28, 95, 0.3);

  /* Fonts */
  --font-title: 'DM Sans', 'Inter', sans-serif;
  --font-body: 'Inter', 'DM Sans', sans-serif;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 80px;

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --transition: all 0.2s ease;
  --transition-slow: all 0.35s ease;

  /* Z-index */
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-header: 300;
  --z-modal: 400;
  --z-toast: 500;
  --z-whatsapp: 600;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-page);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font-family: var(--font-body);
  font-size: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

input, select, textarea {
  outline: none;
}

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

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section {
  padding: var(--space-4xl) 0;
}

.section-title {
  font-family: var(--font-title);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-2xl);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  font-family: var(--font-title);
}

.badge-green {
  background: var(--primary-light);
  color: var(--primary);
  border: 1px solid rgba(0, 166, 153, 0.3);
}

.badge-orange {
  background: rgba(255, 107, 53, 0.15);
  color: var(--accent);
  border: 1px solid rgba(255, 107, 53, 0.3);
}

.badge-gold {
  background: rgba(255, 196, 0, 0.15);
  color: #ffc400;
  border: 1px solid rgba(255, 196, 0, 0.3);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-accent);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(227, 28, 95, 0.4);
}

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

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
}

.btn-green {
  background: var(--green-700);
  color: #fff;
}

.btn-green:hover {
  background: var(--green-600);
  transform: translateY(-2px);
  box-shadow: var(--shadow-green);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.4);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.25);
}

.text-green { color: var(--primary); }
.text-accent { color: var(--accent); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-lg); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-lg); }

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-header);
  padding: 18px 0;
  transition: var(--transition-slow);
}

.header.transparent {
  background: transparent;
}

.header.solid {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 var(--border);
  padding: 12px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-primary);
  flex-shrink: 0;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--primary), var(--primary-hover));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
}

.logo-text span {
  color: var(--primary);
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--text-primary);
  border-bottom-color: var(--primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.btn-anuncie {
  font-size: 0.85rem;
  padding: 8px 16px;
  color: var(--text-primary);
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: var(--transition);
}

.btn-anuncie:hover {
  color: var(--primary);
}

.btn-login {
  font-size: 0.85rem;
  padding: 8px 18px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border);
  color: var(--text-primary);
  font-weight: 600;
  background: transparent;
  transition: var(--transition);
}

.btn-login:hover {
  border-color: var(--primary);
  background: var(--primary-light);
  color: var(--primary);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  background: transparent;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #222222;
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #FFFFFF;
  z-index: calc(var(--z-header) - 1);
  padding: 100px var(--space-lg) var(--space-lg);
  flex-direction: column;
  gap: var(--space-lg);
  transform: translateX(100%);
  transition: transform 0.35s ease;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-link {
  font-family: var(--font-title);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-primary);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--border);
  display: block;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1564013799919-ab600027ffc6?w=1920&q=80&fit=crop');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0.30), rgba(0,0,0,0.50));
}

.hero-bg::after {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-full);
  padding: 6px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: var(--space-lg);
  font-family: var(--font-title);
}

.hero-title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--space-lg);
  color: #fff;
}

.hero-title .highlight {
  color: #fff;
  position: relative;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-2xl);
  max-width: 580px;
  line-height: 1.7;
}

/* ============================================================
   SEARCH BAR
   ============================================================ */
.search-box {
  background: #FFFFFF;
  border: 1px solid #EBEBEB;
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.search-form {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr auto;
  gap: 1px;
  background: #EBEBEB;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.search-field {
  background: #FFFFFF;
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: var(--transition);
  cursor: pointer;
}

.search-field:hover {
  background: #F7F7F7;
}

.search-field:first-child {
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

.search-field-label {
  font-family: var(--font-title);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #222222;
}

.search-field input, .search-field select {
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 0.9rem;
  font-family: var(--font-body);
  font-weight: 500;
  width: 100%;
  padding: 0;
}

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

.search-field select option {
  background: #FFFFFF;
}

.search-btn {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 16px 28px;
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: var(--transition);
}

.search-btn:hover {
  background: var(--accent-hover);
}

.trust-signals {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  margin-top: var(--space-md);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: #717171;
}

.trust-item .check {
  color: var(--primary);
  font-weight: 700;
}

/* ============================================================
   QUICK FILTER TAGS
   ============================================================ */
.filter-tags {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-bottom: 0;
}

.filter-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  background: #F0F0F0;
  border: 1.5px solid transparent;
  color: #222222;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-title);
  white-space: nowrap;
}

.filter-tag:hover, .filter-tag.active {
  background: #222222;
  border-color: transparent;
  color: #FFFFFF;
}

/* ============================================================
   PROPERTY CARDS
   ============================================================ */
.properties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.property-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition-slow);
  position: relative;
  cursor: pointer;
}

.property-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  border-color: var(--border-hover);
}

.card-image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.property-card:hover .card-image-wrap img {
  transform: scale(1.06);
}

.card-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  z-index: 2;
}

.card-badge {
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  font-family: var(--font-title);
}

.badge-destaque {
  background: var(--accent);
  color: #fff;
}

.badge-new {
  background: var(--primary);
  color: #fff;
}

.badge-top {
  background: rgba(255, 196, 0, 0.9);
  color: #000;
}

.card-favorite {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid var(--border);
  transition: var(--transition);
  font-size: 1rem;
}

.card-favorite:hover, .card-favorite.active {
  background: rgba(255, 107, 53, 0.2);
  border-color: var(--accent);
  color: var(--accent);
}

.card-carousel-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 4px;
  z-index: 2;
}

.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.5);
  transition: var(--transition);
}

.carousel-dot.active {
  background: #fff;
  width: 18px;
}

.card-body {
  padding: var(--space-md);
}

.card-location {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.card-title {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
  line-height: 1.3;
}

.card-specs {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-sm);
  flex-wrap: wrap;
}

.card-spec {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.card-amenities {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: var(--space-md);
}

.amenity-chip {
  padding: 3px 10px;
  background: #F0F0F0;
  border: none;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  color: #717171;
  font-family: var(--font-title);
  font-weight: 600;
}

.card-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-top: var(--space-md);
  border-top: 1px solid var(--border);
}

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

.price-label {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.price-value {
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-primary);
}

.price-value span {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
}

.card-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
}

.card-rating .star {
  color: #ffc400;
}

.card-rating .reviews {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* ============================================================
   REGION EXPLORE SECTION
   ============================================================ */
.regions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.region-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: block;
}

.region-card:hover {
  background: #F7F7F7;
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.region-icon {
  font-size: 2rem;
  margin-bottom: var(--space-sm);
}

.region-name {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.region-count {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ============================================================
   BENEFITS SECTION
   ============================================================ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.benefit-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: var(--transition);
}

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

.benefit-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: var(--space-md);
}

.benefit-title {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.benefit-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================================
   SOCIAL PROOF / STATS
   ============================================================ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

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

.stat-value {
  font-family: var(--font-title);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
}

.testimonial-stars {
  color: #ffc400;
  font-size: 1rem;
  margin-bottom: var(--space-md);
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-md);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--green-800), var(--green-600));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  overflow: hidden;
}

.author-name {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.9rem;
}

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

/* ============================================================
   ANUNCIE CTA SECTION
   ============================================================ */
.anuncie-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
  border-radius: var(--radius-xl);
  padding: var(--space-4xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2xl);
  border: none;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.anuncie-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(82, 183, 136, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.anuncie-cta-content .title {
  font-family: var(--font-title);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: var(--space-sm);
}

.anuncie-cta-content .title {
  color: #fff;
}

.anuncie-cta-content .subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
}

.anuncie-cta-actions {
  display: flex;
  gap: var(--space-md);
  flex-shrink: 0;
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter-section {
  background: #F7F7F7;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--space-3xl) 0;
  text-align: center;
}

.newsletter-form {
  display: flex;
  gap: var(--space-sm);
  max-width: 480px;
  margin: var(--space-lg) auto 0;
}

.newsletter-input {
  flex: 1;
  background: #FFFFFF;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px 20px;
  color: var(--text-primary);
  font-size: 0.9rem;
  transition: var(--transition);
}

.newsletter-input:focus {
  border-color: var(--primary);
  background: #F7F7F7;
}

.newsletter-input::placeholder {
  color: var(--text-muted);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #F7F7F7;
  padding: var(--space-4xl) 0 var(--space-2xl);
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-3xl);
}

.footer-brand .logo {
  margin-bottom: var(--space-md);
}

.footer-brand p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: var(--space-md);
}

.footer-socials {
  display: flex;
  gap: var(--space-sm);
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(0,0,0,0.06);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
  cursor: pointer;
}

.social-btn:hover {
  background: #EBEBEB;
  border-color: var(--border-hover);
}

.footer-col-title {
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  font-size: 0.87rem;
  color: var(--text-secondary);
  transition: var(--transition);
}

.footer-link:hover {
  color: var(--text-primary);
  padding-left: 4px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-lg);
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-bottom-text {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-payments {
  display: flex;
  gap: var(--space-sm);
  align-items: center;
}

.payment-badge {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 4px 10px;
  font-size: 0.75rem;
  color: var(--text-secondary);
}

/* ============================================================
   MOBILE BOTTOM NAV
   ============================================================ */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #FFFFFF;
  backdrop-filter: none;
  border-top: 1px solid var(--border);
  z-index: var(--z-header);
  padding: 8px 0;
}

.bottom-nav-items {
  display: flex;
  justify-content: space-around;
}

.bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  color: var(--text-muted);
  min-width: 60px;
}

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

.bottom-nav-icon {
  font-size: 1.3rem;
  line-height: 1;
}

.bottom-nav-label {
  font-size: 0.65rem;
  font-weight: 600;
  font-family: var(--font-title);
}

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 24px;
  z-index: var(--z-whatsapp);
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
}

.whatsapp-btn svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 8px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  color: var(--text-primary);
}

.whatsapp-btn:hover .whatsapp-tooltip {
  opacity: 1;
}

/* ============================================================
   TOAST NOTIFICATIONS
   ============================================================ */
.toast-container {
  position: fixed;
  bottom: 100px;
  left: 24px;
  z-index: var(--z-toast);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.toast {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-lg);
  max-width: 320px;
  animation: toastIn 0.35s ease;
  backdrop-filter: blur(12px);
}

.toast.removing {
  animation: toastOut 0.3s ease forwards;
}

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

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

.toast-icon {
  font-size: 1.2rem;
}

.toast-content {
  flex: 1;
}

.toast-title {
  font-family: var(--font-title);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-primary);
}

.toast-desc {
  font-size: 0.77rem;
  color: var(--text-muted);
}

/* ============================================================
   SKELETON LOADING
   ============================================================ */
.skeleton {
  background: linear-gradient(90deg, #F0F0F0 25%, #E8E8E8 50%, #F0F0F0 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}

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

.skeleton-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.skeleton-img {
  aspect-ratio: 4/3;
  width: 100%;
}

.skeleton-body {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.skeleton-line {
  height: 14px;
  width: 100%;
}

.skeleton-line-sm {
  height: 10px;
  width: 60%;
}

/* ============================================================
   LISTING PAGE - FILTERS SIDEBAR
   ============================================================ */
.listing-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.filters-sidebar {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  position: sticky;
  top: 90px;
}

.filters-title {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.filter-section {
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--border);
}

.filter-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.filter-section-title {
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-md);
}

.filter-input {
  width: 100%;
  background: #F7F7F7;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  color: var(--text-primary);
  font-size: 0.87rem;
  transition: var(--transition);
}

.filter-input:focus {
  border-color: var(--primary);
}

.filter-input::placeholder {
  color: var(--text-muted);
}

.checkbox-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.87rem;
  color: var(--text-secondary);
  transition: var(--transition);
  user-select: none;
}

.checkbox-item:hover {
  color: var(--text-primary);
}

.checkbox-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  accent-color: var(--primary);
  flex-shrink: 0;
  cursor: pointer;
}

.price-range-wrap {
  padding: var(--space-sm) 0;
}

.price-range-values {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
}

.price-range-slider {
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: var(--border);
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  cursor: pointer;
}

.price-range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: var(--radius-full);
  background: var(--primary);
  cursor: pointer;
  box-shadow: 0 0 0 3px rgba(0, 166, 153, 0.2);
  transition: var(--transition);
}

.price-range-slider::-webkit-slider-thumb:hover {
  background: var(--primary-hover);
  box-shadow: 0 0 0 4px rgba(0, 166, 153, 0.3);
}

.apply-filters-btn {
  width: 100%;
  padding: 12px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-md);
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
  margin-top: var(--space-md);
}

.apply-filters-btn:hover {
  background: var(--accent-hover);
}

.mobile-filter-btn {
  display: none;
  position: fixed;
  bottom: 80px;
  right: 24px;
  z-index: var(--z-sticky);
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-full);
  padding: 12px 20px;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: var(--shadow-green);
  gap: 8px;
  align-items: center;
}

/* Results header */
.results-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
  gap: var(--space-md);
}

.results-count {
  font-family: var(--font-title);
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.results-count strong {
  color: var(--text-primary);
}

.sort-select {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 8px 14px;
  color: var(--text-primary);
  font-size: 0.85rem;
  font-family: var(--font-body);
  cursor: pointer;
  transition: var(--transition);
}

.sort-select:focus {
  border-color: var(--primary);
}

.load-more-btn {
  display: block;
  width: fit-content;
  margin: var(--space-2xl) auto 0;
  padding: 14px 40px;
  background: transparent;
  border: 2px solid var(--border);
  color: var(--text-secondary);
  border-radius: var(--radius-full);
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
}

.load-more-btn:hover {
  background: #F0F0F0;
  border-color: var(--border-hover);
  color: var(--text-primary);
}

/* ============================================================
   PROPERTY DETAIL PAGE
   ============================================================ */
.detail-hero {
  padding-top: 90px;
}

.photo-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 8px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 480px;
  position: relative;
  margin-bottom: var(--space-2xl);
}

.gallery-main {
  grid-row: 1 / 3;
  overflow: hidden;
  position: relative;
}

.gallery-grid-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
}

.gallery-photo {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-photo:hover img {
  transform: scale(1.05);
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  cursor: pointer;
}

.gallery-main:hover img {
  transform: scale(1.03);
}

.gallery-btn {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(15, 26, 20, 0.85);
  backdrop-filter: blur(12px);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 8px 16px;
  color: var(--text-primary);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-title);
}

.gallery-btn:hover {
  background: rgba(0, 0, 0, 0.85);
  border-color: var(--border-hover);
}

/* Detail layout */
.detail-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--space-3xl);
  align-items: start;
}

.detail-main {
  min-width: 0;
}

.detail-header {
  margin-bottom: var(--space-xl);
}

.detail-title {
  font-family: var(--font-title);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: var(--space-sm);
}

.detail-location {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  color: var(--text-secondary);
  font-size: 0.9rem;
  flex-wrap: wrap;
}

.detail-location .divider {
  color: var(--text-muted);
}

.detail-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
}

.detail-actions {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.action-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
}

.action-btn:hover {
  background: var(--primary-light);
  border-color: var(--primary);
  color: var(--primary);
}

.detail-section {
  margin-bottom: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid var(--border);
}

.detail-section:last-child {
  border-bottom: none;
}

.detail-section-title {
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.description-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.description-text.collapsed {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.read-more-btn {
  background: none;
  border: none;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  padding: var(--space-sm) 0;
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
}

.read-more-btn:hover {
  color: var(--primary-hover);
}

/* Host Specs */
.host-specs {
  display: flex;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.host-spec {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.host-spec strong {
  color: var(--text-primary);
}

/* Amenities grid */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  color: var(--text-secondary);
  border: 1px solid var(--border);
}

.amenity-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* Rules */
.rules-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.rule-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.rule-icon {
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--primary);
  margin-top: 1px;
}

/* Map placeholder */
.map-placeholder {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  color: var(--text-muted);
  font-size: 0.9rem;
  position: relative;
  overflow: hidden;
}

.map-placeholder::before {
  display: none;
}

.map-icon {
  font-size: 3rem;
  opacity: 0.5;
}

.map-text {
  z-index: 1;
  text-align: center;
}

.map-text strong {
  display: block;
  font-family: var(--font-title);
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 4px;
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-overview {
  display: flex;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
  flex-wrap: wrap;
}

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

.score-big {
  font-family: var(--font-title);
  font-size: 4rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}

.score-stars {
  color: #ffc400;
  font-size: 1.1rem;
  margin: 4px 0;
}

.score-count {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.reviews-breakdown {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 200px;
}

.breakdown-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.85rem;
}

.breakdown-label {
  width: 120px;
  flex-shrink: 0;
  color: var(--text-secondary);
}

.breakdown-bar {
  flex: 1;
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
}

.breakdown-fill {
  height: 100%;
  background: var(--primary);
  border-radius: 3px;
}

.breakdown-value {
  width: 30px;
  text-align: right;
  font-weight: 700;
  color: var(--text-primary);
  font-size: 0.82rem;
}

.reviews-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
}

.review-item {
  padding: var(--space-lg);
  background: #F7F7F7;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.review-header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.review-name {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.9rem;
}

.review-date {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-left: auto;
}

.review-stars {
  color: #ffc400;
  font-size: 0.8rem;
}

.review-text {
  font-size: 0.87rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.faq-item {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.open {
  border-color: var(--primary);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  gap: var(--space-md);
  text-align: left;
  transition: var(--transition);
}

.faq-question:hover {
  background: #F7F7F7;
}

.faq-q-text {
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
}

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: #F0F0F0;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--text-primary);
  transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--primary-light);
  border-color: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer-inner {
  padding: 0 var(--space-lg) var(--space-lg);
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================================
   STICKY BOOKING BOX
   ============================================================ */
.booking-sidebar {
  position: sticky;
  top: 90px;
}

.booking-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-lg);
}

.booking-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: var(--space-lg);
}

.booking-price-value {
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-primary);
}

.booking-price-unit {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.booking-price-rating {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.85rem;
  font-weight: 700;
}

.booking-dates {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 1px;
}

.booking-date-field {
  background: var(--bg-dark);
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  cursor: pointer;
  transition: var(--transition);
}

.booking-date-field:hover {
  background: var(--bg-dark2);
}

.booking-date-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #222222;
  font-family: var(--font-title);
}

.booking-date-input {
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 0.85rem;
  font-family: var(--font-body);
  width: 100%;
  cursor: pointer;
}

.booking-guests-field {
  background: var(--bg-dark);
  border: 1.5px solid var(--border);
  border-top: none;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  margin-bottom: var(--space-md);
  transition: var(--transition);
}

.booking-guests-field:hover {
  background: var(--bg-dark2);
}

.booking-guests-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green-500);
  font-family: var(--font-title);
  margin-bottom: 3px;
}

.guests-selector {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.guests-count {
  font-size: 0.9rem;
  font-weight: 600;
}

.guest-btn {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border);
  background: none;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
}

.guest-btn:hover {
  border-color: var(--primary);
  background: var(--primary-light);
}

.book-btn {
  width: 100%;
  padding: 16px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-md);
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  border: none;
  box-shadow: var(--shadow-accent);
}

.book-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5);
}

.whatsapp-book-btn {
  width: 100%;
  padding: 13px;
  background: rgba(37, 211, 102, 0.1);
  color: #25d366;
  border-radius: var(--radius-md);
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  border: 1.5px solid rgba(37, 211, 102, 0.3);
  margin-top: var(--space-sm);
}

.whatsapp-book-btn:hover {
  background: rgba(37, 211, 102, 0.15);
  border-color: #25d366;
}

.booking-price-breakdown {
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.87rem;
  color: var(--text-secondary);
}

.price-row.total {
  color: var(--text-primary);
  font-weight: 700;
  font-family: var(--font-title);
  font-size: 0.95rem;
  padding-top: 8px;
  border-top: 1px solid var(--border);
  margin-top: 4px;
}

.urgency-badge {
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.25);
  border-radius: var(--radius-md);
  padding: 8px 14px;
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: var(--space-md);
}

/* ============================================================
   HORIZONTAL SCROLL CAROUSEL (related properties)
   ============================================================ */
.horizontal-scroll {
  display: flex;
  gap: var(--space-lg);
  overflow-x: auto;
  padding-bottom: var(--space-md);
  scrollbar-width: thin;
  scrollbar-color: #DDDDDD transparent;
}

.horizontal-scroll::-webkit-scrollbar {
  height: 4px;
}

.horizontal-scroll::-webkit-scrollbar-track {
  background: transparent;
}

.horizontal-scroll::-webkit-scrollbar-thumb {
  background: #DDDDDD;
  border-radius: 2px;
}

.horizontal-scroll .property-card {
  flex: 0 0 280px;
}

/* ============================================================
   ANUNCIE PAGE
   ============================================================ */
.anuncie-hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--primary-hover) 0%, var(--primary) 50%, #00BFB2 100%);
  position: relative;
  overflow: hidden;
}

.anuncie-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 65%);
}

.anuncie-hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.anuncie-title {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: var(--space-lg);
}

.anuncie-title .earning {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.5);
}

.anuncie-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-xl);
  line-height: 1.7;
}

/* Simulator */
.simulator-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  max-width: 560px;
}

.simulator-title {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: var(--space-lg);
  text-align: center;
}

.simulator-controls {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.simulator-control {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.sim-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  display: flex;
  justify-content: space-between;
}

.sim-value {
  font-family: var(--font-title);
  font-weight: 700;
  color: var(--primary);
}

.sim-slider {
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: var(--border);
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  cursor: pointer;
}

.sim-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: var(--radius-full);
  background: var(--primary);
  cursor: pointer;
  box-shadow: 0 0 0 3px rgba(0, 166, 153, 0.2);
}

.simulator-result {
  background: linear-gradient(135deg, var(--primary-hover), var(--primary));
  border: 1px solid rgba(0, 166, 153, 0.3);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
}

.result-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.result-value {
  font-family: var(--font-title);
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
}

.result-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(16.67% + 28px);
  right: calc(16.67% + 28px);
  height: 2px;
  background: linear-gradient(90deg, var(--border), var(--border-hover), var(--border));
}

.step-card {
  text-align: center;
  position: relative;
}

.step-number {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--primary-hover));
  border: 2px solid var(--primary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  margin: 0 auto var(--space-md);
  position: relative;
  z-index: 1;
}

.step-title {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.step-desc {
  font-size: 0.87rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: var(--z-modal);
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
}

.lightbox.open {
  display: flex;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.4rem;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  transition: var(--transition);
}

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

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.4rem;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  transition: var(--transition);
}

.lightbox-nav:hover {
  background: rgba(255,255,255,0.2);
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

/* ============================================================
   EXIT INTENT POPUP
   ============================================================ */
.exit-popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: var(--z-modal);
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
}

.exit-popup.open {
  display: flex;
}

.exit-popup-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl);
  max-width: 480px;
  text-align: center;
  position: relative;
}

.exit-popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--text-muted);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: #F0F0F0;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.exit-popup-close:hover {
  background: #E0E0E0;
  color: var(--text-primary);
}

.coupon-code {
  display: inline-block;
  background: var(--accent-light);
  border: 2px dashed var(--accent);
  border-radius: var(--radius-md);
  padding: 12px 24px;
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin: var(--space-md) 0;
  cursor: pointer;
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.animate-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   TRUST BADGES
   ============================================================ */
.trust-badges {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
  margin-top: var(--space-xl);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 6px 16px;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.trust-badge-icon {
  font-size: 1rem;
}

/* ============================================================
   PAGE HERO (compact) for inner pages
   ============================================================ */
.page-hero {
  background: linear-gradient(180deg, #F7F7F7 0%, #FFFFFF 100%);
  padding: 110px 0 var(--space-2xl);
  border-bottom: 1px solid var(--border);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

.breadcrumb a {
  color: var(--text-muted);
  transition: var(--transition);
}

.breadcrumb a:hover {
  color: var(--primary);
}

.breadcrumb-sep {
  color: var(--text-muted);
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* Large screens */
@media (max-width: 1200px) {
  .regions-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }
}

/* Medium screens / Tablets */
@media (max-width: 1024px) {
  .search-form {
    grid-template-columns: 1fr 1fr;
    border-radius: var(--radius-lg);
  }
  .search-field:first-child {
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    grid-column: 1 / -1;
  }
  .search-btn {
    grid-column: 1 / -1;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  }
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .listing-layout {
    grid-template-columns: 1fr;
  }
  .filters-sidebar {
    display: none;
  }
  .filters-sidebar.mobile-open {
    display: block;
    position: fixed;
    inset: 0;
    z-index: var(--z-modal);
    overflow-y: auto;
    border-radius: 0;
    top: 0;
  }
  .mobile-filter-btn {
    display: flex;
  }
  .detail-layout {
    grid-template-columns: 1fr;
  }
  .booking-sidebar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    top: auto;
    z-index: var(--z-sticky);
    padding: var(--space-md) var(--space-lg);
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  }
  .booking-box {
    border-radius: 0;
    border: none;
    padding: 0;
    box-shadow: none;
  }
  .booking-sticky-compact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
  }
  .booking-full-form {
    display: none;
  }
  .photo-gallery {
    height: 360px;
  }
  .reviews-list {
    grid-template-columns: 1fr;
  }
  .regions-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .steps-grid::before {
    display: none;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }
  .mobile-bottom-nav { display: block; }

  .container { padding: 0 var(--space-md); }

  .hero-title { font-size: clamp(1.6rem, 6vw, 2.4rem); }
  .hero-subtitle { font-size: 0.95rem; }

  .search-box { padding: var(--space-md); border-radius: var(--radius-lg); }
  .search-form {
    grid-template-columns: 1fr;
  }
  .search-field:first-child {
    grid-column: 1;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }
  .search-btn {
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    padding: 14px;
  }

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

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

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

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

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

  .anuncie-cta {
    flex-direction: column;
    text-align: center;
    padding: var(--space-2xl);
  }

  .anuncie-cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .anuncie-cta-actions .btn {
    width: 100%;
  }

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

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

  .photo-gallery {
    grid-template-columns: 1fr;
    height: auto;
  }

  .gallery-grid-right {
    display: none;
  }

  .gallery-main {
    grid-row: 1;
    height: 280px;
  }

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

  .reviews-overview {
    flex-direction: column;
  }

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

  .section { padding: var(--space-3xl) 0; }

  body { padding-bottom: 70px; }
  .whatsapp-btn { bottom: 80px; }
}

@media (max-width: 480px) {
  .regions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .filter-tags {
    gap: 6px;
  }
  .filter-tag {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-title { font-size: 1.7rem; }
}

/* ============================================================
   TOAST ICON — Lucide SVG sizing
   ============================================================ */
.toast-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary-light);
}
.toast-icon i,
.toast-icon svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
}

/* ============================================================
   AUTH MODALS
   ============================================================ */

/* Overlay */
.auth-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 16px;
  overflow-y: auto;
}

/* Modal card */
.auth-modal {
  position: relative;
  background: var(--bg-elevated);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  animation: authModalIn 0.28s ease;
}
@keyframes authModalIn {
  from { transform: translateY(24px) scale(0.97); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}

.auth-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-secondary);
  padding: 4px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  display: flex;
  align-items: center;
}
.auth-modal-close:hover {
  background: var(--bg-subtle);
  color: var(--text-primary);
}

.auth-modal-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: var(--space-xs);
}

.auth-modal-title {
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-primary);
  margin: 0;
}

.auth-modal-sub {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin: 0 0 var(--space-sm);
}

/* Form */
.auth-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.auth-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.auth-field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary);
  font-family: var(--font-title);
}

.auth-hint {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.78rem;
}

.auth-field input {
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-family: var(--font-body);
  background: var(--bg-input);
  color: var(--text-primary);
  transition: var(--transition);
}
.auth-field input:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0, 166, 153, 0.1);
}

.auth-input-wrap {
  position: relative;
}
.auth-input-wrap input {
  width: 100%;
  padding-right: 40px;
}
.auth-eye {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  padding: 4px;
  display: flex;
  align-items: center;
  transition: var(--transition);
}
.auth-eye:hover { color: var(--primary); }

.auth-error {
  display: none;
  background: rgba(227, 28, 95, 0.08);
  border: 1px solid rgba(227, 28, 95, 0.2);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  font-size: 0.82rem;
  color: var(--accent);
}

.auth-submit {
  padding: 12px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  margin-top: var(--space-xs);
}
.auth-submit:hover { background: var(--primary-hover); transform: translateY(-1px); }

.auth-forgot {
  text-align: center;
  font-size: 0.82rem;
  color: var(--primary);
  text-decoration: none;
}
.auth-forgot:hover { text-decoration: underline; }

.auth-switch {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin: var(--space-xs) 0 0;
}
.auth-switch a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}
.auth-switch a:hover { text-decoration: underline; }

/* ── Logged-in header ── */
.auth-nav-btns {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.btn-register {
  font-size: 0.85rem;
  padding: 8px 18px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--primary);
  background: var(--primary);
  color: #fff;
  font-family: var(--font-title);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.btn-register:hover { background: var(--primary-hover); border-color: var(--primary-hover); }

.auth-user-menu {
  position: relative;
}

.auth-avatar-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-subtle);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-full);
  padding: 6px 12px 6px 6px;
  cursor: pointer;
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: var(--transition);
}
.auth-avatar-btn:hover { border-color: var(--primary); }

.auth-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
}

.auth-username {
  max-width: 80px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.auth-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 180px;
  padding: 6px;
  z-index: var(--z-dropdown);
  flex-direction: column;
  gap: 2px;
}
.auth-dropdown.open { display: flex; }

.auth-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--text-primary);
  text-decoration: none;
  background: none;
  border: none;
  width: 100%;
  cursor: pointer;
  font-family: var(--font-body);
  transition: var(--transition);
}
.auth-dropdown-item:hover { background: var(--bg-subtle); color: var(--primary); }

.auth-dropdown-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 4px 0;
}

.auth-dropdown-logout {
  color: var(--accent);
}
.auth-dropdown-logout:hover { background: var(--accent-light); color: var(--accent); }

/* Mobile adjustments */
@media (max-width: 768px) {
  .auth-modal { padding: var(--space-xl); }
  .auth-nav-btns { display: none; }
  .auth-user-menu { display: none; }
}
