/* Owl Carousel Navigation */
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    display: none !important;
}
.owl-carousel .owl-dots {
    text-align: center;
    margin-top: 20px;
}
.owl-carousel .owl-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: #ddd;
    border-radius: 50%;
    margin: 0 5px;
}
.owl-carousel .owl-dot.active {
    background: #7fad39;
}

/* Banner click areas */
.hero-banner-slider {
    position: relative;
    cursor: pointer;
}
.banner-nav-left,
.banner-nav-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
    z-index: 5;
    cursor: pointer;
}
.banner-nav-left {
    left: 0;
}
.banner-nav-right {
    right: 0;
}

/* Responsive Hero Section */
.hero__search {
    margin-bottom: 30px;
}

.hero__search__form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.hero__search__form input {
    flex: 1;
    min-width: 200px;
}

.hero__search__phone {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hero__item {
    min-height: 431px;
    display: flex;
    align-items: center;
    background-size: cover !important;
    background-position: center !important;
    border-radius: 10px;
}

.hero__text {
    padding: 40px;
}

/* Responsive Product Grid */
.featured__item {
    margin-bottom: 20px;
}

.featured__item__pic {
    height: 250px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero__search__form {
        flex-direction: column;
    }
    
    .hero__search__form input {
        min-width: 100%;
        margin-bottom: 10px;
    }
    
    .hero__search__phone {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .hero__text {
        padding: 20px;
        text-align: center;
    }
    
    .hero__text h2 {
        font-size: 24px;
    }
    
    .featured__item__pic {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .hero__item {
        min-height: 250px;
    }
    
    .hero__text h2 {
        font-size: 20px;
    }
    
    .section-title h2 {
        font-size: 24px;
    }
}
