/* ===========================================================================
   H by Omar — composants communs aux pages « Nos boutiques » et « Boutique »
   (pages : WebApp/Views/SellPoints/Index.cshtml et Details.cshtml)

   Ce fichier ne contient que les briques partagées par les deux pages :
     - jetons de couleur (.hb-boutiques)
     - boutons, titres de section, bandeau d'appel à l'action
     - carte Leaflet (cadre, en-tête, épingles dorées, bulles)
     - tuiles de boutique (liste) et fiches « autres boutiques »
   La mise en page propre à chaque page reste dans son bloc <style>.
   =========================================================================== */

.hb-boutiques {
    --hb-ink: #2b241e;
    --hb-soft: #5c564f;
    --hb-muted: #8a8177;
    --hb-gold: #f5b400;
    --hb-gold-deep: #d99a12;
    --hb-blue: #0a12a1;
    --hb-blue-dark: #080e80;
    --hb-line: rgba(17, 13, 9, 0.07);
    --hb-radius: 24px;
}

/* ---------------------------------------------------------------------------
   Titres de section
   --------------------------------------------------------------------------- */

.hb-section-head {
    text-align: center;
    max-width: 62rem;
    margin: 0 auto 2.6rem;
}

.hb-section-eyebrow {
    display: inline-block;
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--hb-gold-deep);
    margin: 0 0 0.9rem;
}

.hb-section-title {
    font-size: clamp(2.2rem, 3.6vw, 3.2rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--hb-ink);
    text-transform: none;
    margin: 0 0 0.8rem;
}

.hb-section-text {
    font-size: 1.35rem;
    line-height: 1.7;
    color: var(--hb-muted);
    margin: 0;
}

/* ---------------------------------------------------------------------------
   Boutons
   --------------------------------------------------------------------------- */

.hb-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    height: 4.3rem;
    padding: 0 1.8rem;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

    .hb-btn i {
        font-size: 1.5rem;
    }

.hb-btn-solid {
    background: var(--hb-blue);
    color: #fff !important;
    box-shadow: 0 16px 28px -20px rgba(10, 18, 161, 0.9);
}

    .hb-btn-solid:hover {
        background: var(--hb-blue-dark);
        color: #fff !important;
        transform: translateY(-2px);
    }

.hb-btn-outline {
    background: #fff;
    border-color: rgba(10, 18, 161, 0.22);
    color: var(--hb-blue);
}

    .hb-btn-outline:hover {
        background: rgba(10, 18, 161, 0.06);
        border-color: var(--hb-blue);
        color: var(--hb-blue-dark);
        transform: translateY(-2px);
    }

.hb-btn-sm {
    height: 3.7rem;
    padding: 0 1.4rem;
    font-size: 1.2rem;
}

.hb-btn:focus-visible,
.hb-card-map-btn:focus-visible,
.hb-search-clear:focus-visible {
    outline: 2px solid rgba(245, 180, 0, 0.85);
    outline-offset: 2px;
}

/* le bouton « Voir sur la carte » des tuiles suit la déclinaison bleue */
.hb-card-map-btn:focus-visible {
    outline-color: rgba(10, 18, 161, 0.7);
}

/* ---------------------------------------------------------------------------
   Carte Leaflet : cadre, en-tête, épingles dorées, bulles
   --------------------------------------------------------------------------- */

.hb-map-card {
    background: #fff;
    border: 1px solid var(--hb-line);
    border-radius: var(--hb-radius);
    overflow: hidden;
    /*box-shadow: 0 26px 56px -44px rgba(120, 70, 30, 0.75);*/
    box-shadow: rgba(120, 70, 30, 0.75) 0px 26px 30px -44px;
    margin-bottom: 1rem;
}

    /* variante utilisée sur la fiche boutique : la carte occupe toute la hauteur */
    .hb-map-card--fill {
        display: flex;
        flex-direction: column;
        height: 100%;
        margin-bottom: 0;
    }

