.product-card {
    background: #fff;
    border: 1px solid #eee;
    transition: transform 0.2s, box-shadow .2s
}

.product-card:hover {
    box-shadow: 0 6px 15px #0000001a;
    transform: translateY(-5px)
}

.product-card img {
    border-radius: 5px;
    height: 220px;
    object-fit: cover;
    width: 100%
}

.product-card .card-body {
    text-align: center
}

.product-card h6 {
    font-size: 18px;
    font-weight: 600;
    margin-top: .5rem
}

.product-card p.price {
    color: #000;
    font-size: 20px;
    font-weight: 700;
    margin: .25rem 0
}

.rating {
    color: #ffc107;
    font-size: 16px
}

.list-view .product-card {
    align-items: flex-start;
    display: flex;
    flex-direction: row;
    gap: 20px
}

.list-view .product-card img {
    border-radius: 8px;
    height: 200px;
    object-fit: cover;
    width: 200px
}

.list-view .product-card .card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: space-between
}

.list-view .product-card .rating {
    font-size: 18px;
    margin: 5px 0
}

.image-wrapper {
    position: relative
}

.action-tube {
    align-items: center;
    background: #ffffffd9;
    border-radius: 50px;
    bottom: 12px;
    display: flex;
    gap: 15px;
    opacity: 0;
    padding: 6px 16px;
    position: absolute;
    right: 12px;
    transform: translateY(10px);
    transition: opacity .25s ease, transform .25s ease
}

.image-wrapper:hover .action-tube {
    opacity: 1;
    transform: translateY(0)
}

.action-icon {
    align-items: center;
    color: #000;
    cursor: pointer;
    display: inline-flex;
    font-size: 18px;
    height: 32px;
    justify-content: center;
    text-decoration: none;
    transition: transform .3s ease, color .3s ease;
    width: 32px
}

.action-icon:hover,
.action-icon:focus {
    text-decoration: none
}

.action-icon:hover {
    transform: scale(1.2)
}

.action-icon.heart:hover i,
.action-icon.heart.active i {
    color: #e63946
}

.action-icon.eye:hover i {
    color: #007bff
}

.action-icon.cart:hover i {
    color: #28a745
}

.pagination .page-item.active .page-link {
    background-color: #000;
    border-color: #000;
    color: #fff
}

.pagination .page-link {
    color: #000
}

.pagination .page-link:hover {
    background-color: #555353;
    color: #fff
}

@media (max-width: 991px) {
    .sidebar-toggle {
        display: block;
        margin-bottom: 1rem
    }

    .shop-banner {
        height: 150px
    }
}

@media (max-width: 768px) {
    .list-view .product-card {
        align-items: center;
        flex-direction: column
    }

    .list-view .product-card img {
        height: auto;
        width: 100%
    }

    .list-view .product-card .card-body {
        text-align: center
    }

    .action-tube {
        justify-content: center;
        margin-top: 6px;
        opacity: 1 !important;
        position: static;
        transform: translateY(0);
        width: auto
    }
}

.custom-hover {
    color: #fff;
    text-decoration: none
}

.custom-hover:hover {
    color: #000
}
