/*your custom css goes here*/
.text-left {
    text-align: left !important;
} 
.minimal-deal-section {
    padding-bottom: 10px;
}

.deal-product-card {
    padding: 18px 12px;
    border-radius: 12px;
    transition: all 0.25s ease;
}

.deal-product-card:hover {
    background: #ffffff;
    box-shadow: 0 6px 25px rgba(0,0,0,0.05);
    transform: translateY(-4px);
}

.deal-img-wrapper {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.deal-img {
    max-height: 180px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.deal-product-card:hover .deal-img {
    transform: scale(1.05);
}

