/**
 * Purpose: Style the Our Products full-width search and brand chips.
 * Usage: Loaded only on the Our Products catalog page.
 * Problem solved: Keep filters aligned with the dark gold Al Karma catalog design.
 */

.alkarma-product-filters {
    width: 100%;
    box-sizing: border-box;
    margin: 0 0 28px;
    padding: 18px 0 8px;
    font-family: Inter, sans-serif;
}

.alkarma-product-filters__form {
    width: 100%;
    margin: 0 0 16px;
}

.alkarma-product-filters__search-label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.alkarma-product-filters__search {
    width: 100%;
    box-sizing: border-box;
    height: 52px;
    padding: 0 18px;
    border: 1px solid #d7ad47;
    border-radius: 0;
    background: #383838;
    color: #ffffff;
    font-family: Inter, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.alkarma-product-filters__search::placeholder {
    color: #cfcfcf;
}

.alkarma-product-filters__search:focus {
    outline: 2px solid #d7ad47;
    outline-offset: 2px;
}

.alkarma-product-filters__brands {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 10px;
}

.alkarma-product-filters__chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 8px 16px;
    border: 1px solid #d7ad47;
    background: transparent;
    color: #ffffff;
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    text-decoration: none !important;
    white-space: nowrap;
}

.alkarma-product-filters__chip:hover,
.alkarma-product-filters__chip.is-active {
    background: #d7ad47;
    color: #ffffff;
}

.alkarma-product-filters__count {
    margin: 14px 0 0;
    color: #d7ad47;
    font-size: 14px;
    line-height: 20px;
}

.alkarma-product-filters__empty {
    margin: 24px 0 0;
    color: #ffffff;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
}

.our-product-wrapper ul.products {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px 16px;
}

.our-product-wrapper ul.products::before,
.our-product-wrapper ul.products::after {
    content: none !important;
    display: none !important;
}

.our-product-wrapper ul.products li.product {
    width: 100% !important;
    margin: 0 !important;
    float: none !important;
}

.our-product-wrapper ul.products li.product.is-hidden {
    display: none !important;
}

@media screen and (max-width: 1024px) {
    .our-product-wrapper ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media screen and (max-width: 767px) {
    .alkarma-product-filters {
        margin-bottom: 18px;
        padding-top: 12px;
    }

    .alkarma-product-filters__search {
        height: 46px;
        font-size: 15px;
    }

    .alkarma-product-filters__chip {
        min-height: 36px;
        padding: 7px 12px;
        font-size: 13px;
    }

    .our-product-wrapper ul.products {
        grid-template-columns: 1fr;
    }
}
