/* ── Container ────────────────────────────────────────────── */
.bl-price-map-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-family: inherit;
}

/* ── Map ──────────────────────────────────────────────────── */
#bl-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,0.12);
}

/* ── Price markers ────────────────────────────────────────── */
.bl-price-marker {
    background: transparent !important;
    border: none !important;
}

.bl-price-marker-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff !important;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    box-shadow: 0 3px 8px rgba(0,0,0,0.30);
    border: 2.5px solid rgba(255,255,255,0.9);
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
    letter-spacing: -0.3px;
}

.bl-price-marker-inner:hover {
    transform: scale(1.18);
    box-shadow: 0 5px 14px rgba(0,0,0,0.35);
}

/* ── Section label ────────────────────────────────────────── */
.bl-places-heading {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #9ca3af;
    margin: 0 0 12px;
}

/* ── Cards grid ───────────────────────────────────────────── */
.bl-price-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
}

/* ── Single card ──────────────────────────────────────────── */
.bl-place-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    cursor: default;
    transition: transform 0.22s, box-shadow 0.22s;
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
    background-color: #1a1a2e; /* fallback dark */
    background-size: cover;
    background-position: center;
}

.bl-place-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.28);
}

/* full-card gradient — clear image at top, dark at bottom for text */
.bl-place-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.00) 0%,
        rgba(0,0,0,0.15) 35%,
        rgba(0,0,0,0.78) 62%,
        rgba(0,0,0,0.93) 100%
    );
    border-radius: 16px;
    pointer-events: none;
    z-index: 1;
}

/* left colour accent strip */
.bl-place-card::before {
    content: '';
    position: absolute;
    top: 0; bottom: 0; left: 0;
    width: 4px;
    background: var(--bl-card-color, #34d399);
    z-index: 3;
    opacity: 0.85;
}

/* card body sits above the gradient */
.bl-card-body {
    position: relative;
    z-index: 2;
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: transparent;
}

/* venue name */
.bl-card-title {
    margin: 0 !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    line-height: 1.25 !important;
    color: #ffffff !important;
}

.bl-card-title a {
    color: #ffffff !important;
    text-decoration: none !important;
}

.bl-card-title a:hover {
    text-decoration: underline !important;
    text-underline-offset: 3px;
}

/* big price */
.bl-price-display {
    display: flex;
    align-items: baseline;
    gap: 6px;
    line-height: 1;
}

.bl-price-amount {
    font-size: 32px !important;
    font-weight: 900 !important;
    color: #ffffff !important;
    letter-spacing: -1px;
}

.bl-price-unit {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.72) !important;
    margin-bottom: 2px;
}

/* tier badge */
.bl-tier-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,0.50) !important;
    align-self: flex-start;
    margin-bottom: 2px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* variant / beer name */
.bl-card-variant {
    font-size: 12px;
    color: rgba(255,255,255,0.62) !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0 !important;
}

/* rating */
.bl-card-rating {
    font-size: 12px;
    color: #fbbf24 !important;
    font-weight: 600;
    margin: 0 !important;
}

/* ── Highlighted state ────────────────────────────────────── */
.bl-place-card--highlighted {
    transform: translateY(-4px);
    box-shadow: 0 0 0 3px #3b82f6, 0 12px 32px rgba(59,130,246,0.3);
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 640px) {
    .bl-price-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .bl-place-card {
        min-height: 160px;
    }
    .bl-price-amount {
        font-size: 26px !important;
    }
}
