/*
Theme Name:   Astra Child
Template:     astra
Description:  Child theme for Astra
Version:      1.0.0
*/

/* ── Hide product counts (all breakpoints) ── */
.wc-block-product-categories-list-item-count {
    display: none !important;
}

/* ── Mobile: horizontal scrollable category nav (≤923px) ── */
@media (max-width: 923px) {

    ul.wc-block-product-categories-list {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        gap: 0;
        padding: 8px 0 6px;
        list-style: none !important;
        margin: 0;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: transparent transparent;
        border-bottom: 1px solid #5d6167;
        transition: scrollbar-color 0.3s;
    }

    ul.wc-block-product-categories-list.is-scrolling {
        scrollbar-color: #5d6167 transparent;
    }

    ul.wc-block-product-categories-list::-webkit-scrollbar {
        height: 2px;
    }

    ul.wc-block-product-categories-list::-webkit-scrollbar-track {
        background: transparent;
    }

    ul.wc-block-product-categories-list::-webkit-scrollbar-thumb {
        background-color: transparent;
        border-radius: 3px;
        transition: background-color 0.3s;
    }

    ul.wc-block-product-categories-list.is-scrolling::-webkit-scrollbar-thumb {
        background-color: #5d6167;
    }

    ul.wc-block-product-categories-list li.wc-block-product-categories-list-item {
        flex: 0 0 auto !important;
        white-space: nowrap;
        display: flex !important;
        align-items: center;
    }

    ul.wc-block-product-categories-list li.wc-block-product-categories-list-item a {
        display: inline-block;
        padding: 8px 16px;
        border: none;
        border-radius: 0;
        text-decoration: none;
        font-size: 0.9em;
        font-weight: 500;
        color: #555;
        letter-spacing: 0.03em;
        text-transform: uppercase;
        position: relative;
    }

    ul.wc-block-product-categories-list li.wc-block-product-categories-list-item a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 16px;
        right: 16px;
        height: 2px;
        background: transparent;
        transition: background 0.2s;
    }

    ul.wc-block-product-categories-list li.wc-block-product-categories-list-item a:hover {
        color: #000;
        background: none;
    }

    ul.wc-block-product-categories-list li.wc-block-product-categories-list-item a:hover::after {
        background: #000;
    }

    ul.wc-block-product-categories-list li.current-cat > a::after {
        background: #000;
    }

    ul.wc-block-product-categories-list li.current-cat > a {
        color: #000;
    }

    /* Move categories above products */
    .ast-woocommerce-container {
        display: flex;
        flex-direction: column;
    }
    #block-16 {
        order: -1;
    }
}
