/* ============================================
   SCOUTING — Dark Glassmorphic Real Estate
   Design System: Deep blacks + blue-purple gradient
   Typography: Unbounded (headings) + Nexa (body)
   ============================================ */

:root {
  /* Core palette */
  --bg-primary: #060606;
  --bg-elevated: #0c0c0f;
  --bg-card: rgba(255, 255, 255, 0.04);
  --bg-card-hover: rgba(255, 255, 255, 0.07);
  --bg-surface: #0a0a0d;

  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-hover: rgba(255, 255, 255, 0.06);
  --glass-card: rgba(255, 255, 255, 0.045);
  --glass-card-border: rgba(255, 255, 255, 0.1);

  /* Text hierarchy */
  --text-primary: #f0f0f5;
  --text-secondary: rgba(240, 240, 245, 0.55);
  --text-tertiary: rgba(240, 240, 245, 0.32);
  --text-inverse: #ffffff;

  /* Accent — blue-purple gradient stops */
  --accent-purple: #a855f7;
  --accent-blue: #38bdf8;
  --accent-mid: #7c3aed;
  --gradient: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
  --gradient-h: linear-gradient(90deg, var(--accent-purple), var(--accent-blue));
  --accent-glow: rgba(124, 58, 237, 0.12);
  --accent-glow-blue: rgba(56, 189, 248, 0.1);
  --accent-subtle: rgba(124, 58, 237, 0.08);

  /* Badges */
  --badge-home: linear-gradient(135deg, #a855f7, #7c3aed);
  --badge-apartment: linear-gradient(135deg, #3b82f6, #38bdf8);
  --badge-villa: linear-gradient(135deg, #10b981, #34d399);

  /* Spacing scale (8px base) */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 20px;
  --sp-6: 24px;
  --sp-8: 32px;
  --sp-10: 40px;
  --sp-12: 48px;
  --sp-16: 64px;

  /* Typography scale */
  --fs-xs: 0.6875rem;    /* 11px */
  --fs-sm: 0.75rem;      /* 12px */
  --fs-base: 0.8125rem;  /* 13px */
  --fs-md: 0.875rem;     /* 14px */
  --fs-lg: 1rem;         /* 16px */
  --fs-xl: 1.25rem;      /* 20px */
  --fs-2xl: 1.5rem;      /* 24px */

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-pill: 100px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast: 0.2s;
  --duration-normal: 0.35s;
  --duration-slow: 0.6s;
}

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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: 'Nexa', 'Urbanist', -apple-system, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.5;
  overflow-x: hidden;
  min-height: 100vh;
}

/* ===== GRANULATED NOISE BACKGROUND ===== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='5' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23grain)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
  mix-blend-mode: overlay;
}

/* Ambient gradient wash — subtle brand tint across the whole page */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background:
    /* Top-left purple glow */
    radial-gradient(ellipse 900px 700px at 15% 0%, rgba(168, 85, 247, 0.08) 0%, transparent 55%),
    /* Top-right blue glow */
    radial-gradient(ellipse 900px 700px at 85% 0%, rgba(56, 189, 248, 0.06) 0%, transparent 55%),
    /* Bottom-right subtle blue */
    radial-gradient(ellipse 800px 600px at 90% 100%, rgba(56, 189, 248, 0.035) 0%, transparent 50%),
    /* Bottom-left subtle purple */
    radial-gradient(ellipse 800px 600px at 10% 100%, rgba(168, 85, 247, 0.03) 0%, transparent 50%),
    /* Overall vertical tint (very subtle brand wash) */
    linear-gradient(180deg, rgba(168, 85, 247, 0.02) 0%, transparent 40%, transparent 60%, rgba(56, 189, 248, 0.015) 100%);
  pointer-events: none;
  z-index: 0;
}

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

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

input {
  border: none;
  background: none;
  outline: none;
  font-family: inherit;
  color: inherit;
}

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

/* ===== GRADIENT TEXT UTILITY ===== */
.gradient-text {
  background: var(--gradient-h);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-4) var(--sp-10);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.015) 100%),
    rgba(6, 6, 6, 0.72);
  backdrop-filter: blur(32px) saturate(180%);
  -webkit-backdrop-filter: blur(32px) saturate(180%);
  box-shadow:
    inset 0 -1px 0 0 rgba(255,255,255,0.06),
    inset 0  1px 0 0 rgba(255,255,255,0.05),
    0 1px 0 0 rgba(0,0,0,0.3);
  border-bottom: none;
  animation: fadeDown 0.6s var(--ease-out) both;
}

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

.nav-left {
  flex: 1;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  font-family: 'Unbounded', 'Urbanist', sans-serif;
  font-size: var(--fs-xl);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  transition: opacity var(--duration-fast);
}

.logo:hover {
  opacity: 0.8;
}

.nav-categories {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.cat-tab {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-5);
  font-size: var(--fs-md);
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-pill);
  transition: color 0.2s var(--ease-out), transform 0.15s var(--ease-spring);
  position: relative;
  letter-spacing: 0.01em;
  cursor: pointer;
}

.cat-tab:hover {
  color: var(--text-primary);
}

.cat-tab:active {
  transform: scale(0.96);
}

/* Active state — Liquid Glass pill */
.cat-tab.active {
  color: var(--text-primary);
  background:
    linear-gradient(180deg,
      rgba(255,255,255,0.22) 0%,
      rgba(255,255,255,0.06) 50%,
      rgba(255,255,255,0.14) 100%),
    rgba(255,255,255,0.06);
  backdrop-filter: blur(20px) saturate(200%);
  -webkit-backdrop-filter: blur(20px) saturate(200%);
  border: none;
  box-shadow:
    inset 0 1px 0 0 rgba(255,255,255,0.4),
    inset 0 -1px 0 0 rgba(255,255,255,0.08),
    inset 1px 0 0 0 rgba(255,255,255,0.06),
    inset -1px 0 0 0 rgba(255,255,255,0.06),
    0 0 0 0.5px rgba(255,255,255,0.14),
    0 4px 12px -2px rgba(0,0,0,0.35),
    0 1px 3px rgba(0,0,0,0.25);
  text-shadow: 0 1px 2px rgba(0,0,0,0.35);
}

/* Remove the old underline */
.cat-tab.active::after { display: none; }

.badge-new {
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--gradient-h);
  color: var(--text-inverse);
  padding: 2px 6px;
  border-radius: var(--radius-pill);
  line-height: 1.2;
}

.nav-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--sp-5);
}

