/*
|==========================================================================
| Plugin Estimation — Styles complets
|==========================================================================
| Toutes les règles utilisent le préfixe .ld-estimation- pour éviter
| les collisions avec les thèmes Botble/Pertinom.
|
| Les !important sont nécessaires : le thème injecte des styles globaux
| sur form, button, input qui cassent le layout du plugin.
|==========================================================================
*/

/* ---- Reset box-sizing sur tout le scope du plugin ---- */
.ld-estimation-hero *,
.ld-estimation-hero *::before,
.ld-estimation-hero *::after {
    box-sizing: border-box !important;
}

/* ---- Section hero ---- */
.ld-estimation-hero {
    --ld-estimation-bg-start: #0B2F57;
    --ld-estimation-bg-middle: #1278C8;
    --ld-estimation-bg-end: #00C7D9;
    --ld-estimation-title-color: #FFFFFF;
    --ld-estimation-subtitle-color: #FFFFFF;
    --ld-estimation-input-bg: #FFFFFF;
    --ld-estimation-input-text: #0B2F57;
    --ld-estimation-placeholder-color: #8A94A6;
    --ld-estimation-button-bg: #00C7D9;
    --ld-estimation-button-text: #FFFFFF;
    --ld-estimation-button-hover: #00AFC0;
    --ld-estimation-icon-color: #7B8794;
    --ld-estimation-border-color: #E5EAF0;
    --ld-estimation-section-padding: 90px 20px 95px;
    --ld-estimation-title-size: clamp(2rem, 4vw, 3.2rem);
    --ld-estimation-subtitle-size: clamp(1.05rem, 2vw, 1.45rem);
    --ld-estimation-form-width: 1020px;
    --ld-estimation-form-height: 82px;
    --ld-estimation-form-radius: 4px;
    --ld-estimation-button-width: 275px;
    --ld-estimation-overlay-opacity: 0.7;

    position: relative;
    overflow: visible;
    z-index: 10;
    padding: var(--ld-estimation-section-padding);
    background: linear-gradient(
        110deg,
        var(--ld-estimation-bg-start) 0%,
        var(--ld-estimation-bg-middle) 58%,
        var(--ld-estimation-bg-end) 100%
    );
}

.ld-estimation-hero--has-bg-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        110deg,
        var(--ld-estimation-bg-start) 0%,
        var(--ld-estimation-bg-middle) 58%,
        var(--ld-estimation-bg-end) 100%
    );
    opacity: var(--ld-estimation-overlay-opacity);
    z-index: 1;
}

.ld-estimation-hero__bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ld-estimation-hero .container {
    position: relative;
    z-index: 20;
}

.ld-estimation-hero__content {
    margin: 0 auto;
}

