@charset "UTF-8";
:root {
  --color-primary: #2563eb;
  --color-primary-light: #3b82f6;
  --color-primary-dark: #1d4ed8;
  --color-white: #ffffff;
  --color-gray-50: #f9fafb;
  --color-gray-100: #f3f4f6;
  --color-gray-200: #e5e7eb;
  --color-gray-300: #d1d5db;
  --color-gray-400: #9ca3af;
  --color-gray-500: #6b7280;
  --color-gray-600: #4b5563;
  --color-gray-700: #374151;
  --color-gray-800: #1f2937;
  --color-gray-900: #111827;
  --color-success: #10b981;
  --color-success-light: #34d399;
  --color-warning: #f59e0b;
  --color-warning-light: #fbbf24;
  --color-error: #ef4444;
  --color-error-light: #f87171;
  --color-red-500: #ef4444;
  --color-red-50: #fef2f2;
  --font-family-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --line-height-tight: 1.25;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.75;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --radius-sm: 0.25rem;
  --radius-base: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-base: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --transition-fast: 150ms ease-in-out;
  --transition-base: 200ms ease-in-out;
  --transition-slow: 300ms ease-in-out;
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal-backdrop: 1040;
  --z-modal: 1050;
  --z-popover: 1060;
  --z-tooltip: 1070;
  --z-toast: 1080;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-4);
}
@media (min-width: 640px) {
  .container {
    padding: 0 var(--space-6);
  }
}

.checkout-layout {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: var(--color-gray-50);
}
.checkout-layout::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100% !important;
  right: 0;
  bottom: 0;
  z-index: 0;
  background: radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.12) 0%, transparent 55%), radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.1) 0%, transparent 52%), radial-gradient(circle at 40% 80%, rgba(245, 158, 11, 0.08) 0%, transparent 48%), radial-gradient(circle at 90% 80%, rgba(59, 130, 246, 0.09) 0%, transparent 50%), radial-gradient(circle at 15% 85%, rgba(168, 85, 247, 0.06) 0%, transparent 45%), radial-gradient(circle at 70% 10%, rgba(34, 197, 94, 0.07) 0%, transparent 52%), linear-gradient(180deg, rgba(37, 99, 235, 0.06) 0%, rgba(255, 255, 255, 0) 40%);
  animation: meshGradient 20s ease-in-out infinite;
}

.checkout-header {
  position: relative;
  z-index: 1;
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  padding: var(--space-4) 0;
}
.checkout-header .header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.checkout-header .logo {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  text-decoration: none;
  display: flex;
  align-items: center;
}
.checkout-header .logo__image {
  height: 32px;
  width: 200px;
  transform: translateX(-3rem);
  object-fit: cover;
}
.checkout-header .progress-steps {
  display: none;
}
@media (min-width: 768px) {
  .checkout-header .progress-steps {
    display: flex;
    gap: var(--space-8);
  }
}

.checkout-main {
  position: relative;
  z-index: 1;
  padding: var(--space-8) 0;
}
.checkout-main .main-content {
  display: grid;
  gap: var(--space-8);
}
@media (min-width: 1024px) {
  .checkout-main .main-content {
    grid-template-columns: 1fr 400px;
    gap: var(--space-12);
  }
}

.checkout-footer {
  position: relative;
  z-index: 1;
  background: var(--color-white);
  border-top: 1px solid var(--color-gray-200);
  padding: var(--space-6) 0;
}
.checkout-footer .footer-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .checkout-footer .footer-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.checkout-footer .footer-links {
  display: flex;
  gap: var(--space-6);
}
.checkout-footer .footer-links a {
  color: var(--color-gray-600);
  text-decoration: none;
  font-size: var(--font-size-sm);
}
.checkout-footer .footer-links a:hover {
  color: var(--color-primary);
}

.section {
  background: var(--color-white);
  box-shadow: var(--shadow-base);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
}
.section__header {
  margin-bottom: var(--space-6);
}
.section__header h2 {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-semibold);
  color: var(--color-gray-900);
  margin-bottom: var(--space-2);
}
.section__header p {
  color: var(--color-gray-600);
  font-size: var(--font-size-sm);
}
.section__content:not(:last-child) {
  margin-bottom: var(--space-6);
}

@media (min-width: 768px) {
  .mobile-only {
    display: none;
  }
}

.desktop-only {
  display: none;
}
@media (min-width: 768px) {
  .desktop-only {
    display: block;
  }
}

.tablet-up {
  display: none;
}
@media (min-width: 768px) {
  .tablet-up {
    display: block;
  }
}

@keyframes meshGradient {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 1;
  }
  33% {
    transform: translateY(-30px) rotate(0.5deg);
    opacity: 0.8;
  }
  66% {
    transform: translateY(20px) rotate(-0.5deg);
    opacity: 0.9;
  }
}
.sideBarButtonsTrigger {
  position: fixed;
  top: 5rem;
  left: var(--space-4);
  z-index: var(--z-fixed);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.sidebar-toggle,
.saved-toggle {
  position: relative;
  background: var(--color-white);
  border: none;
  border-radius: var(--radius-md);
  padding: var(--space-3);
  box-shadow: var(--shadow-md);
  color: var(--color-gray-700);
  cursor: pointer;
  transition: all var(--transition-base);
}
.sidebar-toggle:hover,
.saved-toggle:hover {
  background: var(--color-gray-50);
  color: var(--color-primary);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}
.sidebar-toggle:focus,
.saved-toggle:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}
.sidebar-toggle svg,
.saved-toggle svg {
  display: block;
  transition: transform var(--transition-base);
}

.sidebar-toggle.sidebar-open svg {
  transform: rotate(180deg);
}

.saved-toggle.saved-open {
  background: var(--color-primary);
  color: var(--color-white);
}
.saved-toggle.saved-open:hover {
  background: var(--color-primary-dark);
  color: var(--color-white);
}

