.sb-single-map {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sb-single-map__head {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sb-single-map__title {
    margin: 0;
    font-size: 1.35rem;
    line-height: 1.2;
    font-weight: 800;
    color: #111827;
}

.sb-single-map__subtitle {
    margin: 0;
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.5;
}

.sb-single-map__card {
    overflow: hidden;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.05);
}

.sb-single-map__canvas {
    width: 100%;
    height: 460px;
    background: #f3f4f6;
}

.sb-single-map__footer {
    padding: 18px 20px;
    border-top: 1px solid #f1f5f9;
}

.sb-single-map__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    background: #111827;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.2s ease;
}

.sb-single-map__btn:hover {
    background: #000000;
    color: #ffffff;
}

/* ===== Google Maps InfoWindow ===== */

.sb-gmap-info {
    min-width: 220px;
    max-width: 260px;
    padding: 2px 2px 0;
    color: #1f2937;
}

.sb-gmap-info__head {
    margin-bottom: 12px;
    padding-right: 24px;
}

.sb-gmap-info__title {
    margin: 0;
    font-size: 17px;
    line-height: 1.35;
    font-weight: 700;
    color: #1f2937;
}

.sb-gmap-info__address {
    margin: 0 0 10px;
    font-size: 14px;
    line-height: 1.5;
    color: #374151;
}

.sb-gmap-info__actions {
    margin-top: 6px;
}

.sb-gmap-info__link {
    font-size: 14px;
    line-height: 1.4;
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

.sb-gmap-info__link:hover {
    text-decoration: underline;
}

/* container principal de la bulle */
.gm-style .gm-style-iw-c {
    padding: 18px 18px 14px !important;
    border-radius: 22px !important;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14) !important;
    max-width: 290px !important;
}

/* contenu interne */
.gm-style .gm-style-iw-d {
    overflow: hidden !important;
    max-height: none !important;
}

/* bouton fermer */
.gm-style .gm-ui-hover-effect {
    top: 10px !important;
    right: 10px !important;
    width: 28px !important;
    height: 28px !important;
    opacity: 1 !important;
}

/* petit triangle */
.gm-style .gm-style-iw-tc::after {
    background: #ffffff !important;
    box-shadow: 2px 2px 8px rgba(15, 23, 42, 0.08) !important;
}

@media (max-width: 767px) {
    .sb-single-map__canvas {
        height: 340px;
    }

    .sb-single-map__footer {
        padding: 14px;
    }

    .sb-single-map__btn {
        width: 100%;
    }

    .sb-gmap-info {
        min-width: 190px;
        max-width: 220px;
    }

    .sb-gmap-info__title {
        font-size: 16px;
    }

    .sb-gmap-info__address,
    .sb-gmap-info__link {
        font-size: 13px;
    }

    .gm-style .gm-style-iw-c {
        padding: 16px 16px 12px !important;
        border-radius: 18px !important;
    }
}