/* PAGE DE RÉSULTATS WHEELACCESS */
.results-page {
    min-height: 100vh;
}

.logo-link {
    color: inherit;
    text-decoration: none;
}

.results-main {
    padding: 35px 6% 70px;
}

.results-intro {
    position: relative;
    overflow: hidden;
    padding: 48px;
    border: 1px solid #2e2e2e;
    border-radius: 28px;
    background:
        radial-gradient(circle at 88% 25%, rgba(189, 255, 0, 0.16), transparent 28%),
        linear-gradient(135deg, #101010, #070707 72%);
}

.results-intro::after {
    content: "";
    position: absolute;
    right: -80px;
    bottom: -120px;
    width: 390px;
    height: 390px;
    border: 1px solid rgba(189, 255, 0, 0.18);
    border-radius: 50%;
    box-shadow: 0 0 0 55px rgba(189, 255, 0, 0.035), 0 0 0 110px rgba(189, 255, 0, 0.02);
    pointer-events: none;
}

.results-kicker {
    color: var(--green);
    font-weight: 800;
    margin-bottom: 12px;
}

.results-intro h2 {
    position: relative;
    z-index: 1;
    max-width: 850px;
    font-size: 52px;
    line-height: 1.08;
}

.results-subtitle {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin-top: 16px;
    color: #bdbdbd;
    line-height: 1.6;
}

.results-search-zone {
    position: relative;
    z-index: 2;
    display: flex;
    max-width: 900px;
    gap: 14px;
    margin-top: 30px;
}

.results-search-box {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 13px;
    min-height: 58px;
    padding: 0 20px;
    background: #121212;
    border: 1px solid #3b3b3b;
    border-radius: 15px;
}

.results-search-box:focus-within {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(189, 255, 0, 0.1);
}

.results-search-box input {
    width: 100%;
    color: #fff;
    background: transparent;
    border: 0;
    outline: 0;
    font-size: 16px;
}

.results-search-zone > button,
.empty-state button {
    padding: 0 32px;
    min-height: 58px;
    border-radius: 15px;
    background: var(--green);
    color: #050505;
}

.results-layout {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 28px;
    margin-top: 32px;
}

.mobile-filters-toggle {
    display: none;
}

.results-sidebar,
.results-content {
    border: 1px solid #2d2d2d;
    border-radius: 24px;
    background: #0b0b0b;
}

.results-sidebar {
    align-self: start;
    position: sticky;
    top: 20px;
    padding: 28px;
}

.filter-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 28px;
}

.filter-title-row h3 {
    font-size: 22px;
}

.reset-filters {
    padding: 0;
    color: var(--green);
    background: transparent;
    font-size: 13px;
}

.results-sidebar label {
    display: block;
    margin: 20px 0 8px;
    color: #e8e8e8;
    font-weight: 700;
}

.results-sidebar select {
    width: 100%;
    min-height: 48px;
    padding: 0 14px;
    color: #fff;
    background: #151515;
    border: 1px solid #363636;
    border-radius: 12px;
    outline: none;
}

.results-sidebar select:focus {
    border-color: var(--green);
}

.filter-info {
    margin-top: 28px;
    padding: 20px;
    border: 1px solid rgba(189, 255, 0, 0.25);
    border-radius: 16px;
    background: rgba(189, 255, 0, 0.055);
}

.filter-info strong {
    color: var(--green);
}

.filter-info p {
    margin-top: 8px;
    color: #bcbcbc;
    font-size: 14px;
    line-height: 1.55;
}

.results-content {
    min-height: 520px;
    padding: 30px;
}

.results-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    padding-bottom: 24px;
    border-bottom: 1px solid #292929;
}

.query-label {
    margin-bottom: 6px;
    color: #9f9f9f;
}

.results-heading h1 {
    font-size: 34px;
    color: var(--green);
}

.results-count {
    color: #bdbdbd;
    font-weight: 700;
}

.results-list {
    display: grid;
    gap: 20px;
    margin-top: 26px;
}