.hb-map-head {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    padding: 1.7rem 2.2rem;
    background: linear-gradient(180deg, #fffdfa 0%, #fdfbf8 100%);
    border-bottom: 1px solid var(--hb-line);
}

.hb-map-head-icon {
    flex: 0 0 auto;
    width: 4.4rem;
    height: 4.4rem;
    border-radius: 14px;
    background: rgba(245, 180, 0, 0.14);
    color: var(--hb-gold-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.hb-map-head-text {
    flex: 1 1 auto;
    min-width: 0;
}

    .hb-map-head-text h2 {
        font-size: 1.75rem;
        font-weight: 700;
        line-height: 1.3;
        color: var(--hb-ink);
        text-transform: none;
        margin: 0;
    }

    .hb-map-head-text p {
        font-size: 1.25rem;
        line-height: 1.5;
        color: var(--hb-muted);
        margin: 0.2rem 0 0;
    }

.hb-map-head-badge {
    flex: 0 0 auto;
    display: inline-block;
    background: rgba(245, 180, 0, 0.14);
    color: var(--hb-gold-deep);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 999px;
    padding: 0.45rem 1.2rem;
}

.hb-map-canvas {
    width: 100%;
    height: 440px;
    background: #f4f1ec;
    z-index: 1;
}

    .hb-map-canvas--stretch {
        flex: 1 1 auto;
        height: auto;
        min-height: 420px;
    }

/* Épingles dorées personnalisées (Leaflet divIcon) */
.hb-pin {
    background: transparent;
    border: 0;
}

.hb-pin-body {
    display: block;
    width: 34px;
    height: 42px;
}

    .hb-pin-body svg {
        width: 100%;
        height: 100%;
        fill: var(--hb-gold-deep);
        stroke: #fff;
        stroke-width: 0.9;
        transform-origin: 50% 100%;
        filter: drop-shadow(0 8px 10px rgba(120, 70, 30, 0.42));
        transition: transform 0.2s ease, fill 0.2s ease;
    }

    .hb-pin-body:hover svg {
        fill: var(--hb-gold);
        transform: scale(1.12);
    }

/* Bulles de la carte */
.leaflet-container {
    font-family: Poppins, sans-serif;
}

.leaflet-popup-content-wrapper {
    border-radius: 18px;
    border: 1px solid rgba(245, 180, 0, 0.22);
    box-shadow: 0 26px 50px -28px rgba(43, 36, 30, 0.55);
}

.leaflet-popup-content {
    margin: 1.5rem 1.7rem;
    font-size: 1.3rem;
    line-height: 1.55;
    color: var(--hb-soft);
}

.hb-popup-name {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--hb-ink);
    margin: 0 0 0.8rem;
}

.hb-popup-row {
    display: flex;
    gap: 0.8rem;
    margin: 0 0 0.5rem;
    font-size: 1.28rem;
    line-height: 1.5;
}

    .hb-popup-row i {
        flex: 0 0 auto;
        color: var(--hb-gold-deep);
        font-size: 1.4rem;
        margin-top: 0.2rem;
    }

    .hb-popup-row a {
        color: var(--hb-soft);
    }

        .hb-popup-row a:hover {
            color: var(--hb-gold-deep);
        }

.hb-popup-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.2rem;
}

    .hb-popup-actions .hb-btn {
        flex: 1 1 auto;
    }

/* ---------------------------------------------------------------------------
   Tuiles de boutique (liste « Nos boutiques »)
   --------------------------------------------------------------------------- */

.hb-card-col {
    display: flex;
}

    .hb-card-col > .hb-card {
        flex: 1 1 auto;
    }

.hb-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border: 1px solid var(--hb-line);
    border-radius: var(--hb-radius);
    overflow: hidden;
    box-shadow: 0 18px 34px -32px rgba(10, 18, 161, 0.6);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

    .hb-card:hover {
        transform: translateY(-8px);
        border-color: rgba(10, 18, 161, 0.28);
        box-shadow: 0 30px 50px -28px rgba(10, 18, 161, 0.32);
    }

    .hb-card.is-active {
        border-color: rgba(10, 18, 161, 0.45);
        box-shadow: 0 30px 50px -26px rgba(10, 18, 161, 0.4);
    }

.hb-card-media {
    position: relative;
}

.hb-card-cover {
    position: relative;
    display: block;
    height: 12.4rem;
    background: radial-gradient(circle at 82% 10%, rgba(10, 18, 161, 0.16) 0%, transparent 60%), linear-gradient(135deg, #f5f8ff 0%, #e9eeff 55%, #d7dfff 100%);
    overflow: hidden;
}

    .hb-card-cover::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: radial-gradient(rgba(10, 18, 161, 0.22) 1px, transparent 1.2px);
        background-size: 15px 15px;
        opacity: 0.55;
        -webkit-mask-image: radial-gradient(circle at 50% 130%, #000 25%, transparent 72%);
        mask-image: radial-gradient(circle at 50% 130%, #000 25%, transparent 72%);
    }

.hb-card-pin {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 6.4rem;
    height: 6.4rem;
    border-radius: 50%;
    /*background: linear-gradient(145deg, #2438d8 0%, #0a12a1 100%);*/
    background: white;
    border: 3px solid #fff;
    box-shadow: 0 18px 30px -18px rgba(10, 18, 161, 0.75);
    transition: transform 0.35s ease;
}

    .hb-card-pin svg {
        width: 3.2rem;
        height: 3.2rem;
        /*fill: #fff;*/
        fill: #0a12a1;
    }

.hb-card:hover .hb-card-pin {
    transform: translate(-50%, -50%) scale(1.06);
}

.hb-card-index {
    position: absolute;
    left: 1.3rem;
    top: 1.3rem;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(10, 18, 161, 0.22);
    border-radius: 999px;
    padding: 0.32rem 0.95rem;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #0a12a1;
}

.hb-card-map-btn {
    position: absolute;
    right: 1.3rem;
    bottom: 1.3rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.55rem 1.15rem;
    border: 1px solid rgba(10, 18, 161, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: #0a12a1;
    font-family: Poppins, sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 12px 22px -16px rgba(10, 18, 161, 0.65);
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

    .hb-card-map-btn i {
        font-size: 1.35rem;
        color: #0a12a1;
    }

    .hb-card-map-btn:hover {
        background: #fff;
        border-color: rgba(10, 18, 161, 0.35);
        color: #0a12a1;
        transform: translateY(-2px);
    }

.hb-card-body {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    padding: 1.9rem 2rem 1.5rem;
}

.hb-card-title {
    font-size: 1.72rem;
    font-weight: 700;
    line-height: 1.32;
    color: var(--hb-ink);
    text-transform: none;
    margin: 0 0 1.3rem;
}

    .hb-card-title a {
        color: inherit;
        transition: color 0.25s ease;
    }

        .hb-card-title a:hover {
            color: #0a12a1;
        }

.hb-card-info {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.95rem;
}

    .hb-card-info li {
        display: flex;
        gap: 1rem;
        font-size: 1.32rem;
        line-height: 1.5;
        color: var(--hb-soft);
    }

    .hb-card-info i {
        flex: 0 0 auto;
        width: 1.7rem;
        margin-top: 0.2rem;
        text-align: center;
        font-size: 1.5rem;
        color: #0a12a1;
    }

    .hb-card-info a {
        color: var(--hb-soft);
    }

        .hb-card-info a:hover {
            color: #0a12a1;
        }

    .hb-card-info li.hb-card-days i {
        color: rgba(10, 18, 161, 0.55);
    }

.hb-card-actions {
    display: flex;
    gap: 1rem;
    padding: 0 2rem 1.6rem;
}

    .hb-card-actions .hb-btn {
        flex: 1 1 0;
    }

.hb-card-more {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    margin-top: auto;
    padding: 1.35rem 2rem;
    border-top: 1px solid var(--hb-line);
    /*background: linear-gradient(180deg, #fff 0%, #f6f8ff 100%);*/
    color: #0a12a1;
    font-size: 1.28rem;
    font-weight: 600;
}

    .hb-card-more i {
        font-size: 1.4rem;
        transition: transform 0.25s ease;
    }

    .hb-card-more:hover {
        color: #080e80;
    }

.hb-card:hover .hb-card-more i {
    transform: translateX(4px);
}

/* ---------------------------------------------------------------------------
   Fiche boutique : panneau d'informations (page « Boutique »)
   --------------------------------------------------------------------------- */

.hb-panel {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 2.4rem 2.4rem 2.6rem;
    background: #fff;
    border: 1px solid var(--hb-line);
    border-radius: var(--hb-radius);
    /*box-shadow: 0 26px 56px -46px rgba(120, 70, 30, 0.8);*/
    box-shadow: 0 26px 24px -46px rgba(120, 70, 30, 0.8);
}

.hb-panel-head {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    padding-bottom: 1.8rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--hb-line);
}

.hb-panel-icon {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5.2rem;
    height: 5.2rem;
    border-radius: 18px;
    background: rgba(245, 180, 0, 0.14);
    color: var(--hb-gold-deep);
    font-size: 2.3rem;
}

.hb-panel-title {
    font-size: 1.9rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--hb-ink);
    text-transform: none;
    margin: 0;
}

.hb-panel-sub {
    font-size: 1.25rem;
    letter-spacing: 0.05em;
    color: var(--hb-muted);
    margin: 0.2rem 0 0;
}

.hb-facts {
    list-style: none;
    margin: 0 0 2.2rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hb-fact {
    display: flex;
    gap: 1.4rem;
}

.hb-fact-icon {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.6rem;
    height: 3.6rem;
    border-radius: 12px;
    background: rgba(245, 180, 0, 0.1);
    color: var(--hb-gold-deep);
    font-size: 1.7rem;
}

.hb-fact-label {
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--hb-muted);
    margin: 0 0 0.15rem;
}

.hb-fact-value {
    font-size: 1.42rem;
    line-height: 1.55;
    color: var(--hb-ink);
    margin: 0;
}

    .hb-fact-value a {
        color: var(--hb-blue);
        font-weight: 600;
    }

        .hb-fact-value a:hover {
            color: var(--hb-gold-deep);
        }

.hb-panel-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: auto;
}

    .hb-panel-actions .hb-btn {
        flex: 1 1 14rem;
    }

.hb-panel-back {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    margin-top: 1.8rem;
    font-size: 1.28rem;
    font-weight: 600;
    color: var(--hb-gold-deep);
}

    .hb-panel-back i {
        font-size: 1.4rem;
        transition: transform 0.25s ease;
    }

    .hb-panel-back:hover {
        color: #b98407;
    }

        .hb-panel-back:hover i {
            transform: translateX(-4px);
        }

/* ---------------------------------------------------------------------------
   Cartes compactes « autres boutiques »
   --------------------------------------------------------------------------- */

.hb-mini {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    height: 100%;
    padding: 1.7rem 1.9rem;
    background: #fff;
    border: 1px solid var(--hb-line);
    border-radius: 20px;
    /*box-shadow: 0 18px 34px -32px rgba(120, 70, 30, 0.9);*/
    box-shadow: 0 18px 19px -32px rgba(120, 70, 30, 0.9);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

    .hb-mini:hover {
        transform: translateY(-6px);
        border-color: rgba(245, 180, 0, 0.45);
        box-shadow: 0 26px 44px -28px rgba(120, 70, 30, 0.34);
    }

.hb-mini-icon {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4.4rem;
    height: 4.4rem;
    border-radius: 14px;
    background: rgba(245, 180, 0, 0.12);
    color: var(--hb-gold-deep);
    font-size: 2rem;
}

.hb-mini-text {
    flex: 1 1 auto;
    min-width: 0;
}

    .hb-mini-text strong {
        display: block;
        font-size: 1.5rem;
        font-weight: 700;
        line-height: 1.35;
        color: var(--hb-ink);
        margin-bottom: 0.3rem;
    }

.hb-mini-sub {
    display: block;
    font-size: 1.25rem;
    line-height: 1.5;
    color: var(--hb-muted);
}

.hb-mini-tag {
    display: inline-block;
    margin-top: 0.6rem;
    background: rgba(245, 180, 0, 0.14);
    color: var(--hb-gold-deep);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 999px;
    padding: 0.28rem 0.9rem;
}

.hb-mini-arrow {
    flex: 0 0 auto;
    color: var(--hb-gold-deep);
    font-size: 1.7rem;
    transition: transform 0.25s ease;
}

.hb-mini:hover .hb-mini-arrow {
    transform: translateX(4px);
}

/* ---------------------------------------------------------------------------
   Barre de recherche + état vide (liste des boutiques)
   --------------------------------------------------------------------------- */

.hb-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.4rem;
    margin-bottom: 2.4rem;
}

.hb-search {
    position: relative;
    flex: 1 1 28rem;
    max-width: 42rem;
}

    .hb-search > i {
        position: absolute;
        left: 1.8rem;
        top: 50%;
        transform: translateY(-50%);
        font-size: 1.7rem;
        color: var(--hb-muted);
        pointer-events: none;
    }

    .hb-search input {
        width: 100%;
        height: 4.8rem;
        padding: 0 4.8rem 0 4.6rem;
        border: 1px solid var(--hb-line);
        border-radius: 999px;
        background: #fff;
        font-family: Poppins, sans-serif;
        font-size: 1.35rem;
        color: var(--hb-ink);
        box-shadow: 0 16px 30px -30px rgba(120, 70, 30, 0.9);
        transition: border-color 0.25s ease, box-shadow 0.25s ease;
        -webkit-appearance: none;
        appearance: none;
    }

        .hb-search input::placeholder {
            color: rgba(138, 129, 119, 0.85);
        }

        .hb-search input:focus {
            outline: none;
            border-color: rgba(245, 180, 0, 0.55);
            box-shadow: 0 0 0 0.3rem rgba(245, 180, 0, 0.14);
        }

        .hb-search input::-webkit-search-cancel-button {
            -webkit-appearance: none;
            appearance: none;
        }

.hb-search-clear {
    position: absolute;
    right: 0.7rem;
    top: 50%;
    transform: translateY(-50%);
    display: none;
    width: 3.4rem;
    height: 3.4rem;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: rgba(17, 13, 9, 0.06);
    color: var(--hb-soft);
    font-size: 1.4rem;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease;
}

    .hb-search-clear.is-visible {
        display: inline-flex;
    }

    .hb-search-clear:hover {
        background: rgba(245, 180, 0, 0.18);
        color: var(--hb-gold-deep);
    }

.hb-count {
    font-size: 1.35rem;
    color: var(--hb-muted);
    margin: 0;
    white-space: nowrap;
}

    .hb-count strong {
        font-weight: 700;
        color: var(--hb-ink);
    }

.hb-empty {
    display: none;
    text-align: center;
    padding: 4.6rem 2rem;
    border: 1px dashed rgba(217, 154, 18, 0.45);
    border-radius: var(--hb-radius);
    background: #fffdfa;
}

    .hb-empty.is-visible {
        display: block;
    }

    .hb-empty i {
        display: block;
        font-size: 3rem;
        color: var(--hb-gold-deep);
        margin-bottom: 1rem;
    }

    .hb-empty p {
        font-size: 1.4rem;
        color: var(--hb-soft);
        margin: 0 0 1.6rem;
    }

/* ---------------------------------------------------------------------------
   Bandeau d'appel à l'action
   --------------------------------------------------------------------------- */

.hb-cta {
    padding: 3.4rem 0 6rem;
}

.hb-cta-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2.4rem;
    padding: 2.8rem 3rem;
    border: 1px solid rgba(245, 180, 0, 0.22);
    border-radius: var(--hb-radius);
    /*background: radial-gradient(circle at 90% 0%, rgba(245, 180, 0, 0.18) 0%, transparent 55%), linear-gradient(135deg, #fffdfa 0%, #fdf5e8 60%, #f8e7c9 100%);
    box-shadow: 0 26px 54px -44px rgba(120, 70, 30, 0.9);*/
}

.hb-cta-icon {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 6rem;
    height: 6rem;
    border-radius: 20px;
    background: #fff;
    color: var(--hb-gold-deep);
    font-size: 2.8rem;
    box-shadow: 0 18px 30px -22px rgba(120, 70, 30, 0.7);
}

.hb-cta-text {
    flex: 1 1 28rem;
    min-width: 0;
}

    .hb-cta-text h2 {
        font-size: 2.1rem;
        font-weight: 700;
        line-height: 1.3;
        color: var(--hb-ink);
        text-transform: none;
        margin: 0 0 0.4rem;
    }

    .hb-cta-text p {
        font-size: 1.35rem;
        line-height: 1.7;
        color: var(--hb-soft);
        margin: 0;
        max-width: 48rem;
    }

.hb-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* ---------------------------------------------------------------------------
   Responsive
   --------------------------------------------------------------------------- */

@media (max-width: 991px) {
    .hb-map-canvas {
        height: 360px;
    }

        .hb-map-canvas--stretch {
            height: auto;
            min-height: 360px;
        }

    .hb-cta-inner {
        padding: 2.4rem;
    }
}

@media (max-width: 767px) {
    .hb-map-head {
        padding: 1.5rem 1.6rem;
        gap: 1.1rem;
    }

    .hb-map-head-badge {
        display: none;
    }

    .hb-panel {
        padding: 2rem 1.8rem 2.2rem;
    }

    .hb-cta {
        padding-bottom: 4.5rem;
    }

    .hb-cta-icon {
        width: 5.2rem;
        height: 5.2rem;
        font-size: 2.4rem;
    }

    .hb-cta-actions {
        width: 100%;
    }

        .hb-cta-actions .hb-btn {
            flex: 1 1 100%;
        }
}

@media (max-width: 575px) {
    .hb-map-canvas {
        height: 300px;
    }

        .hb-map-canvas--stretch {
            height: auto;
            min-height: 300px;
        }

    .hb-card-body {
        padding: 1.7rem 1.7rem 1.3rem;
    }

    .hb-card-actions {
        padding: 0 1.7rem 1.4rem;
    }

    .hb-card-more {
        padding: 1.2rem 1.7rem;
    }

    .hb-search {
        max-width: 100%;
    }

    .hb-toolbar {
        justify-content: center;
    }
}