.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 400px;
  background: var(--color-white);
  box-shadow: var(--shadow-xl);
  z-index: var(--z-modal);
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.15) transparent;
}
.sidebar::-webkit-scrollbar {
  width: 6px;
}
.sidebar::-webkit-scrollbar-track {
  background: transparent;
}
.sidebar::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 6px;
}
.sidebar::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.25);
}
.sidebar.sidebar-open {
  transform: translateX(0);
}
@media (max-width: 767px) {
  .sidebar {
    width: 100vw;
    max-width: 100%;
  }
}
.sidebar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5) var(--space-6);
  border-bottom: 1px solid var(--color-gray-100);
  background: linear-gradient(to bottom, var(--color-white), var(--color-gray-50));
  position: sticky;
  top: 0;
  z-index: 10;
}
.sidebar__brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.sidebar__logo {
  display: block;
  height: 50px;
  width: 200px;
  object-fit: cover;
  object-position: left center;
  transform: translateX(-1.2rem);
}
@media (max-width: 639px) {
  .sidebar__logo {
    height: 45px;
    width: 180px;
  }
}
.sidebar__tagline {
  font-size: var(--font-size-sm);
  color: var(--color-gray-500);
  margin: 0;
  font-weight: var(--font-weight-medium);
}
@media (max-width: 639px) {
  .sidebar__tagline {
    font-size: var(--font-size-xs);
  }
}
.sidebar__close {
  background: rgba(239, 68, 68, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-base);
  color: var(--color-white);
}
.sidebar__close:hover {
  background: rgb(220, 38, 38);
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
}
.sidebar__close:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.3);
}
.sidebar__close:active {
  transform: scale(1.05);
  background: rgb(185, 28, 28);
}
.sidebar__close svg {
  width: 18px;
  height: 18px;
}
.sidebar__content {
  flex: 1;
  padding: var(--space-4);
  overflow-y: auto;
  overflow-x: hidden;
  width: 100%;
  box-sizing: border-box;
}
.sidebar__content--saved {
  display: none;
}
.sidebar__content--saved.active {
  display: block;
}
.sidebar__content--filters {
  display: block;
}
.sidebar__content--filters.hidden {
  display: none;
}
.sidebar__actions {
  padding: var(--space-6);
  border-top: 1px solid var(--color-gray-200);
  display: flex;
  gap: var(--space-3);
  margin-top: 2rem;
}

.search-section {
  margin-bottom: var(--space-8);
}

.search-bar__input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.search-bar__icon {
  position: absolute;
  left: var(--space-4);
  color: var(--color-gray-400);
  z-index: 1;
}
.search-bar__input {
  width: 100%;
  padding: var(--space-4) var(--space-4) var(--space-4) calc(var(--space-4) + 24px + var(--space-2));
  border: 1px solid var(--color-gray-300);
  border-radius: var(--radius-md);
  font-size: var(--font-size-base);
  font-family: var(--font-family-primary);
  background: var(--color-white);
  transition: all var(--transition-base);
}
.search-bar__input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
.search-bar__input::placeholder {
  color: var(--color-gray-400);
}

.quick-filters {
  margin-bottom: var(--space-8);
}
.quick-filters__title {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  color: var(--color-gray-900);
  margin-bottom: var(--space-4);
}
.quick-filters__pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.filter-pill {
  background: var(--color-gray-100);
  color: var(--color-gray-700);
  border: none;
  border-radius: var(--radius-full);
  padding: var(--space-2) var(--space-4);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
}
.filter-pill:hover {
  background: var(--color-gray-200);
  color: var(--color-gray-800);
}
.filter-pill--active {
  background: var(--color-primary);
  color: var(--color-white);
}
.filter-pill--active:hover {
  background: var(--color-primary-dark);
}
.filter-pill:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.advanced-filters {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  padding-bottom: var(--space-6);
}

.filter-section {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  padding: var(--space-5);
  background: var(--color-gray-50);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-gray-100);
  transition: all var(--transition-base);
}
.filter-section:hover {
  border-color: var(--color-gray-200);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.filter-section__title {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--color-gray-700);
  margin-bottom: var(--space-4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.filter-section__title::before {
  content: "";
  width: 3px;
  height: 14px;
  background: var(--color-primary);
  border-radius: 2px;
}

.price-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  width: 100%;
  max-width: 100%;
}

.price-input {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  min-width: 0;
  width: 100%;
}
.price-input label {
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-medium);
  color: var(--color-gray-600);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.price-input input {
  width: 100%;
  min-width: 0;
  padding: var(--space-3) var(--space-4);
  border: 1.5px solid var(--color-gray-200);
  border-radius: var(--radius-md);
  font-size: var(--font-size-sm);
  font-family: var(--font-family-primary);
  box-sizing: border-box;
  background: var(--color-white);
  transition: all var(--transition-base);
}
.price-input input:hover {
  border-color: var(--color-gray-300);
}
.price-input input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  background: var(--color-white);
}
.price-input input::placeholder {
  color: var(--color-gray-400);
}

.property-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  width: 100%;
  max-width: 100%;
}

.detail-selector {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  min-width: 0;
  width: 100%;
}
.detail-selector label {
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-medium);
  color: var(--color-gray-600);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.detail-selector select {
  width: 100%;
  min-width: 0;
  padding: var(--space-3) var(--space-4);
  border: 1.5px solid var(--color-gray-200);
  border-radius: var(--radius-md);
  font-size: var(--font-size-sm);
  font-family: var(--font-family-primary);
  background: var(--color-white);
  cursor: pointer;
  box-sizing: border-box;
  transition: all var(--transition-base);
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
}
.detail-selector select:hover {
  border-color: var(--color-gray-300);
}
.detail-selector select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.amenities-grid,
.nearby-resources {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
  width: 100%;
  max-width: 100%;
}