.ld-estimation-hero__title {
    margin: 0 auto 16px;
    max-width: 1000px;
    color: var(--ld-estimation-title-color);
    font-size: var(--ld-estimation-title-size);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.ld-estimation-hero__subtitle {
    margin: 0 auto 44px;
    max-width: 1050px;
    color: var(--ld-estimation-subtitle-color);
    font-size: var(--ld-estimation-subtitle-size);
    line-height: 1.38;
    font-weight: 500;
}

/*
|--------------------------------------------------------------------------
| Hero form — Layout grid 3 colonnes
|--------------------------------------------------------------------------
| [ champ adresse 1fr ][ icône 80px ][ bouton CTA fixe ]
|
| overflow: visible est obligatoire pour que le dropdown suggestions
| puisse déborder du formulaire. Les border-radius sont appliqués
| individuellement sur l'input (gauche) et le bouton (droite).
|--------------------------------------------------------------------------
*/

.ld-estimation-hero .ld-estimation-hero__form {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 80px var(--ld-estimation-button-width) !important;
    grid-template-rows: var(--ld-estimation-form-height) !important;
    align-items: stretch !important;
    justify-content: stretch !important;
    width: min(100%, var(--ld-estimation-form-width)) !important;
    max-width: var(--ld-estimation-form-width) !important;
    height: var(--ld-estimation-form-height) !important;
    min-height: 0 !important;
    margin: 0 auto !important;
    padding: 0 !important;
    background: #FFFFFF !important;
    border: 1px solid var(--ld-estimation-border-color) !important;
    border-radius: var(--ld-estimation-form-radius) !important;
    overflow: visible !important;
    box-shadow: none !important;
    gap: 0 !important;
    flex-wrap: nowrap !important;
}

/* ---- Champ adresse (wrapper autocomplete) ---- */
.ld-estimation-hero .ld-estimation-autocomplete,
.ld-estimation-hero .ld-estimation-address-field {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
    flex: none !important;
    border: 0 !important;
    background: transparent !important;
}

/* ---- Input texte ---- */
.ld-estimation-hero .ld-estimation-hero__input,
.ld-estimation-hero .ld-estimation-address-input {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    border: 0 !important;
    border-radius: var(--ld-estimation-form-radius) 0 0 var(--ld-estimation-form-radius) !important;
    background: var(--ld-estimation-input-bg) !important;
    color: var(--ld-estimation-input-text) !important;
    padding: 0 24px !important;
    font-size: 1.08rem !important;
    font-weight: 500 !important;
    line-height: 1.2 !important;
    outline: none !important;
    box-shadow: none !important;
    margin: 0 !important;
    float: none !important;
}

.ld-estimation-hero .ld-estimation-hero__input:focus,
.ld-estimation-hero .ld-estimation-address-input:focus {
    outline: none !important;
    box-shadow: none !important;
    border: 0 !important;
}

.ld-estimation-hero .ld-estimation-hero__input::placeholder,
.ld-estimation-hero .ld-estimation-address-input::placeholder {
    color: var(--ld-estimation-placeholder-color) !important;
    opacity: 1 !important;
}

/* ---- Icône localisation ---- */
.ld-estimation-hero .ld-estimation-hero__icon-wrap,
.ld-estimation-hero .ld-estimation-location-button {
    display: flex !important;
    width: 80px !important;
    min-width: 80px !important;
    max-width: 80px !important;
    height: 100% !important;
    min-height: 0 !important;
    align-items: center !important;
    justify-content: center !important;
    background: #FFFFFF !important;
    border: 0 !important;
    border-left: 1px solid var(--ld-estimation-border-color) !important;
    border-right: 1px solid var(--ld-estimation-border-color) !important;
    border-radius: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    cursor: pointer !important;
    box-shadow: none !important;
    float: none !important;
    flex-shrink: 0 !important;
    flex-grow: 0 !important;
}

.ld-estimation-hero .ld-estimation-location-button {
    position: relative !important;
}

.ld-estimation-hero .ld-estimation-location-button::before,
.ld-estimation-hero .ld-estimation-location-button::after {
    pointer-events: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: opacity 0.2s ease, transform 0.2s ease !important;
}

.ld-estimation-hero .ld-estimation-location-button::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 50%;
    bottom: calc(100% + 12px);
    transform: translate(-50%, 6px);
    max-width: 260px;
    width: max-content;
    padding: 8px 10px;
    border-radius: 6px;
    background: rgba(11, 47, 87, 0.96);
    color: #FFFFFF;
    font-size: 0.74rem;
    font-weight: 500;
    line-height: 1.35;
    text-align: center;
    white-space: normal;
    z-index: 100050;
}

.ld-estimation-hero .ld-estimation-location-button::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: calc(100% + 6px);
    transform: translate(-50%, 6px);
    border-width: 6px;
    border-style: solid;
    border-color: rgba(11, 47, 87, 0.96) transparent transparent transparent;
    z-index: 100049;
}

.ld-estimation-hero .ld-estimation-location-button:hover::before,
.ld-estimation-hero .ld-estimation-location-button:hover::after,
.ld-estimation-hero .ld-estimation-location-button:focus-visible::before,
.ld-estimation-hero .ld-estimation-location-button:focus-visible::after {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translate(-50%, 0);
}

.ld-estimation-location-button--loading {
    cursor: wait !important;
    opacity: 0.78 !important;
}

.ld-estimation-location-button--loading::before,
.ld-estimation-location-button--loading::after {
    display: none !important;
}

