.sm-hero-product-slider-list-section {
    max-width: 600px;
    width: 100%;
    display: flex;
    justify-content: center;
}


.sm-product-card-product-card {
    width: 280px;
    /* background: #fff; */

    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.sm-product-card-product-image {
    position: relative;
    /* padding: 12px; */
}

.sm-product-card-product-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;

}

/* HEART ICON */
.sm-product-card-heart-icon {
    position: absolute;
    top: 16px;
    right: 16px;
    cursor: pointer;
}

.sm-product-card-heart-icon svg {
    width: 28px;
    height: 28px;
    fill: #fff;
    stroke: #000;
    stroke-width: 1.5;
    transition: transform 0.2s ease;
}

.sm-product-card-heart-icon:hover svg {
    transform: scale(1.15);
}

/* RATING BOX */
.sm-product-rating-box {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #fff;
    padding: 4px 8px;

    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* LIVE PREVIEW BUTTON */
.sm-live-preview-btn {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #f1f1f1;
    border: none;
    padding: 8px 16px;

    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.sm-live-preview-btn:hover {
    background: #DE2900;
}

/* PRODUCT INFO */
.sm-product-card-product-info {
    padding: 12px 0px 16px;
}

.sm-product-card-product-title {
    font-size: 16px;
    margin-bottom: 4px;
}

.sm-product-card-product-meta {
    font-size: 13px;
    color: #666;
}

.sm-product-card-product-price {
    font-weight: 700;
    font-size: 15px;
}