.amenity-checkbox,
.resource-checkbox {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  cursor: pointer;
  font-size: var(--font-size-sm);
  color: var(--color-gray-700);
  transition: color var(--transition-base);
  min-width: 0;
  width: 100%;
}
.amenity-checkbox:hover,
.resource-checkbox:hover {
  color: var(--color-gray-900);
}
.amenity-checkbox input[type=checkbox],
.resource-checkbox input[type=checkbox] {
  display: none;
}
.amenity-checkbox .checkmark,
.resource-checkbox .checkmark {
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 2px solid var(--color-gray-300);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  position: relative;
  flex-shrink: 0;
}
.amenity-checkbox .checkmark::after,
.resource-checkbox .checkmark::after {
  content: "";
  width: 6px;
  height: 10px;
  border: solid var(--color-white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity var(--transition-base);
}
.amenity-checkbox input[type=checkbox]:checked + .checkmark,
.resource-checkbox input[type=checkbox]:checked + .checkmark {
  background: var(--color-primary);
  border-color: var(--color-primary);
}
.amenity-checkbox input[type=checkbox]:checked + .checkmark::after,
.resource-checkbox input[type=checkbox]:checked + .checkmark::after {
  opacity: 1;
}
.amenity-checkbox input[type=checkbox]:focus + .checkmark,
.resource-checkbox input[type=checkbox]:focus + .checkmark {
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4) var(--space-6);
  border-radius: var(--radius-lg);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  font-family: var(--font-family-primary);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  border: none;
  flex: 1;
  gap: var(--space-2);
}
.btn:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}
.btn--primary {
  background: linear-gradient(135deg, var(--color-primary), #1d4ed8);
  color: var(--color-white);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25);
}
.btn--primary:hover {
  background: linear-gradient(135deg, #1d4ed8, var(--color-primary-dark));
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.35);
}
.btn--primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25);
}
.btn--secondary {
  background: var(--color-white);
  color: var(--color-gray-700);
  border: 1.5px solid var(--color-gray-200);
}
.btn--secondary:hover {
  background: var(--color-gray-50);
  border-color: var(--color-gray-300);
  color: var(--color-gray-800);
}

.saved-properties {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
.saved-properties__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.saved-properties__empty {
  flex: 1;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: var(--space-4);
  color: var(--color-gray-600);
  padding: var(--space-8) var(--space-4);
}
.saved-properties__empty.show {
  display: flex !important;
}

.saved-empty__icon {
  display: grid;
  place-items: center;
  width: 80px;
  height: 80px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--color-gray-50) 0%, var(--color-primary-light) 10%, var(--color-gray-100) 100%);
  box-shadow: inset 0 1px 3px rgba(148, 163, 184, 0.15);
  margin: 0 auto;
}
.saved-empty__icon svg {
  color: var(--color-primary);
  opacity: 0.8;
}
.saved-empty__title {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  color: var(--color-gray-900);
  margin: 0;
  font-family: var(--font-family-primary);
}
.saved-empty__subtitle {
  max-width: 20rem;
  font-size: var(--font-size-sm);
  line-height: var(--line-height-relaxed);
  color: var(--color-gray-600);
  margin: 0;
  font-family: var(--font-family-primary);
}
.saved-empty__cta {
  margin-top: var(--space-2);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.saved-empty__cta svg {
  width: 16px;
  height: 16px;
}

.saved-property-card {
  display: flex;
  gap: var(--space-3);
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  transition: all var(--transition-base);
  cursor: pointer;
}
.saved-property-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}
.saved-property-card__image {
  width: 80px;
  height: 60px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-gray-100);
  flex-shrink: 0;
}
.saved-property-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.saved-property-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}
.saved-property-card__title {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--color-gray-900);
  margin: 0;
  font-family: var(--font-family-primary);
}
.saved-property-card__location {
  font-size: var(--font-size-xs);
  color: var(--color-gray-600);
  margin: 0;
  font-family: var(--font-family-primary);
}
.saved-property-card__price {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  margin: 0;
  font-family: var(--font-family-primary);
}
.saved-property-card__actions {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.saved-property-card__remove {
  background: none;
  border: none;
  color: var(--color-gray-400);
  cursor: pointer;
  padding: var(--space-1);
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
}
.saved-property-card__remove:hover {
  color: var(--color-red-500);
  background: var(--color-red-50);
}
.saved-property-card__remove svg {
  width: 16px;
  height: 16px;
}

.map-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1;
}

