/**
 * Floating Wishlist Button Styles
 * Posiciona el botón de wishlist en la esquina superior derecha de la imagen
 */

.product-grid__image-wrapper {
    position: relative;
}

.wishlist-floating {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    padding: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.wishlist-floating:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transform: scale(1.1);
}

/* Ocultar el texto del botón, solo mostrar ícono */
.wishlist-floating .action.towishlist span {
    display: none !important;
}

.wishlist-floating .action.towishlist {
    background: none !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    color: #666 !important;
    font-size: 18px !important;
    line-height: 1 !important;
    min-width: auto !important;
    width: auto !important;
    height: auto !important;
}

.wishlist-floating .action.towishlist:hover {
    color: #e91e63 !important;
}

/* Para productos ya en wishlist */
.wishlist-floating .action.towishlist.active {
    color: #e91e63 !important;
}

/* Iconos de corazón */
.wishlist-floating .action.towishlist:before {
    content: "♡";
    font-size: 20px;
    font-weight: normal;
}

.wishlist-floating .action.towishlist:hover:before,
.wishlist-floating .action.towishlist.active:before {
    content: "♥";
}

/* Responsivo para mobile */
@media (max-width: 768px) {
    .wishlist-floating {
        top: 5px;
        right: 5px;
        padding: 6px;
    }
    
    .wishlist-floating .action.towishlist {
        font-size: 16px !important;
    }
    
    .wishlist-floating .action.towishlist:before {
        font-size: 18px;
    }
}

/* Ajustes para vista de lista */
.products-list .wishlist-floating {
    top: 8px;
    right: 8px;
    padding: 6px;
}