/*
 * Smoke Shop BBQ branded map
 * Black background / red accents / cream typography.
 */

.ssbq-locations {
    --ssbq-red: #d71920;
    --ssbq-red-dark: #a80f15;
    --ssbq-black: #050505;
    --ssbq-panel: #0d0d0d;
    --ssbq-panel-2: #151515;
    --ssbq-border: #555;
    --ssbq-cream: #f3eee4;
    --ssbq-muted: #c4c0b9;

    width: 100%;
    max-width: 1450px;
    margin: 0 auto;
    padding: 55px 24px 65px;
    box-sizing: border-box;
    background: var(--ssbq-black);
    color: var(--ssbq-cream);
    font-family: Arial, Helvetica, sans-serif;
    overflow: hidden;
}

.ssbq-locations *,
.ssbq-locations *::before,
.ssbq-locations *::after {
    box-sizing: border-box;
}

.ssbq-locations-intro {
    text-align: center;
    margin: 0 auto 30px;
}

.ssbq-red-rule {
    width: 70px;
    height: 4px;
    margin: 0 auto 14px;
    background: var(--ssbq-red);
}

.ssbq-script-heading {
    color: var(--ssbq-red);
    font-family: Rye;
    font-size: clamp(27px, 4vw, 46px);
    text-transform: uppercase;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 5px;
}

.ssbq-locations-intro h2 {
    margin: 0;
    color: var(--ssbq-cream);
    font-size: clamp(38px, 6vw, 72px);
    line-height: .95;
    font-weight: 900;
    letter-spacing: .025em;
    text-transform: uppercase;
}

.ssbq-locations-intro p {
    margin: 12px 0 0;
    color: var(--ssbq-cream);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .42em;
    text-transform: uppercase;
}

.ssbq-location-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(520px, .92fr);
    gap: 18px;
    align-items: stretch;
}

.ssbq-map-panel {
    position: relative;
    min-width: 0;
    min-height: 650px;
    border: 1px solid #696969;
    border-radius: 10px;
    overflow: hidden;
    background: #111;
}

.ssbq-map {
    width: 100%;
    height: 650px;
    min-height: 650px;
}

.ssbq-map .leaflet-control-zoom {
    border: 0;
    box-shadow: none;
}

.ssbq-map .leaflet-control-zoom a {
    width: 38px;
    height: 38px;
    line-height: 36px;
    background: #fff;
    color: #111;
    border: 0;
}

.ssbq-map .leaflet-control-attribution {
    background: rgba(0,0,0,.75);
    color: #bbb;
}

.ssbq-map .leaflet-control-attribution a {
    color: #ddd;
}

.ssbq-marker-wrap {
    background: transparent;
    border: 0;
}

.ssbq-marker {
    display: flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 50% 50% 50% 0;
    background: var(--ssbq-red);
    border: 3px solid #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,.55);
    transform: rotate(-45deg);
}

.ssbq-marker span {
    transform: rotate(45deg);
    color: #fff;
    font-size: 15px;
    font-weight: 900;
}

.ssbq-view-all {
    position: absolute;
    z-index: 500;
    left: 18px;
    bottom: 18px;
    padding: 14px 20px;
    border: 1px solid #fff;
    border-radius: 4px;
    background: rgba(0,0,0,.9);
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .04em;
    cursor: pointer;
    transition: background .2s ease, border-color .2s ease;
}

.ssbq-view-all:hover,
.ssbq-view-all:focus-visible {
    background: var(--ssbq-red);
    border-color: var(--ssbq-red);
    outline: none;
}

.ssbq-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    align-content: start;
}

.ssbq-card {
    position: relative;
    min-width: 0;
    padding: 16px;
    border: 1px solid #575757;
    border-radius: 8px;
    background: linear-gradient(145deg, #171717, #090909);
    cursor: pointer;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.ssbq-card:hover,
.ssbq-card:focus-within,
.ssbq-card.is-active {
    border-color: var(--ssbq-red);
    box-shadow: 0 0 0 1px rgba(215,25,32,.2), 0 8px 25px rgba(0,0,0,.4);
}

.ssbq-card.is-active {
    transform: translateY(-2px);
}

.ssbq-card-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 17px;
}

.ssbq-card-number {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--ssbq-red);
    color: #fff;
    font-size: 18px;
    font-weight: 900;
}

.ssbq-card h3 {
    margin: 0;
    color: var(--ssbq-cream);
    font-size: 18px;
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: .025em;
    text-transform: uppercase;
}

.ssbq-card-address {
    display: flex;
    gap: 11px;
    align-items: flex-start;
    min-height: 52px;
    color: var(--ssbq-cream);
}

.ssbq-pin-icon {
    flex: 0 0 auto;
    margin-top: 3px;
    color: #fff;
    font-size: 17px;
}

.ssbq-card-address div {
    display: flex;
    flex-direction: column;
    gap: 3px;
    line-height: 1.25;
}

.ssbq-card-address strong {
    font-size: 14px;
}

.ssbq-card-address span {
    color: var(--ssbq-muted);
    font-size: 13px;
}

.ssbq-card-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    margin-top: 15px;
}

.ssbq-card-actions a {
    min-height: 39px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 9px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .025em;
    text-decoration: none;
    transition: background .2s ease, border-color .2s ease;
}

.ssbq-directions {
    background: var(--ssbq-red);
    border: 1px solid var(--ssbq-red);
    color: #fff !important;
}

.ssbq-directions:hover,
.ssbq-directions:focus-visible {
    background: #ef2028;
    border-color: #ef2028;
}

.ssbq-details {
    background: transparent;
    border: 1px solid #aaa;
    color: #fff !important;
}

.ssbq-details:hover,
.ssbq-details:focus-visible {
    background: #222;
    border-color: #fff;
}

.ssbq-popup {
    min-width: 225px;
    color: #111;
}

.ssbq-popup h4 {
    margin: 0 0 7px;
    font-size: 19px;
    font-weight: 900;
    text-transform: uppercase;
}

.ssbq-popup p {
    margin: 0;
    line-height: 1.45;
    font-size: 14px;
}

.ssbq-popup-links {
    display: flex;
    gap: 8px;
    margin-top: 13px;
}

.ssbq-popup-links a {
    padding: 8px 9px;
    background: var(--ssbq-red);
    color: #fff;
    font-size: 10px;
    font-weight: 900;
    text-decoration: none;
    border-radius: 3px;
}

@media (max-width: 1100px) {
    .ssbq-location-layout {
        grid-template-columns: 1fr;
    }

    .ssbq-map-panel,
    .ssbq-map {
        min-height: 520px;
        height: 520px;
    }
}

@media (max-width: 700px) {
    .ssbq-locations {
        padding: 40px 15px 50px;
    }

    .ssbq-locations-intro h2 {
        font-size: 42px;
    }

    .ssbq-locations-intro p {
        font-size: 10px;
        letter-spacing: .25em;
    }

    .ssbq-map-panel,
    .ssbq-map {
        min-height: 420px;
        height: 420px;
    }

    .ssbq-cards {
        grid-template-columns: 1fr;
    }

    .ssbq-card-actions a {
        font-size: 12px;
    }
}
.ssbq-popup-links a {
	color: #fff !important;
}
.ssbq-popup-links {
    padding-bottom: 10px;
}