/* ─── USER MENU ─── */
.user-menu {
  position: relative;
}
.user-menu__trigger {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.04) 50%, rgba(255,255,255,0.12) 100%),
    rgba(168,85,247,0.12);
  backdrop-filter: blur(20px) saturate(200%);
  -webkit-backdrop-filter: blur(20px) saturate(200%);
  border: none;
  display: grid;
  place-items: center;
  color: var(--accent-purple);
  cursor: pointer;
  transition: transform 0.15s var(--ease-spring), box-shadow 0.2s;
  box-shadow:
    inset 0 1px 0 0 rgba(255,255,255,0.35),
    inset 0 -1px 0 0 rgba(255,255,255,0.08),
    inset 0 0 0 0.5px rgba(255,255,255,0.14),
    0 4px 12px -2px rgba(0,0,0,0.35),
    0 1px 3px rgba(0,0,0,0.25);
}
.user-menu__trigger:hover {
  transform: translateY(-1px) scale(1.02);
  box-shadow:
    inset 0 1px 0 0 rgba(255,255,255,0.45),
    inset 0 -1px 0 0 rgba(255,255,255,0.1),
    inset 0 0 0 0.5px rgba(255,255,255,0.22),
    0 8px 20px -2px rgba(168,85,247,0.4),
    0 2px 6px rgba(0,0,0,0.3);
}
.user-menu__trigger:active { transform: scale(0.96); }
.user-menu__dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 280px;
  padding: 0.5rem;
  background: rgba(22,22,22,0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(0.97);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1000;
}
.user-menu.is-open .user-menu__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.user-menu__label {
  font-family: var(--font-heading);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  padding: 0.6rem 0.75rem 0.4rem;
}
.user-menu__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.75rem;
  border-radius: var(--radius-md);
  color: var(--text-primary);
  text-decoration: none;
  transition: all var(--duration-fast);
}
.user-menu__item:hover {
  background: rgba(255,255,255,0.06);
}
.user-menu__item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--text-tertiary);
  transition: color var(--duration-fast);
}
.user-menu__item:hover svg {
  color: var(--accent-purple);
}
.user-menu__role {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
}
.user-menu__desc {
  display: block;
  font-size: 0.7rem;
  color: var(--text-tertiary);
  margin-top: 0.1rem;
}
.user-menu__divider {
  height: 1px;
  background: var(--glass-border);
  margin: 0.35rem 0.5rem;
}
.user-menu__item--login {
  color: var(--text-secondary);
}
.user-menu__item--login .user-menu__role {
  font-weight: 400;
}

/* ===== SEARCH BAR ===== */
.search-container {
  display: flex;
  justify-content: center;
  padding: var(--sp-8) var(--sp-10) var(--sp-5);
  position: relative;
  z-index: 10;
  animation: fadeUp 0.7s var(--ease-out) 0.1s both;
}

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

.search-bar {
  display: flex;
  align-items: center;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.06) 100%),
    rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(32px) saturate(180%);
  -webkit-backdrop-filter: blur(32px) saturate(180%);
  border: none;
  border-radius: var(--radius-pill);
  padding: var(--sp-2);
  max-width: 680px;
  width: 100%;
  transition: box-shadow 0.3s var(--ease-out);
  box-shadow:
    inset 0 1px 1px 0 rgba(0,0,0,0.3),
    inset 0 0 0 0.5px rgba(255,255,255,0.08),
    inset 0 -1px 0 0 rgba(255,255,255,0.06),
    0 12px 32px -8px rgba(0,0,0,0.4);
}

.search-bar:focus-within {
  box-shadow:
    inset 0 1px 1px 0 rgba(0,0,0,0.3),
    inset 0 0 0 1px rgba(168,85,247,0.35),
    inset 0 -1px 0 0 rgba(255,255,255,0.06),
    0 16px 48px -8px rgba(0,0,0,0.5),
    0 0 0 3px rgba(168,85,247,0.1);
}

.search-field {
  flex: 1;
  padding: var(--sp-3) var(--sp-5);
  border-radius: var(--radius-pill);
  transition: background var(--duration-fast);
  cursor: pointer;
}

.search-field:hover {
  background: var(--glass-hover);
}

.search-field label {
  display: block;
  font-size: var(--fs-xs);
  font-family: 'Unbounded', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  margin-bottom: 1px;
  cursor: pointer;
}

.search-field input {
  width: 100%;
  font-size: var(--fs-md);
  color: var(--text-secondary);
  cursor: pointer;
}

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

.search-field--location { flex: 1.3; }
.search-field--dates { flex: 1; }
.search-field--guests { flex: 0.9; }

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

.search-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.28) 0%, rgba(255,255,255,0) 50%, rgba(255,255,255,0.1) 100%),
    var(--gradient);
  color: var(--text-inverse);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: transform 0.2s var(--ease-spring), box-shadow 0.2s;
  box-shadow:
    inset 0 1px 0 0 rgba(255,255,255,0.4),
    inset 0 -1px 0 0 rgba(0,0,0,0.15),
    inset 0 0 0 0.5px rgba(255,255,255,0.2),
    0 6px 20px -2px rgba(168,85,247,0.45),
    0 2px 6px rgba(0,0,0,0.2);
  border: none;
  cursor: pointer;
}

.search-btn:hover {
  transform: translateY(-1px) scale(1.04);
  box-shadow:
    inset 0 1px 0 0 rgba(255,255,255,0.5),
    inset 0 -1px 0 0 rgba(0,0,0,0.15),
    inset 0 0 0 0.5px rgba(255,255,255,0.28),
    0 10px 28px -2px rgba(168,85,247,0.55),
    0 4px 10px rgba(0,0,0,0.25);
}

.search-btn:active {
  transform: scale(0.94);
}

/* ===== FILTER BAR ===== */
.filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-3) var(--sp-10);
  margin-bottom: var(--sp-4);
  animation: fadeUp 0.7s var(--ease-out) 0.2s both;
}

.filter-pills {
  display: flex;
  gap: var(--sp-2);
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: var(--sp-1) 0;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x proximity;
  scroll-padding-inline: var(--sp-4);
}

.filter-pills::-webkit-scrollbar { display: none; }
.filter-pills .pill { scroll-snap-align: start; }

.pill {
  padding: var(--sp-2) var(--sp-5);
  font-size: var(--fs-base);
  font-weight: 500;
  color: var(--text-secondary);
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: none;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.2s, box-shadow 0.2s, transform 0.15s var(--ease-spring);
  letter-spacing: 0.01em;
  box-shadow:
    inset 0 1px 0 0 rgba(255,255,255,0.06),
    inset 0 0 0 0.5px rgba(255,255,255,0.06);
}

.pill:hover {
  color: var(--text-primary);
  box-shadow:
    inset 0 1px 0 0 rgba(255,255,255,0.15),
    inset 0 0 0 0.5px rgba(255,255,255,0.12),
    0 2px 8px rgba(0,0,0,0.2);
  transform: translateY(-1px);
}

.pill:active {
  transform: scale(0.96);
}