.topSearchBar {
  position: fixed;
  top: 1rem;
  width: fit-content;
  margin-inline: auto;
  border-radius: 10rem;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  background: rgba(255, 255, 255, 0.226);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  padding: var(--space-4) 1rem;
}
@media (max-width: 767px) {
  .topSearchBar {
    width: calc(100% - 2rem);
    border-radius: var(--radius-xl);
  }
}
@media (max-width: 639px) {
  .topSearchBar {
    width: calc(100% - 1rem);
    top: 0.5rem;
    border-radius: var(--radius-lg);
    padding: var(--space-3) var(--space-3);
  }
}
.topSearchBar__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-6);
}
@media (max-width: 1023px) {
  .topSearchBar__container {
    gap: var(--space-4);
  }
}
@media (max-width: 767px) {
  .topSearchBar__container {
    flex-wrap: wrap;
    gap: var(--space-3);
    padding: 0 var(--space-2);
  }
}
@media (max-width: 639px) {
  .topSearchBar__container {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: var(--space-4);
    padding: 0 var(--space-2);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
  }
  .topSearchBar__container::-webkit-scrollbar {
    height: 4px;
  }
  .topSearchBar__container::-webkit-scrollbar-track {
    background: transparent;
  }
  .topSearchBar__container::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
  }
  .topSearchBar__container::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.3);
  }
}
.topSearchBar__logo {
  flex-shrink: 0;
}
.topSearchBar__logo img {
  height: 40px;
  width: 5rem;
  object-fit: cover;
  scale: 2.2;
}
@media (max-width: 767px) {
  .topSearchBar__logo {
    order: 1;
  }
  .topSearchBar__logo img {
    scale: 1.8;
  }
}
@media (max-width: 639px) {
  .topSearchBar__logo img {
    height: 32px;
    width: 4rem;
    scale: 1.5;
  }
}
.topSearchBar__search {
  flex: 1;
  max-width: 500px;
}
@media (max-width: 767px) {
  .topSearchBar__search {
    order: 2;
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 639px) {
  .topSearchBar__search {
    order: 2;
    flex: 1;
    min-width: 200px;
    max-width: none;
  }
}
.topSearchBar__search .search-bar {
  margin-bottom: 0;
}
.topSearchBar__search .search-bar__input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.topSearchBar__search .search-bar__icon {
  position: absolute;
  left: var(--space-4);
  color: var(--color-gray-400);
  z-index: 1;
}
.topSearchBar__search .search-bar__input {
  width: 100%;
  padding: var(--space-3) var(--space-4) var(--space-3) calc(var(--space-4) + 24px + var(--space-2));
  border: 1px solid var(--color-gray-300);
  border-radius: var(--radius-md);
  font-size: var(--font-size-sm);
  font-family: var(--font-family-primary);
  background: var(--color-white);
  transition: all var(--transition-base);
}
.topSearchBar__search .search-bar__input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
.topSearchBar__search .search-bar__input::placeholder {
  color: var(--color-gray-400);
}
.topSearchBar__tags {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-wrap: wrap;
}
@media (max-width: 1023px) {
  .topSearchBar__tags {
    gap: var(--space-2);
  }
}
@media (max-width: 767px) {
  .topSearchBar__tags {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    margin-top: var(--space-2);
  }
}
@media (max-width: 639px) {
  .topSearchBar__tags {
    display: none;
  }
}

.top-filter__select {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  font-family: var(--font-family-primary);
  color: var(--color-gray-700);
  cursor: pointer;
  transition: all var(--transition-base);
  min-width: 140px;
  height: auto;
}
.top-filter__select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
.top-filter__select:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-1px);
}
@media (max-width: 1023px) {
  .top-filter__select {
    min-width: 120px;
    padding: var(--space-3) var(--space-3);
    font-size: var(--font-size-sm);
  }
}
@media (max-width: 767px) {
  .top-filter__select {
    min-width: 100px;
    padding: var(--space-2) var(--space-3);
    font-size: var(--font-size-sm);
  }
}
@media (max-width: 639px) {
  .top-filter__select {
    flex-shrink: 0;
  }
}

.tag-group {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .tag-group {
    gap: var(--space-1);
  }
}
@media (max-width: 639px) {
  .tag-group {
    flex-wrap: nowrap;
    flex-shrink: 0;
  }
}

.filter-tag {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  font-family: var(--font-family-primary);
  color: var(--color-gray-700);
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
  user-select: none;
  height: auto;
}
.filter-tag:hover {
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--color-gray-800);
  transform: translateY(-1px);
}
.filter-tag--active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}
.filter-tag--active:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: var(--color-white);
}
.filter-tag:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
.filter-tag:active {
  transform: translateY(0);
}
@media (max-width: 1023px) {
  .filter-tag {
    padding: var(--space-3) var(--space-3);
    font-size: var(--font-size-sm);
  }
}
@media (max-width: 767px) {
  .filter-tag {
    padding: var(--space-2) var(--space-3);
    font-size: var(--font-size-sm);
  }
}
@media (max-width: 639px) {
  .filter-tag {
    flex-shrink: 0;
  }
}

.more-filters-btn {
  background: rgba(37, 99, 235, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--color-white);
  border: 1px solid rgba(37, 99, 235, 0.3);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  font-family: var(--font-family-primary);
  cursor: pointer;
  transition: all var(--transition-base);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  white-space: nowrap;
  margin-left: var(--space-2);
  height: auto;
}
.more-filters-btn:hover {
  background: var(--color-primary);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}
.more-filters-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
.more-filters-btn:active {
  transform: translateY(0);
}
.more-filters-btn svg {
  width: 16px;
  height: 16px;
}
@media (max-width: 1023px) {
  .more-filters-btn {
    padding: var(--space-3) var(--space-3);
    font-size: var(--font-size-sm);
  }
  .more-filters-btn svg {
    width: 16px;
    height: 16px;
  }
}
@media (max-width: 767px) {
  .more-filters-btn {
    padding: var(--space-2) var(--space-3);
    font-size: var(--font-size-sm);
  }
  .more-filters-btn svg {
    width: 14px;
    height: 14px;
  }
}
@media (max-width: 639px) {
  .more-filters-btn {
    flex-shrink: 0;
    margin-left: 0;
  }
}

.map-container {
  padding-top: 0;
}

@media (max-width: 767px) {
  .sidebar-toggle {
    top: calc(120px + var(--space-4));
  }
}
@media (max-width: 639px) {
  .sidebar-toggle {
    top: calc(100px + var(--space-4));
  }
}

#suburbsearchFound {
  position: fixed;
  top: 5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  max-width: calc(100vw - 2rem);
  max-height: 60vh;
  overflow-y: auto;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15), 0 2px 10px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--color-gray-100);
  z-index: 1000;
  padding: var(--space-2);
}
@media (max-width: 639px) {
  #suburbsearchFound {
    width: calc(100vw - 2rem);
    top: 4rem;
    max-height: 70vh;
  }
}
#suburbsearchFound {
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.15) transparent;
}
#suburbsearchFound::-webkit-scrollbar {
  width: 6px;
}
#suburbsearchFound::-webkit-scrollbar-track {
  background: transparent;
}
#suburbsearchFound::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 6px;
}
#suburbsearchFound::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.25);
}
#suburbsearchFound:empty {
  display: none;
}

.foundsuburbs {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--color-gray-700);
  font-size: var(--font-size-sm);
  font-family: var(--font-family-primary);
  transition: all 0.15s ease;
  cursor: pointer;
}
.foundsuburbs:hover {
  background: var(--color-gray-50);
  color: var(--color-primary);
}
.foundsuburbs:hover svg path {
  fill: var(--color-primary);
}
.foundsuburbs:active {
  background: var(--color-gray-100);
}
.foundsuburbs span:first-child {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(227, 51, 51, 0.1);
  border-radius: var(--radius-md);
  flex-shrink: 0;
}
.foundsuburbs span:first-child svg {
  width: 14px;
  height: 14px;
}
.foundsuburbs span:last-child {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: var(--font-weight-medium);
}

