/* Estilos para la página de favoritos */

/* Título de página */
.page-title-section {
    background-color: #f8f9fa;
    padding: 60px 0;
    margin-bottom: 40px;
}

.page-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #001a4d;
}

/* Animación para el título */
.animate-zoom-in {
    animation: zoomIn 0.5s ease-in-out;
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Contenido de favoritos */
.favorites-content-section {
    padding-bottom: 80px;
}

.favorites-content {
    min-height: 300px;
}

/* Estilos para la lista de favoritos */
.woocommerce .wishlist-items-wrapper .product-name a {
    color: #001a4d;
    font-weight: 600;
}

.woocommerce .wishlist-items-wrapper .product-price {
    color: #333;
    font-weight: 600;
}

.woocommerce .wishlist-items-wrapper .product-add-to-cart .add_to_cart_button {
    background-color: #001a4d;
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.woocommerce .wishlist-items-wrapper .product-add-to-cart .add_to_cart_button:hover {
    background-color: #0056b3;
}

/* Mensaje de lista vacía */
.wishlist-empty {
    text-align: center;
    padding: 40px 0;
    font-size: 18px;
    color: #666;
}

/* Estilos responsivos */
@media (max-width: 768px) {
    .page-title-section {
        padding: 40px 0;
    }
    
    .page-title {
        font-size: 36px;
    }
}

@media (max-width: 576px) {
    .page-title-section {
        padding: 30px 0;
    }
    
    .page-title {
        font-size: 28px;
    }
    
    .favorites-content-section {
        padding-bottom: 50px;
    }
}