/* Active pill — liquid glass with gradient tint */
.pill.active {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.28) 0%, rgba(255,255,255,0) 50%, rgba(255,255,255,0.08) 100%),
    var(--gradient-h);
  color: var(--text-inverse);
  font-weight: 600;
  box-shadow:
    inset 0 1px 0 0 rgba(255,255,255,0.4),
    inset 0 -1px 0 0 rgba(0,0,0,0.15),
    inset 0 0 0 0.5px rgba(255,255,255,0.2),
    0 6px 20px -2px rgba(168,85,247,0.45),
    0 2px 6px rgba(0,0,0,0.2);
  text-shadow: 0 1px 2px rgba(0,0,0,0.25);
}

.filter-toggle {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-4);
  font-size: var(--fs-base);
  font-weight: 500;
  color: var(--text-secondary);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%),
    rgba(255,255,255,0.03);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: color 0.2s, box-shadow 0.2s, transform 0.15s var(--ease-spring);
  flex-shrink: 0;
  margin-left: var(--sp-4);
  box-shadow:
    inset 0 1px 0 0 rgba(255,255,255,0.14),
    inset 0 -1px 0 0 rgba(255,255,255,0.04),
    inset 0 0 0 0.5px rgba(255,255,255,0.08),
    0 2px 6px rgba(0,0,0,0.2);
}

.filter-toggle:hover {
  color: var(--text-primary);
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 0 rgba(255,255,255,0.22),
    inset 0 -1px 0 0 rgba(255,255,255,0.06),
    inset 0 0 0 0.5px rgba(255,255,255,0.14),
    0 4px 10px rgba(0,0,0,0.25);
}

.filter-toggle:active { transform: scale(0.97); }

/* ===== MAIN CONTENT ===== */
.main-content {
  padding: var(--sp-4) 0 var(--sp-16);
  position: relative;
  z-index: 1;
}

/* ===== LISTING SECTIONS ===== */
.listing-section {
  margin-bottom: var(--sp-12);
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--sp-10);
  margin-bottom: var(--sp-6);
  gap: var(--sp-4);
}

.section-header h2 {
  font-family: 'Unbounded', sans-serif;
  font-size: var(--fs-xl);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.see-all {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 8px 16px;
  font-family: 'Urbanist', sans-serif;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text-primary);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.02) 100%),
    rgba(255,255,255,0.03);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: box-shadow 0.2s, transform 0.15s var(--ease-spring), color 0.2s;
  box-shadow:
    inset 0 1px 0 0 rgba(255,255,255,0.14),
    inset 0 0 0 0.5px rgba(255,255,255,0.08),
    0 1px 3px rgba(0,0,0,0.2);
  text-decoration: none;
}

.see-all svg {
  stroke: currentColor;
}

.see-all:hover {
  color: var(--accent-purple);
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 0 rgba(255,255,255,0.22),
    inset 0 0 0 0.5px rgba(168,85,247,0.25),
    0 4px 12px -2px rgba(168,85,247,0.3);
}

.see-all:active { transform: scale(0.96); }

/* ===== CARDS ROW (horizontal scroll) ===== */
.cards-row {
  display: flex;
  gap: var(--sp-5);
  padding: 0 var(--sp-10);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-padding-left: var(--sp-10);
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-inline: contain;
}

.cards-row::-webkit-scrollbar { display: none; }

/* ===== PROPERTY CARD — Liquid Glass (subtle) ===== */
.property-card {
  display: block;
  flex: 0 0 260px;
  scroll-snap-align: start;
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%),
    rgba(255,255,255,0.02);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border: none;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
  cursor: pointer;
  animation: cardIn 0.6s var(--ease-out) both;
  position: relative;
  box-shadow:
    inset 0 1px 0 0 rgba(255,255,255,0.08),
    inset 0 0 0 0.5px rgba(255,255,255,0.05),
    0 2px 6px rgba(0,0,0,0.25),
    0 12px 24px -10px rgba(0,0,0,0.35);
}

/* Subtle inner glow on cards */
.property-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(
    160deg,
    rgba(168, 85, 247, 0.04) 0%,
    transparent 40%,
    rgba(56, 189, 248, 0.03) 100%
  );
  pointer-events: none;
  z-index: 1;
  transition: opacity var(--duration-normal);
  opacity: 0;
}

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

.property-card:nth-child(1) { animation-delay: 0.15s; }
.property-card:nth-child(2) { animation-delay: 0.22s; }
.property-card:nth-child(3) { animation-delay: 0.29s; }
.property-card:nth-child(4) { animation-delay: 0.36s; }
.property-card:nth-child(5) { animation-delay: 0.43s; }
.property-card:nth-child(6) { animation-delay: 0.50s; }

