.sale-carousel-68b7c7c6 {
    display: grid;
    gap: 15px;
    direction: rtl;
    /* Default fallback if dynamic CSS is missing */
    grid-template-columns: repeat(6, 1fr); 
}

@media (max-width: 1024px) {
    .sale-carousel-68b7c7c6 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .sale-carousel-68b7c7c6 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.sc-card-68b7c7c6 {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sc-card-68b7c7c6:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.sc-image-68b7c7c6 {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 10px;
    aspect-ratio: 1;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.sc-card-68b7c7c6:hover .sc-image-68b7c7c6 {
    transform: scale(1.05);
}

.sc-title-68b7c7c6 {
    font-size: 14px;
    color: #333;
    margin: 0 0 5px;
    line-height: 1.2;
}

.sc-price-wrap-68b7c7c6 {
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
}

.sc-reg-price-68b7c7c6 {
    text-decoration: line-through;
    color: #999;
}

.sc-sale-price-68b7c7c6 {
    color: #FF8C00;
    font-weight: bold;
    font-size: 16px;
}

.sc-btn-68b7c7c6 {
    display: inline-block;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s ease;
    width: 100%;
}

.sc-btn-68b7c7c6:hover {
    background-color: #555;
    color: #fff;
}