.ld-estimation-location-button--loading .ld-estimation-hero__icon {
    animation: ld-estimation-location-pulse 0.8s ease-in-out infinite;
}

@keyframes ld-estimation-location-pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(0.86);
        opacity: 0.55;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.ld-estimation-hero .ld-estimation-geolocation-message {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 65;
    margin: 0;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.82rem;
    line-height: 1.35;
    box-shadow: 0 8px 20px rgba(17, 34, 68, 0.12);
}

.ld-estimation-hero .ld-estimation-geolocation-message[hidden] {
    display: none !important;
}

.ld-estimation-hero .ld-estimation-geolocation-message--error {
    background: #FFF2F2;
    border: 1px solid #F6C8C8;
    color: #8F2323;
}

.ld-estimation-hero .ld-estimation-geolocation-message--success {
    background: #F0FBF8;
    border: 1px solid #BCE9DC;
    color: #0D5B46;
}

.ld-estimation-hero__icon {
    width: 22px;
    height: 22px;
    fill: var(--ld-estimation-icon-color);
}

/* ---- Bouton CTA — remplit 100% de sa cellule grid ---- */
.ld-estimation-hero .ld-estimation-hero__button,
.ld-estimation-hero .ld-estimation-submit {
    display: flex !important;
    width: 100% !important;
    min-width: 0 !important;
    height: 100% !important;
    min-height: 0 !important;
    align-items: center !important;
    justify-content: center !important;
    border: 0 !important;
    border-radius: 0 var(--ld-estimation-form-radius) var(--ld-estimation-form-radius) 0 !important;
    background: var(--ld-estimation-button-bg) !important;
    color: var(--ld-estimation-button-text) !important;
    font-size: 1.12rem !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    letter-spacing: 0 !important;
    margin: 0 !important;
    padding: 0 24px !important;
    box-shadow: none !important;
    white-space: nowrap !important;
    transition: background-color 0.2s ease !important;
    float: none !important;
    flex: none !important;
    cursor: pointer !important;
    text-decoration: none !important;
}

.ld-estimation-hero .ld-estimation-hero__button:hover,
.ld-estimation-hero .ld-estimation-hero__button:focus,
.ld-estimation-hero .ld-estimation-submit:hover,
.ld-estimation-hero .ld-estimation-submit:focus {
    background: var(--ld-estimation-button-hover) !important;
    color: var(--ld-estimation-button-text) !important;
    outline: none !important;
    box-shadow: none !important;
    text-decoration: none !important;
}

/*
|--------------------------------------------------------------------------
| Suggestions autocomplete (dropdown)
|--------------------------------------------------------------------------
| Positionné en absolu par rapport au wrapper .ld-estimation-address-field.
| Le form a overflow: visible pour ne pas clipper ce dropdown.
| Tous les styles ont !important pour résister aux resets du thème.
|--------------------------------------------------------------------------
*/

.ld-estimation-hero .ld-estimation-suggestions,
.ld-estimation-suggestions--portal {
    z-index: 99999 !important;
    max-height: 320px !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    background: #FFFFFF !important;
    border: 1px solid #DBE3EC !important;
    border-radius: 6px !important;
    box-shadow: 0 10px 28px rgba(17, 34, 68, 0.14) !important;
    display: block !important;
    padding: 0 !important;
    margin: 0 !important;
}

.ld-estimation-hero .ld-estimation-suggestions {
    position: absolute !important;
    top: calc(100% + 6px) !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
}

.ld-estimation-suggestions--portal {
    position: fixed !important;
    right: auto !important;
    width: auto !important;
    max-width: none !important;
}

.ld-estimation-hero .ld-estimation-suggestions[hidden],
.ld-estimation-suggestions--portal[hidden] {
    display: none !important;
}

