/* Layout colonne */
.bb-container {
    display: flex;
    gap: 30px;
}

.bb-colonna-sx {
    width: 55%;
}

.bb-colonna-dx {
    width: 45%;
    background: #fafafa;
    padding: 20px;
    border-radius: 8px;
}

/* Prodotto */
.bb-prodotto {
    display: block;
    position: relative;
    overflow: visible !important;
    height: auto !important;
}

.bb-prodotto-img img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
}

.bb-prodotto-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 10px;
    height: auto !important;
}

.bb-top-row {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 5;
}

.bb-nome {
    font-weight: 600;
    font-size: 16px;
}

.bb-info-icon {
    font-size: 14px;
    font-weight: 600;
    color: #c62828;
    text-decoration: underline;
    cursor: pointer;
}

#bb-orario {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-bottom: 15px;
    font-size: 15px;
}

.bb-info-popup {
    background: #fff;
    border: 1px solid #ddd;
    padding: 14px;
    border-radius: 8px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
    font-size: 14px;
    line-height: 1.4;
    width: 100%;
    animation: fadeIn 0.2s ease-out;
    margin-top: 10px;
}

.bb-submit {
    margin-top: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.bb-success-message {
    background: #fff4e5;
    border-left: 4px solid #c62828;
    padding: 15px 20px;
    margin: 20px 0;
    font-size: 18px;
    font-weight: 600;
    color: #c62828;
    border-radius: 6px;
