.bm {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 0.25rem 0.25rem 0.5rem;
}

/* Hero */

.bm__hero-wrap {
    position: relative;
}

.bm__close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 1;
}

.bm__hero {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    border: 1px solid;
    min-height: 200px;
}

.bm__can-img {
    max-height: 180px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 6px 16px rgba(0,0,0,0.18));
}

/* Header */
.bm__header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.bm__name {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.1;
}

.bm__badge {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #666;
    border: 1px solid rgba(0,0,0,0.15);
    border-radius: 20px;
    padding: 0.25rem 0.7rem;
    white-space: nowrap;
    align-self: center;
}

/* Stats */
.bm__stats {
    display: flex;
    gap: 2.5rem;
}

.bm__stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.1rem;
}

.bm__stat-val {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.bm__stat-lbl {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #888;
}

/* Description */
.bm__description {
    font-size: 0.92rem;
    line-height: 1.7;
    color: #555;
    border-left: 3px solid rgba(0,0,0,0.08);
    padding-left: 0.9rem;
    margin: 0;
}

/* Sections */
.bm__section {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.bm__section-title {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #888;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

/* Hops */
.bm__hops {
    font-size: 0.88rem;
    color: #555;
    margin: 0;
    line-height: 1.6;
}

/* Availability */
.bm__avail {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.bm__avail-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    padding: 0.9rem 1.5rem;
    border: 1px solid;
    border-radius: 10px;
    min-width: 90px;
    background: rgba(0,0,0,0.02);
}

.bm__avail-icon {
    font-size: 1.4rem;
    width: 1.4rem;
    height: 1.4rem;
}
.bm__avail-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #888;
}

.bm__avail-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
}