.image-container {
    display: block;
    overflow: hidden;
    border-radius: 10px;
}

.image-container img {
    width: 100%;
    transition: transform 0.3s ease-in-out;
    border-radius: 10px;
}

/* Hover effect: enlarges the image */
.image-container:hover img {
    transform: scale(1.1);
}

.banner__pic {
    overflow: hidden;
    border-radius: 10px;
}

.banner__pic img {
    width: 100%;
    transition: transform 0.3s ease-in-out;
    border-radius: 10px;
}

/* Hover effect: Slight zoom-in */
.banner__pic:hover img {
    transform: scale(1.05);
}


.apple-slider-section {
    padding: 50px 0;
    /* background: #fff; */
}

.main-slider {
    padding: 20px;
}

.product-slide {
    margin: 10px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.product-slide:hover {
    transform: translateY(-5px);
}

.product-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.product-image img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.product-slide h5 {
    font-size: 18px;
    font-weight: 600;
    margin: 10px 0;
    color: #333;
}

.product-slide p {
    color: #666;
    font-size: 14px;
    margin-bottom: 0;
}

/* Slick Slider Custom Styles */
.slick-prev, 
.slick-next {
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    z-index: 1;
}

.slick-prev {
    left: -20px;
    background: #B12A16 !important;
}

.slick-next {
    right: -20px;
    background: #B12A16 !important;
}

.slick-prev:hover, 
.slick-next:hover {
    background: #555;
}

.slick-prev:before, 
.slick-next:before {
    font-size: 20px;
    line-height: 1;
    opacity: 1;
    color: white;
}

@media (max-width: 450px) {
    .slick-prev {
        left: 0 !important;
    }

    .slick-next {
        right: 0 !important;
    }

    .slick-dots {
         
        display: contents !important; 
    }
}