body.review-form-page {
    --review-green: #bdff00;
    --review-panel: rgba(14, 14, 14, 0.92);
    --review-border: #343434;
    --review-muted: #a8a8a8;
    background:
        radial-gradient(circle at 50% 0, rgba(189, 255, 0, 0.07), transparent 34rem),
        #050505;
}

body.review-form-page .review-page {
    width: min(1460px, calc(100% - 48px));
    margin: 0 auto;
    padding: 42px 0 72px;
}

body.review-form-page .review-page > form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

body.review-form-page .review-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    gap: 44px;
    align-items: center;
    min-height: 390px;
    margin-bottom: 8px;
    padding: 30px;
    border: 1px solid var(--review-border);
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(18,18,18,.98), rgba(8,8,8,.94));
    overflow: hidden;
}

body.review-form-page .review-intro-content {
    min-width: 0;
}

body.review-form-page .review-eyebrow {
    display: inline-flex;
    margin: 0 0 16px;
    padding: 8px 14px;
    border: 1px solid rgba(189,255,0,.55);
    border-radius: 999px;
    color: var(--review-green);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

body.review-form-page .review-intro h1 {
    margin: 0 0 14px;
    font-size: clamp(42px, 5vw, 72px);
    line-height: .98;
    letter-spacing: -.035em;
    text-transform: uppercase;
}

body.review-form-page .review-intro h1 span,
body.review-form-page .criteria h2,
body.review-form-page .bottom-panel h2,
body.review-form-page .details > label {
    color: var(--review-green);
}

body.review-form-page .review-intro-text {
    max-width: 700px;
    margin: 0 0 28px;
    color: #c7c7c7;
    font-size: 18px;
    line-height: 1.55;
}

body.review-form-page .review-intro label,
body.review-form-page .rating label,
body.review-form-page .details > label {
    display: block;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: .03em;
    text-transform: uppercase;
}

body.review-form-page .review-intro input,
body.review-form-page .rating input,
body.review-form-page .details input,
body.review-form-page .details textarea {
    width: 100%;
    margin-top: 16px;
    border: 1px solid #4b4b4b;
    border-radius: 10px;
    background: linear-gradient(180deg, #161616, #0b0b0b);
    color: #fff;
    font: inherit;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}

body.review-form-page .review-intro input,
body.review-form-page .rating input,
body.review-form-page .details input {
    min-height: 54px;
    padding: 0 16px;
}

body.review-form-page .review-intro .review-email {
    width: 50%;
}

body.review-form-page .member-prefill {
    margin-top: 16px;
}

body.review-form-page .review-intro-content > .review-comment-separator {
    background: transparent;
}

body.review-form-page .review-place-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 18px;
}

body.review-form-page .review-place-fields > div {
    min-width: 0;
}

body.review-form-page .review-place-fields > div:only-child {
    grid-column: 1 / -1;
}

body.review-form-page .review-intro input:focus,
body.review-form-page .rating input:focus,
body.review-form-page .details input:focus,
body.review-form-page .details textarea:focus {
    border-color: var(--review-green);
    box-shadow: 0 0 0 3px rgba(189,255,0,.12);
}

body.review-form-page .review-intro-image {
    min-height: 330px;
    height: 100%;
    border: 1px solid rgba(189,255,0,.34);
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(189,255,0,.13), rgba(0,0,0,.2)),
        url('../assets/ajouter-un-lieu/illustrations/salle.webp') center/cover no-repeat;
    box-shadow: inset 0 0 70px rgba(0,0,0,.35);
}

body.restaurant-review-form .review-intro-image {
    border: 0;
    background:
        linear-gradient(135deg, rgba(189,255,0,.13), rgba(0,0,0,.2)),
        url('../assets/ajouter-un-lieu/illustrations/restaurant-formulaire.png') center/cover no-repeat;
}

body.hotel-review-form .review-intro-image {
    border: 0;
    background:
        linear-gradient(135deg, rgba(189,255,0,.13), rgba(0,0,0,.2)),
        url('../assets/ajouter-un-lieu/illustrations/hotel-formulaire.png') center/cover no-repeat;
}

body.review-form-page .criteria {
    display: grid;
    grid-template-columns: 64px 190px minmax(330px, 1fr) minmax(330px, 430px);
    gap: 24px;
    align-items: stretch;
    padding: 22px;
    border: 1px solid var(--review-border);
    border-radius: 16px;
    background: var(--review-panel);
}

body.review-form-page .number {
    align-self: start;
    display: grid;
    place-items: center;
    width: 58px;
    min-height: 58px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--review-green), #83b800);
    color: #050505;
    font-size: 34px;
    font-weight: 900;
}

body.review-form-page .illustration {
    min-height: 180px;
    margin: 0;
    border: 1px solid rgba(189,255,0,.25);
    border-radius: 13px;
    overflow: hidden;
    background: #111;
}

