.store-header {
    padding: 12px 50px;
}

.store-products-section {
    position: relative;
}

.section-header {
    display: flex;
    justify-content: space-between;
}

.all-view-btn {
    padding: 0px;
    margin: 0px;
    border: none;
    background: none;
}

.all-view-btn a {
    text-decoration: none;
    color: var(--color-main);
    font-size: 16px;
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
}


/* owlcarousel */
.owl-carousel {
    min-height: 270px;
}
.owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.owl-nav .owl-prev,
.owl-nav .owl-next {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(255 255 255 / 0.5) !important;
    margin: 0px;
    border-radius: 100px;
    padding: 0px 18px !important;
}

.owl-nav .owl-prev:hover,
.owl-nav .owl-next:hover {
    background: #ebeaeab8 !important;
}

.owl-nav .owl-prev span,
.owl-nav .owl-next span {
    font-size: 30px;
    color: white;
}

.slide {
    height: 180px;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 640px) {
    .slide {
        height: 270px;
    }
}


/* Popular Doctors Section - Horizontal Scrollable */
.popular-doctors-container {
    margin-bottom: 50px;
    min-height: 200px;
}

.popular-doctors-scroll {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 10px;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
    cursor: grab;
    -webkit-overflow-scrolling: touch;
    /* Smooth scrolling on iOS */
}

.popular-doctors-scroll:active {
    cursor: grabbing;
}

.popular-doctors-scroll::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

.popular-doctors-scroll .doctor {
    flex: 0 0 300px;
    /* Fixed width, no shrinking or growing */
    border-radius: 12px;
    background: var(--color-white);
    text-decoration: none;
    color: var(--color-black);
    padding: 8px;
    min-width: 300px;
    /* Ensure minimum width */
    user-select: none;
    /* Prevent text selection while dragging */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.popular-doctors-scroll .doctor .doctor-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: 50% 10%;
    border-radius: 12px;
}

.popular-doctors-scroll .doctor .content {
    padding: 10px 6px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.popular-doctors-scroll .doctor .content .doctor-name {
    margin: 0px;
}

.popular-doctors-scroll .doctor .content .doctor-specialist {
    font-size: 15px;
    color: var(--color-text-gray2);
    margin-top: 3px;
}

.popular-doctors-scroll .doctor .content p {
    margin: 0px;
}

.popular-doctors-scroll .doctor .content .appointment-price {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-main);
}

.popular-doctors-scroll .appointment-btn {
    padding: 10px 14px;
    border-radius: 10px;
    border: none;
    outline: none;
    background-color: var(--color-main) !important;
    color: var(--color-white);
    font-size: 18px;
    cursor: pointer;
}

@media (max-width: 640px) {
    .owl-carousel {
        min-height: 200px;
    }
    .popular-doctors-container {
        margin-bottom: 20px;
    }
    .popular-doctors-scroll .doctor {
        flex: 0 0 280px;
        min-width: 280px;
    }
    .popular-doctors-scroll .doctor .doctor-image {
        height: 210px;
    }
}