             .btn-purple {
        background-color: #F73C3C;
        color: white;
        border: none;
    }

    .btn-purple:hover {
        background-color: #F73C3C;
        color: white;
    }

    .bg-purple {
        background-color: #06010fff;
    }

    .store-slider .card {
      width: 250px;
      height: 400px;
      border-radius: 10px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 15px;
      transition: transform 0.3s ease, box-shadow 0.3s ease; 
    }
    .store-slider .card:hover {
    transform: translateY(-10px); 
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    cursor: pointer;
}

    .store-slider .badge {
        font-size: 0.75rem;
        padding: 5px 10px;
        border-radius: 20px;
    }

    .store-name-box {
        width: 100%;
        height: 150px;
        background-color: #f0f0f0; 
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 900; 
        font-size: 1.8rem; 
        font-family: 'Arial Black', Gadget, sans-serif; 
        margin-bottom: 15px;
        border-radius: 8px;
        text-align: center;
        padding: 10px;
        line-height: 1.2;
    }

    .store-name-box .first-word {
        color: black;
        margin-right: 5px; 
    }

    .store-name-box .second-word {
        color: red;
    }

    .store-name-box .single-word {
        color: red;
    }

    .store-slider p {
        margin: 10px 0;
        font-size: 0.85rem;
        color: #555;
    }

    .slick-prev, .slick-next {
        background-color: #F73C3C;
        color: white;
        border-radius: 50%;
        width: 35px;
        height: 35px;
        z-index: 1;
    }
    .slick-prev:hover, .slick-next:hover {
        background-color: #F73C3C;
    }
   .popular-offers {
    color: black;              
    text-align: center;        
    font-weight: bold;        
    font-size: 2.5rem;
    position: relative;
    margin: 40px 0;
}

.popular-offers::before,
.popular-offers::after {
    content: "";
    display: inline-block;
    width: 100px;             
    height: 2px;              
    background-color: red;    
    vertical-align: middle;
    margin: 0 15px;           
}
.store-slider p.text-muted {
    font-size: 1.1rem; 
    color: #555;    
    margin: 10px 0;
}