.leaflet-popup.custom-popup .leaflet-popup-content-wrapper {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}
.leaflet-popup.custom-popup .leaflet-popup-content {
  margin: 0;
  width: 400px !important;
  font-family: var(--font-family-primary);
}
.leaflet-popup.custom-popup .leaflet-popup-tip {
  background: var(--color-white);
  box-shadow: var(--shadow-lg);
}
.leaflet-popup.custom-popup .leaflet-popup-close-button {
  display: none !important;
}

.property-popup {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  font-family: var(--font-family-primary);
  max-width: 400px;
  position: relative;
}
.property-popup__header {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  right: var(--space-3);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  z-index: var(--z-dropdown);
}
.property-popup__status .status-badge {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--color-white);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-medium);
  font-family: var(--font-family-primary);
}
.property-popup__status .status-badge--available {
  background: rgba(34, 197, 94, 0.9);
}
.property-popup__status .status-badge--upcoming {
  background: rgba(251, 146, 60, 0.9);
}
.property-popup__controls {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.property-popup__favorite {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-base);
  color: var(--color-gray-600);
}
.property-popup__favorite:hover {
  background: rgb(255, 255, 255);
  color: var(--color-red-500);
  transform: scale(1.1);
}
.property-popup__favorite:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
.property-popup__favorite.favorited {
  color: var(--color-red-500);
  background: var(--color-red-50);
  border: 1px solid var(--color-red-500);
}
.property-popup__favorite.favorited:hover {
  color: var(--color-red-500);
  background: var(--color-white);
  transform: scale(1.05);
}
.property-popup__close {
  background: rgba(239, 68, 68, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-base);
  color: var(--color-white);
}
.property-popup__close:hover {
  background: rgb(220, 38, 38);
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
}
.property-popup__close:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.3);
}
.property-popup__close:active {
  transform: scale(1.05);
  background: rgb(185, 28, 28);
}
.property-popup__close svg {
  width: 18px;
  height: 18px;
}
.property-popup__carousel {
  position: relative;
  height: 180px;
  overflow: hidden;
  background: var(--color-gray-100);
}

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

.carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform var(--transition-smooth);
}

.carousel-slide {
  flex: 0 0 100%;
  height: 100%;
  position: relative;
  opacity: 0;
  transition: opacity var(--transition-base);
}
.carousel-slide--active {
  opacity: 1;
}
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: zoom-in;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  cursor: pointer;
  transition: all var(--transition-base);
  opacity: 0;
  z-index: var(--z-dropdown);
}
.carousel-nav:hover {
  background: rgba(0, 0, 0, 0.7);
  transform: translateY(-50%) scale(1.1);
}
.carousel-nav:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}
.carousel-nav--prev {
  left: var(--space-3);
}
.carousel-nav--next {
  right: var(--space-3);
}

.property-popup:hover .carousel-nav {
  opacity: 1;
}

.carousel-dots {
  position: absolute;
  bottom: var(--space-3);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: var(--space-2);
  z-index: var(--z-dropdown);
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all var(--transition-base);
}
.carousel-dot--active {
  background: var(--color-white);
  transform: scale(1.2);
}
.carousel-dot:hover {
  background: rgba(255, 255, 255, 0.8);
}
.carousel-dot:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5);
}

.property-popup__content {
  padding: var(--space-4);
  font-family: var(--font-family-primary);
}

.property-popup__main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-4);
}

.property-header {
  flex: 1;
}
.property-header .property-title {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  color: var(--color-gray-900);
  margin: 0 0 var(--space-1) 0;
  line-height: var(--line-height-tight);
  font-family: var(--font-family-primary);
}
.property-header .property-location {
  font-size: var(--font-size-sm);
  color: var(--color-gray-600);
  margin: 0 0 var(--space-2) 0;
  font-family: var(--font-family-primary);
}

.property-rating {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}
.property-rating .stars {
  display: flex;
  gap: 1px;
  color: var(--color-yellow-400);
}
.property-rating .rating-value {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-gray-700);
  font-family: var(--font-family-primary);
}

.property-price {
  text-align: right;
}
.property-price .price-amount {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  display: block;
  cursor: zoom-in;
  line-height: 1;
  font-family: var(--font-family-primary);
}
.property-price .price-period {
  font-size: var(--font-size-xs);
  color: var(--color-gray-500);
  font-family: var(--font-family-primary);
}

.property-popup__details .property-description {
  font-size: var(--font-size-sm);
  color: var(--color-gray-700);
  line-height: var(--line-height-relaxed);
  margin: 0 0 var(--space-4) 0;
  font-family: var(--font-family-primary);
}

.property-specs {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}

.spec-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-gray-600);
  font-size: var(--font-size-sm);
  font-family: var(--font-family-primary);
}
.spec-item svg {
  flex-shrink: 0;
}

.property-features {
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  font-size: var(--font-size-xs);
  font-family: var(--font-family-primary);
}
.feature-item--yes {
  color: var(--color-green-600);
}
.feature-item--no {
  color: var(--color-gray-400);
}
.feature-item svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.property-amenities,
.property-nearby {
  margin-bottom: var(--space-4);
}
.property-amenities h4,
.property-nearby h4 {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--color-gray-900);
  margin: 0 0 var(--space-2) 0;
  font-family: var(--font-family-primary);
}

.amenities-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-1);
}

.amenity-tag {
  background: var(--color-gray-100);
  color: var(--color-gray-700);
  padding: var(--space-1) var(--space-2);
  border-radius: var(--radius-sm);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-medium);
  white-space: nowrap;
  font-family: var(--font-family-primary);
}
.amenity-tag--more {
  background: var(--color-primary);
  color: var(--color-white);
}

