.bb-product-extra-meta {
    margin-top: 10px;
}

.bb-product-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.bb-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
}

.bb-badge-tipo {
    background: #d9b26f;
    color: #ffffff;
    text-transform: lowercase;
}

.bb-badge-premium {
    background: linear-gradient(90deg, #ff6fae, #ff9a3d);
    color: #ffffff;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 800;
    box-shadow: 0 4px 10px rgba(255, 106, 61, 0.25);
}

.bb-product-nutrition {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 6px;
}

.bb-nutrition-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
    min-width: 32px;
}

.bb-nutrition-item strong {
    font-size: 13px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 4px;
    white-space: nowrap;
}

.bb-nutrition-item small {
    font-size: 9px;
    color: #666666;
    letter-spacing: 0.03em;
    white-space: nowrap;
}

.bb-product-allergens {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.bb-allergen {
    width: 24px;
    height: 24px;
    border: 1px solid #cfcfcf;
    border-radius: 50%;
    background: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.bb-allergen img {
    width: 16px;
    height: 16px;
    object-fit: contain;
    display: block;
}

.bb-allergen-fallback {
    font-size: 11px;
    font-weight: 700;
    color: #444444;
}

@media (max-width: 767px) {
    .bb-product-nutrition {
        gap: 10px;
    }

    .bb-nutrition-item strong {
        font-size: 14px;
    }

    .bb-nutrition-item small {
        font-size: 9px;
    }

    .bb-allergen {
        width: 22px;
        height: 22px;
    }

    .bb-allergen img {
        width: 14px;
        height: 14px;
    }
}