
/*=============================
	Wishlist CSS
===============================*/

/* 🎯 Estilos exclusivos para la Wishlist */
.wishlist-area .single-product {
    border: 1px solid #eee;
    border-radius: 22px !important;
    /* esquinas redondeadas */
    overflow: hidden;
    background: #fff;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    /* sombra suave */
}

.wishlist-area .single-product:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    /* sombra más intensa al hover */
}

/* Imagen del producto */
.wishlist-area .product-img img {
    border-top-left-radius: 22px !important;
    border-top-right-radius: 22px !important;
}

/* Contenido del producto */
.wishlist-area .product-content {
    padding: 5px 12px;
    /* padding equilibrado */
    text-align: center;
}

.wishlist-area .product-content h3 {
    font-size: 1rem;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.wishlist-area .product-content .product-price {
    font-size: 1rem;
    font-weight: 700;
    color: #73ad21;
    /* verde acorde a tu estilo */
}



/* Botones (acciones dentro de la card) */
.wishlist-area .button-head {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.wishlist-area .single-product:hover .button-head {
    opacity: 1;
}