/* ---- Chaque suggestion = un bouton block pleine largeur ---- */
.ld-estimation-hero .ld-estimation-suggestions .ld-estimation-suggestion-item,
.ld-estimation-suggestions--portal .ld-estimation-suggestion-item {
    display: block !important;
    width: 100% !important;
    border: 0 !important;
    border-bottom: 1px solid #EDF2F7 !important;
    border-radius: 0 !important;
    background: #FFFFFF !important;
    text-align: left !important;
    padding: 12px 16px !important;
    margin: 0 !important;
    cursor: pointer !important;
    float: none !important;
    flex: none !important;
    box-shadow: none !important;
    outline: none !important;
    font-size: inherit !important;
    line-height: normal !important;
    text-decoration: none !important;
    min-height: 0 !important;
    height: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    -webkit-appearance: none !important;
    appearance: none !important;
}

.ld-estimation-hero .ld-estimation-suggestions .ld-estimation-suggestion-item:last-child,
.ld-estimation-suggestions--portal .ld-estimation-suggestion-item:last-child {
    border-bottom: 0 !important;
}

.ld-estimation-hero .ld-estimation-suggestions .ld-estimation-suggestion-item:hover,
.ld-estimation-hero .ld-estimation-suggestions .ld-estimation-suggestion-item:focus,
.ld-estimation-hero .ld-estimation-suggestions .ld-estimation-suggestion-active,
.ld-estimation-suggestions--portal .ld-estimation-suggestion-item:hover,
.ld-estimation-suggestions--portal .ld-estimation-suggestion-item:focus,
.ld-estimation-suggestions--portal .ld-estimation-suggestion-active {
    background: #EEF6FF !important;
}

.ld-estimation-hero .ld-estimation-suggestions .ld-estimation-suggestion-main,
.ld-estimation-suggestions--portal .ld-estimation-suggestion-main {
    display: block !important;
    color: #16365F !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
    font-size: 0.95rem !important;
    margin: 0 !important;
    padding: 0 !important;
    white-space: normal !important;
}

.ld-estimation-hero .ld-estimation-suggestions .ld-estimation-suggestion-meta,
.ld-estimation-suggestions--portal .ld-estimation-suggestion-meta {
    display: block !important;
    margin: 3px 0 0 !important;
    padding: 0 !important;
    color: #6F7C8F !important;
    font-size: 0.82rem !important;
    font-weight: 400 !important;
    line-height: 1.3 !important;
    white-space: normal !important;
}

/*
|--------------------------------------------------------------------------
| Full estimation form card
|--------------------------------------------------------------------------
*/

.ld-estimation-card {
    margin-top: 24px;
    padding: 28px;
    border-radius: 10px;
    background: #FFFFFF;
    box-shadow: 0 12px 28px rgba(17, 34, 68, 0.08);
}

.ld-estimation-card__title {
    margin-bottom: 22px;
    font-size: 1.35rem;
    font-weight: 700;
}

/*
|--------------------------------------------------------------------------
| Responsive
|--------------------------------------------------------------------------
*/

@media (max-width: 1199px) {
    .ld-estimation-hero {
        --ld-estimation-title-size: clamp(2rem, 5vw, 3rem);
        --ld-estimation-subtitle-size: clamp(1rem, 2.2vw, 1.3rem);
        --ld-estimation-form-width: 960px;
        --ld-estimation-button-width: 260px;
    }
}

@media (max-width: 991px) {
    .ld-estimation-hero {
        --ld-estimation-section-padding: 62px 16px 70px;
    }

    .ld-estimation-hero__title {
        max-width: 860px;
    }

    .ld-estimation-hero__subtitle {
        margin-bottom: 32px;
    }

    .ld-estimation-hero .ld-estimation-hero__form {
        display: grid !important;
        grid-template-columns: 1fr !important;
        grid-template-rows: auto !important;
        width: min(100%, 560px) !important;
        max-width: 560px !important;
        height: auto !important;
        overflow: visible !important;
        border: 0 !important;
        border-radius: 6px !important;
        background: transparent !important;
        gap: 0 !important;
    }

    .ld-estimation-hero .ld-estimation-autocomplete,
    .ld-estimation-hero .ld-estimation-address-field {
        width: 100% !important;
        height: var(--ld-estimation-form-height) !important;
        background: #FFFFFF !important;
        border: 1px solid var(--ld-estimation-border-color) !important;
        border-radius: 6px 6px 0 0 !important;
        overflow: visible !important;
    }

    .ld-estimation-hero .ld-estimation-hero__input,
    .ld-estimation-hero .ld-estimation-address-input {
        height: 100% !important;
        border-radius: 6px 6px 0 0 !important;
    }

    .ld-estimation-hero .ld-estimation-hero__icon-wrap,
    .ld-estimation-hero .ld-estimation-location-button {
        display: none !important;
    }

    .ld-estimation-hero .ld-estimation-hero__button,
    .ld-estimation-hero .ld-estimation-submit {
        width: 100% !important;
        min-width: 0 !important;
        height: var(--ld-estimation-form-height) !important;
        border-radius: 0 0 6px 6px !important;
        white-space: normal !important;
    }

    .ld-estimation-hero .ld-estimation-suggestions {
        top: calc(100% + 2px) !important;
    }
}

