/* Estilos para componentes secundarios y verificaciones de edad */

.age-verification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}
.age-verification-modal {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    text-align: center;
    max-width: 500px;
    width: 90%;
    animation: modalSlideIn 0.3s ease-out;
}
@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.age-verified-badge {
    background: rgba(39, 174, 96, 0.2);
    border: 2px solid #27ae60;
    color: #27ae60;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    margin-bottom: 1rem;
    display: inline-block;
}

/* Estilos para tarjetas del carrito */
.cart-card {
    transition: all 0.3s ease;
    border: 2px solid #f8f9fa;
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
}
.cart-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2) !important;
    border-color: #007bff;
}
.cart-card .card-img-top {
    transition: transform 0.3s ease;
}
.cart-card:hover .card-img-top {
    transform: scale(1.1);
}
.btn {
    transition: all 0.3s ease;
}
.btn:hover {
    transform: translateY(-2px);
}
.total-card {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border: 2px solid #dee2e6;
}
