/* Leaflet popup wrapper: transparent and clean */
.leaflet-popup-content-wrapper {
    background: none !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    width: auto !important;
    max-width: none !important;
}

/* Inner popup content reset */
.leaflet-popup-content {
    margin: 0 !important;
    padding: 0 !important;
}

.leaflet-popup-content>* {
	padding: 0px !important;
	}

/* Arrow pointing to marker */
.leaflet-popup-tip-container {
    display: block !important;
}

/* Final styled close button */
.leaflet-popup-close-button:hover {
    background: #f0f0f0;
}

.leaflet-container a.leaflet-popup-close-button{
    position: absolute !important;
    top: 15px !important;
    right: 0 !important;
    border: none !important;
    text-align: center !important;
    width: 24px !important;
    height: 24px !important;
    font: 16px/24px Tahoma, Verdana, sans-serif !important;
	color: #757575 !important;
    text-decoration: none !important;
    background: #ffffff !important;
	opacity: 1 !important;
}

/* Popup card content */
.multiple-eventitem .event {
    width: 320px;
    background: #fff;
    font-family: Arial, sans-serif;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
}

.reset-zoom-btn {
    background: white;
    border-radius: 4px;
    padding: 0;
    box-shadow: 0 1px 4px rgba(0,0,0,0.2);
    margin-top: 10px;
}
.reset-zoom-btn button {
    background: none;
    border: none;
    font-size: 13px;
    padding: 6px 10px;
    cursor: pointer;
    color: #333;
    font-weight: 600;
}
.reset-zoom-btn button:hover {
    background-color: #f0f0f0;
}

/* Responsive fallback for small screens */
@media (max-width: 340px) {
    .multiple-eventitem .event {
        width: 100%;
    }
}

/* Image block */
.event-img {
    position: relative;
    width: 100%;
}
.event-img img {
    width: 100% !important;
    height: auto;
    display: block;
    margin: 0;
    border-radius: 0;
}

/* Address overlay */
.event-img::after {
    content: attr(data-address);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(57, 46, 66, 0.8);
    color: #fff;
    font-size: 12px;
    text-align: center;
    padding: 6px 10px;
    font-weight: 500;
    box-sizing: border-box;
}

/* Price badge */
.right {
    position: absolute;
    top: 15px;
    left: 10px;
    background: #392e42;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    padding: 5px 10px;
    border-radius: 4px;
    z-index: 2;
}

/* Title and category styling */
.event-title {
    background: #fff;
    padding: 12px 15px;
    border-bottom: 1px solid #e8e8e8;
}
.event-title h3 {
    margin: 0;
    font-size: 16px;
    color: #392e42;
}
.event-title h3 a {
    color: #392e42;
    text-decoration: none;
}
.event-title h3 a:hover {
    color: #ceab6c;
}

.category {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}
.cat h6 {
    font-size: 11px;
    color: #ceab6c;
    text-transform: uppercase;
    margin: 0;
}
.cat span {
    font-size: 12px;
    font-weight: 500;
    color: #000;
}

/* CTA section */
.restaurant {
    padding: 12px 15px 20px;
    background: #fffdfa;
    text-align: center;
}
.book-button .btn {
    background: #ceab6c;
    color: #fff !important;
    padding: 12px 0;
    border-radius: 0;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    display: inline-block;
    width: 100%;
    text-align: center;
    border: none;
    text-decoration: none;
}
.book-button .btn:hover {
    background: #b79056;
	color: #eee;
}

/* Base style for all cluster markers */
.marker-cluster,
.marker-cluster div {
    border-radius: 50%;
    text-align: center;
    font-weight: bold;
    font-size: 14px;
    color: #fff;
    width: 44px;
    height: 44px;
    line-height: 44px;
    margin: 0 auto;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.4); /* blurred shadow */
    transition: transform 0.2s;
}

/* Optional: hover zoom effect */
.marker-cluster:hover {
    transform: scale(1.1);
}

/* Small clusters (2–9) */
.marker-cluster-small {
    background-color: #ceab6c !important;
}
.marker-cluster-small div {
    background-color: #ceab6c !important;
}

/* Medium clusters (10–99) */
.marker-cluster-medium {
    background-color: #30072a !important;
}
.marker-cluster-medium div {
    background-color: #30072a !important;
}

/* Large clusters (100+) */
.marker-cluster-large {
    background-color: #1f0117 !important;
}
.marker-cluster-large div {
    background-color: #1f0117 !important;
}