@keyframes cardIn {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.property-card:hover {
  transform: translateY(-6px);
  box-shadow:
    inset 0 1px 0 0 rgba(255,255,255,0.15),
    inset 0 0 0 0.5px rgba(168,85,247,0.25),
    0 20px 48px -12px rgba(0,0,0,0.6),
    0 0 48px -10px rgba(168,85,247,0.18);
}

/* Card Image */
.card-image {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.card-image img {
  transition: transform var(--duration-slow) var(--ease-out);
}

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

/* Card Badge — Liquid Glass with gradient tint */
.card-badge {
  position: absolute;
  top: var(--sp-3);
  left: var(--sp-3);
  padding: 4px 11px;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: var(--radius-sm);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0) 50%, rgba(255,255,255,0.08) 100%),
    linear-gradient(135deg, #a855f7, #7c3aed);
  color: var(--text-inverse);
  z-index: 2;
  box-shadow:
    inset 0 1px 0 0 rgba(255,255,255,0.35),
    inset 0 -1px 0 0 rgba(0,0,0,0.15),
    inset 0 0 0 0.5px rgba(255,255,255,0.15),
    0 2px 8px rgba(0,0,0,0.25);
  text-shadow: 0 1px 2px rgba(0,0,0,0.25);
}

.card-badge--studio    { background: linear-gradient(135deg, #3b82f6, #38bdf8); }
.card-badge--industrial { background: linear-gradient(135deg, #f97316, #fb923c); }
.card-badge--teatro    { background: linear-gradient(135deg, #ec4899, #f472b6); }
.card-badge--bar       { background: linear-gradient(135deg, #8b5cf6, #a78bfa); }
.card-badge--finca     { background: linear-gradient(135deg, #10b981, #34d399); }
.card-badge--hotel     { background: linear-gradient(135deg, #6366f1, #818cf8); }
.card-badge--oficina   { background: linear-gradient(135deg, #64748b, #94a3b8); }
.card-badge--restaurante { background: linear-gradient(135deg, #ef4444, #f87171); }

/* Favorite Button — Liquid Glass floating */
.card-fav {
  position: absolute;
  top: var(--sp-3);
  right: var(--sp-3);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0.04) 50%, rgba(255,255,255,0.12) 100%),
    rgba(0,0,0,0.3);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: none;
  display: grid;
  place-items: center;
  color: #fff;
  cursor: pointer;
  transition: transform 0.2s var(--ease-spring), box-shadow 0.2s, color 0.2s;
  z-index: 2;
  box-shadow:
    inset 0 1px 0 0 rgba(255,255,255,0.35),
    inset 0 -1px 0 0 rgba(255,255,255,0.08),
    inset 0 0 0 0.5px rgba(255,255,255,0.15),
    0 4px 10px -2px rgba(0,0,0,0.4);
}

.card-fav:hover {
  transform: translateY(-1px) scale(1.1);
  color: #ff4b6e;
  box-shadow:
    inset 0 1px 0 0 rgba(255,255,255,0.45),
    inset 0 -1px 0 0 rgba(255,255,255,0.1),
    inset 0 0 0 0.5px rgba(255,75,110,0.3),
    0 8px 18px -4px rgba(0,0,0,0.5),
    0 0 20px -4px rgba(255,75,110,0.35);
}

.card-fav:active { transform: scale(0.92); }

.card-fav.is-liked {
  color: #ff4b6e;
}

.card-fav.is-liked svg {
  fill: #ff4b6e;
}

/* Guest Favorite Badge — Liquid Glass */
.card-guest-fav {
  position: absolute;
  bottom: var(--sp-3);
  left: var(--sp-3);
  padding: 5px 11px;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius-pill);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.04) 100%),
    rgba(6,6,6,0.55);
  color: var(--text-primary);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: none;
  box-shadow:
    inset 0 1px 0 0 rgba(255,255,255,0.25),
    inset 0 0 0 0.5px rgba(255,255,255,0.12),
    0 2px 8px rgba(0,0,0,0.3);
  text-shadow: 0 1px 2px rgba(0,0,0,0.35);
  z-index: 2;
}

/* Card Info */
.card-info {
  padding: var(--sp-4);
  position: relative;
  z-index: 2;
}

.card-info-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--sp-2);
  margin-bottom: var(--sp-1);
}

.card-info h3 {
  font-family: 'Nexa', 'Urbanist', sans-serif;
  font-size: var(--fs-md);
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
}

.card-rating {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--accent-blue);
  flex-shrink: 0;
  white-space: nowrap;
}

.card-location {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  margin-bottom: var(--sp-3);
}

.card-price {
  font-size: var(--fs-md);
  color: var(--text-primary);
  padding-top: var(--sp-3);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.card-price strong {
  font-family: 'Nexa', 'Urbanist', sans-serif;
  font-weight: 700;
  font-size: var(--fs-lg);
  background: var(--gradient-h);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.card-price span {
  font-size: var(--fs-sm);
  color: var(--text-tertiary);
  font-weight: 400;
}

/* ===== SCROLL FADE EDGES ===== */
.cards-row {
  mask-image: linear-gradient(
    to right,
    transparent,
    black var(--sp-10),
    black calc(100% - 60px),
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black var(--sp-10),
    black calc(100% - 60px),
    transparent
  );
}

/* ===== SECTION ANIMATIONS ===== */
.listing-section {
  animation: sectionIn 0.7s var(--ease-out) both;
}

.listing-section:nth-child(1) { animation-delay: 0.3s; }
.listing-section:nth-child(2) { animation-delay: 0.5s; }

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

/* ============================================
   COLOMBIA MAGICA — PREMIUM SECTION
   ============================================ */
.colombia-magica {
  margin-top: var(--sp-8);
  padding-top: var(--sp-10);
  position: relative;
}

.colombia-magica::before {
  content: '';
  position: absolute;
  top: 0;
  left: var(--sp-10);
  right: var(--sp-10);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(168,85,247,0.25) 30%, rgba(56,189,248,0.25) 70%, transparent);
}

/* Palma de Cera silhouettes */
.magica-palms {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.palm {
  position: absolute;
  bottom: -30px;
  height: 110%;
  opacity: 1;
  filter: blur(1px);
}

.palm--left {
  left: -1%;
  color: rgba(168, 85, 247, 0.18);
}

.palm--right {
  right: 0%;
  height: 90%;
  color: rgba(56, 189, 248, 0.14);
}

.magica-header,
.magica-grid {
  position: relative;
  z-index: 1;
}

.magica-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 var(--sp-10);
  margin-bottom: var(--sp-8);
  gap: var(--sp-4);
}

.magica-eyebrow {
  display: inline-block;
  font-family: 'Unbounded', sans-serif;
  font-size: var(--fs-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  background: var(--gradient-h);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--sp-2);
}

.magica-header h2 {
  font-family: 'Unbounded', sans-serif;
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: var(--sp-1);
}

.magica-header p {
  font-size: var(--fs-md);
  color: var(--text-secondary);
}

/* Premium grid — 4 columns */
.magica-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
  padding: 0 var(--sp-10);
}

.magica-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--glass-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(168,85,247,0.12);
  transition: all var(--duration-normal) var(--ease-out);
  cursor: pointer;
  position: relative;
}

/* Gradient border glow on hover */
.magica-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-xl);
  padding: 1px;
  background: var(--gradient);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--duration-normal);
  pointer-events: none;
}

.magica-card:hover::after {
  opacity: 1;
}

.magica-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 16px 48px rgba(0,0,0,0.5),
    0 0 80px -20px rgba(168,85,247,0.12);
}

.magica-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.magica-card-image img {
  transition: transform var(--duration-slow) var(--ease-out);
}

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

/* Premium badge */
.magica-badge {
  position: absolute;
  top: var(--sp-3);
  left: var(--sp-3);
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  background: var(--gradient-h);
  color: #fff;
  z-index: 2;
  box-shadow: 0 2px 12px rgba(168,85,247,0.4);
}

.magica-card .card-fav {
  z-index: 3;
}

.magica-card-info {
  padding: var(--sp-5);
}

.magica-category {
  font-size: var(--fs-xs);
  font-weight: 500;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--sp-2);
  display: block;
}

.magica-card-info h3 {
  font-family: 'Unbounded', sans-serif;
  font-size: var(--fs-md);
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: var(--sp-2);
  letter-spacing: -0.01em;
}

.magica-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--sp-3);
  padding-top: var(--sp-3);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.magica-rating {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--accent-blue);
}

.magica-price {
  font-size: var(--fs-sm);
  color: var(--text-tertiary);
}

.magica-price strong {
  font-weight: 700;
  font-size: var(--fs-md);
  background: var(--gradient-h);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   FILTER MODAL — GLASSMORPHIC
   ============================================ */
.filter-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s var(--ease-out);
}

.filter-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.filter-modal {
  width: 90%;
  max-width: 720px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  background: rgba(14, 14, 18, 0.85);
  backdrop-filter: blur(40px) saturate(1.5);
  -webkit-backdrop-filter: blur(40px) saturate(1.5);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  box-shadow:
    0 24px 80px rgba(0,0,0,0.6),
    0 0 0 1px rgba(255,255,255,0.05),
    inset 0 1px 0 rgba(255,255,255,0.06);
  transform: translateY(24px) scale(0.96);
  transition: transform 0.4s var(--ease-out);
  overflow: hidden;
}

.filter-overlay.is-open .filter-modal {
  transform: translateY(0) scale(1);
}

.filter-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-6) var(--sp-8);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
}

