.card-product-slider {
    position: relative;
    overflow: hidden;
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.card-product-slider-img-top {
    transition: transform 0.5s ease;
    width: 100%;
    border-radius: 10px 10px 0 0;
}

.card-product-slider:hover .card-product-slider-img-top {
    transform: scale(1.2);
}

.card-product-slider-img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}

.card-product-slider-img-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0.05) 50%,
            rgba(49, 46, 46, 0.5) 75%,
            rgba(48, 46, 46, 0.7) 100%);
    filter: blur(5px);
    clip-path: circle(80% at center);
    transition: opacity 0.5s ease;
    opacity: 0;
    z-index: 1;
}

.card-product-slider:hover .card-product-slider-img-wrapper::before {
    opacity: 1;
}

.card-product-slider-body {
    text-align: center;
    background-color: #fff;
    border-radius: 0 0 10px 10px;
    height: 75px;
}

.card-product-slider-title {
    font-weight: bold;
    color: #333;
}

.price {
    font-size: 14px;
    color: black;
    margin: 10px 0;
}

.rating {
    color: gold;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
}

.rating i {
    margin: 0 2px;
    font-size: 1.2em;
}

.rating i.filled {
    color: gold;
}

.rating i.unfilled {
    color: #ddd;
}

.card-product-slider-icons {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.card-product-slider:hover .card-product-slider-icons {
    opacity: 1;
}

.card-product-slider-icons i {
    color: #fff;
    font-size: 1.5em;
    background: rgba(0, 0, 0, 0.5);
    padding: 5px;
    border-radius: 50%;
}

a.stretched-link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
}

a {
    text-decoration: none;
    color: inherit;
}

.add-to-cart-button {
    padding: 10px 20px;
    background-color: black;
    color: white;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
    border: 1px solid black;
    transition: background-color 0.3s, border-color 0.3s, color 0.3s;
}

.add-to-cart-button:hover {
    background-color: white;
    color: black;
    border: 1px solid black;
}

.col-6 {
    flex: 0 0 auto;
    width: 50%;
    margin-bottom: 15px;
}