﻿/* Personalización específica para bebidas */
.bebida-header {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    padding: 30px;
    border-radius: 20px 20px 0 0;
    color: white;
    margin-bottom: 0;
}

    .bebida-header h4 {
        margin: 0;
        font-weight: 700;
        font-size: 1.8rem;
    }

/* Imagen de la bebida */
.bebida-image-container {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 30px;
}

.bebida-image {
    max-height: 200px;
    width: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

    .bebida-image:hover {
        transform: scale(1.05);
    }

.bebida-info {
    text-align: center;
    margin-top: 20px;
}

    .bebida-info h5 {
        color: #4facfe;
        font-weight: 700;
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .bebida-info p {
        color: #718096;
        font-size: 1rem;
    }

/* Tarjetas de tamaño */
.tamanios-section {
    margin-bottom: 35px;
}

.tamanio-card {
    border-radius: 15px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: 3px solid #e2e8f0;
    background: white;
    height: 100%;
    overflow: hidden;
}

    .tamanio-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 30px rgba(79, 172, 254, 0.2);
        border-color: #4facfe;
    }

    .tamanio-card.selected {
        background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
        border-color: #4facfe;
        box-shadow: 0 12px 30px rgba(79, 172, 254, 0.3);
    }

    .tamanio-card .card-body {
        padding: 25px;
    }

.tamanio-icon {
    font-size: 3rem;
    color: #4facfe;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.tamanio-card.selected .tamanio-icon {
    transform: scale(1.2);
    color: #0288d1;
}

.tamanio-label {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2d3748;
    margin: 10px 0;
}

.tamanio-precio {
    font-size: 1.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tamanio-card .form-check-input {
    width: 24px;
    height: 24px;
    border: 3px solid #cbd5e0;
    cursor: pointer;
}

    .tamanio-card .form-check-input:checked {
        background-color: #4facfe;
        border-color: #4facfe;
    }

/* Badge alcohólico */
.badge-alcoholico {
    background: linear-gradient(135deg, #ffd93d 0%, #f6c741 100%);
    color: #856404;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-block;
    margin-top: 15px;
    box-shadow: 0 4px 15px rgba(255, 217, 61, 0.3);
}

/* Botón agregar */
.btn-agregar-bebida {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    border: none;
    color: white;
    padding: 18px 30px;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(79, 172, 254, 0.3);
}

    .btn-agregar-bebida:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 30px rgba(79, 172, 254, 0.4);
        color: white;
    }

/* Resumen */
.resumen-bebida {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
}

.resumen-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(79, 172, 254, 0.2);
}

    .resumen-item:last-child {
        border-bottom: none;
    }

    .resumen-item i {
        color: #4facfe;
        font-size: 1.2rem;
    }

    .resumen-item strong {
        color: #2d3748;
        min-width: 100px;
    }

.resumen-valor {
    color: #4a5568;
    font-weight: 600;
}

/* Animación de selección */
@keyframes pulseBlue {
    0% {
        box-shadow: 0 0 0 0 rgba(79, 172, 254, 0.7);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(79, 172, 254, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(79, 172, 254, 0);
    }
}

.tamanio-card.selected {
    animation: pulseBlue 0.6s ease-out;
}

/* Responsive */
@media (max-width: 768px) {
    .bebida-header h4 {
        font-size: 1.4rem;
    }

    .bebida-image {
        max-height: 150px;
    }

    .tamanio-icon {
        font-size: 2rem;
    }

    .tamanio-label {
        font-size: 1rem;
    }

    .tamanio-precio {
        font-size: 1.2rem;
    }
}