.filter-modal-header h3 {
  font-family: 'Unbounded', sans-serif;
  font-size: var(--fs-xl);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.filter-modal-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--text-secondary);
  transition: all var(--duration-fast);
  background: rgba(255,255,255,0.04);
}

.filter-modal-close:hover {
  background: rgba(255,255,255,0.1);
  color: var(--text-primary);
  transform: rotate(90deg);
}

.filter-modal-body {
  flex: 1;
  overflow-y: auto;
  padding: var(--sp-6) var(--sp-8);
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.08) transparent;
}

.filter-modal-body::-webkit-scrollbar { width: 4px; }
.filter-modal-body::-webkit-scrollbar-track { background: transparent; }
.filter-modal-body::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.08); border-radius: 2px; }

.filter-group {
  margin-bottom: var(--sp-6);
}

.filter-group-title {
  font-family: 'Unbounded', sans-serif;
  font-size: var(--fs-sm);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  margin-bottom: var(--sp-3);
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}

.chip {
  padding: 6px 14px;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--text-secondary);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-out);
  white-space: nowrap;
}

.chip:hover {
  color: var(--text-primary);
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.14);
}

.chip.is-selected {
  background: rgba(168,85,247,0.15);
  border-color: rgba(168,85,247,0.4);
  color: #c4b5fd;
  box-shadow: 0 0 12px rgba(168,85,247,0.1);
}

.filter-row-2col {
  display: flex;
  gap: var(--sp-6);
}

.filter-group--half {
  flex: 1;
}

.filter-modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-5) var(--sp-8);
  border-top: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
  gap: var(--sp-4);
}

.filter-clear {
  font-size: var(--fs-md);
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--duration-fast);
}

.filter-clear:hover {
  color: var(--text-primary);
}

.filter-count {
  font-size: var(--fs-sm);
  color: var(--text-tertiary);
}

.filter-count span {
  font-weight: 700;
  background: var(--gradient-h);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.filter-apply {
  padding: var(--sp-3) var(--sp-8);
  font-size: var(--fs-md);
  font-weight: 600;
  color: #fff;
  background: var(--gradient-h);
  border-radius: var(--radius-pill);
  transition: all var(--duration-fast) var(--ease-out);
  box-shadow: 0 2px 16px rgba(168,85,247,0.3);
}

.filter-apply:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 24px rgba(168,85,247,0.45);
}

.filter-apply:active {
  transform: scale(0.97);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .navbar { padding: var(--sp-4) var(--sp-6); }
  .search-container { padding: var(--sp-6) var(--sp-6) var(--sp-4); }
  .filter-bar { padding: var(--sp-3) var(--sp-6); }
  .section-header { padding: 0 var(--sp-6); }
  .cards-row { padding: 0 var(--sp-6); scroll-padding-left: var(--sp-6); }
  .nav-link-host { display: none; }
  .magica-grid { grid-template-columns: repeat(2, 1fr); padding: 0 var(--sp-6); }
  .magica-header { padding: 0 var(--sp-6); }
  .colombia-magica::before { left: var(--sp-6); right: var(--sp-6); }
}

@media (max-width: 768px) {
  /* ── Navbar ── */
  .navbar { padding: var(--sp-3) var(--sp-5); height: 56px; }
  .nav-categories { display: none; }

  /* ── Search bar → compact single-row pill ── */
  .search-container { padding: var(--sp-3) var(--sp-4) var(--sp-2); }
  .search-bar {
    flex-wrap: nowrap;
    border-radius: var(--radius-pill);
    padding: 6px 6px 6px 18px;
    height: 52px;
    align-items: center;
    gap: 0;
  }
  .search-divider { display: none; }
  .search-field { flex: none; padding: 0; border: none !important; }
  .search-field--location { flex: 1; }
  .search-field--location label { display: none; }
  .search-field--location input {
    font-size: 16px; /* iOS zoom prevention */
    padding: 0;
    width: 100%;
  }
  /* iOS zoom prevention — hero search + any remaining field on mobile */
  .search-field input { font-size: 16px; }
  /* Bigger fav targets on cards */
  .card-fav,
  .exp-card__fav { width: 40px; height: 40px; }
  .search-field--dates { display: none; }
  .search-field--guests { display: none; }
  .search-btn { margin: 0; flex-shrink: 0; }

  /* ── Filter bar ── */
  .filter-bar { padding: var(--sp-2) var(--sp-4); }
  .filter-toggle { display: flex; min-height: 40px; }
  .filter-pills { flex: 1; min-width: 0; }
  .pill { min-height: 40px; padding: 0 var(--sp-4); font-size: var(--fs-sm); }

  /* ── Section headers ── */
  .section-header { padding: 0 var(--sp-4); margin-bottom: var(--sp-3); }
  .section-header h2 { font-size: var(--fs-lg); flex: 1; }
  .see-all {
    min-height: 44px;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0 var(--sp-2);
    font-size: var(--fs-sm);
    white-space: nowrap;
  }

  /* ── Cards row ── */
  .cards-row {
    padding: 0 var(--sp-4);
    scroll-padding-left: var(--sp-4);
    gap: var(--sp-3);
  }
  .property-card { flex: 0 0 260px; }
  .card-image { height: 180px; }

  /* ── Tighter section spacing ── */
  .listing-section { margin-bottom: var(--sp-8); }
  .main-content {
    padding-top: var(--sp-2);
    padding-bottom: calc(80px + env(safe-area-inset-bottom, 16px));
  }

  /* ── Colombia Mágica ── */
  .magica-grid { grid-template-columns: 1fr; padding: 0 var(--sp-4); }
  .magica-header { padding: 0 var(--sp-4); flex-direction: column; align-items: flex-start; gap: var(--sp-3); }
  .colombia-magica::before { left: var(--sp-4); right: var(--sp-4); }
  .magica-card-image { height: 200px; }
  /* Ensure reveal animation triggers early enough */
  .colombia-magica.listing-section { opacity: 1 !important; transform: none !important; }

  /* ── Filter modal ── */
  .filter-modal { width: 95%; max-height: 90vh; }
  .filter-modal-header,
  .filter-modal-body,
  .filter-modal-footer { padding-left: var(--sp-5); padding-right: var(--sp-5); }
  .filter-row-2col { flex-direction: column; gap: 0; }

  /* ── Bottom nav — gaussian-graded blur within its own height ── */
  .mobile-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 500;
    height: 64px;
    padding: 0 var(--sp-2);
    padding-bottom: env(safe-area-inset-bottom, 0px);
    background: transparent;
    border-top: none;
    justify-content: space-around;
    align-items: center;
    isolation: isolate;
  }

  /* Layer A — light blur across full nav height (fades in at top) */
  .mobile-nav::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -3;
    pointer-events: none;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,1) 40%, rgba(0,0,0,1) 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,1) 40%, rgba(0,0,0,1) 100%);
    backdrop-filter: blur(8px) saturate(160%);
    -webkit-backdrop-filter: blur(8px) saturate(160%);
  }

  /* Layer B — dense blur + dark tint in bottom half (strongest at the very bottom) */
  .mobile-nav::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background: linear-gradient(to bottom,
      transparent 0%,
      rgba(6, 6, 10, 0.35) 45%,
      rgba(6, 6, 10, 0.78) 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.35) 25%, rgba(0,0,0,0.75) 55%, rgba(0,0,0,1) 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.35) 25%, rgba(0,0,0,0.75) 55%, rgba(0,0,0,1) 100%);
    backdrop-filter: blur(28px) saturate(180%) brightness(0.9);
    -webkit-backdrop-filter: blur(28px) saturate(180%) brightness(0.9);
  }

  .mobile-nav__item {
    position: relative;
    z-index: 1;
  }
}