.result-card {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr) auto;
    gap: 24px;
    min-height: 210px;
    padding: 16px;
    color: inherit;
    text-decoration: none;
    background: #121212;
    border: 1px solid #303030;
    border-radius: 20px;
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.result-card:hover {
    transform: translateY(-3px);
    border-color: rgba(189, 255, 0, 0.75);
    background: #151515;
}

.result-card-image {
    position: relative;
    width: 100%;
    height: 178px;
    min-height: 178px;
    overflow: hidden;
    border-radius: 15px;
    background: #252525;
}

.result-card-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.result-badge {
    position: absolute;
    left: 12px;
    top: 12px;
    padding: 7px 11px;
    color: #050505;
    background: var(--green);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
}

.result-card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.result-meta {
    color: var(--green);
    font-size: 14px;
    font-weight: 800;
}

.result-card h2 {
    margin: 7px 0 8px;
    font-size: 29px;
}

.result-address {
    color: #d0d0d0;
}

.result-description {
    max-width: 780px;
    margin-top: 14px;
    color: #aeb0b1;
    line-height: 1.55;
}

.result-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.result-tags span {
    padding: 7px 11px;
    border: 1px solid #383838;
    border-radius: 999px;
    color: #d5d5d5;
    background: #0c0c0c;
    font-size: 12px;
}

.result-card-side {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    min-width: 130px;
    padding: 6px;
}

.result-rating {
    text-align: right;
}

.result-stars {
    color: var(--green);
    letter-spacing: 2px;
    font-size: 18px;
}

.result-score {
    display: block;
    margin-top: 5px;
    font-size: 24px;
    font-weight: 900;
}

.result-open {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 15px;
    color: #050505;
    background: var(--green);
    border-radius: 12px;
    font-weight: 900;
    white-space: nowrap;
}

.empty-state {
    margin-top: 26px;
    padding: 65px 20px;
    text-align: center;
    border: 1px dashed #3b3b3b;
    border-radius: 20px;
    background: #101010;
}

.empty-icon {
    font-size: 44px;
}

.empty-state h3 {
    margin-top: 15px;
    font-size: 27px;
}

.empty-state p {
    max-width: 520px;
    margin: 10px auto 25px;
    color: #a9a9a9;
    line-height: 1.55;
}

.empty-state button {
    padding: 14px 22px;
    min-height: auto;
}

@media (max-width: 1100px) {
    .results-layout {
        grid-template-columns: 1fr;
    }

    .results-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 14px 18px;
    }

    .filter-title-row,
    .filter-info {
        grid-column: 1 / -1;
    }

    .results-sidebar label {
        margin-top: 0;
    }

    .result-card {
        grid-template-columns: 220px minmax(0, 1fr);
    }

    .result-card-side {
        grid-column: 2;
        flex-direction: row;
        align-items: center;
    }
}

@media (max-width: 760px) {
    .results-main {
        padding: 20px 4% 50px;
    }

    .results-intro {
        padding: 30px 22px;
    }

    .results-intro h2 {
        font-size: 38px;
    }

    .results-search-zone {
        flex-direction: column;
    }

    .results-search-zone > button {
        min-height: 54px;
    }

    .mobile-filters-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        min-height: 54px;
        padding: 0 22px;
        border: 1px solid var(--green);
        border-radius: 15px;
        background: var(--green);
        color: #050505;
        font: inherit;
        font-weight: 800;
        text-align: center;
        cursor: pointer;
    }

    .results-sidebar {
        display: block;
    }

    .results-sidebar.is-collapsed {
        display: none;
    }

    .results-sidebar label {
        margin-top: 18px;
    }

    .results-content {
        padding: 20px;
    }

    .results-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .result-card {
        grid-template-columns: 1fr;
        scroll-margin-top: 16px;
    }

    .result-card-image {
        height: 210px;
    }

    .result-card-side {
        grid-column: auto;
        flex-direction: row;
        align-items: center;
    }
}
