/* Cameron — filtres accueil V6 : gauche / droite, lisibles et compacts */
.home-property-filters{
    --wine:#7c2105;
    --ink:#2c211d;
    --muted:#746a64;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:28px;
    width:100%;
    margin:0 0 30px;
    padding:14px 0 16px;
    border-top:1px solid rgba(124,33,5,.16);
    border-bottom:1px solid rgba(124,33,5,.16);
}

.home-property-filters__row{
    display:flex;
    align-items:center;
    flex:0 0 auto;
    gap:12px;
    min-width:0;
}

.home-property-filters__row:first-child{
    margin-right:auto;
}

.home-property-filters__row:last-child{
    position:relative;
    margin-left:auto;
    padding-left:30px;
}

.home-property-filters__row:last-child::before{
    content:'';
    position:absolute;
    left:0;
    top:4px;
    bottom:4px;
    width:1px;
    background:rgba(124,33,5,.18);
}

.home-property-filters__row + .home-property-filters__row{margin-top:0}

.home-property-filters__label{
    flex:0 0 auto;
    width:auto;
    color:var(--muted);
    font-size:.58rem;
    font-weight:700;
    letter-spacing:.15em;
    line-height:1;
    white-space:nowrap;
    text-transform:uppercase;
}

.home-property-filters__buttons{
    display:flex;
    flex-wrap:nowrap;
    align-items:center;
    gap:6px;
    min-width:0;
}

.home-property-filters__buttons button{
    appearance:none;
    flex:0 0 auto;
    min-height:34px;
    padding:7px 12px 8px;
    border:1px solid rgba(124,33,5,.20);
    border-radius:0;
    background:#fff;
    color:#463a35;
    cursor:pointer;
    font:700 .62rem/1 var(--sans);
    letter-spacing:.08em;
    white-space:nowrap;
    text-transform:uppercase;
    transition:background .18s ease,color .18s ease,border-color .18s ease,transform .18s ease;
}

.home-property-filters__buttons button:hover{
    border-color:rgba(124,33,5,.55);
    color:var(--wine);
    transform:translateY(-1px);
}

.home-property-filters__buttons button.is-active{
    border-color:var(--wine);
    background:var(--wine);
    color:#fff;
}

.home-property-filters__buttons button:focus-visible{
    outline:2px solid rgba(124,33,5,.32);
    outline-offset:2px;
}

.property-grid--home [data-cameron-property-card][hidden]{display:none!important}

@media(max-width:1180px){
    .home-property-filters{
        align-items:flex-start;
        gap:12px 22px;
    }
    .home-property-filters__row:last-child{padding-left:22px}
    .home-property-filters__buttons button{
        padding-left:10px;
        padding-right:10px;
        font-size:.59rem;
    }
}

@media(max-width:980px){
    .home-property-filters{
        display:block;
    }
    .home-property-filters__row{
        width:100%;
    }
    .home-property-filters__row:last-child{
        margin-top:12px;
        margin-left:0;
        padding-top:12px;
        padding-left:0;
        border-top:1px solid rgba(124,33,5,.11);
    }
    .home-property-filters__row:last-child::before{display:none}
}

@media(max-width:760px){
    .home-property-filters{
        margin-bottom:24px;
        padding:13px 0 15px;
    }
    .home-property-filters__row{display:block}
    .home-property-filters__row:last-child{margin-top:13px}
    .home-property-filters__label{
        display:block;
        margin-bottom:8px;
    }
    .home-property-filters__buttons{
        overflow-x:auto;
        padding-bottom:2px;
        scrollbar-width:none;
    }
    .home-property-filters__buttons::-webkit-scrollbar{display:none}
    .home-property-filters__buttons button{
        min-height:32px;
        padding:7px 12px;
        font-size:.62rem;
    }
}