/* ===== SELECTION STATE ===== */
::selection {
  background: var(--accent-purple);
  color: var(--text-inverse);
}

/* ===== FOCUS VISIBLE ===== */
:focus-visible {
  outline: 2px solid var(--accent-purple);
  outline-offset: 2px;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.08);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255,255,255,0.15);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  position: relative;
  z-index: 1;
  padding: 0 var(--sp-10);
  animation: fadeUp 0.7s var(--ease-out) 0.6s both;
}

.footer-divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(168, 85, 247, 0.2) 30%,
    rgba(56, 189, 248, 0.2) 70%,
    transparent
  );
  margin-bottom: var(--sp-12);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--sp-10);
  padding-bottom: var(--sp-10);
}

/* Brand column */
.footer-col--brand {
  padding-right: var(--sp-8);
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
}

.footer-logo-text {
  font-family: 'Unbounded', sans-serif;
  font-size: var(--fs-xl);
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--text-primary);
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.footer-logo-icon {
  display: inline-flex;
  align-items: center;
  margin: 0 2px;
}

.footer-tagline {
  font-size: var(--fs-md);
  color: var(--text-tertiary);
  line-height: 1.6;
  max-width: 280px;
}

/* Link columns */
.footer-col h4 {
  font-family: 'Unbounded', sans-serif;
  font-size: var(--fs-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  margin-bottom: var(--sp-5);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer-col ul a {
  font-size: var(--fs-md);
  color: var(--text-secondary);
  transition: color var(--duration-fast);
}

.footer-col ul a:hover {
  color: var(--text-primary);
}

/* Footer bottom */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-6) 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-copy {
  font-size: var(--fs-sm);
  color: var(--text-tertiary);
}

.footer-pro {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.footer-pro span {
  font-family: 'Unbounded', sans-serif;
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--text-primary);
  padding: 2px 8px;
  border: 1px solid var(--glass-border);
  border-radius: 4px;
}

.footer-pro small {
  font-size: var(--fs-xs);
  color: var(--text-tertiary);
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}

.footer-socials a {
  color: var(--text-secondary);
  transition: all var(--duration-fast);
  display: grid;
  place-items: center;
}

.footer-socials a:hover {
  color: var(--text-primary);
  transform: translateY(-2px);
}

/* ===== MOBILE BOTTOM NAV ===== */
@media (min-width: 769px) {
  .mobile-nav { display: none; }
}

.mobile-nav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  font-family: 'Urbanist', -apple-system, sans-serif;
  letter-spacing: 0.01em;
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--radius-md);
  min-width: 52px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
  transition: color var(--duration-fast);
  -webkit-tap-highlight-color: transparent;
}

.mobile-nav__item svg {
  color: rgba(255, 255, 255, 0.95);
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.5));
  transition: transform var(--duration-fast) var(--ease-spring),
              filter var(--duration-fast),
              color var(--duration-fast);
}

.mobile-nav__item.is-active {
  color: #fff;
}

.mobile-nav__item.is-active svg {
  color: var(--accent-purple);
  filter: drop-shadow(0 0 8px rgba(168, 85, 247, 0.6))
          drop-shadow(0 1px 2px rgba(0, 0, 0, 0.5));
}

.mobile-nav__item:active svg {
  transform: scale(0.85);
}

/* ===== FOOTER RESPONSIVE ===== */
@media (max-width: 1024px) {
  .site-footer { padding: 0 var(--sp-6); }
  .footer-main { grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: var(--sp-6); }
}

@media (max-width: 768px) {
  .site-footer {
    padding: 0 var(--sp-4);
    padding-bottom: calc(80px + env(safe-area-inset-bottom, 16px));
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-8) var(--sp-6);
  }
  .footer-col--brand {
    grid-column: 1 / -1;
    padding-right: 0;
  }
  .footer-bottom {
    flex-direction: column;
    gap: var(--sp-5);
    text-align: center;
  }
}

/* ============================================
   MICRO-INTERACTIONS & ADVANCED STATES
   ============================================ */

/* ===== SEARCH FIELD ACTIVE STATE ===== */
.search-field--active {
  background: rgba(168, 85, 247, 0.06) !important;
  border-radius: var(--radius-pill);
}

