* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gradient: linear-gradient(135deg, #2c5f5d 0%, #1a3a38 100%);
    --secondary-gradient: linear-gradient(135deg, #7d9d9c 0%, #5a7c7a 100%);
    --accent-gradient: linear-gradient(135deg, #a8c5c3 0%, #8ba9a7 100%);
    --primary-color: #2c5f5d;
    --secondary-color: #5a7c7a;
    --accent-color: #8ba9a7;
    --highlight-color: #c9a96e;
    --text-dark: #2c3e50;
    --text-light: #e8ebe9;
    --bg-light: #fafaf8;
    --bg-dark: #1a1f1e;
    --card-light: #f5f6f4;
    --card-dark: #252a29;

    /* Category Colors */
    --category-fashion: #f5f5dc;
    --category-accessories: #c8a2c8;
    --category-beauty: #ffa07a;
    --category-jewelry: #daa520;
    --category-food: #7cb342;
    --category-home: #4a90e2;
    --category-department: #4a90e2;
    --category-supermarket: #f4d03f;
    --category-books: #9c27b0;
    --category-default: #f5f5dc;
}

body {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    line-height: 1.6;
    background: var(--bg-light);
    transition: background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-x: hidden;
    color: var(--text-dark);
    letter-spacing: 0.3px;
    overflow: hidden;
}

body.loaded {
    overflow-x: hidden;
    overflow-y: auto;
}

/* Typography enhancements */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Playfair Display", serif;
    line-height: 1.2;
    margin-bottom: 0.5em;
    font-weight: 600;
}

h1 {
    font-size: 2.5rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2rem;
    letter-spacing: -0.015em;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode h4 {
    color: #f0f0f0;
}

/* Paragraph and text elements */
p {
    margin-bottom: 1rem;
}

/* Spacing utilities */
.section {
    padding: 4rem 0;
}

.section-title {
    margin-bottom: 3rem;
    text-align: center;
}

.section-title h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.section-title h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

body.dark-mode {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

/* Hide content until loaded */
body:not(.loaded) > *:not(.page-loader) {
    opacity: 0;
    visibility: hidden;
}

/* Enhanced dark mode with deeper contrast */
body.dark-mode .filter-sidebar {
    background: #121212;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

body.dark-mode .tenant-card {
    background: #1a1a1a;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    border-color: #2a2a2a;
}

body.dark-mode .filter-input {
    background: #1e1e1e;
}

body.dark-mode .filter-input:focus-within {
    background: #2a2a2a;
    border-color: #f5f5dc;
}

body.dark-mode .map-container {
    background: #121212;
}

body.dark-mode .search-bar {
    background: rgba(30, 30, 30, 0.8);
    border: 1px solid #333;
}

body.dark-mode .search-suggestions {
    background: #1a1a1a;
    border: 1px solid #333;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

body.dark-mode .suggestion-item {
    border-bottom-color: #2a2a2a;
}

body.dark-mode .suggestion-item:hover {
    background: #2a2a2a;
}

/* Hide Scrollbar */
* {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

*::-webkit-scrollbar {
    display: none;
}

html {
    scroll-behavior: smooth;
}

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #fafaf8 0%, #f5f6f4 50%, #e8ebe9 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
        visibility 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

body.dark-mode .page-loader {
    background: linear-gradient(135deg, #1a1f1e 0%, #252a29 50%, #2c3e3c 100%);
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 500px;
    padding: 0 20px;
}

.loader-logo {
    opacity: 0;
    animation: logoFadeIn 1s ease forwards 0.3s;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.loader-logo-circle {
    width: 150px;
    height: 150px;
    /* background: var(--primary-gradient); */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* box-shadow: 0 10px 30px rgba(44, 95, 93, 0.3); */
    margin-bottom: 20px;
}

.loader-logo-image {
    width: 200px;
    height: 200px;
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.1));
}

.loader-logo h1 {
    /* font-family: 'Playfair Display', serif; */
    font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
        "Lucida Sans", Arial, sans-serif;
    font-size: 42px;
    font-weight: 400;
    letter-spacing: 3px;
    /* text-transform: lowercase; */
    color: var(--primary-color);
    margin-bottom: 5px;
    text-shadow: 0 2px 10px rgba(44, 95, 93, 0.1);
}

body.dark-mode .loader-logo h1 {
    color: var(--text-light);
}

.loader-logo span {
    display: block;
    font-size: 12px;
    letter-spacing: 5px;
    color: var(--secondary-color);
    margin-top: 0;
    text-shadow: 0 1px 5px rgba(90, 124, 122, 0.1);
    text-transform: uppercase;
}

@keyframes logoFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.loader-spinner {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 auto 50px;
}

.spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spinnerRotate 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    box-shadow: 0 0 15px rgba(44, 95, 93, 0.2);
}

.spinner-ring:nth-child(1) {
    animation-delay: -0.45s;
}

.spinner-ring:nth-child(2) {
    animation-delay: -0.3s;
    border-top-color: var(--secondary-color);
}

.spinner-ring:nth-child(3) {
    animation-delay: -0.15s;
    border-top-color: var(--accent-color);
}

@keyframes spinnerRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loader-progress {
    width: 300px;
    height: 3px;
    background: rgba(44, 95, 93, 0.15);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    margin: 0 auto 25px;
    box-shadow: 0 2px 8px rgba(44, 95, 93, 0.08);
}

.progress-bar {
    height: 100%;
    background: var(--primary-gradient);
    border-radius: 10px;
    width: 0%;
    animation: progressLoad 3s ease-in-out forwards;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(44, 95, 93, 0.3);
}

.progress-bar::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    animation: progressShine 1.5s infinite;
}

@keyframes progressLoad {
    0% {
        width: 0%;
    }

    30% {
        width: 30%;
    }

    60% {
        width: 60%;
    }

    90% {
        width: 90%;
    }

    100% {
        width: 100%;
    }
}

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

    100% {
        transform: translateX(100%);
    }
}

.loader-text {
    font-size: 12px;
    color: #6a7a78;
    letter-spacing: 2px;
    opacity: 0;
    animation: textFadeIn 0.5s ease forwards 1s;
    margin: 0;
    font-weight: 400;
}

body.dark-mode .loader-text {
    color: #b8c4c2;
}

@keyframes textFadeIn {
    to {
        opacity: 1;
    }
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    z-index: 1200;
    background: rgba(250, 250, 248, 0.98);
    box-shadow: 0 4px 20px rgba(44, 95, 93, 0.08);
    backdrop-filter: blur(30px);
}

body.dark-mode header {
    background: rgba(26, 31, 30, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.header-search {
    flex: 0 0 280px;
}

.search-bar {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    padding: 12px 20px;
    transition: all 0.3s ease;
}

body.dark-mode .search-bar {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.search-bar:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(44, 95, 93, 0.2), 0 0 40px rgba(44, 95, 93, 0.1);
}

.search-bar svg {
    width: 20px;
    height: 20px;
    stroke: #2c3e50;
    margin-right: 10px;
}

body.dark-mode .search-bar svg {
    stroke: #e0e0e0;
}

.search-bar input {
    background: transparent;
    border: none;
    color: #2c3e50;
    font-size: 14px;
    width: 100%;
    outline: none;
}

body.dark-mode .search-bar input {
    color: #e0e0e0;
}

.search-bar input::placeholder {
    color: rgba(0, 0, 0, 0.5);
}

body.dark-mode .search-bar input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Search suggestions */
.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 100;
    max-height: 300px;
    overflow-y: auto;
    display: none;
    margin-top: 5px;
    border: 1px solid #f0f0f0;
}

body.dark-mode .search-suggestions {
    background: #2a2a2a;
    border-color: #3a3a3a;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.search-suggestions.show {
    display: block;
}

.suggestion-item {
    padding: 12px 20px;
    cursor: pointer;
    border-bottom: 1px solid #f8f9fa;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

body.dark-mode .suggestion-item {
    border-bottom-color: #3a3a3a;
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item:hover {
    background: #f8f9fa;
}

body.dark-mode .suggestion-item:hover {
    background: #3a3a3a;
}

.suggestion-icon {
    width: 24px;
    height: 24px;
    background: var(--primary-gradient);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    flex-shrink: 0;
}

.suggestion-text {
    flex: 1;
}

.suggestion-category {
    font-size: 11px;
    color: #666;
    font-weight: 500;
}

body.dark-mode .suggestion-category {
    color: #b0b0b0;
}

.suggestion-floor {
    font-size: 10px;
    background: var(--primary-gradient);
    color: white;
    padding: 3px 8px;
    border-radius: 10px;
    font-weight: 600;
}

.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.logo h1 {
    color: #2c3e50;
    font-size: 32px;
    font-weight: 300;
    letter-spacing: 3px;
    /* text-transform: lowercase; */
    font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
        "Lucida Sans", Arial, sans-serif;
}

body.dark-mode .logo h1 {
    color: #e0e0e0;
}

.logo span {
    display: block;
    font-size: 10px;
    letter-spacing: 5px;
    margin-top: -5px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.menu-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1210;
}

.menu-btn span {
    display: block;
    width: 30px;
    height: 2px;
    background: #2c3e50;
    margin: 6px 0;
    transition: 0.3s;
}

body.dark-mode .menu-btn span {
    background: #e0e0e0;
}

.menu-btn.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-6px, 6px);
}

.menu-btn.active span:nth-child(2) {
    opacity: 0;
}

/* Header Logo Circle */
.header-logo-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(44, 95, 93, 0.2);
    transition: all 0.3s ease;
}

.header-logo-circle:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(44, 95, 93, 0.3);
}

/* Sidebar Menu */
.sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 400px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1205;
    padding: 100px 50px 120px;
    overflow-y: auto;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
}

body.dark-mode .sidebar {
    background: rgba(26, 26, 26, 0.98);
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.5);
}

