/* Add custom CSS styles below */ 
/* =========================================
   شريط التصنيفات العلوي - ثيم ملاك
   ========================================= */

.top-categories-bar {
    width: 100%;
    background: #ffffff;
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
    position: relative;
    z-index: 90;
}

.top-categories-inner {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.top-categories-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.top-category-item {
    flex: 0 0 auto;
    white-space: nowrap;
}

.top-category-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 2px;
    color: #222222 !important;
    text-decoration: none !important;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.25s ease;
}

.top-category-link:hover {
    color: #b99b79 !important;
}


/* =========================================
   الكمبيوتر
   ========================================= */

@media (min-width: 768px) {

    .top-categories-bar {
        display: block;
    }

}


/* =========================================
   الجوال
   ========================================= */

@media (max-width: 767px) {

    .top-categories-inner {
        padding: 0 10px;
    }

    .top-categories-list {
        justify-content: flex-start;
        gap: 24px;
        overflow-x: auto;
        overflow-y: hidden;
        flex-wrap: nowrap;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .top-categories-list::-webkit-scrollbar {
        display: none;
    }

    .top-category-link {
        min-height: 48px;
        font-size: 13px;
    }

}


/* =========================================
   إذا كان الهيدر Sticky
   ========================================= */

.store-header.fixed-sticky {
    z-index: 100;
}

.top-categories-bar {
    z-index: 99;
  
}