.search-field--active label {
  background: var(--gradient-h);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.search-bar--focused {
  border-color: rgba(168, 85, 247, 0.3) !important;
  box-shadow:
    0 8px 40px rgba(0,0,0,0.4),
    0 0 0 1px rgba(168, 85, 247, 0.15),
    0 0 80px -20px rgba(168, 85, 247, 0.1) !important;
}

/* ===== SEARCH BUTTON PULSE ===== */
.search-btn.pulse {
  animation: btnPulse 1.5s ease-out;
}

@keyframes btnPulse {
  0% { box-shadow: 0 2px 16px rgba(168,85,247,0.35); }
  50% { box-shadow: 0 2px 16px rgba(168,85,247,0.35), 0 0 0 8px rgba(168,85,247,0.08); }
  100% { box-shadow: 0 2px 16px rgba(168,85,247,0.35), 0 0 0 16px rgba(168,85,247,0); }
}

@keyframes searchFlash {
  from { opacity: 1; }
  to { opacity: 0; }
}

/* ===== RIPPLE EFFECT ===== */
.ripple-effect {
  position: absolute;
  border-radius: 50%;
  background: rgba(168, 85, 247, 0.15);
  transform: translate(-50%, -50%) scale(0);
  animation: rippleExpand 0.6s ease-out forwards;
  pointer-events: none;
}

@keyframes rippleExpand {
  to {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }
}

/* ===== PILL TRANSITIONS ===== */
.pill {
  transition: all var(--duration-fast) var(--ease-out), transform 0.15s var(--ease-spring);
  will-change: transform;
}

.pill.active {
  box-shadow: 0 2px 16px rgba(168, 85, 247, 0.3);
}

/* ===== NAVBAR COMPACT MODE ===== */
.navbar--compact {
  padding-top: var(--sp-3) !important;
  padding-bottom: var(--sp-3) !important;
  background: rgba(6, 6, 6, 0.92);
}

.navbar--compact .logo svg {
  transform: scale(0.9);
}

.navbar {
  transition: padding 0.3s var(--ease-out), background 0.3s;
}

/* ===== CARD SPOTLIGHT — CURSOR FOLLOW ===== */
.property-card::before {
  background: radial-gradient(
    400px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(168, 85, 247, 0.06) 0%,
    transparent 60%
  ) !important;
  opacity: 0;
  transition: opacity 0.4s;
}

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

/* Card press feedback */
.property-card {
  transition: all var(--duration-normal) var(--ease-out), transform 0.15s;
  will-change: transform;
}

/* ===== DRAGGING STATE ===== */
.cards-row.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.cards-row.is-dragging .property-card {
  pointer-events: none;
  transform: scale(0.98);
}

.cards-row {
  cursor: grab;
}

/* ===== AVATAR MENU ACTIVE ===== */
.avatar-menu.is-open {
  background: var(--glass-hover);
  border-color: rgba(168, 85, 247, 0.25);
  box-shadow: 0 0 0 2px rgba(168, 85, 247, 0.1);
}

/* ===== FILTER TOGGLE ACTIVE ===== */
.filter-toggle.is-active {
  background: rgba(168, 85, 247, 0.08);
  border-color: rgba(168, 85, 247, 0.25);
  color: var(--text-primary);
}

.filter-toggle.is-active svg {
  stroke: var(--accent-purple);
}

/* ===== FOOTER LINK HOVER — GRADIENT UNDERLINE ===== */
.footer-col ul a {
  position: relative;
  display: inline-block;
}

.footer-col ul a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gradient-h);
  transition: width 0.3s var(--ease-out);
}

.footer-col ul a:hover::after {
  width: 100%;
}

/* ===== SCROLL REVEAL ===== */
.listing-section,
.site-footer {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.listing-section.is-visible,
.site-footer.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Override the CSS animation in favor of JS IntersectionObserver */
.listing-section {
  animation: none;
}

/* ===== PAGE LOAD TRANSITION ===== */
body {
  opacity: 0;
  transition: opacity 0.4s ease;
}

body.is-loaded {
  opacity: 1;
}

/* ===== BUTTON & LINK ACTIVE STATES ===== */
.cat-tab:active,
.pill:active,
.filter-toggle:active,
.see-all:active,
.nav-link-host:active {
  transform: scale(0.95) !important;
}

/* ===== HOVER GLOW ON INTERACTIVE ELEMENTS ===== */
.search-btn:hover {
  filter: brightness(1.1);
}

.cat-tab.active:hover {
  background: rgba(255,255,255,0.06);
}

/* ===== "VER TODO" ARROW ===== */
.see-all svg {
  transition: transform 0.3s var(--ease-spring);
}

.see-all:hover svg {
  transform: translateX(4px);
}

/* ===== SMOOTH SCROLL ===== */
html {
  scroll-behavior: smooth;
}

/* ===== GUEST FAV BADGE SHIMMER ===== */
.card-guest-fav {
  overflow: hidden;
}

.card-guest-fav::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 25%,
    rgba(255,255,255,0.08) 50%,
    transparent 75%
  );
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* ═══════════════════════════════════════════════ */
/* CITY PICKER DROPDOWN — Liquid Glass            */
/* ═══════════════════════════════════════════════ */
.search-field--location { position: relative; }

.city-picker {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.city-picker input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-family: 'Urbanist', sans-serif;
  font-size: var(--fs-md);
  color: var(--text-secondary);
  cursor: pointer;
  padding: 0;
}

.city-picker input::placeholder { color: var(--text-tertiary); }

.city-picker__chevron {
  color: var(--text-tertiary);
  flex-shrink: 0;
  transition: transform 0.25s var(--ease-out), color 0.2s;
}

.search-field--location.is-open .city-picker__chevron {
  transform: rotate(180deg);
  color: var(--accent-purple);
}

/* Dropdown panel */
.city-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: min(340px, calc(100vw - 32px));
  max-height: 420px;
  overflow-y: auto;
  padding: 8px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%),
    rgba(10, 10, 14, 0.96);
  backdrop-filter: blur(48px) saturate(180%) brightness(0.7);
  -webkit-backdrop-filter: blur(48px) saturate(180%) brightness(0.7);
  border-radius: var(--radius-lg);
  box-shadow:
    inset 0 1px 0 0 rgba(255,255,255,0.12),
    inset 0 0 0 0.5px rgba(255,255,255,0.08),
    0 12px 40px -8px rgba(0,0,0,0.7),
    0 24px 56px -12px rgba(0,0,0,0.55);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(0.97);
  transition: opacity 0.25s var(--ease-out), transform 0.25s var(--ease-out), visibility 0.25s;
}

.city-dropdown[hidden] {
  display: none;
}

.search-field--location.is-open .city-dropdown {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.city-dropdown__section {
  padding: 6px 4px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.city-dropdown__label {
  font-family: 'Unbounded', sans-serif;
  font-size: 9px;
  font-weight: 600;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 10px 4px;
}

.city-dropdown__divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  margin: 4px 0;
}

.city-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: none;
  border: none;
  border-radius: 10px;
  color: var(--text-primary);
  cursor: pointer;
  text-align: left;
  font-family: 'Urbanist', sans-serif;
  font-size: var(--fs-md);
  font-weight: 500;
  transition: background 0.15s, color 0.2s, transform 0.12s;
}

.city-option:hover {
  background: rgba(255,255,255,0.06);
}

.city-option:active {
  transform: scale(0.98);
}

.city-option.is-selected {
  background:
    linear-gradient(180deg, rgba(168,85,247,0.18) 0%, rgba(168,85,247,0.06) 100%),
    rgba(168,85,247,0.08);
  box-shadow: inset 0 0 0 0.5px rgba(168,85,247,0.25);
}

.city-option svg {
  color: var(--accent-purple);
  flex-shrink: 0;
}