.sidebar.active {
    right: 0;
}

.sidebar-logo {
    position: absolute;
    left: 50px;
    top: 30px;
    opacity: 0;
    transition: opacity 0.4s ease 0.3s;
}

.sidebar.active .sidebar-logo {
    opacity: 1;
}

.sidebar-logo h2 {
    color: #2c3e50;
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 2px;
    /* text-transform: lowercase; */
    font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
        "Lucida Sans", Arial, sans-serif;
}

body.dark-mode .sidebar-logo h2 {
    color: #e0e0e0;
}

.sidebar-logo span {
    display: block;
    font-size: 9px;
    letter-spacing: 4px;
    margin-top: -3px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sidebar-close {
    position: absolute;
    right: 30px;
    top: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease 0.3s;
}

.sidebar.active .sidebar-close {
    opacity: 1;
}

.sidebar-close span {
    display: block;
    width: 30px;
    height: 2px;
    background: #2c3e50;
    margin: 6px 0;
    transition: 0.3s;
}

body.dark-mode .sidebar-close span {
    background: #e0e0e0;
}

.sidebar-close span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.sidebar-close span:nth-child(2) {
    opacity: 0;
}

.sidebar-close span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.sidebar-close:hover span {
    background: var(--primary-color);
}

.sidebar-search {
    display: none;
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .sidebar-search {
        display: block;
    }
}

.sidebar nav ul {
    list-style: none;
}

.sidebar nav ul li {
    margin: 30px 0;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.3s ease;
}

.sidebar.active nav ul li {
    opacity: 1;
    transform: translateX(0);
}

.sidebar.active nav ul li:nth-child(1) {
    transition-delay: 0.1s;
}

.sidebar.active nav ul li:nth-child(2) {
    transition-delay: 0.2s;
}

.sidebar.active nav ul li:nth-child(3) {
    transition-delay: 0.3s;
}

.sidebar.active nav ul li:nth-child(4) {
    transition-delay: 0.4s;
}

.sidebar.active nav ul li:nth-child(5) {
    transition-delay: 0.5s;
}

.sidebar.active nav ul li:nth-child(6) {
    transition-delay: 0.6s;
}

.sidebar.active nav ul li:nth-child(7) {
    transition-delay: 0.7s;
}

.sidebar nav ul li a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 24px;
    font-weight: 400;
    transition: 0.3s;
    display: block;
    position: relative;
}

body.dark-mode .sidebar nav ul li a {
    color: #e0e0e0;
}

.sidebar nav ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.sidebar nav ul li a:hover {
    color: var(--primary-color);
    transform: translateX(10px);
}

.sidebar nav ul li a:hover::after {
    width: 60px;
    background: var(--primary-gradient);
}

body.menu-open {
    overflow: hidden;
}

/* Dark Mode Toggle */
.dark-mode-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 2000;
    background: var(--primary-gradient);
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(44, 95, 93, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
}

.dark-mode-toggle:hover {
    background: var(--secondary-gradient);
    box-shadow: 0 6px 25px rgba(44, 95, 93, 0.35),
        0 0 30px rgba(44, 95, 93, 0.15);
    transform: scale(1.08);
}

.dark-mode-toggle svg {
    width: 24px;
    height: 24px;
    fill: white;
    transition: opacity 0.5s ease, transform 0.5s ease;
    position: absolute;
}

.dark-mode-toggle .sun-icon {
    opacity: 0;
    transform: rotate(-90deg) scale(0);
}

.dark-mode-toggle .moon-icon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

body.dark-mode .dark-mode-toggle .sun-icon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

body.dark-mode .dark-mode-toggle .moon-icon {
    opacity: 0;
    transform: rotate(90deg) scale(0);
}

/* Main Content */
.main-content {
    padding-top: 6rem;
    min-height: 100vh;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
}

