body {
    font-family: 'Inter', sans-serif;
}
.hero-section {
    background-color: #f7f7f7;
    padding-bottom: 3rem;
}
.product-card, .shop-card {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    border-radius: 0.5rem;
}
.product-card:hover, .shop-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.carousel-item {
    height: 700px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.carousel-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Overlay */
}
.carousel-caption {
    z-index: 2;
    text-align: left;
    left: 15%;
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
}

 #shopCarousel {
overflow-x: auto;
scroll-behavior: smooth; /* optional: smooth scroll without jQuery animate */
}



@media (max-width: 768px) {
.carousel-item {
height: 300px; /* smaller height on phones */
}
}

  /* Shop Carousel Section */
.shop-carousel-section {
    padding: 50px 0;
    background-color: #ffffff;
    position: relative;
    margin-top: -60px; /* To overlap slightly with the section above */
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 50px;
}
.shop-item {
    min-width: 150px; /* adjust width per item */
margin-right: 16px;
text-align: center;
}
.shop-item img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #007bff; /* Example border */
    margin-bottom: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.shop-item p {
    font-weight: 500;
}
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: white;
    border: 1px solid #dee2e6;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    color: #333;
    cursor: pointer;
    z-index: 10;
}
.carousel-arrow.left {
    left: 20px;
}
.carousel-arrow.right {
    right: 20px;
}

 #shopCarousel::-webkit-scrollbar {
display: none;
}

/* Make shop carousel scrollable horizontally on small screens */
@media (max-width: 768px) {
.shop-carousel-section .d-flex.overflow-hidden {
overflow-x: auto;
flex-wrap: nowrap;
-webkit-overflow-scrolling: touch;
}
.shop-carousel-section .shop-item {
min-width: 100px; /* keeps consistent item size */
flex: 0 0 auto;   /* prevents shrinking */
}

#shopCarousel {
scroll-snap-type: x mandatory; /* optional: better swipe feel */
}
}