@media (hover: none) {
    .ld-estimation-hero .ld-estimation-location-button::before,
    .ld-estimation-hero .ld-estimation-location-button::after {
        display: none !important;
    }
}

@media (max-width: 576px) {
    .ld-estimation-hero {
        --ld-estimation-section-padding: 50px 12px 56px;
        --ld-estimation-title-size: clamp(1.85rem, 7vw, 2.25rem);
        --ld-estimation-subtitle-size: clamp(1rem, 4.5vw, 1.15rem);
        --ld-estimation-form-height: 64px;
    }

    .ld-estimation-hero__subtitle {
        margin-bottom: 24px;
    }

    .ld-estimation-hero .ld-estimation-hero__input,
    .ld-estimation-hero .ld-estimation-address-input {
        font-size: 1rem !important;
        padding: 0 16px !important;
    }

    .ld-estimation-hero .ld-estimation-hero__button,
    .ld-estimation-hero .ld-estimation-submit {
        font-size: 1rem !important;
        padding: 0 18px !important;
    }

    .ld-estimation-card {
        margin-top: 14px;
        padding: 20px;
    }
}

/*
|--------------------------------------------------------------------------
| Estimation Wizard (simulateur)
|--------------------------------------------------------------------------
*/
.ld-estimation-wizard {
    background: #f5f8fc;
    padding: 44px 16px 60px;
}

.ld-estimation-wizard__container {
    max-width: 1180px;
    margin: 0 auto;
}

.ld-estimation-wizard__header h1 {
    margin: 0;
    color: #0B2F57;
    font-size: clamp(1.7rem, 3vw, 2.2rem);
    font-weight: 800;
}

.ld-estimation-wizard__header p {
    margin: 8px 0 0;
    color: #35516f;
}

.ld-estimation-progress {
    margin: 26px 0;
}

.ld-estimation-progress__bar {
    width: 100%;
    height: 10px;
    background: #dbe6f2;
    border-radius: 999px;
    overflow: hidden;
}

.ld-estimation-progress__bar span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, #1278C8 0%, #00C7D9 100%);
    transition: width .25s ease;
}

.ld-estimation-progress p {
    margin: 8px 0 0;
    font-size: .92rem;
    color: #33577f;
}

.ld-estimation-wizard__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 24px;
    align-items: start;
}

.ld-estimation-wizard__form,
.ld-estimation-wizard__aside,
.ld-estimation-wizard__success {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(11, 47, 87, .08);
}

.ld-estimation-wizard__form {
    padding: 26px;
}

.ld-estimation-wizard__success {
    padding: 34px;
}

.ld-estimation-wizard .ld-step {
    display: none !important;
}

.ld-estimation-wizard .ld-step.is-active {
    display: block !important;
}

.ld-property-field--hidden {
    display: none !important;
}

.ld-step h2 {
    margin: 0 0 16px;
    color: #0B2F57;
    font-size: 1.42rem;
}

.ld-step p {
    color: #35516f;
}

.ld-step label {
    display: block;
    font-weight: 600;
    color: #123a66;
    margin: 14px 0 8px;
}

.ld-step input[type="text"],
.ld-step input[type="email"],
.ld-step input[type="number"],
.ld-step select,
.ld-step textarea {
    width: 100%;
    border: 1px solid #c7d8ea;
    border-radius: 10px;
    padding: 10px 12px;
    min-height: 44px;
    color: #123a66;
    background: #fff;
}

