/**
 * Property Map Styles
 */

/* Map container */


/* No properties found message */
.lgap-no-properties-found {
    padding: 20px;
    background-color: #f8f8f8;
    border-radius: 8px;
    text-align: center;
    color: #666;
    font-family: "Josefin Sans", Sans-serif;
    margin-bottom: 30px;
}

/* Popup styles */
.lgap-map-marker-popup .leaflet-popup-content-wrapper {
    border-radius: 8px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.2);
}

.lgap-map-marker-popup .leaflet-popup-content {
    margin: 0;
    padding: 0;
    width: 280px !important;
    max-width: 280px;
}

.lgap-map-popup {
    display: flex;
    flex-direction: column;
}

.lgap-map-popup-image {
    width: 100%;
    height: 160px;
    overflow: hidden;
}

.lgap-map-popup-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.lgap-map-popup-image:hover img {
    transform: scale(1.05);
}

.lgap-map-popup-content {
    padding: 15px;
    background-color: #fff;
}

.lgap-map-popup-content h4 {
    margin: 0 0 10px;
    font-family: "Playfair Display", Sans-serif;
    font-size: 16px;
    line-height: 1.3;
}

.lgap-map-popup-content h4 a {
    color: #000;
    text-decoration: none;
    transition: color 0.2s ease;
}

.lgap-map-popup-content h4 a:hover {
    color: #FFB800;
}

.lgap-map-popup-price {
    margin-bottom: 10px;
    font-weight: bold;
    color: #FFB800;
    font-size: 14px;
    font-family: "Josefin Sans", Sans-serif;
}

.lgap-map-popup-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-family: "Josefin Sans", Sans-serif;
    font-size: 13px;
    color: #666;
}

.lgap-map-popup-bedrooms,
.lgap-map-popup-bathrooms {
    display: inline-flex;
    align-items: center;
}

.lgap-map-popup-bedrooms::before {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-right: 5px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='M20 10V7c0-1.1-.9-2-2-2H6c-1.1 0-2 .9-2 2v3c-1.1 0-2 .9-2 2v5h1.33L4 19h1l.67-2h12.67l.66 2h1l.67-2H22v-5c0-1.1-.9-2-2-2zm-9 0H6V7h5v3zm7 0h-5V7h5v3z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.lgap-map-popup-bathrooms::before {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-right: 5px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='M7 7c0-1.1.9-2 2-2s2 .9 2 2h2c0-2.21-1.79-4-4-4S5 4.79 5 7h2zm5 8.5c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5-.67-1.5-1.5-1.5-1.5.67-1.5 1.5zM22 12v1H2v-1h20zm-1.93 5l-.59 5H4.51l-.59-5h16.15z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.lgap-map-popup-link {
    display: inline-block;
    padding: 8px 15px;
    background-color: #FFB800;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-family: "Josefin Sans", Sans-serif;
    font-size: 13px;
    font-weight: 600;
    transition: background-color 0.2s ease;
    text-align: center;
    width: 100%;
}

.lgap-map-popup-link:hover {
    background-color: #e5a600;
    color: #fff;
}

/* Override Leaflet default styles */
.leaflet-container {
    font-family: "Josefin Sans", Sans-serif;
}

/* Custom map controls */
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
    border: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.leaflet-touch .leaflet-bar a {
    width: 30px;
    height: 30px;
    line-height: 30px;
    color: #333;
}

.leaflet-touch .leaflet-bar a:hover {
    background-color: #f5f5f5;
}

/* Responsive adjustments */
@media (max-width: 768px) {

    
    .lgap-map-popup-image {
        height: 120px;
    }
    
    .lgap-map-marker-popup .leaflet-popup-content {
        width: 240px !important;
    }
} 