.categories-frere .categories.desktop{
    display: none;
    flex-direction: row;
    gap: 30px;
    justify-content: center;
    padding-top: 20px;
    padding-bottom: 20px;
}

.categories-frere .categories.desktop span,
.categories-frere .categories.desktop a.current-cat{
    font-family: 'Lora';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 120%;
    text-align: center;
    color: var(--canard);
    text-decoration: underline;
    text-underline-offset: 4px;
    cursor: pointer;
}

.categories-frere .categories.desktop a,
.categories-frere .categories.desktop div.sous-cat{
    font-family: 'Lora';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 120%;
    text-align: center;
    color: var(--bleu-hague-mid);
    text-decoration: none;
    cursor: pointer;
}

.categories-frere .select-wrapper,
.categories-frere .select-wrapper select,
.categories-frere .select-wrapper select::after,
.categories-frere .select-wrapper select::before,
.categories-frere .select-wrapper select:focus{
    -webkit-tap-highlight-color: transparent;
    background-color: transparent;
}

.categories-frere .categories.desktop div.sous-cat{
    cursor: default;
}

.categories-frere .categories.desktop a:hover{
    text-decoration: underline;
    text-underline-offset: 4px;
    color: var(--canard);
}

.categories-frere .categories.mobile{
    /* display: flex; */
    flex-direction: row;
    justify-content: space-between;
    gap: 30px;
}

.categories-frere .categories.mobile span{
    font-family: 'Lora';
    font-style: normal;
    font-weight: 400;
    font-size: 17px;
    line-height: 120%;
    color: var(--bleu-hague-mid);
}

.categories-frere .categories.mobile select{
    font-family: 'Lora';
    font-style: normal;
    font-weight: 400;
    font-size: 17px;
    line-height: 120%;
    color: var(--canard);
    text-decoration: underline;
    text-underline-offset: 4px;
    position: relative;
    cursor: pointer;
    padding-right: 25px;
    text-align: end;
}

.categories-frere .select-wrapper {
    position: relative;
    display: flex;
}

.categories-frere .select-wrapper select {
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.categories-frere .select-wrapper select:focus {
    outline: none;
}

.categories-frere .select-wrapper::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 16px;
    height: 16px;
    background-image: url('../../assets/images/arrow-bottom.svg');
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    transform: translateY(-50%);
    display: none;
}


@media screen and (min-width: 992px) {
    .categories-frere .categories.desktop{
        display: flex;
    }

    .categories-frere .categories.mobile{
        display: none;
    }
}