body.review-form-page .illustration img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body.review-form-page .questions {
    min-width: 0;
    padding: 2px 0;
}

body.review-form-page .questions h2 {
    margin: 0 0 12px;
    font-size: 32px;
    line-height: 1;
    text-transform: uppercase;
}

body.review-form-page .q {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    min-height: 48px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,.055);
}

body.review-form-page .q:last-child {
    border-bottom: 0;
}

body.review-form-page .q > span {
    min-width: 0;
    line-height: 1.35;
}

body.review-form-page .q > span::before {
    content: '•';
    margin-right: 10px;
    color: var(--review-green);
    font-size: 25px;
    vertical-align: -2px;
}

body.review-form-page .q > div {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
}

body.review-form-page .q button {
    min-width: 64px;
    padding: 10px 14px;
    border: 1px solid #494949;
    border-radius: 8px;
    background: #080808;
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
}

body.review-form-page .q button.active {
    border-color: var(--review-green);
    background: linear-gradient(135deg, var(--review-green), #87bc00);
    color: #050505;
    box-shadow: 0 0 16px rgba(189,255,0,.2);
}

body.review-form-page .rating {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    padding-left: 28px;
    border-left: 1px solid #343434;
}

body.review-form-page .rating p,
body.review-form-page .global-rating p {
    margin: 0 0 8px;
    color: #e8e8e8;
    font-size: 15px;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
}

body.review-form-page .stars {
    display: flex;
    justify-content: center;
    gap: clamp(7px, 1vw, 14px);
    min-height: 58px;
    color: var(--review-green);
    font-size: clamp(38px, 3.1vw, 52px);
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
}

body.review-form-page .star {
    display: inline-block;
}

body.review-form-page .star.filled {
    text-shadow: 0 0 12px rgba(189,255,0,.4);
}

body.review-form-page .rating label {
    margin-top: 18px;
}

body.review-form-page .rating small,
body.review-form-page .bottom-panel small {
    color: var(--review-muted);
    font-weight: 400;
}

body.hotel-review-form .hotel-choice-layout {
    grid-template-columns: minmax(220px, .9fr) minmax(280px, 1.1fr);
    align-items: start;
}

body.hotel-review-form .hotel-choice-layout > span {
    min-width: 220px;
    text-wrap: balance;
}

body.hotel-review-form .hotel-choice-select select {
    width: 100%;
    min-width: 0;
    min-height: 42px;
    padding: 9px 38px 9px 13px;
    border: 1px solid #494949;
    border-radius: 8px;
    background: #080808;
    color: #fff;
    font: inherit;
    font-size: 14px;
    font-weight: 700;
    outline: none;
}

body.hotel-review-form .hotel-choice-select select:focus {
    border-color: var(--review-green);
    box-shadow: 0 0 0 3px rgba(189,255,0,.12);
}

body.hotel-review-form .hotel-choice-select option {
    background: #080808;
    color: #fff;
}

body.hotel-review-form .hotel-multi-choice > div {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

body.hotel-review-form .hotel-multi-choice label {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    padding: 9px 13px;
    border: 1px solid #494949;
    border-radius: 8px;
    background: #080808;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}

body.hotel-review-form .hotel-multi-choice label.is-selected {
    border-color: var(--review-green);
    box-shadow: 0 0 0 3px rgba(189,255,0,.08);
}

body.hotel-review-form .hotel-multi-choice input {
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: var(--review-green);
}

body.restaurant-review-form .illustration,
body.hotel-review-form .illustration {
    align-self: start;
    height: 180px;
    min-height: 180px;
}

body.hotel-review-form .hotel-comment-help {
    display: block;
    margin-top: 10px;
    color: var(--review-muted);
    font-size: 12px;
    line-height: 1.45;
}

@media (max-width: 1100px) {
    body.hotel-review-form .hotel-choice-layout {
        grid-template-columns: 1fr;
    }

    body.hotel-review-form .hotel-choice-layout > span {
        min-width: 0;
    }
}

body.review-form-page .bottom-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 460px);
    border: 1px solid var(--review-border);
    border-radius: 16px;
    overflow: hidden;
    background: var(--review-panel);
}

body.review-form-page .global-rating {
    display: none !important;
    display: grid;
    grid-template-columns: auto auto minmax(250px, 1fr);
    gap: 22px;
    align-items: center;
    padding: 24px 28px;
    border-bottom: 1px solid #333;
}

body.review-form-page .global-rating h2,
body.review-form-page .photos h2 {
    margin: 0;
    font-size: 24px;
    text-transform: uppercase;
}

body.review-form-page .global-rating p {
    margin: 0;
}

body.review-form-page .photos {
    grid-column: 2;
    grid-row: 1 / 3;
    padding: 24px 28px;
    border-left: 1px solid #3b3b3b;
}

body.review-form-page .photos h2 {
    margin-bottom: 18px;
}

body.review-form-page .photo-btn {
    display: block;
    padding: 17px;
    border: 1px dashed #737373;
    border-radius: 9px;
    text-align: center;
    text-transform: none;
    cursor: pointer;
}

body.review-form-page .photo-btn:hover {
    border-color: var(--review-green);
}

body.review-form-page .photo-btn input {
    display: none;
}

body.review-form-page #photosList {
    margin-top: 14px;
    color: #d5d5d5;
    font-size: 14px;
    line-height: 1.5;
}

