.cst-wrapper {
    width: 100%;
}

.cst-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.cst-tab-btn {
    border: 1px solid #cabcb4 !important;
    background: transparent !important;
    padding: 14px 30px;
    cursor: pointer;
    transition: 0.3s;
    letter-spacing: 3px;
    color: #2d161e !important;
}

.cst-tab-btn:hover,
.cst-tab-btn.active {
    background: #4c0f2e !important;
    color: #ebe2db !important;
    border-color: #4c0f2e !important;
}

.cst-tab-content {
    display: none;
}

.cst-tab-content.active {
    display: block;
}

.cst-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 32px;
}

.cst-product-card {
    position: relative;
}

@media only screen and (max-width: 767.98px) {
    .cst-product-card {
        max-width: 400px;
        margin-inline: auto;
    }
}

.cst-image-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 5;
}

.cst-image-wrap img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    display: block;
    transition: transform .7s cubic-bezier(.22, 1, .36, 1);
}

.cst-image-wrap:hover img {
    transform: scale(1.06);
}

.cst-product-card .ucw-wishlist-placement--image_corner .ucw-wishlist-btn {
    background: none;
    box-shadow: none;
}

.cst-product-card .ucw-wishlist-placement--image_corner .ucw-wishlist-btn svg path {
    fill: #2d161e;
}

.cst-product-card .ucw-wishlist-placement--image_corner .ucw-wishlist-btn>span {
    display: none;
}

.cst-custom-rating,
.no-review-wrap {
    margin-bottom: 6px;
    font-size: 12px;
    line-height: 1;
}

.cst-product-info {
    margin-top: 16px;
}

.cst-product-title {}

.cst-product-title a {
    font-size: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    text-decoration: none;
}

.cst-price {
    margin-top: 8px;
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-weight: 600;
    color: #4c0f2e;
}

.cst-price del {
    order: 1;
    color: #b09288;
    font-size: 14px;
}

@media(max-width: 1024px) {

    .cst-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 767px) {

    .cst-products-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .cst-price>span {
        display: flex;
    }
}