.category-filters {
    text-align: center;
    margin-bottom: 20px;
}

.filter-btn {
    padding: 8px 12px;
    margin: 5px;
    background: #eee;
    border: none;
    cursor: pointer;
}

.swiper-slide.category-item {
    text-align: center;
    padding: 15px;
    background: #fafafa;
    border: 1px solid #ddd;
}

.category-item img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}

/* product e */

/* Main Container */
.doorbell-product-filter-slider {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: inherit;
}

/* Product Count Display */
.product-count-display {
    text-align: center;
    margin-bottom: 15px;
    font-size: 14px;
    color: #666;
}

/* Filter Menu Styles */
.category-filters-slider-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
}

.category-filters-slider {
    width: 80%;
    overflow: hidden;

}

.category-filters-slider .swiper-slide {
    display: inline-block;
    width: max-content;

}

.category-filters {
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.filter-btn {
    padding: 8px 16px;
    background: #f0f0f0;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    white-space: nowrap;
    margin: 0 5px;
}

.filter-btn.active {
    background: #333;
    color: white;
}

.filter-btn:hover {
    background: #ddd;
}

.filter-slider-button-prev,
.filter-slider-button-next {
    width: 30px;
    height: 30px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.filter-slider-button-prev {
    margin-right: 10px;
}

.filter-slider-button-next {
    margin-left: 10px;
}

/* Product Carousel Styles */
.products-carousel {
    position: relative;
    padding: 10px;
}

.swiper-slide {
    height: auto;
}

.product-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 15px;
    transition: all 0.3s ease;
}

.product-card.highlighted {
    border: 2px solid #4CAF50;
    box-shadow: 0 0 10px rgba(76, 175, 80, 0.3);
}

.product-image {
    position: relative;
    margin-bottom: 15px;
}

.product-image img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.quick-view-btn {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-image:hover .quick-view-btn {
    opacity: 1;
}

.quick-view-btn a {
    display: inline-block;
    padding: 5px 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    text-decoration: none;
    border-radius: 3px;
    font-size: 12px;
}

.product-details {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    margin: 0 0 10px;
    font-size: 16px;
}

.product-title a {
    color: inherit;
    text-decoration: none;
}

.product-price {
    font-weight: bold;
    margin: 10px 0;
    color: #e63946;
}

.add-to-cart-btn {
    margin-top: auto;
}

/* Swiper Navigation */
.swiper-button-prev,
.swiper-button-next {
    width: 40px;
    height: 40px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 50%;
    color: #333;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 16px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .category-filters-slider {
        width: 70%;
    }

    .filter-btn {
        padding: 6px 12px;
        font-size: 13px;
    }

}