.nearby-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.nearby-item {
  font-size: var(--font-size-xs);
  color: var(--color-gray-600);
  display: flex;
  align-items: center;
  font-family: var(--font-family-primary);
  background: var(--color-gray-50);
  padding: var(--space-1) var(--space-2);
  border-radius: var(--radius-sm);
  white-space: nowrap;
}
.nearby-item::before {
  content: "📍";
  margin-right: var(--space-1);
  font-size: 10px;
}

.property-popup__actions {
  display: flex;
  gap: var(--space-2);
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-gray-200);
}

.btn-action {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-1);
  padding: var(--space-3);
  border: none;
  border-radius: var(--radius-md);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  font-family: var(--font-family-primary);
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
}
.btn-action:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
.btn-action--primary {
  background: var(--color-primary);
  color: var(--color-white);
}
.btn-action--primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-1px);
}
.btn-action--primary:active {
  transform: translateY(0);
}
.btn-action--whatsapp {
  background: #25D366;
  color: var(--color-white);
}
.btn-action--whatsapp:hover {
  background: #1DA851;
  transform: translateY(-1px);
}
.btn-action--whatsapp:active {
  transform: translateY(0);
}
.btn-action svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

@media (max-width: 639px) {
  .property-popup {
    max-width: 350px;
  }
  .property-popup__content {
    padding: var(--space-3);
  }
  .property-popup__carousel {
    height: 160px;
  }
  .property-popup__close {
    width: 32px;
    height: 32px;
  }
  .property-popup__close svg {
    width: 16px;
    height: 16px;
  }
  .property-specs {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-1);
  }
  .property-features {
    flex-direction: column;
    gap: var(--space-2);
  }
  .nearby-list {
    flex-direction: column;
    gap: var(--space-1);
  }
  .nearby-item {
    background: transparent;
    padding: 0;
  }
  .nearby-item::before {
    content: "•";
    color: var(--color-primary);
    margin-right: var(--space-2);
    font-weight: bold;
  }
  .btn-action {
    padding: var(--space-2);
    font-size: var(--font-size-xs);
  }
  .btn-action svg {
    width: 14px;
    height: 14px;
  }
}
@media (max-width: 767px) {
  .property-specs {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2);
  }
}
.fullscreen-gallery {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  display: none;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  cursor: grab;
  overflow: hidden;
}
.fullscreen-gallery--active {
  display: block;
  opacity: 1;
}
.fullscreen-gallery--dragging {
  cursor: grabbing;
}
.fullscreen-gallery__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1;
}
.fullscreen-gallery__stage {
  position: absolute;
  inset: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.fullscreen-gallery__image-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fullscreen-gallery__track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.fullscreen-gallery__slide {
  flex: 0 0 100%;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.fullscreen-gallery__slide--active {
  opacity: 1;
}
.fullscreen-gallery__slide img {
  max-width: 100vw;
  max-height: 100vh;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: zoom-in;
  user-select: none;
  -webkit-user-drag: none;
}
.fullscreen-gallery__slide img.zoomed {
  cursor: grab;
}
.fullscreen-gallery__slide img.zoomed:active {
  cursor: grabbing;
}
.fullscreen-gallery__loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  color: var(--color-white);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.fullscreen-gallery__loading--visible {
  opacity: 1;
}
.fullscreen-gallery__loading .loading-spinner {
  animation: spin 1s linear infinite;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.fullscreen-gallery__top-controls {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-6);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 70%, transparent 100%);
  z-index: 20;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.fullscreen-gallery__top-controls.hidden {
  opacity: 0;
  pointer-events: none;
}
.fullscreen-gallery__info {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  color: var(--color-white);
}
.fullscreen-gallery__info .fullscreen-gallery__title {
  margin: 0;
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  font-family: var(--font-family-primary);
}
.fullscreen-gallery__info .fullscreen-gallery__counter {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-family-primary);
}
.fullscreen-gallery__actions {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.fullscreen-gallery__action {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  color: var(--color-white);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.fullscreen-gallery__action:hover {
  background: rgba(0, 0, 0, 0.8);
  border-color: rgba(255, 255, 255, 0.4);
  transform: scale(1.05);
}
.fullscreen-gallery__action:active {
  transform: scale(0.95);
}
.fullscreen-gallery__action:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: 2px;
}
.fullscreen-gallery__action svg {
  width: 20px;
  height: 20px;
}
.fullscreen-gallery__nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  color: var(--color-white);
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 15;
  opacity: 1;
}
.fullscreen-gallery__nav:hover:not(:disabled) {
  background: rgba(0, 0, 0, 0.8);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-50%) scale(1.1);
}
.fullscreen-gallery__nav:active {
  transform: translateY(-50%) scale(0.9);
}
.fullscreen-gallery__nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.fullscreen-gallery__nav:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: 2px;
}
.fullscreen-gallery__nav--prev {
  left: var(--space-6);
}
.fullscreen-gallery__nav--next {
  right: var(--space-6);
}
.fullscreen-gallery__nav svg {
  width: 32px;
  height: 32px;
}
.fullscreen-gallery__nav.hidden {
  opacity: 0;
  pointer-events: none;
}
.fullscreen-gallery__bottom-controls {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding: var(--space-6);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 70%, transparent 100%);
  z-index: 20;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.fullscreen-gallery__bottom-controls.hidden {
  opacity: 0;
  pointer-events: none;
}
.fullscreen-gallery__caption {
  color: var(--color-white);
  font-size: var(--font-size-sm);
  text-align: center;
  font-family: var(--font-family-primary);
  opacity: 0.9;
}
.fullscreen-gallery__progress {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}
.fullscreen-gallery__progress-bar {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  overflow: hidden;
}
.fullscreen-gallery__progress-fill {
  height: 100%;
  background: var(--color-white);
  border-radius: 2px;
  transition: width 0.3s ease;
}
.fullscreen-gallery__thumbnails {
  display: flex;
  justify-content: center;
  overflow: hidden;
}
.fullscreen-gallery__thumbnail-track {
  display: flex;
  gap: var(--space-2);
  padding: var(--space-2) 0;
  max-width: 80vw;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.fullscreen-gallery__thumbnail-track::-webkit-scrollbar {
  display: none;
}
.fullscreen-gallery__thumbnail-track .thumbnail {
  flex-shrink: 0;
  width: 60px;
  height: 40px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}
.fullscreen-gallery__thumbnail-track .thumbnail:hover {
  transform: scale(1.05);
  border-color: rgba(255, 255, 255, 0.5);
}
.fullscreen-gallery__thumbnail-track .thumbnail--active {
  border-color: var(--color-white);
  transform: scale(1.1);
}
.fullscreen-gallery__thumbnail-track .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

body.fullscreen-gallery-open {
  overflow: hidden;
}

@media (max-width: 767px) {
  .fullscreen-gallery__top-controls, .fullscreen-gallery__bottom-controls {
    padding: var(--space-4);
  }
  .fullscreen-gallery__nav {
    width: 56px;
    height: 56px;
  }
  .fullscreen-gallery__nav--prev {
    left: var(--space-4);
  }
  .fullscreen-gallery__nav--next {
    right: var(--space-4);
  }
  .fullscreen-gallery__nav svg {
    width: 28px;
    height: 28px;
  }
  .fullscreen-gallery__action {
    width: 44px;
    height: 44px;
  }
  .fullscreen-gallery__action svg {
    width: 18px;
    height: 18px;
  }
  .fullscreen-gallery__info .fullscreen-gallery__title {
    font-size: var(--font-size-base);
  }
  .fullscreen-gallery__info .fullscreen-gallery__counter {
    font-size: var(--font-size-xs);
  }
}
@media (max-width: 639px) {
  .fullscreen-gallery__top-controls, .fullscreen-gallery__bottom-controls {
    padding: var(--space-3);
  }
  .fullscreen-gallery__nav {
    width: 48px;
    height: 48px;
  }
  .fullscreen-gallery__nav--prev {
    left: var(--space-2);
  }
  .fullscreen-gallery__nav--next {
    right: var(--space-2);
  }
  .fullscreen-gallery__nav svg {
    width: 24px;
    height: 24px;
  }
  .fullscreen-gallery__action {
    width: 40px;
    height: 40px;
  }
  .fullscreen-gallery__action svg {
    width: 16px;
    height: 16px;
  }
  .fullscreen-gallery__actions {
    gap: var(--space-1);
  }
  .fullscreen-gallery__thumbnails {
    display: none;
  }
}
@media (max-width: 767px) {
  .fullscreen-gallery {
    padding: var(--space-4);
  }
  .fullscreen-gallery__slide {
    padding: var(--space-3);
  }
  .fullscreen-gallery__slide img {
    max-height: 60vh;
  }
  .fullscreen-gallery__nav {
    width: 40px;
    height: 40px;
  }
  .fullscreen-gallery__nav svg {
    width: 18px;
    height: 18px;
  }
  .fullscreen-gallery__close {
    width: 36px;
    height: 36px;
  }
  .fullscreen-gallery__close svg {
    width: 16px;
    height: 16px;
  }
}
@media (max-width: 639px) {
  .fullscreen-gallery {
    padding: var(--space-3);
  }
  .fullscreen-gallery__content {
    max-height: 100vh;
  }
  .fullscreen-gallery__slide {
    padding: var(--space-2);
  }
  .fullscreen-gallery__slide img {
    max-height: 55vh;
  }
}
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.property-popup {
  animation: slideIn 0.3s ease-out;
}

.carousel-slide img {
  transition: opacity var(--transition-base);
}
.carousel-slide img[src=""] {
  opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-track,
  .carousel-slide,
  .btn-action,
  .property-popup {
    transition: none;
    animation: none;
  }
}
.previewMainContainer {
  position: absolute;
  top: 10rem;
  right: 2rem;
  z-index: 2;
  --preview-cols: 1;
  --preview-card-width: 17rem;
  --preview-gap: 1rem;
  min-height: 14rem;
  width: min(var(--preview-card-width) * var(--preview-cols) + (var(--preview-cols) - 1) * var(--preview-gap) + 3rem, var(--preview-card-width) * 3 + var(--preview-gap) * 2 + 3rem);
  max-width: calc(var(--preview-card-width) * 3 + var(--preview-gap) * 2 + 3rem);
  min-width: calc(var(--preview-card-width) + 3rem);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
}

.previewMainContainer__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.previewMainContainer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.preview-heading {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1e293b;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0;
}

.preview-count {
  font-size: 0.9rem;
  font-weight: 500;
  color: #0f172a;
  background: rgba(148, 163, 184, 0.18);
  border-radius: 9999px;
  padding: 0.25rem 0.75rem;
}

.preview-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1rem;
  color: #475569;
}
.preview-empty__icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);
  box-shadow: inset 0 1px 3px rgba(148, 163, 184, 0.15);
}
.preview-empty__title {
  font-size: 1.05rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0;
}
.preview-empty__subtitle {
  max-width: 18rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #64748b;
  margin: 0;
}