/* Page Header */
.page-header {
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-header h1 {
    font-family: "Playfair Display", serif;
    font-size: 4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

body.dark-mode .page-header h1 {
    color: #f0f0f0;
}

.page-header p {
    font-size: 1.25rem;
    color: #666666;
    font-weight: 400;
    line-height: 1.7;
}

body.dark-mode .page-header p {
    color: #b0b0b0;
}

/* Layout Grid */
.content-layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 40px;
    align-items: start;
}

/* Filter Section - Sidebar */
.filter-sidebar {
    position: sticky;
    top: 120px;
    background: white;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    /* opacity: 0; Removed to fix stacking */
    /* transform: translateX(-30px); Removed */
    /* animation: slideInLeft 0.8s ease 0.2s forwards; Removed */
    border: 1px solid #f0f0f0;
    overflow: visible;
    z-index: 1100;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

body.dark-mode .filter-sidebar {
    background: #2a2a2a;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
    border-color: #3a3a3a;
}

.filter-header {
    background: var(--primary-gradient);
    padding: 25px 30px;
    color: white;
}

.filter-header h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-header h3 svg {
    width: 24px;
    height: 24px;
}

.filter-header p {
    font-size: 13px;
    opacity: 0.9;
    margin: 0;
}

.filter-body {
    padding: 30px;
}

.view-toggle {
    display: flex;
    gap: 8px;
    margin-bottom: 30px;
    background: #f8f9fa;
    padding: 6px;
    border-radius: 12px;
}

body.dark-mode .view-toggle {
    background: #1a1a1a;
}

.view-btn {
    flex: 1;
    padding: 12px 20px;
    border: none;
    background: transparent;
    color: #666666;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.view-btn svg {
    width: 16px;
    height: 16px;
}

.view-btn.active {
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 3px 12px rgba(44, 95, 93, 0.25);
}

body.dark-mode .view-btn.active {
    background: #2a2a2a;
}

.view-btn:hover:not(.active) {
    color: #f5f5dc;
}

.filter-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #e8e8e8, transparent);
    margin: 25px 0;
}

body.dark-mode .filter-divider {
    background: linear-gradient(90deg, transparent, #3a3a3a, transparent);
}

.filter-group {
    margin-bottom: 2rem;
}

.filter-group:last-child {
    margin-bottom: 0;
}

.filter-group label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #2c3e50;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 0.75rem;
}

body.dark-mode .filter-group label {
    color: #e0e0e0;
}

.filter-input {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border: 2px solid transparent;
    border-radius: 1rem;
    padding: 1rem 1.25rem;
    transition: all 0.3s ease;
    position: relative;
}

body.dark-mode .filter-input {
    background: #1a1a1a;
    border-color: transparent;
}

.filter-input:focus-within {
    background: white;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(44, 95, 93, 0.1);
}

body.dark-mode .filter-input:focus-within {
    background: #2a2a2a;
}

/* Custom styled dropdowns */
.styled-select {
    position: relative;
}

.styled-select select {
    width: 100%;
    padding: 5px 35px 5px 5px;
    background: transparent;
    border: none;
    outline: none;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    cursor: pointer;
    color: #2c3e50;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

body.dark-mode .styled-select select {
    color: #e0e0e0;
}

.styled-select::after {
    content: "▼";
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    pointer-events: none;
    color: #999;
    font-size: 10px;
}

body.dark-mode .styled-select::after {
    color: #b0b0b0;
}

.filter-input svg {
    width: 18px;
    height: 18px;
    stroke: #999999;
    margin-right: 10px;
    flex-shrink: 0;
}

body.dark-mode .filter-input svg {
    stroke: #b0b0b0;
}

.filter-input input,
.filter-input select {
    background: transparent;
    border: none;
    color: #2c3e50;
    font-size: 14px;
    width: 100%;
    outline: none;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
}

body.dark-mode .filter-input input,
body.dark-mode .filter-input select {
    color: #e0e0e0;
}

body.dark-mode .styled-select::after {
    color: #b0b0b0;
}

.filter-input input::placeholder {
    color: #999999;
    font-weight: 400;
}

body.dark-mode .filter-input input::placeholder {
    color: #666;
}

/* Filter tags */
.filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
    min-height: 30px;
}

.filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--primary-gradient);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.filter-tag .remove-tag {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
    padding: 0;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s ease;
}

.filter-tag .remove-tag:hover {
    background: rgba(255, 255, 255, 0.2);
}

.multi-select-header {
    cursor: pointer;
}

.multi-select-container {
    position: relative;
    z-index: 100;
}

.multi-select-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 100;
    max-height: 200px;
    overflow-y: auto;
    margin-top: 0.5rem;
    border: 1px solid #f0f0f0;
    display: none;
    padding: 0.5rem 0;
}

body.dark-mode .multi-select-dropdown {
    background: #1a1a1a;
    border-color: #3a3a3a;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.multi-select-dropdown.show {
    display: block;
}

.multi-select-option {
    padding: 0.75rem 1.25rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    font-size: 0.9rem;
}

.multi-select-option::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: transparent;
    transition: background 0.2s ease;
}

.multi-select-option:hover::before {
    background: var(--primary-color);
}

body.dark-mode .multi-select-option {
    color: #e0e0e0;
}

.multi-select-option:hover {
    background: #f8f9fa;
    padding-left: 1.5rem;
}

body.dark-mode .multi-select-option:hover {
    background: #2a2a2a;
}

.multi-select-option.selected {
    background: rgba(44, 95, 93, 0.1);
    color: var(--primary-color);
    font-weight: 600;
}

.multi-select-option.selected::before {
    background: #f5f5dc;
}

body.dark-mode .multi-select-option.selected {
    background: rgba(245, 245, 220, 0.15);
    color: #f5f5dc;
}

.filter-input select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 40px;
    border: none;
    width: 100%;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    background-color: transparent;
    position: relative;
}

.filter-input select:focus {
    outline: none;
}

/* Enhanced dropdown container styling */
.filter-input {
    position: relative;
    overflow: hidden;
}

.filter-input::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 100%;
    background: linear-gradient(to left, #f8f9fa 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

body.dark-mode .filter-input::after {
    background: linear-gradient(to left, #1a1a1a 0%, transparent 100%);
}

/* Dropdown container with enhanced styling */
.enhanced-dropdown-container {
    position: relative;
    width: 100%;
}

.enhanced-dropdown {
    width: 100%;
    padding: 13px 16px;
    border: 2px solid transparent;
    border-radius: 12px;
    background: #f8f9fa;
    color: #2c3e50;
    font-size: 14px;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    cursor: pointer;
    appearance: none;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.enhanced-dropdown:hover {
    background: white;
}

.enhanced-dropdown:focus {
    border-color: #f5f5dc;
    background: white;
    box-shadow: 0 0 0 3px rgba(245, 245, 220, 0.1);
    outline: none;
}

body.dark-mode .enhanced-dropdown {
    background: #1a1a1a;
    color: #e0e0e0;
    border-color: transparent;
}

body.dark-mode .enhanced-dropdown:hover {
    background: #2a2a2a;
}

body.dark-mode .enhanced-dropdown:focus {
    border-color: #f5f5dc;
    background: #2a2a2a;
}

/* Dropdown arrow styling */
.enhanced-dropdown-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.enhanced-dropdown-wrapper::after {
    content: "▼";
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 8px;
    color: #999;
    z-index: 3;
}

body.dark-mode .enhanced-dropdown-wrapper::after {
    color: #b0b0b0;
}

.filter-stats {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 20px;
    border-radius: 12px;
    margin-top: 25px;
    text-align: center;
}

body.dark-mode .filter-stats {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.filter-stats-number {
    font-size: 32px;
    font-weight: 700;
    color: #2c5f5d;
    font-family: "Playfair Display", serif;
}

.filter-stats-label {
    font-size: 12px;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

body.dark-mode .filter-stats-label {
    color: #b0b0b0;
}

/* Tenant List in Map View */
#mapTenantList label {
    color: #2c3e50;
}

body.dark-mode #mapTenantList label {
    color: #e0e0e0;
}

#tenantListItems {
    scrollbar-width: thin;
    scrollbar-color: #f5f5dc #f0f0f0;
}

body.dark-mode #tenantListItems {
    scrollbar-color: #f5f5dc #2a2a2a;
}

#tenantListItems::-webkit-scrollbar {
    width: 6px;
    display: block;
}

#tenantListItems::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 3px;
}

body.dark-mode #tenantListItems::-webkit-scrollbar-track {
    background: #2a2a2a;
}

#tenantListItems::-webkit-scrollbar-thumb {
    background: #f5f5dc;
    border-radius: 3px;
}

#tenantListItems::-webkit-scrollbar-thumb:hover {
    background: #e8e6ca;
}