.ld-estimation-wizard input[type="number"]::-webkit-outer-spin-button,
.ld-estimation-wizard input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.ld-estimation-wizard input[type="number"] {
    -moz-appearance: textfield;
    appearance: textfield;
}

.ld-email-check-message {
    margin: 8px 0 0;
    padding: 8px 10px;
    border-radius: 8px;
    font-size: .85rem;
    line-height: 1.35;
}

.ld-email-check-message[hidden] {
    display: none !important;
}

.ld-email-check-message--success {
    background: #eefaf4;
    border: 1px solid #c0e9d1;
    color: #116645;
}

.ld-email-check-message--info {
    background: #f0f6ff;
    border: 1px solid #c7dcff;
    color: #1a4d9b;
}

.ld-email-check-message--warning {
    background: #fff8e9;
    border: 1px solid #f7dfab;
    color: #8b5a00;
}

.ld-email-check-message--error {
    background: #fff3f3;
    border: 1px solid #f1c8c8;
    color: #922d2d;
}

.ld-estimation-btn[disabled] {
    opacity: .45;
    cursor: not-allowed;
    pointer-events: none;
}

.ld-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.ld-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.ld-choice-card {
    display: block;
    border: 1px solid #cde0f2;
    border-radius: 12px;
    padding: 16px 12px;
    background: #fff;
    cursor: pointer;
    transition: all .2s ease;
}

.ld-choice-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.ld-choice-card:has(input:checked) {
    border-color: #1278C8;
    box-shadow: 0 0 0 2px rgba(18, 120, 200, .15);
    background: #f2f9ff;
}

.ld-checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.ld-checkbox-grid label,
.ld-checkbox-list label,
.ld-inline-choices label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.ld-stepper-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 14px 0;
}

.ld-stepper {
    border: 1px solid #d6e3f0;
    border-radius: 10px;
    padding: 10px;
}

.ld-stepper__controls {
    display: flex;
    gap: 8px;
}

.ld-stepper__controls button {
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 8px;
    background: #0B2F57;
    color: #fff;
    font-weight: 700;
}

.ld-stepper__controls input {
    text-align: center;
}

.ld-inline-choices {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ld-actions {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 22px;
}

.ld-estimation-btn {
    border: 0;
    background: #1278C8;
    color: #fff;
    border-radius: 10px;
    min-height: 44px;
    padding: 0 18px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.ld-estimation-btn:hover {
    background: #0f65aa;
    color: #fff;
}

.ld-estimation-btn--secondary {
    background: #e8eef7;
    color: #0B2F57;
}

.ld-estimation-btn--secondary:hover {
    background: #d8e3f0;
    color: #0B2F57;
}

.ld-estimation-wizard__aside {
    padding: 20px;
    position: sticky;
    top: 30px;
}

.ld-estimation-wizard__aside h3,
.ld-estimation-wizard__aside h4 {
    color: #0B2F57;
}

.ld-estimation-wizard__aside p {
    color: #35516f;
}

.ld-address-box {
    background: #f6f9fd;
    border: 1px solid #dce8f4;
    border-radius: 12px;
    padding: 12px;
}

.ld-loading-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.ld-loading-list li {
    border: 1px solid #d8e6f3;
    border-radius: 10px;
    padding: 10px 12px;
    color: #35516f;
}

.ld-loading-list li.is-done {
    border-color: #78d7b1;
    background: #ebfaf3;
    color: #0f6b4a;
}

.ld-loading-list li.is-done::before {
    content: '✓ ';
    font-weight: 700;
}

.ld-reassurance {
    margin: 12px 0 0;
    padding-left: 18px;
    color: #35516f;
}

@media (max-width: 991px) {
    .ld-estimation-wizard__grid {
        grid-template-columns: 1fr;
    }

    .ld-estimation-wizard__aside {
        position: static;
    }

    .ld-card-grid,
    .ld-grid-2,
    .ld-stepper-grid,
    .ld-checkbox-grid {
        grid-template-columns: 1fr;
    }
}