.preview-list {
  display: grid;
  gap: var(--preview-gap);
  margin: 0;
  padding: 0;
  list-style: none;
  grid-template-columns: repeat(var(--preview-cols, 1), minmax(0, 1fr));
}

.preview-list[hidden] {
  display: none;
}

.preview-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0; /*Leave this as 0*/
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(248, 250, 252, 0.8) 0%, rgba(226, 232, 240, 0.6) 100%);
  border: 1px solid rgba(148, 163, 184, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  backdrop-filter: blur(12px);
}

.preview-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.preview-card__thumb {
  position: relative;
  width: 100%;
  height: 120px;
  border-radius: 12px;
  overflow: hidden;
  background: #e2e8f0;
}

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

.preview-card__info {
  display: flex;
  flex-direction: column;
  padding: 0 0.5rem;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.preview-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.preview-card__title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #0f172a;
  margin: 0;
}

.preview-card__price-tag {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #1d4ed8;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(37, 99, 235, 0.25);
  border-radius: 9999px;
  padding: 0.2rem 0.8rem;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
  white-space: nowrap;
}

.preview-card__location {
  font-size: 0.85rem;
  color: #475569;
  margin: 0;
}

.preview-card__details {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.35rem;
}

.preview-card__detail {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.6rem;
  border-radius: 9999px;
  background: rgba(148, 163, 184, 0.16);
  color: #475569;
  font-size: 0.8rem;
  font-weight: 500;
}

