/* Portion Selection */
.product-portions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 15px 0;
}

.portion-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.portion-option:hover {
    background-color: #f9f9f9;
    border-color: #d4af37;
}

.portion-option.active {
    background-color: #fff9e6;
    border-color: #d4af37;
    box-shadow: 0 2px 5px rgba(212, 175, 55, 0.2);
}

.portion-name {
    font-weight: 500;
    color: #333;
}

.portion-price {
    font-weight: 700;
    color: #d4af37;
}