/* Portion Size Selection Styles */
.portion-size-section {
    margin: 30px 0;
    padding: 0 20px;
}

.portion-size-section .section-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.portion-size-cards {
    display: flex;
    gap: 20px;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
}

.portion-size-card {
    flex: 1;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 24px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.portion-size-card:hover {
    border-color: #FB3DB2;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(251, 61, 178, 0.15);
}

.portion-size-card.active {
    border-color: #FB3DB2;
    background: #fff5f7;
    box-shadow: 0 4px 12px rgba(251, 61, 178, 0.2);
}

.portion-check-icon {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #e0e0e0;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    opacity: 0;
    transition: all 0.3s ease;
}

.portion-size-card.active .portion-check-icon {
    background: #FB3DB2;
    opacity: 1;
}

.portion-name {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.portion-size-card.active .portion-name {
    color: #FB3DB2;
}

.portion-price-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
}

.portion-price-old {
    font-size: 14px;
    font-weight: 500;
    color: #999;
    text-decoration: line-through;
}

.portion-price {
    font-size: 14px;
    font-weight: 600;
    color: #666;
}

.portion-size-card.active .portion-price {
    color: #FB3DB2;
}

.portion-details {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.portion-size-card.active .portion-details {
    color: #333;
    font-weight: 500;
}

@media (max-width: 768px) {
    .portion-size-cards {
        flex-direction: column;
        max-width: 100%;
    }
    
    .portion-size-card {
        min-height: 150px;
    }
}
