﻿
.product_thumbnail {
    position: relative;
}

.wishlist {
    position: absolute;
    top: 10px;
    left: 10px;
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: color 0.3s;
}

    .wishlist .fa {
        margin: 0;
    }

    .wishlist.active {
        color: red;
    }

    .wishlist:hover {
        color: red;
    }

.cart-item-image {
    flex: 0 0 auto;
    margin-right: 15px;
}

    .cart-item-image img {
        width: 80px;
        height: auto;
    }

.product_thumbnail:hover .wishlist {
    display: flex;
}
.remove-item {
    background-color: red;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
}
.shop_table {
    width: 100%;
    border-collapse: collapse;
}

    .shop_table th, .shop_table td {
        padding: 10px;
        border: 1px solid #ccc;
    }

@media (max-width: 768px) {
    .shop_table th, .shop_table td {
        padding: 8px;
        font-size: 14px;
    }
}
