.category-breadcrumb-wrapper {
    display: block;
    margin-bottom: 20px;
    width: 100%;
}

.category-breadcrumb-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
    font-size: 16px;
}

.category-breadcrumb-list li {
    display: flex;
    align-items: center;
}

.category-breadcrumb-list li:not(:last-child)::after {
    content: "/";
    margin: 0 8px;
    color: #999;
}

.category-breadcrumb-list li a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.category-breadcrumb-list li a:hover {
    color: #333;
}

.category-breadcrumb-list li a.active {
    color: #333;
    font-weight: 500;
}

.category-breadcrumb-list li a i {
    margin-right: 5px;
}

@media (max-width: 991.99px) {
    .category-breadcrumb-wrapper {
        margin-top: 80px;
    }
    .category-breadcrumb-list {
        font-size: 14px;
    }
}

@media (max-width: 575.99px) {
    .category-breadcrumb-wrapper {
        margin-top: 100px;
    }
    .category-breadcrumb-list {
        font-size: 14px;
    }
}

.product_item .product_img {
    height: 240px;
    overflow: hidden;
    position: relative;
    background: transparent;
}

.product_item .product_img a {
    display: block;
    height: 100%;
    width: 100%;
}

.product_item .product_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.product_item .product_img .discount_list {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 3;
}

.product_item .product_img .btn_list {
    position: absolute !important;
    top: 15px !important;
    right: 15px !important;
    bottom: auto !important;
    left: auto !important;
    z-index: 3 !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transform: none !important;
    transition: opacity 0.3s ease !important;
}

.product_item:hover .product_img .btn_list {
    position: absolute !important;
    top: 15px !important;
    right: 15px !important;
    bottom: auto !important;
    left: auto !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: none !important;
}

@media (hover: none) {
    .product_item .product_img .btn_list {
        opacity: 1 !important;
        pointer-events: auto !important;
    }
}

.wishlist-btn {
    background: none !important;
    background-color: transparent !important;
    color: #333;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-size: 18px;
    padding: 0;
    box-shadow: none;
}

.wishlist-btn:hover {
    background-color: #ff4d4d;
    transform: scale(1.1);
}

.wishlist-btn.in-wishlist {
    background-color: #ff4d4d;
}

.wishlist-btn.in-wishlist:hover {
    background-color: #cccccc;
}