.tenant-list-item {
    padding: 12px;
    margin-bottom: 8px;
    background: #f8f9fa;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

body.dark-mode .tenant-list-item {
    background: #1a1a1a;
}

.tenant-list-item:hover {
    background: white;
    border-color: #f5f5dc;
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(245, 245, 220, 0.2);
}

body.dark-mode .tenant-list-item:hover {
    background: #2a2a2a;
}

.tenant-list-item-name {
    font-size: 13px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 4px;
}

body.dark-mode .tenant-list-item-name {
    color: #e0e0e0;
}

.tenant-list-item-details {
    font-size: 11px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 10px;
}

body.dark-mode .tenant-list-item-details {
    color: #b0b0b0;
}

.tenant-list-item-unit {
    background: #f5f5dc;
    color: #2c5f5d;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
}

/* Tenant Grid */
.tenant-content {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

.tenant-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.tenant-card {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        box-shadow 0.3s ease, filter 0.3s ease;
}

body.dark-mode .tenant-card {
    background: rgba(42, 42, 42, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tenant-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f5f5dc, #e8e6ca);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.tenant-card:hover::before {
    transform: scaleX(1);
}

.tenant-card.show {
    animation: cardFadeIn 0.6s ease forwards;
}

@keyframes cardFadeIn {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.tenant-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 20px 40px rgba(245, 245, 220, 0.3);
    filter: brightness(1.05);
}

.tenant-card.tilted {
    transform: translateY(-12px) scale(1.03) rotateX(5deg) rotateY(5deg);
}

body.dark-mode .tenant-card:hover {
    box-shadow: 0 25px 50px rgba(245, 245, 220, 0.4);
}

/* Shimmer loading effect */
.shimmer {
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

.shimmer::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    animation: shimmer-highlight 1.5s infinite;
}

/* Global loading overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.loading-overlay.show {
    opacity: 1;
    visibility: visible;
}

body.dark-mode .loading-overlay {
    background: rgba(26, 26, 26, 0.9);
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(245, 245, 220, 0.3);
    border-top: 5px solid #f5f5dc;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Pull to refresh styles */
.pull-to-refresh {
    position: relative;
    overflow: hidden;
}

.pull-down-indicator {
    position: absolute;
    top: -40px;
    left: 0;
    right: 0;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f5f5dc;
    transition: all 0.3s ease;
}

.pull-down-indicator.refreshing {
    transform: rotate(180deg);
}

/* Swipe indicators */
.swipe-hint {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    /* Only show on mobile */
    background: rgba(245, 245, 220, 0.2);
    color: #f5f5dc;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    backdrop-filter: blur(5px);
}

@media (max-width: 768px) {
    .swipe-hint {
        display: block;
    }
}

.loading-text {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
}

body.dark-mode .loading-text {
    color: #e0e0e0;
}

/* Staggered card loading animation */
.stagger-card {
    animation: fadeInUp 0.6s ease forwards;
}

.stagger-card:nth-child(1) {
    animation-delay: 0.1s;
}

.stagger-card:nth-child(2) {
    animation-delay: 0.2s;
}

.stagger-card:nth-child(3) {
    animation-delay: 0.3s;
}

.stagger-card:nth-child(4) {
    animation-delay: 0.4s;
}

.stagger-card:nth-child(5) {
    animation-delay: 0.5s;
}

.stagger-card:nth-child(6) {
    animation-delay: 0.6s;
}

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

    100% {
        background-position: -200% 0;
    }
}

@keyframes shimmer-highlight {
    0% {
        left: -100%;
    }

    20% {
        left: -50%;
    }

    100% {
        left: 100%;
    }
}

.tenant-logo {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 30px;
    position: relative;
    overflow: hidden;
}

body.dark-mode .tenant-logo {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.tenant-logo::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(245, 245, 220, 0.1),
        transparent
    );
    transition: left 0.6s ease;
}

.tenant-card:hover .tenant-logo::before {
    left: 100%;
}

.tenant-logo img {
    max-width: 150px;
    max-height: 120px;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: grayscale(0.1);
}

.tenant-card:hover .tenant-logo img {
    transform: scale(1.08);
    filter: grayscale(0);
}

.tenant-info {
    padding: 25px;
    position: relative;
}

.tenant-info::before {
    content: "";
    position: absolute;
    top: 0;
    left: 25px;
    right: 25px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e8e8e8, transparent);
}

.floor-badge {
    position: absolute;
    top: -12px;
    right: 25px;
    background: linear-gradient(135deg, #f5f5dc 0%, #e8e6ca 100%);
    color: #2c5f5d;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.8px;
    box-shadow: 0 4px 12px rgba(245, 245, 220, 0.3);
}

.tenant-info h3 {
    font-family: "Playfair Display", serif;
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

body.dark-mode .tenant-info h3 {
    color: #e0e0e0;
}

.tenant-card:hover .tenant-info h3 {
    color: #f5f5dc;
}

.tenant-category {
    font-size: 12px;
    color: #666666;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

body.dark-mode .tenant-category {
    color: #b0b0b0;
}

.tenant-category svg {
    width: 14px;
    height: 14px;
    fill: #f5f5dc;
}

.tenant-meta {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: #666666;
    font-weight: 500;
}

body.dark-mode .meta-item {
    color: #b0b0b0;
}

.meta-item svg {
    width: 13px;
    height: 13px;
    fill: #f5f5dc;
}

.see-details-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #f5f5dc 0%, #e8e6ca 100%);
    color: #2c5f5d;
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    width: 100%;
    justify-content: center;
    letter-spacing: 0.5px;
}

.see-details-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.5s ease;
}

.see-details-btn:hover::before {
    left: 100%;
}

.see-details-btn:hover {
    background: linear-gradient(135deg, #e8e6ca 0%, #d6d4b6 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 245, 220, 0.4);
}

.see-details-btn svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

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

/* Map View Styles */
#mapView {
    display: none;
    background: white;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
    overflow: hidden;
}

body.dark-mode #mapView {
    background: #2a2a2a;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
    border-color: #3a3a3a;
}