.city-option > div {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.city-option > div span {
  font-size: var(--fs-md);
  font-weight: 600;
  color: var(--text-primary);
}

.city-option > div em {
  font-style: normal;
  font-size: var(--fs-xs);
  color: var(--text-tertiary);
}

.city-option--simple {
  padding: 8px 12px;
  font-size: var(--fs-sm);
  color: var(--text-secondary);
}

.city-option--simple:hover {
  color: var(--text-primary);
}

/* ═══════════════════════════════════════════════ */
/* BOTTOM BLUR OVERLAY — thin + dense            */
/* ═══════════════════════════════════════════════ */
.page-bottom-blur {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3vh;
  min-height: 28px;
  max-height: 48px;
  z-index: 50;
  pointer-events: none;
}

.page-bottom-blur__layer {
  position: absolute;
  inset: 0;
}

.page-bottom-blur__layer--1 {
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.4) 40%, rgba(0,0,0,1) 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.4) 40%, rgba(0,0,0,1) 100%);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.page-bottom-blur__layer--2 {
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, transparent 30%, rgba(0,0,0,1) 70%);
  mask-image: linear-gradient(to bottom, transparent 0%, transparent 30%, rgba(0,0,0,1) 70%);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.page-bottom-blur__layer--3 {
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, transparent 55%, rgba(0,0,0,1) 90%);
  mask-image: linear-gradient(to bottom, transparent 0%, transparent 55%, rgba(0,0,0,1) 90%);
  -webkit-backdrop-filter: blur(24px) saturate(120%);
  backdrop-filter: blur(24px) saturate(120%);
  background: linear-gradient(to bottom, transparent 0%, rgba(6,6,6,0.45) 100%);
}

/* Hide on mobile (bottom nav takes up that area) */
@media (max-width: 768px) {
  .page-bottom-blur { display: none; }
}

/* ============================================
   LIQUID GLASS — Shared button system
   iOS-26 style: specular highlights + hairline edges
   + multi-layer backdrop-filter. Brand gradient on primary,
   neutral dark glass on ghost, tinted on success/danger.
   Usable across landings, dashboards, modals.
   ============================================ */
.liquid-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  min-height: 36px;
  padding: 0 var(--sp-4);
  border: none;
  border-radius: var(--radius-pill);
  font-family: 'Urbanist', sans-serif;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%),
    rgba(18, 16, 14, 0.5);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  backdrop-filter: blur(20px) saturate(180%);
  box-shadow:
    inset 0 1px 0 0 rgba(255, 255, 255, 0.12),
    inset 0 0 0 0.5px rgba(255, 255, 255, 0.08),
    0 4px 16px -4px rgba(0, 0, 0, 0.5);
  transition:
    transform 0.2s var(--ease-spring),
    box-shadow 0.25s var(--ease-out),
    background 0.25s var(--ease-out),
    color 0.25s var(--ease-out);
}

.liquid-btn:hover {
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.04) 100%),
    rgba(24, 22, 20, 0.55);
  box-shadow:
    inset 0 1px 0 0 rgba(255, 255, 255, 0.18),
    inset 0 0 0 0.5px rgba(255, 255, 255, 0.12),
    0 6px 20px -4px rgba(0, 0, 0, 0.6);
  transform: translateY(-1px);
}

.liquid-btn:active { transform: translateY(0) scale(0.98); }

.liquid-btn:focus-visible {
  outline: 2px solid var(--accent-purple);
  outline-offset: 2px;
}

.liquid-btn:disabled,
.liquid-btn[disabled] {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none !important;
}

/* ----- Primary: brand gradient (purple → blue) ----- */
.liquid-btn--primary {
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 55%),
    linear-gradient(135deg, #a855f7 0%, #7c3aed 45%, #38bdf8 100%);
  box-shadow:
    inset 0 1px 0 0 rgba(255, 255, 255, 0.3),
    inset 0 -1px 0 0 rgba(0, 0, 0, 0.15),
    inset 0 0 0 0.5px rgba(255, 255, 255, 0.12),
    0 6px 18px -4px rgba(124, 58, 237, 0.45),
    0 2px 6px -1px rgba(56, 189, 248, 0.25);
}

.liquid-btn--primary:hover {
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0) 55%),
    linear-gradient(135deg, #b366f8 0%, #8b46f0 45%, #4fc9ff 100%);
  box-shadow:
    inset 0 1px 0 0 rgba(255, 255, 255, 0.4),
    inset 0 -1px 0 0 rgba(0, 0, 0, 0.2),
    inset 0 0 0 0.5px rgba(255, 255, 255, 0.18),
    0 10px 28px -4px rgba(124, 58, 237, 0.55),
    0 4px 12px -2px rgba(56, 189, 248, 0.35);
  transform: translateY(-1px);
}

/* ----- Success tint (accept / positive) ----- */
.liquid-btn--success {
  color: #7dffa9;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.01) 100%),
    rgba(52, 211, 153, 0.14);
  box-shadow:
    inset 0 1px 0 0 rgba(255, 255, 255, 0.12),
    inset 0 0 0 0.5px rgba(52, 211, 153, 0.22),
    0 4px 16px -4px rgba(52, 211, 153, 0.25);
}

.liquid-btn--success:hover {
  color: #a3ffbe;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.02) 100%),
    rgba(52, 211, 153, 0.22);
  box-shadow:
    inset 0 1px 0 0 rgba(255, 255, 255, 0.2),
    inset 0 0 0 0.5px rgba(52, 211, 153, 0.35),
    0 6px 20px -4px rgba(52, 211, 153, 0.35);
}

/* ----- Danger tint (decline / destructive) ----- */
.liquid-btn--danger {
  color: #ff9a9a;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.01) 100%),
    rgba(248, 113, 113, 0.12);
  box-shadow:
    inset 0 1px 0 0 rgba(255, 255, 255, 0.12),
    inset 0 0 0 0.5px rgba(248, 113, 113, 0.2),
    0 4px 16px -4px rgba(248, 113, 113, 0.22);
}

.liquid-btn--danger:hover {
  color: #ffbdbd;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.02) 100%),
    rgba(248, 113, 113, 0.2);
  box-shadow:
    inset 0 1px 0 0 rgba(255, 255, 255, 0.2),
    inset 0 0 0 0.5px rgba(248, 113, 113, 0.32),
    0 6px 20px -4px rgba(248, 113, 113, 0.32);
}

/* ----- Sizes ----- */
.liquid-btn--sm { min-height: 30px; padding: 0 var(--sp-3); font-size: 11px; }
.liquid-btn--lg { min-height: 44px; padding: 0 var(--sp-6); font-size: var(--fs-sm); }
.liquid-btn--icon { min-width: 32px; min-height: 32px; padding: 0; width: 32px; height: 32px; }

/* ----- Reduced motion ----- */
@media (prefers-reduced-motion: reduce) {
  .liquid-btn,
  .liquid-btn:hover,
  .liquid-btn:active { transform: none; transition: background 0.2s, color 0.2s, box-shadow 0.2s; }
}
