/* BeerZpot Beer Info — Frontend Product Page */

.bzb-product-description {
    margin-bottom: 28px;
    line-height: 1.7;
    color: #444;
}

.bzb-facts-panel {
    font-family: inherit;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 8px;
}

/* ── Quick Stats Bar ── */
.bzb-stats-bar {
    display: flex;
    flex-wrap: wrap;
    background: #1d2327;
    padding: 0;
}

.bzb-stat {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    border-right: 1px solid #333;
    flex: 1;
    min-width: 110px;
}

.bzb-stat:last-child { border-right: none; }

.bzb-stat-icon {
    font-size: 22px;
    line-height: 1;
    flex-shrink: 0;
}

.bzb-color-dot {
    display: inline-block;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.3);
    vertical-align: middle;
}

.bzb-stat-body { display: flex; flex-direction: column; gap: 1px; }

.bzb-stat-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #999;
    font-weight: 600;
}

.bzb-stat-value {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.bzb-stat-sub {
    font-size: 10px;
    color: #888;
    line-height: 1.2;
    margin-top: 1px;
}

/* ── Section Headings ── */
.bzb-section-heading {
    font-size: 14px;
    font-weight: 700;
    color: #1d2327;
    margin: 0 0 14px;
    padding-bottom: 8px;
    border-bottom: 2px solid #f0a500;
    display: inline-block;
}

/* ── Flavor Profile ── */
.bzb-flavor-section {
    padding: 20px 24px;
    background: #fafafa;
    border-bottom: 1px solid #e8e8e8;
}

.bzb-flavor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 10px;
}

.bzb-flavor-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bzb-flavor-label {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: #555;
    width: 100px;
    flex-shrink: 0;
}

.bzb-flavor-bar-track {
    flex: 1;
    height: 8px;
    background: #e8e8e8;
    border-radius: 4px;
    overflow: hidden;
}

.bzb-flavor-bar-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 0.6s ease;
}

.bzb-flavor-val {
    font-size: 11px;
    color: #888;
    width: 32px;
    text-align: right;
    flex-shrink: 0;
}

/* ── Tasting Notes ── */
.bzb-tasting-section {
    padding: 20px 24px;
    border-bottom: 1px solid #e8e8e8;
}

.bzb-tasting-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
}

.bzb-tasting-card {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 14px;
}

.bzb-tasting-icon {
    font-size: 24px;
    flex-shrink: 0;
    line-height: 1;
}

.bzb-tasting-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #999;
    margin-bottom: 4px;
}

.bzb-tasting-text {
    font-size: 13px;
    color: #444;
    line-height: 1.5;
}

/* ── Food Pairing ── */
.bzb-pairing-section {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    background: #fff8f0;
    border-bottom: 1px solid #e8e8e8;
    flex-wrap: wrap;
}

.bzb-pairing-icon { font-size: 20px; }

.bzb-pairing-label {
    font-size: 13px;
    font-weight: 700;
    color: #c45d0a;
}

.bzb-pairing-text {
    font-size: 13px;
    color: #555;
}

/* ── Awards ── */
.bzb-awards-section {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 24px;
    background: #fffbf0;
}

.bzb-awards-icon { font-size: 20px; flex-shrink: 0; margin-top: 1px; }

.bzb-awards-text {
    font-size: 13px;
    color: #555;
    line-height: 1.6;
}

/* ── Responsive ── */
@media (max-width: 640px) {
    .bzb-stat { min-width: 100px; padding: 12px 14px; }
    .bzb-stat-value { font-size: 13px; }
    .bzb-flavor-grid { grid-template-columns: 1fr; }
    .bzb-tasting-grid { grid-template-columns: 1fr; }
    .bzb-flavor-section,
    .bzb-tasting-section,
    .bzb-pairing-section,
    .bzb-awards-section { padding: 16px; }
}