.map-header {
    background: linear-gradient(135deg, #f5f5dc 0%, #e8e6ca 100%);
    padding: 25px 30px;
    color: #2c5f5d;
}

.map-header h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.map-header h3 svg {
    width: 24px;
    height: 24px;
}

.map-header p {
    font-size: 13px;
    opacity: 0.9;
    margin: 0;
}

.map-body {
    padding: 30px;
}

.floor-selector {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.floor-btn {
    flex: 1;
    min-width: 150px;
    padding: 15px 20px;
    border: 2px solid #e8e8e8;
    background: white;
    color: #666;
    border-radius: 12px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: "Montserrat", sans-serif;
}

body.dark-mode .floor-btn {
    background: #1a1a1a;
    border-color: #3a3a3a;
    color: #b0b0b0;
}

.floor-btn.active {
    border-color: #f5f5dc;
    background: #f5f5dc;
    color: #2c5f5d;
    box-shadow: 0 4px 12px rgba(245, 245, 220, 0.3);
}

.floor-btn:hover:not(.active) {
    border-color: #f5f5dc;
    color: #f5f5dc;
}

.map-container {
    position: relative;
    background: #f8f9fa;
    border-radius: 16px;
    overflow: visible;
    min-height: 600px;
}

body.dark-mode .map-container {
    background: #1a1a1a;
}

.map-wrapper {
    position: relative !important;
    width: 100%;
    display: inline-block;
}

.map-container img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
}

/* Map Pin Styles - UPDATED FOR SMALLER SIZE */
.map-pin {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #f5f5dc;
    border: 2px solid white;
    border-radius: 50%;
    cursor: pointer;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(245, 245, 220, 0.5);
    z-index: 10;
    animation: pulse 2s infinite;
}

.map-pin.cluster {
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 12px;
    color: #2c5f5d;
    background: linear-gradient(135deg, #f5f5dc, #e8e6ca);
}

@keyframes pulse {
    0%,
    100% {
        box-shadow: 0 2px 8px rgba(245, 245, 220, 0.5),
            0 0 0 0 rgba(245, 245, 220, 0.7);
    }

    50% {
        box-shadow: 0 2px 8px rgba(245, 245, 220, 0.5),
            0 0 0 8px rgba(245, 245, 220, 0);
    }
}

.map-pin:hover {
    transform: translate(-50%, -50%) scale(1.5);
    background: #e8e6ca;
    box-shadow: 0 4px 15px rgba(245, 245, 220, 0.7);
    z-index: 20;
    animation: none;
}

/* Enhanced map tooltip */
.map-tooltip-enhanced {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    pointer-events: auto;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1000;
    min-width: 280px;
    max-width: 320px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

body.dark-mode .map-tooltip-enhanced {
    background: rgba(42, 42, 42, 0.95);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.1);
}

.map-tooltip-enhanced.show {
    opacity: 1;
}

.map-tooltip-enhanced-header {
    background: linear-gradient(135deg, #f5f5dc 0%, #e8e6ca 100%);
    padding: 15px 20px;
    color: white;
}

.map-tooltip-enhanced-header h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    font-family: "Playfair Display", serif;
}

.map-tooltip-enhanced-body {
    padding: 20px;
}

.map-tooltip-enhanced-category {
    font-size: 14px;
    color: #666;
    margin: 8px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

body.dark-mode .map-tooltip-enhanced-category {
    color: #b0b0b0;
}

.map-tooltip-enhanced-category svg {
    width: 14px;
    height: 14px;
    fill: #f5f5dc;
}

.map-tooltip-enhanced .unit-badge {
    display: inline-block;
    background: linear-gradient(135deg, #f5f5dc, #e8e6ca);
    color: #2c5f5d;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    margin-top: 12px;
    letter-spacing: 0.5px;
}

.map-tooltip-enhanced .tooltip-see-details {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #f5f5dc 0%, #e8e6ca 100%);
    color: #2c5f5d;
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    width: 100%;
    margin-top: 15px;
    letter-spacing: 0.5px;
}

.map-tooltip-enhanced .tooltip-see-details:hover {
    background: linear-gradient(135deg, #e8e6ca 0%, #d6d4b6 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(245, 245, 220, 0.4);
}

.map-tooltip-enhanced .tooltip-see-details svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.map-tooltip-enhanced .tooltip-see-details:hover svg {
    transform: translateX(4px);
}

/* Tenant Modal Styles */
.tenant-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        visibility 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tenant-modal.active {
    opacity: 1;
    visibility: visible;
}

.tenant-modal .modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

body.dark-mode .tenant-modal .modal-overlay {
    background: rgba(0, 0, 0, 0.85);
}

.tenant-modal .modal-container {
    position: relative;
    width: 90%;
    max-width: 1200px;
    max-height: 90vh;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transform: scale(0.9) translateY(30px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tenant-modal.active .modal-container {
    transform: scale(1) translateY(0);
}

body.dark-mode .tenant-modal .modal-container {
    background: rgba(30, 30, 30, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* Modal Close Button */
.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 100;
}

.modal-close-btn:hover {
    background: white;
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.modal-close-btn svg {
    width: 20px;
    height: 20px;
    stroke: #2c3e50;
}

body.dark-mode .modal-close-btn {
    background: rgba(50, 50, 50, 0.9);
}

body.dark-mode .modal-close-btn:hover {
    background: #3a3a3a;
}

body.dark-mode .modal-close-btn svg {
    stroke: #e0e0e0;
}

.tenant-modal .modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.tenant-modal .modal-close:hover {
    background: white;
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

body.dark-mode .tenant-modal .modal-close {
    background: rgba(50, 50, 50, 0.9);
}

body.dark-mode .tenant-modal .modal-close:hover {
    background: rgba(60, 60, 60, 1);
}

.tenant-modal .modal-close svg {
    width: 20px;
    height: 20px;
    stroke: #2c3e50;
}

body.dark-mode .tenant-modal .modal-close svg {
    stroke: #e0e0e0;
}

.tenant-modal .modal-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-height: 90vh;
    overflow: hidden;
}

/* Modal Carousel */
.tenant-modal .modal-carousel {
    position: relative;
    background: #f8f9fa;
    overflow: hidden;
}

body.dark-mode .tenant-modal .modal-carousel {
    background: rgba(20, 20, 20, 0.8);
}

.tenant-modal .carousel-images {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.tenant-modal .carousel-image {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.tenant-modal .carousel-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 12px;
}

.tenant-modal .carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
}

.tenant-modal .modal-carousel:hover .carousel-nav {
    opacity: 1;
}

.tenant-modal .carousel-nav:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.tenant-modal .carousel-nav.prev {
    left: 20px;
}

.tenant-modal .carousel-nav.next {
    right: 20px;
}

body.dark-mode .tenant-modal .carousel-nav {
    background: rgba(50, 50, 50, 0.9);
}

body.dark-mode .tenant-modal .carousel-nav:hover {
    background: rgba(60, 60, 60, 1);
}

.tenant-modal .carousel-nav svg {
    width: 24px;
    height: 24px;
    stroke: #2c3e50;
}

body.dark-mode .tenant-modal .carousel-nav svg {
    stroke: #e0e0e0;
}

.tenant-modal .carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.tenant-modal .carousel-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.tenant-modal .carousel-indicator.active {
    background: white;
    width: 24px;
    border-radius: 4px;
}

body.dark-mode .tenant-modal .carousel-indicator {
    background: rgba(255, 255, 255, 0.3);
}

body.dark-mode .tenant-modal .carousel-indicator.active {
    background: rgba(255, 255, 255, 0.8);
}

/* Carousel Swipe Hint */
.tenant-modal .carousel-swipe-hint {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50px;
    color: white;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    opacity: 1;
    transition: opacity 0.5s ease;
    z-index: 5;
    pointer-events: none;
}

.tenant-modal .carousel-swipe-hint.hidden {
    opacity: 0;
}

body.dark-mode .tenant-modal .carousel-swipe-hint {
    background: rgba(255, 255, 255, 0.15);
}

.tenant-modal .carousel-swipe-hint svg {
    width: 16px;
    height: 16px;
    stroke: white;
}

/* Modal Details */
.tenant-modal .modal-details {
    padding: 40px;
    overflow-y: auto;
    max-height: 90vh;
}

.tenant-modal .modal-header {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

body.dark-mode .tenant-modal .modal-header {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.tenant-modal .modal-logo {
    width: 80px;
    height: 80px;
    background: #f8f9fa;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    flex-shrink: 0;
}

body.dark-mode .tenant-modal .modal-logo {
    background: rgba(255, 255, 255, 0.05);
}

.tenant-modal .modal-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.tenant-modal .modal-title {
    flex: 1;
}

.tenant-modal .modal-floor-badge {
    display: inline-block;
    padding: 6px 12px;
    background: linear-gradient(135deg, #2c5f5d 0%, #1a3a38 100%);
    color: white;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.tenant-modal .modal-title h2 {
    font-size: 28px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

body.dark-mode .tenant-modal .modal-title h2 {
    color: #e0e0e0;
}

.tenant-modal .modal-category {
    font-size: 14px;
    color: #5a7c7a;
    display: flex;
    align-items: center;
    gap: 6px;
}

.tenant-modal .modal-category svg {
    width: 16px;
    height: 16px;
    fill: #f5f5dc;
}

.tenant-modal .modal-info {
    display: grid;
    gap: 20px;
    margin-bottom: 30px;
}

.tenant-modal .modal-info-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: rgba(44, 95, 93, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.tenant-modal .modal-info-item:hover {
    background: rgba(44, 95, 93, 0.1);
    transform: translateX(5px);
}

body.dark-mode .tenant-modal .modal-info-item {
    background: rgba(255, 255, 255, 0.05);
}

body.dark-mode .tenant-modal .modal-info-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.tenant-modal .modal-info-item svg {
    width: 24px;
    height: 24px;
    stroke: #2c5f5d;
    flex-shrink: 0;
}

body.dark-mode .tenant-modal .modal-info-item svg {
    stroke: #a8c5c3;
}

.tenant-modal .modal-info-item div {
    flex: 1;
}

.tenant-modal .info-label {
    display: block;
    font-size: 12px;
    color: #5a7c7a;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tenant-modal .info-value {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: #2c3e50;
}

body.dark-mode .tenant-modal .info-value {
    color: #e0e0e0;
}

.tenant-modal .modal-description {
    padding: 20px;
    background: rgba(44, 95, 93, 0.03);
    border-radius: 12px;
    border-left: 4px solid #2c5f5d;
}

body.dark-mode .tenant-modal .modal-description {
    background: rgba(255, 255, 255, 0.03);
}

.tenant-modal .modal-description p {
    line-height: 1.8;
    color: #2c3e50;
    margin: 0;
}

body.dark-mode .tenant-modal .modal-description p {
    color: #e0e0e0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .tenant-modal .modal-content {
        grid-template-columns: 1fr;
        overflow-y: auto;
    }

    .tenant-modal .modal-container {
        width: 95%;
        max-height: 95vh;
        border-radius: 16px;
    }

    .tenant-modal .modal-carousel {
        min-height: 300px;
    }

    .tenant-modal .carousel-image {
        padding: 20px;
    }

    .tenant-modal .carousel-nav {
        width: 40px;
        height: 40px;
    }

    .tenant-modal .carousel-nav.prev {
        left: 10px;
    }

    .tenant-modal .carousel-nav.next {
        right: 10px;
    }

    .tenant-modal .modal-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .tenant-modal .modal-logo {
        width: 100px;
        height: 100px;
    }

    .tenant-modal .modal-title h2 {
        font-size: 22px;
    }

    .tenant-modal .modal-details {
        padding: 30px 20px;
    }
}

/* Toast Notification System */
.toast-container {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
}

.toast {
    background: white;
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 300px;
    max-width: 400px;
    pointer-events: all;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast.hide {
    transform: translateX(400px);
    opacity: 0;
}

body.dark-mode .toast {
    background: #2a2a2a;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.toast-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toast-icon svg {
    width: 100%;
    height: 100%;
}

.toast-content {
    flex: 1;
}

.toast-message {
    font-size: 14px;
    font-weight: 500;
    color: #2c3e50;
    line-height: 1.4;
}

body.dark-mode .toast-message {
    color: #e0e0e0;
}

.toast-close {
    width: 20px;
    height: 20px;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.2s;
    flex-shrink: 0;
}

.toast-close:hover {
    opacity: 1;
}

.toast-close svg {
    width: 100%;
    height: 100%;
    stroke: #2c3e50;
}

body.dark-mode .toast-close svg {
    stroke: #e0e0e0;
}

/* Toast Variants */
.toast.success {
    border-left: 4px solid #7cb342;
}

.toast.success .toast-icon svg {
    stroke: #7cb342;
}

.toast.info {
    border-left: 4px solid #4a90e2;
}

.toast.info .toast-icon svg {
    stroke: #4a90e2;
}

.toast.warning {
    border-left: 4px solid #f4d03f;
}

.toast.warning .toast-icon svg {
    stroke: #f4d03f;
}

.toast.error {
    border-left: 4px solid #ff6b6b;
}

.toast.error .toast-icon svg {
    stroke: #ff6b6b;
}

/* Loading Skeleton */
.map-skeleton {
    width: 100%;
    height: 600px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 16px;
}

body.dark-mode .map-skeleton {
    background: linear-gradient(90deg, #2a2a2a 25%, #3a3a3a 50%, #2a2a2a 75%);
    background-size: 200% 100%;
}

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

.skeleton-pulse {
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Mobile Toast */
@media (max-width: 768px) {
    .toast-container {
        top: 80px;
        right: 10px;
        left: 10px;
    }

    .toast {
        min-width: auto;
        max-width: none;
    }
}

/* ===== KEYBOARD SHORTCUTS MODAL ===== */
.shortcuts-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.shortcuts-modal.active {
    opacity: 1;
    visibility: visible;
}

.shortcuts-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.shortcuts-container {
    position: relative;
    background: white;
    border-radius: 16px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.shortcuts-modal.active .shortcuts-container {
    transform: scale(1);
}

body.dark-mode .shortcuts-container {
    background: #2a2a2a;
}

.shortcuts-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

body.dark-mode .shortcuts-header {
    border-bottom-color: #444;
}

.shortcuts-header h3 {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

body.dark-mode .shortcuts-header h3 {
    color: #e0e0e0;
}

.shortcuts-close {
    background: none;
    border: none;
    font-size: 32px;
    color: #999;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
}

.shortcuts-close:hover {
    background: #f0f0f0;
    color: #333;
}

body.dark-mode .shortcuts-close:hover {
    background: #444;
    color: #fff;
}

.shortcuts-body {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.shortcut-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.2s;
}

.shortcut-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

body.dark-mode .shortcut-item {
    background: #333;
}

body.dark-mode .shortcut-item:hover {
    background: #444;
}

.shortcut-item kbd {
    background: white;
    border: 2px solid #ddd;
    border-radius: 6px;
    padding: 6px 12px;
    font-family: "Courier New", monospace;
    font-size: 13px;
    font-weight: 600;
    color: #2c3e50;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    min-width: 40px;
    text-align: center;
}

body.dark-mode .shortcut-item kbd {
    background: #1a1a1a;
    border-color: #555;
    color: #e0e0e0;
}

.shortcut-item span {
    flex: 1;
    color: #555;
    font-size: 14px;
}

body.dark-mode .shortcut-item span {
    color: #ccc;
}

/* ===== FAVORITES SYSTEM ===== */
.favorites-filter-btn {
    position: relative;
    background: linear-gradient(135deg, #f5f5dc, #e8e6ca);
    border: none;
    border-radius: 12px;
    padding: 12px 20px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    width: 100%;
    justify-content: center;
}

.favorites-filter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245, 245, 220, 0.4);
}

.favorites-filter-btn.active {
    background: linear-gradient(135deg, #e91e63, #c2185b);
}

.favorites-filter-btn svg {
    width: 20px;
    height: 20px;
}

.favorites-count {
    background: rgba(255, 255, 255, 0.3);
    color: #2c5f5d;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
}

.favorite-btn {
    position: absolute;
    top: 15px;
    left: 15px; /* Changed from right to left */
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.favorite-btn:hover {
    transform: scale(1.1);
    background: white;
}

.favorite-btn svg {
    width: 22px;
    height: 22px;
    fill: #ddd;
    transition: all 0.3s ease;
}

.favorite-btn.active svg {
    fill: #f5f5dc;
    animation: heartBeat 0.5s ease;
}

@keyframes heartBeat {
    0%,
    100% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.3);
    }
    50% {
        transform: scale(1.1);
    }
    75% {
        transform: scale(1.2);
    }
}

body.dark-mode .favorite-btn {
    background: rgba(50, 50, 50, 0.9);
}

body.dark-mode .favorite-btn:hover {
    background: #3a3a3a;
}

/* Favorite badge on tenant cards */
.tenant-card.favorited {
    border: 2px solid #f5f5dc;
}

.tenant-card.favorited::before {
    content: "❤️";
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 20px;
    z-index: 5;
}

/* ===== KEYBOARD SHORTCUTS HINT BUTTON ===== */
.shortcuts-hint-btn {
    position: fixed;
    bottom: 30px;
    right: 100px; /* Moved left to avoid dark mode toggle */
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f5f5dc, #e8e6ca);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    box-shadow: 0 8px 24px rgba(245, 245, 220, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
    animation: hintPulse 3s infinite;
}

.shortcuts-hint-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 12px 32px rgba(245, 245, 220, 0.6);
    animation: none;
}

.shortcuts-hint-btn svg {
    width: 24px;
    height: 24px;
    stroke: #2c5f5d;
}

.shortcuts-hint-btn span {
    color: #2c5f5d;
    font-size: 18px;
    font-weight: 700;
    margin-top: -4px;
}

@keyframes hintPulse {
    0%,
    100% {
        box-shadow: 0 8px 24px rgba(245, 245, 220, 0.4);
    }
    50% {
        box-shadow: 0 8px 32px rgba(245, 245, 220, 0.7),
            0 0 0 8px rgba(245, 245, 220, 0.2);
    }
}

body.dark-mode .shortcuts-hint-btn {
    background: linear-gradient(135deg, #e8e6ca, #3a9aa5);
}

/* Hide on mobile */
@media (max-width: 768px) {
    .shortcuts-hint-btn {
        display: none;
    }
}

/* ===== RECENT SEARCHES DROPDOWN ===== */
.recent-searches-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    z-index: 100;
}

.recent-searches-dropdown.show {
    max-height: 300px;
    opacity: 1;
}

body.dark-mode .recent-searches-dropdown {
    background: #2a2a2a;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.recent-searches-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 12px;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
}

body.dark-mode .recent-searches-header {
    border-bottom-color: #444;
}

.clear-history-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: background 0.2s;
}

.clear-history-btn:hover {
    background: #f0f0f0;
}

body.dark-mode .clear-history-btn:hover {
    background: #444;
}

.clear-history-btn svg {
    width: 16px;
    height: 16px;
    stroke: #999;
}

.recent-searches-list {
    max-height: 240px;
    overflow-y: auto;
}

.recent-search-item {
    padding: 12px 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: background 0.2s;
}

.recent-search-item:hover {
    background: #f8f9fa;
}

body.dark-mode .recent-search-item:hover {
    background: #333;
}

.recent-search-item svg {
    width: 16px;
    height: 16px;
    stroke: #999;
    flex-shrink: 0;
}

.recent-search-item span {
    flex: 1;
    color: #2c3e50;
    font-size: 14px;
}

body.dark-mode .recent-search-item span {
    color: #e0e0e0;
}

/* ===== SHARE MENU ===== */
.share-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10002;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.share-menu.active {
    opacity: 1;
    visibility: visible;
}

.share-menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.share-menu-container {
    position: relative;
    background: white;
    border-radius: 24px 24px 0 0;
    padding: 24px;
    width: 100%;
    max-width: 500px;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.share-menu.active .share-menu-container {
    transform: translateY(0);
}

body.dark-mode .share-menu-container {
    background: #2a2a2a;
}

.share-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.share-menu-header h4 {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

body.dark-mode .share-menu-header h4 {
    color: #e0e0e0;
}

.share-menu-close {
    background: none;
    border: none;
    font-size: 32px;
    color: #999;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
}

.share-menu-close:hover {
    background: #f0f0f0;
    color: #333;
}

body.dark-mode .share-menu-close:hover {
    background: #444;
    color: #fff;
}

.share-menu-body {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.share-option {
    background: #f8f9fa;
    border: none;
    border-radius: 12px;
    padding: 16px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}

.share-option:hover {
    background: #e9ecef;
    transform: translateY(-2px);
}

body.dark-mode .share-option {
    background: #333;
}

body.dark-mode .share-option:hover {
    background: #444;
}

.share-option svg {
    width: 32px;
    height: 32px;
}

.share-option span {
    font-size: 14px;
    font-weight: 500;
    color: #2c3e50;
}

body.dark-mode .share-option span {
    color: #e0e0e0;
}

#shareWhatsApp svg {
    fill: #25d366;
}
#shareFacebook svg {
    fill: #1877f2;
}
#shareTwitter svg {
    fill: #1da1f2;
}
#shareCopyLink svg {
    stroke: #f5f5dc;
}

/* Share Button in Modal */
.share-btn {
    position: absolute;
    top: 15px;
    left: 65px; /* Positioned next to favorite button */
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.share-btn:hover {
    transform: scale(1.1);
    background: white;
}

.share-btn svg {
    width: 20px;
    height: 20px;
    stroke: #f5f5dc;
}

body.dark-mode .share-btn {
    background: rgba(50, 50, 50, 0.9);
}

body.dark-mode .share-btn:hover {
    background: #3a3a3a;
}

/* ===== STORE HOURS STATUS BADGE ===== */
.store-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 8px;
}

.store-status-badge.open {
    background: rgba(124, 179, 66, 0.1);
    color: #7cb342;
}

.store-status-badge.closed {
    background: rgba(244, 67, 54, 0.1);
    color: #f44336;
}

.store-status-badge::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
}

@media (max-width: 768px) {
    .map-pin {
        width: 8px;
        height: 8px;
        border-width: 2px;
    }
}

@media (max-width: 480px) {
    .map-pin {
        width: 7px;
        height: 7px;
    }
}

.map-pin-label {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(44, 62, 80, 0.9);
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 600;
    white-space: nowrap;
    margin-top: 5px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

body.dark-mode .map-pin-label {
    background: rgba(255, 255, 255, 0.9);
    color: #2c3e50;
}

.map-pin:hover .map-pin-label {
    opacity: 1;
}

@media (max-width: 768px) {
    .map-pin-label {
        display: none;
    }
}

/* Map Tooltip - UPDATED WITH IMAGE */
.map-tooltip {
    position: fixed;
    background: white;
    padding: 0;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    pointer-events: auto;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    min-width: 280px;
    max-width: 320px;
    overflow: hidden;
}

body.dark-mode .map-tooltip {
    background: #2a2a2a;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.map-tooltip.show {
    opacity: 1;
    transform: translateY(0);
}

.map-tooltip-image {
    width: 100%;
    height: 140px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
}

body.dark-mode .map-tooltip-image {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-bottom-color: #3a3a3a;
}

.map-tooltip-image img {
    max-width: 100%;
    max-height: 100px;
    object-fit: contain;
}

.map-tooltip-content {
    padding: 20px;
}

.map-tooltip h4 {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
    font-family: "Playfair Display", serif;
}

body.dark-mode .map-tooltip h4 {
    color: #e0e0e0;
}

.map-tooltip p {
    font-size: 13px;
    color: #666;
    margin: 8px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

body.dark-mode .map-tooltip p {
    color: #b0b0b0;
}

.map-tooltip .unit-badge {
    display: inline-block;
    background: linear-gradient(135deg, #f5f5dc, #e8e6ca);
    color: white;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    margin-top: 12px;
    letter-spacing: 0.5px;
}

.map-tooltip .tooltip-see-details {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #f5f5dc 0%, #e8e6ca 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    width: 100%;
    margin-top: 15px;
    letter-spacing: 0.5px;
}

.clear-filters {
    width: 100%;
    padding: 14px 24px;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.clear-filters:hover {
    background: var(--primary-gradient);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(44, 95, 93, 0.25);
}

.map-tooltip .tooltip-see-details:hover {
    background: linear-gradient(135deg, #e8e6ca 0%, #d6d4b6 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(245, 245, 220, 0.4);
}

.map-tooltip .tooltip-see-details svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.map-tooltip .tooltip-see-details:hover svg {
    transform: translateX(4px);
}

.map-tooltip .tooltip-arrow {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 16px;
    height: 16px;
    background: white;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

body.dark-mode .map-tooltip .tooltip-arrow {
    background: #2a2a2a;
}

@media (max-width: 768px) {
    .map-tooltip {
        min-width: 260px;
        max-width: 300px;
    }

    .map-tooltip-image {
        height: 120px;
        padding: 15px;
    }

    .map-tooltip-image img {
        max-height: 90px;
    }

    .map-tooltip-content {
        padding: 16px;
    }

    .map-tooltip h4 {
        font-size: 16px;
    }

    .map-tooltip p {
        font-size: 12px;
    }
}

.map-stats {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

body.dark-mode .map-stats {
    background: rgba(26, 26, 26, 0.95);
}

.map-stats-number {
    font-size: 24px;
    font-weight: 700;
    color: #f5f5dc;
    font-family: "Playfair Display", serif;
}

.map-stats-label {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

body.dark-mode .map-stats-label {
    color: #b0b0b0;
}

.map-stats span {
    color: #666;
}

body.dark-mode .map-stats span {
    color: #b0b0b0;
}

.map-legend {
    margin-top: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
}

body.dark-mode .map-legend {
    background: #1a1a1a;
}

.map-legend h4 {
    font-size: 14px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

body.dark-mode .map-legend h4 {
    color: #e0e0e0;
}

.legend-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 4px;
}

.legend-text {
    font-size: 13px;
    color: #666;
}

body.dark-mode .legend-text {
    color: #b0b0b0;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 80px 20px;
    display: none;
}

.empty-state.show {
    display: block;
}

.empty-state svg {
    width: 100px;
    height: 100px;
    fill: #f5f5dc;
    margin-bottom: 20px;
    opacity: 0.5;
}

.empty-state h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 10px;
}

body.dark-mode .empty-state h3 {
    color: #e0e0e0;
}

.empty-state p {
    color: #5a5a5a;
}

body.dark-mode .empty-state p {
    color: #b0b0b0;
}

/* Toastr Notification */
.toastr {
    position: fixed;
    top: 100px;
    right: 30px;
    background: white;
    padding: 20px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: none;
    align-items: center;
    gap: 15px;
    min-width: 300px;
    animation: slideInRight 0.4s ease;
    border-left: 5px solid #f5f5dc;
}

body.dark-mode .toastr {
    background: #2a2a2a;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.toastr.show {
    display: flex;
}

@keyframes slideInRight {
    from {
        transform: translateX(400px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.toastr-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.toastr-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

body.dark-mode .toastr-content h4 {
    color: #e0e0e0;
}

.toastr-content p {
    font-size: 14px;
    color: #5a5a5a;
    margin: 0;
}

body.dark-mode .toastr-content p {
    color: #b0b0b0;
}

.toastr-close {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #5a5a5a;
    transition: all 0.3s ease;
    margin-left: auto;
}

body.dark-mode .toastr-close {
    background: rgba(255, 255, 255, 0.1);
    color: #b0b0b0;
}

.toastr-close:hover {
    background: #ff4757;
    color: white;
    transform: rotate(90deg);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #2c5f5d 0%, #1a3a38 100%);
    color: white;
    padding: 80px 40px 30px;
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-top: 100px;
}

footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="rgba(245, 245, 220,0.02)"/><circle cx="50" cy="50" r="30" fill="rgba(245, 245, 220,0.03)"/></svg>');
    opacity: 0.5;
}

body.dark-mode footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-column h3 {
    font-family: "Playfair Display", serif;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 25px;
    color: white;
}

.footer-about p {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links a::before {
    content: "→";
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #f5f5dc;
    transform: translateX(10px);
}

.footer-links a:hover::before {
    left: -15px;
    opacity: 1;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 15px;
}

.footer-contact-item svg {
    width: 20px;
    height: 20px;
    fill: #f5f5dc;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: #f5f5dc;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.footer-social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    backdrop-filter: blur(10px);
}

.footer-social-link:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(44, 95, 93, 0.3);
}

.footer-social-link svg {
    width: 20px;
    height: 20px;
    fill: white;
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 40px 0 30px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-brand-logo {
    font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
        "Lucida Sans", Arial, sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: white;
    letter-spacing: 1px;
}

.footer-brand-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive */
@media (max-width: 1400px) {
    .content-layout {
        grid-template-columns: 350px 1fr;
        gap: 30px;
    }
}

@media (max-width: 1024px) {
    .content-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .filter-sidebar {
        position: relative;
        top: 0;
    }

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

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 20px;
    }

    .header-search {
        display: none;
    }

    .logo {
        position: static;
        transform: none;
        text-align: left;
        flex: 1;
    }

    .logo h1 {
        font-size: 24px;
    }

    .container {
        padding: 20px;
    }

    .page-header h1 {
        font-size: 36px;
    }

    .tenant-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .filter-header {
        padding: 20px;
    }

    .filter-body {
        padding: 20px;
    }

    .view-toggle {
        flex-direction: row;
    }

    .view-btn {
        font-size: 11px;
        padding: 10px 12px;
    }

    .toastr {
        right: 20px;
        left: 20px;
        top: 80px;
        min-width: auto;
    }

    .floor-selector {
        flex-direction: column;
    }

    .floor-btn {
        min-width: 100%;
    }

    .map-body {
        padding: 20px;
    }

    .sidebar {
        width: 100%;
        padding: 80px 30px 120px;
    }

    .sidebar-logo {
        left: 30px;
        top: 25px;
    }

    .sidebar-close {
        right: 25px;
        top: 25px;
    }

    footer {
        padding: 60px 20px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .header-left {
        display: none;
    }
}

/* Map Pin Highlight & Animation */
.map-pin-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: white;
    box-shadow: 0 0 15px rgba(44, 95, 93, 0.5);
    z-index: 100 !important;
    animation: blinkScale 1.5s infinite ease-in-out;
    border: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.map-pin-logo img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

.map-pin-logo:hover {
    z-index: 101 !important;
    transform: scale(1.1);
}

.map-pin-logo.small {
    width: 35px;
    height: 35px;
    box-shadow: 0 0 8px rgba(44, 95, 93, 0.4);
}

.map-pin-logo.small:hover {
    transform: scale(1.2);
}

@keyframes blinkScale {
    0% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(44, 95, 93, 0.5);
        border-color: var(--primary-color);
    }
    50% {
        transform: scale(1.2); /* Reduced scale slightly to avoid blurry text */
        box-shadow: 0 0 25px rgba(44, 95, 93, 0.8);
        border-color: var(--highlight-color);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(44, 95, 93, 0.5);
        border-color: var(--primary-color);
    }
}

/* Ensure map pins have a base style if missing */
.map-pin {
    width: 14px; /* Deduced size */
    height: 14px;
    border-radius: 50%;
    border: 2px solid white;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    transition: transform 0.2s ease;
    z-index: 10;
}

.map-pin:hover {
    transform: scale(1.5);
    z-index: 20;
}

.map-pin-label {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 10px;
    white-space: nowrap;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s;
}

.map-pin:hover .map-pin-label {
    opacity: 1;
}
