/* ESTILOS ESPECÍFICOS PARA PRODUCTOS */
.productos_page .producto-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.productos_page .producto-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.productos_page .producto-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.productos_page .producto-info {
    padding: 20px;
}

.productos_page .producto-info h5 {
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.productos_page .producto-descripcion {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.productos_page .producto-precio {
    margin-bottom: 15px;
}

.productos_page .precio {
    font-size: 24px;
    font-weight: bold;
    color: #E91E63;
}

.productos_page .sede-navigation {
    text-align: center;
    padding: 20px 0;
}

.productos_page .sede-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.productos_page .categoria-header {
    padding: 30px 0;
}

.productos_page .categoria-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

/* Slider específico para productos */
.productos_page .slider-container .producto-slide {
    padding: 10px;
}

/* Grid para cuando hay pocos productos */
.productos_page .productos-grid {
    margin: 20px 0;
}

/* Animaciones para el modal */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translate(-50%, -40%);
        opacity: 0;
    }
    to {
        transform: translate(-50%, -50%);
        opacity: 1;
    }
}

/* Efecto hover para el botón de agregar al carrito */
.btn-test-modal:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(233, 30, 99, 0.5) !important;
}

.btn-test-modal:active {
    transform: translateY(0);
}

/* Estilos del botón cerrar modal */
#close-test-modal:hover {
    color: #FF0066 !important;
}

/* Responsive */
@media (max-width: 768px) {
    .productos_page .sede-buttons {
        flex-direction: column;
        align-items: center;
    }

    .productos_page .sede-buttons .jungle-btn {
        width: 200px;
        margin: 5px 0;
    }

    .productos_page .producto-card {
        margin-bottom: 20px;
    }

    #test-modal > div {
        padding: 30px 20px !important;
        max-width: 95% !important;
    }
}