body {
  font-family: 'PT Serif', 'Times New Roman', Times, serif;
}

        /* Featured Product Hover */
        .featured-product img {
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            height: 420px;
            object-fit: cover;

        }
        .featured-product:hover img {
            transform: scale(1.06);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
        }
        .featured-product .card-body { text-align: center; }
@media (max-width: 768px) {
  .featured-product img {
    height: auto;
    object-fit: contain;
  }
        #newArrivalsCarousel .card img {
    height: auto;
    object-fit: contain;
  }

}
        /* New Arrivals Cards */
        #newArrivalsCarousel .card {
            border: none;
            transition: transform 0.3s ease;
            border-radius: 12px;
            overflow: hidden;
            background: #fff;
        }
        #newArrivalsCarousel .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 18px rgba(0,0,0,0.15);
        }
        #newArrivalsCarousel .card img {
            height: 300px;
            object-fit: cover;
        object-position: center; 

            transition: transform 0.5s ease;
        }
        #newArrivalsCarousel .card:hover img {
            transform: scale(1.05);
        }

        /* Price styling */
        .regular-price { color: #000; font-weight: 600; }

        /* Responsive layout */
        @media (max-width: 992px) {
            #newArrivalsCarousel .col-md-4 {
                flex: 0 0 50%;
                max-width: 50%;
            }
        }
        @media (max-width: 576px) {
            #newArrivalsCarousel .col-md-4 {
                flex: 0 0 100%;
                max-width: 100%;
            }
        }

        /* Carousel controls */
        #newArrivalsCarousel .carousel-control-prev-icon,
        #newArrivalsCarousel .carousel-control-next-icon {
            background-size: 70%, 70%;
        }
        #newArrivalsCarousel .carousel-control-prev,
        #newArrivalsCarousel .carousel-control-next {
            width: 5%;
        }

        .new-arrivals-slider {
    position: relative;
}
.slider-wrapper {
    scroll-behavior: smooth;
}
.new-arrival-card {
    width: 300px;
    background-color: #fff;
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.new-arrival-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.2);
}
.new-arrival-card img {
    height: 370px;
width:100%;
    object-fit: cover;
    border-top-left-radius: 0.75rem;
    border-top-right-radius: 0.75rem;
}
@media (max-width: 992px) {
    .new-arrival-card {
        width: 260px;
    }
    .new-arrival-card img {
        height: 220px;

    }
}
@media (max-width: 768px) {
    .new-arrival-card {
        width: 220px;
    }
    .new-arrival-card img {
        height: 400px;
        width: 100%;

    }
}
@media (max-width: 576px) {
    .new-arrival-card {
        width: 90%;
        margin: 0 auto;
    }
    .slider-wrapper {
        padding-left: 10px;
    }
    .scroll-btn {
        display: none;
    }
}
/* Scroll Buttons */
.scroll-btn {
    border: none;
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    z-index: 5;
    transition: background-color 0.3s ease;
}
.scroll-btn:hover {
    background-color: red !important;
}
.prev-btn {
    left: -10px;
}
.next-btn {
    right: -10px;
}