﻿.card-img, .card-img-bottom, .card-img-top {
    width: 100%;
    height: 300px;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff;
    border: 1px solid #ececec;
    color: #253D4E;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

    .action-btn:hover {
        background-color: rgba(255, 107, 107, 0.1);
        border-color: #ff6b6b;
        color: #ff6b6b;
    }

.add-to-wishlist.added-to-wishlist {
    color: #ff6b6b !important;
    background-color: rgba(255, 107, 107, 0.1);
    border-color: #ff6b6b;
}

    .add-to-wishlist.added-to-wishlist i {
        color: #ff6b6b !important;
    }

.fi-rs-heart-fill {
    color: #ff6b6b !important;
}

.add-to-wishlist.added-to-wishlist:hover {
    background-color: rgba(255, 107, 107, 0.2);
}

.fi-rs-loading {
    animation: spin 1s linear infinite;
}

.product-wishlist {
    z-index: 10;
}

    .product-wishlist .action-btn {
        box-shadow: 0 2px 8px rgba(0,0,0,0.15);
        backdrop-filter: blur(4px);
    }

.product-card {
    position: relative;
    overflow: hidden;
}

.product-badges {
    z-index: 9;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 1023px) {
    .category-section-arrow {
        transform: rotate(360deg);
        float: right;
        color: #6721ff;
        flex-shrink: 0;
        width: 38px;
        height: 38px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
    }

    .category-list-data, .filter-list-data {
        display: none;
    }
}

@media (min-width: 1024px) {
    .category-section-arrow {
        display: none;
    }
}