body.review-form-page .details {
    grid-column: 1 / 3;
    padding: 22px 28px;
}

body.review-form-page .details > label {
    font-size: 20px;
    margin-top: 16px;
}

body.review-form-page .details textarea {
    min-height: 115px;
    padding: 16px;
    resize: vertical;
}

body.review-form-page .submit {
    grid-column: 1 / 3;
    margin: 0 28px 10px;
    padding: 17px 20px;
    border: 0;
    border-radius: 9px;
    background: linear-gradient(135deg, var(--review-green), #86bc00);
    color: #050505;
    font-size: 22px;
    font-weight: 900;
    text-transform: uppercase;
}

body.review-form-page .secondary-submit { background:#202020;color:var(--review-green);border:1px solid var(--review-green); }
body.review-form-page .admin-photo-item { display:grid;grid-template-columns:110px 1fr;gap:10px 16px;align-items:center;margin:12px 0;padding:12px;border:1px solid #353535;border-radius:12px;background:#0b0b0b; }
body.review-form-page .admin-photo-item img { grid-row:1 / span 2;width:110px;height:86px;object-fit:cover;object-position:center;border-radius:9px; }
body.review-form-page .admin-photo-item label { margin:0;font-size:13px;text-transform:none; }
body.review-form-page .minimal-place-submit { width:100%;margin:24px 0 0; }

body.review-form-page .privacy {
    grid-column: 1 / 3;
    margin: 0 18px 18px;
    color: #c7c7c7;
    text-align: center;
}

body.review-form-page .form-status {
    max-width: 900px;
    margin: 50px auto;
    padding: 35px;
    border: 1px solid var(--review-border);
    border-radius: 14px;
    background: rgba(0,0,0,.65);
    text-align: center;
}

body.review-form-page .form-status h1 {
    margin-bottom: 16px;
    font-size: 34px;
}

body.review-form-page .form-status a {
    display: inline-block;
    margin-top: 20px;
    padding: 13px 22px;
    border-radius: 7px;
    background: var(--review-green);
    color: #000;
    font-weight: 900;
    text-decoration: none;
}

@media (min-width: 901px) {
    body.review-form-page .review-page {
        padding-top: 56px;
        padding-bottom: 96px;
    }

    body.review-form-page .review-page > form {
        gap: 30px;
    }

    body.review-form-page .review-intro {
        gap: 52px;
        padding: 38px;
    }

    body.review-form-page .review-place-fields {
        gap: 24px;
        margin-top: 24px;
    }

    body.review-form-page .criteria {
        gap: 30px;
        padding: 30px;
    }

    body.review-form-page .questions h2 {
        margin-bottom: 20px;
    }

    body.review-form-page .q {
        min-height: 54px;
        padding-block: 12px;
    }

    body.review-form-page .rating label {
        margin-top: 24px;
    }

    body.review-form-page .global-rating,
    body.review-form-page .photos {
        padding: 30px 34px;
    }

    body.review-form-page .photos h2 {
        margin-bottom: 24px;
    }

    body.review-form-page .details {
        padding: 28px 34px;
    }

    body.review-form-page .details > label {
        margin-top: 22px;
    }

    body.review-form-page .submit {
        margin-inline: 34px;
        margin-bottom: 16px;
    }

    body.review-form-page .privacy {
        margin-bottom: 24px;
    }
}

@media (max-width: 1250px) {
    body.review-form-page .criteria {
        grid-template-columns: 58px 170px minmax(300px, 1fr);
    }

    body.review-form-page .rating {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: auto minmax(280px, 420px) minmax(260px, 1fr);
        gap: 18px;
        align-items: center;
        padding: 20px 0 0;
        border-top: 1px solid #343434;
        border-left: 0;
    }

    body.review-form-page .rating p,
    body.review-form-page .rating label {
        margin: 0;
        text-align: left;
    }
}

@media (max-width: 900px) {
    body.review-form-page .review-page {
        width: min(100% - 28px, 760px);
        padding-top: 26px;
    }

    body.review-form-page .review-intro {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 24px;
    }

    body.review-form-page .review-intro-image {
        min-height: 250px;
    }

    body.review-form-page .criteria {
        grid-template-columns: 58px minmax(150px, 190px) 1fr;
    }

    body.review-form-page .rating {
        grid-template-columns: 1fr;
    }

    body.review-form-page .rating p,
    body.review-form-page .rating label {
        text-align: center;
    }

    body.review-form-page .bottom-panel {
        grid-template-columns: 1fr;
    }

    body.review-form-page .global-rating,
    body.review-form-page .photos,
    body.review-form-page .details,
    body.review-form-page .submit,
    body.review-form-page .privacy {
        grid-column: 1;
    }

    body.review-form-page .global-rating {
        grid-template-columns: 1fr;
        text-align: center;
    }

    body.review-form-page .photos {
        grid-row: auto;
        border-top: 1px solid #3b3b3b;
        border-left: 0;
    }
}

@media (max-width: 640px) {
    body.review-form-page .review-page {
        width: min(100% - 20px, 560px);
        padding-bottom: 46px;
    }

    body.review-form-page .review-intro {
        padding: 20px;
        border-radius: 15px;
    }

    body.review-form-page .review-intro h1 {
        font-size: 40px;
    }

    body.review-form-page .review-intro .review-email {
        width: 100%;
    }

    body.review-form-page .review-place-fields {
        grid-template-columns: 1fr;
    }

    body.review-form-page .criteria {
        grid-template-columns: 52px 1fr;
        gap: 16px;
        padding: 17px;
    }

    body.review-form-page .number {
        width: 50px;
        min-height: 50px;
        font-size: 29px;
    }

    body.review-form-page .illustration {
        min-height: 145px;
    }

    body.review-form-page .questions,
    body.review-form-page .rating {
        grid-column: 1 / -1;
    }

    body.review-form-page .questions h2 {
        font-size: 28px;
    }

    body.review-form-page .q {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    body.review-form-page .q > div {
        justify-content: flex-start;
    }

    body.review-form-page .stars {
        font-size: 38px;
        gap: 8px;
    }

    body.review-form-page .global-rating,
    body.review-form-page .photos,
    body.review-form-page .details {
        padding: 20px;
    }

    body.review-form-page .submit {
        margin-inline: 20px;
        font-size: 18px;
    }

    body.restaurant-review-form .illustration,
    body.hotel-review-form .illustration {
        height: 145px;
        min-height: 145px;
    }
}
.place-suggestions{position:relative;z-index:20;margin-top:4px;border:1px solid rgba(255,255,255,.18);border-radius:8px;overflow:hidden;background:#202124;box-shadow:0 8px 24px rgba(0,0,0,.3)}
.place-suggestions button{display:block;width:100%;padding:11px 13px;border:0;border-bottom:1px solid rgba(255,255,255,.1);background:transparent;color:inherit;text-align:left;cursor:pointer}
.place-suggestions button:hover,.place-suggestions button:focus{background:rgba(255,255,255,.08)}
.selected-place-message{margin:8px 0 0;color:#7bd89b;font-weight:700}
[hidden]{display:none!important}

.contribution-intro-dialog {
    width: min(680px, 100%);
    max-height: none;
    overflow-y: visible;
}

.contribution-intro-content {
    margin-top: 22px;
}

.contribution-intro-content p {
    margin: 0 0 13px;
    font-size: 16px;
    line-height: 1.6;
    white-space: normal;
}

.contribution-intro-content ul {
    margin: -3px 0 18px 28px;
    color: #ededed;
    line-height: 1.7;
}

.contribution-intro-option {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 22px;
    color: #ededed;
    font-weight: 700;
}

.contribution-intro-option input {
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: var(--green);
}

.contribution-intro-action {
    margin-top: 24px;
    text-align: center;
}

body.review-form-page .contribution-intro-action .submit {
    margin: 0;
    font-size: 17px;
}

@media (max-height: 760px) {
    .contribution-intro-modal {
        padding: 12px;
    }

    .contribution-intro-dialog {
        padding: 22px 26px;
    }

    .contribution-intro-content {
        margin-top: 12px;
    }

    .contribution-intro-content p {
        margin-bottom: 8px;
        line-height: 1.45;
    }

    .contribution-intro-content ul {
        margin: -2px 0 10px 28px;
        line-height: 1.45;
    }

    .contribution-intro-option {
        margin-top: 12px;
    }

    .contribution-intro-action {
        margin-top: 14px;
    }
}

@media (max-height: 580px) {
    .contribution-intro-dialog {
        padding: 14px 20px;
    }

    .contribution-intro-content {
        margin-top: 7px;
    }

    .contribution-intro-content p {
        margin-bottom: 5px;
        line-height: 1.3;
    }

    .contribution-intro-content ul {
        margin: -1px 0 6px 26px;
        line-height: 1.3;
    }

    .contribution-intro-option {
        margin-top: 7px;
    }

    .contribution-intro-action {
        margin-top: 9px;
    }
}
