/* Horizontal Categories Section */
.horizontal-categories-section {
    background: #fff;
    padding: 10px 0;
    margin: 25px 0 0 0;
    display: flex;
    align-items: center;
    min-height: 120px;
    border-top: 1px solid #f0f0f0;
}

.categories-wrapper {
    position: relative;
    padding: 0;
    margin: 0 auto;
    max-width: 1200px;
}

.categories-scroll-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    overflow: hidden;
}

/* Hide all scroll buttons and indicators */
.scroll-btn,
button[class*="scroll-"],
.categories-nav-dots,
.nav-dot {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}
}

.category-item-horizontal {
    flex: 0 0 auto;
    width: 90px;
    margin: 0 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.category-item-horizontal:hover {
    transform: translateY(-5px);
}

.category-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 10px;
    padding: 12px;
    border-radius: 50%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.category-icon img {
    max-width: 100%;
    height: auto;
}

.category-item-horizontal:hover .category-icon {
    background: #F57C00;
}

.category-name {
    font-size: 12px;
    color: #333;
    margin: 0;
    line-height: 1.2;
    font-weight: 500;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

/* Mobile Styles */
@media (max-width: 767px) {
    .horizontal-categories-section {
        padding: 15px 0;
    }

    .categories-scroll-container {
        padding: 0 10px;
    }

    .category-item-horizontal {
        width: 60px;
        margin: 0 5px;
    }

    .category-circle {
        width: 50px;
        height: 50px;
        margin-bottom: 6px;
        border-width: 1px;
    }

    .category-circle i {
        font-size: 20px;
    }

    .category-item-horizontal h6 {
        font-size: 10px;
        width: 60px;
        -webkit-line-clamp: 1;
        height: auto;
        margin-top: 4px;
    }
}

/* Extra Small Devices */
@media (max-width: 320px) {
    .category-circle {
        width: 45px;
        height: 45px;
    }

    .category-circle i {
        font-size: 18px;
    }

    .category-item-horizontal h6 {
        font-size: 9px;
        width: 50px;
    }
}

/* Section Headers */
.section-header {
    position: relative;
    margin-bottom: 20px;
}

.section-header h3 {
    font-size: 18px;
    font-weight: 600;
}
