/* Nutrition cards styling */
.nutrition-section {
    margin: 6px 0;
    padding: 6px 0;
    border-top: 1px solid #333333;
}

.nutrition-section:first-of-type {
    border-top: none;
    margin-top: 0;
}

.nutrition-section-title {
    font-size: 0.8em;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}

.nutrition-grid {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.nutrition-row {
    display: flex;
    justify-content: space-between;
    padding: 2px 0;
    font-size: 0.8em;
    line-height: 1.2;
    color: #ffffff;
}

.nutrition-row span:first-child {
    color: #cccccc;
    font-weight: 500;
}

.nutrition-row span:last-child {
    color: #ffffff;
    font-weight: 600;
}

.nutrition-row:last-child {
    border-bottom: none;
}
