/* Hotel Listings CSS */
#hotel-listings-container {
    margin: 0 auto;
    padding: 20px;
    font-family: Arial, sans-serif;
}

.elementor-button-icon {
    gap: 8px;
}

/* Main Content Wrapper */
.hotel-content-wrapper {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

/* Left Side - Hotel Listings */
.hotel-listings-left {
    flex: 1;
    max-width: 50%;
}

.hotel-item {
    display: flex;
    background: #E0E6DC;
    border: 1px solid #ddd;
    border-radius: 0px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 20px;
}

.hotel-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.hotel-image {
    height: 200px !important;
    flex-shrink: 0;
    margin-bottom: 15px;
}

.hotel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.no-image {
    width: 100%;
    height: 100%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 14px;
}

.hotel-details {
    padding-left: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.hotel-title {
    margin: 0 0 8px 0;
    font-size: 18px;
    
    color: black;
    font-family: "Rubik";
}

.hotel-location {
    margin: 0 0 5px 0;
    color: black;
    font-size: 13px;
    font-style: italic;
    font-weight: 600;
    font-family: "Rubik",Sans-serif;
}

.hotel-address {
    margin: 0px;
    color: black;
    font-size: 14px;
    font-weight: 400;
    font-family: "Rubik",Sans-serif;
}

.hotel-excerpt {
    margin: 0 0 10px 0;
    color: #555;
    font-size: 14px;
    line-height: 1.4;
    flex: 1;
}

.hotel-price {
    font-size: 16px;
    font-weight: 500;
    color: black;
    margin-bottom: 10px;
    font-family: "Rubik";
}

.hotel-link {
    align-self: flex-start;
    padding: 7px 10px;
    border: none;
    cursor: pointer;
    text-decoration: none !important;
    font-size: 14px;
    background: white;
    color: #000;
    border-radius: 0;
    font-family: "Rubik";
}

.hotel-link:hover, .popup-link:hover {
    text-decoration: none !important;
    color: #000;
}

/* Right Side - Map */
.hotel-map-right {
    flex: 1;
    max-width: 50%;
    position: sticky;
    top: 20px;
}

#hotel-map {
    width: 100%;
    height: 600px;
    background: #E0E6DC;
}

#hotel-map > div:first-child {
    background-color: #E0E6DC !important;
}

/* Loading State */
#loading {
    text-align: center;
    padding: 20px;
    color: #666;
}

/* Map Popup Styles */
.map-popup {
    max-width: 250px;
    border-radius: 0px;
    background-color: white !important;
    font-family: "Rubik";
}

.popup-image {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 0px;
    margin-bottom: 10px;
}

.popup-details {
    padding-inline: 15px;
    display: grid;
    gap: 10px;
}

.popup-title {
    color: black;
    font-weight: 600;
    font-size: 14px;
}

.popup-location {
    color: black;
    font-size: 12px;
}

.popup-price {
    font-weight: 500;
    color: black;
}

.popup-link {
    display: flex;
    align-self: flex-start;
    padding: 8px 15px;
    border: none;
    cursor: pointer;
    text-decoration: none !important;
    font-size: 12px;
    color: white;
    border-radius: 6px;
    font-family: "Rubik";
    margin-bottom: 10px;
    background: #E0E6DC;
    justify-content: center !important;
}

.gm-style .gm-style-iw-c {
    border-radius: 15px !important;
    padding: 0px !important;
}

.gm-style-iw-ch { padding-top: 0px !important; }

.gm-style .gm-style-iw-d {
    overflow: scroll;
    scrollbar-width: none !important;
    padding: 0px !important;
}

.gm-style .gm-style-iw-d::-webkit-scrollbar-track {
    background: #E0E6DC !important;
}

.gm-style .gm-style-iw-tc::after {
	background: white !important;
}

button.gm-ui-hover-effect {
    width: 30px !important;
    height: 30px !important;
    position: absolute !important;
    right: 10px;
    top: 16px;
    background-color: #E0E6DC !important;
    border: 1px solid black !important;
    border-radius: 0px;
    align-items: center !important;
    justify-content: center !important;
    display: flex !important;
}

button.gm-ui-hover-effect span {
    margin: 0px !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hotel-content-wrapper {
        flex-direction: column;
    }
    
    .hotel-listings-left,
    .hotel-map-right {
        max-width: 100%;
    }
    
    .hotel-item {
        flex-direction: column;
    }
    
    .hotel-image {
        width: 100%;
        /* height: 200px; */
    }
    
    .filter-row {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-group {
        min-width: auto;
    }
    
    #hotel-map {
        height: 400px;
    }
}

@media (max-width: 480px) {
    #hotel-listings-container {
        padding: 10px;
    }
    
    .hotel-filters {
        padding: 15px;
    }
    
    .hotel-content-wrapper {
        gap: 20px;
    }
}