/* Floating wishlist + PDF icons on product cards */
.gromach-card-image-wrap {
    position: relative;
}

.gromach-card-actions {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 5;
    pointer-events: none;
}

.gromach-card-action {
    pointer-events: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.12);
    color: #111827;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
}

.gromach-card-action:hover,
.gromach-card-action:focus-visible {
    transform: translateY(-2px) scale(1.04);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.16);
    color: #111827;
    outline: none;
}

.gromach-card-action--wishlist.is-active {
    color: #DC2626;
}

.gromach-card-action--wishlist.is-active:hover {
    color: #B91C1C;
}

.gromach-card-action--pdf:hover {
    color: #16A34A;
}

.gromach-card-action svg {
    display: block;
}

.gromach-wishlist-toast {
    position: fixed;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%) translateY(16px);
    background: #111827;
    color: #fff;
    padding: 12px 18px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 99999;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.gromach-wishlist-toast.is-visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