.preview-card__detail svg {
  width: 12px;
  height: 12px;
  color: inherit;
}

.previewMainContainer--empty .preview-list {
  display: none !important;
}

.previewMainContainer--empty .preview-empty {
  opacity: 1;
}

.previewMainContainer--empty .previewMainContainer__header {
  display: none;
}

.preview-card__thumb--placeholder {
  display: grid;
  place-items: center;
  color: #64748b;
}

.previewMainContainer__header[hidden],
.preview-empty[hidden] {
  display: none !important;
}

@media (max-width: 767px) {
  .previewMainContainer {
    top: 6.5rem;
    right: 1rem;
    width: auto;
    min-width: auto;
    max-width: none;
    height: auto;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
  }
  .preview-bubble {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 0.75rem;
    background: var(--color-white);
    border-radius: 2rem;
    box-shadow: var(--shadow-lg);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    z-index: var(--z-fixed);
    width: fit-content;
  }
  .preview-bubble__count {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0 0.25rem;
  }
  .preview-bubble__label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--color-gray-700);
    white-space: nowrap;
  }
  .preview-bubble:active {
    transform: scale(0.96);
  }
  .previewMainContainer__drawer {
    display: none;
  }
  .previewMainContainer--expanded {
    position: fixed;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: none;
    height: 50vh;
    background: var(--color-white);
    border-radius: 1rem 1rem 0 0;
    box-shadow: 0 -4px 20px rgba(15, 23, 42, 0.15);
    padding: 0;
    z-index: var(--z-modal);
    animation: slideUpDrawer 0.3s ease-out;
    transition: transform 0.3s ease-out;
  }
  @keyframes slideUpDrawer {
    from {
      transform: translateY(100%);
    }
    to {
      transform: translateY(0);
    }
  }
  .previewMainContainer--expanded .preview-bubble {
    display: none;
  }
  .previewMainContainer--expanded .previewMainContainer__drawer {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    position: relative;
  }
  .preview-drawer__handle {
    display: flex;
    justify-content: center;
    padding: 0.75rem 0 0.5rem;
    cursor: grab;
    touch-action: none;
  }
  .preview-drawer__handle-bar {
    width: 40px;
    height: 4px;
    background: var(--color-gray-300);
    border-radius: 2px;
  }
  .preview-drawer__handle:active {
    cursor: grabbing;
  }
  .preview-drawer__close {
    position: absolute;
    top: 0.75rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-gray-100);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all var(--transition-fast);
  }
  .preview-drawer__close:active {
    background: var(--color-gray-200);
    transform: scale(0.92);
  }
  .previewMainContainer--expanded .previewMainContainer__body {
    flex: 1;
    overflow-y: auto;
    padding: 0.75rem;
    padding-top: 3rem;
    -webkit-overflow-scrolling: touch;
  }
  .previewMainContainer--expanded .previewMainContainer__header {
    padding: 0 0 1rem 0;
    border-bottom: 1px solid var(--color-gray-200);
    margin-bottom: 1rem;
  }
  .previewMainContainer--expanded .preview-heading {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--color-gray-900);
  }
  .previewMainContainer--expanded .preview-count {
    font-size: var(--font-size-sm);
    color: var(--color-gray-600);
  }
  .previewMainContainer--expanded .preview-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .previewMainContainer--expanded .preview-card {
    display: flex;
    flex-direction: column;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: var(--color-white);
    transition: all var(--transition-fast);
    position: relative;
    min-height: 200px;
  }
  .previewMainContainer--expanded .preview-card__thumb {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
  }
  .previewMainContainer--expanded .preview-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .previewMainContainer--expanded .preview-card__thumb::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.4) 40%, transparent 100%);
    pointer-events: none;
  }
  .previewMainContainer--expanded .preview-card__price-tag {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: var(--color-white);
    color: var(--color-gray-900);
    padding: 0.375rem 0.75rem;
    border-radius: 1rem;
    font-size: var(--font-size-sm);
    font-weight: 600;
    box-shadow: var(--shadow-md);
    z-index: 2;
  }
  .previewMainContainer--expanded .preview-card__info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    z-index: 2;
    color: var(--color-white);
  }
  .previewMainContainer--expanded .preview-card__title {
    font-size: var(--font-size-base);
    font-weight: 600;
    margin-bottom: 0.375rem;
    line-height: 1.4;
    color: var(--color-white);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .previewMainContainer--expanded .preview-card__location {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }
  .previewMainContainer--expanded .preview-card__details {
    display: flex;
    gap: 1rem;
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.95);
  }
  .previewMainContainer--expanded .preview-card__detail {
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }
  .previewMainContainer--expanded .preview-card__detail svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
  }
  .previewMainContainer--expanded .preview-card:active {
    transform: scale(0.98);
  }
}
@media (min-width: 768px) {
  .preview-bubble {
    display: none;
  }
  .previewMainContainer__drawer {
    display: block;
  }
  .preview-drawer__close {
    display: none;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family-primary);
  font-size: var(--font-size-base);
  line-height: var(--line-height-normal);
  color: var(--color-gray-900);
  background-color: var(--color-white);
  overflow: hidden;
}

.property-popup {
  padding: 0;
  min-width: 200px;
}
.property-popup h3 {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  color: var(--color-gray-900);
  margin-bottom: var(--space-2);
}
.property-popup .price {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  margin-bottom: var(--space-1);
}
.property-popup .details {
  font-size: var(--font-size-sm);
  color: var(--color-gray-600);
  margin-bottom: var(--space-3);
}
.property-popup .btn--small {
  padding: var(--space-2) var(--space-4);
  font-size: var(--font-size-xs);
}

/*# sourceMappingURL=mapnew.css.map */
