.map-offerte-cta,
.map-offerte-submit {
    appearance: none;
    border: 0;
    cursor: pointer;
    font-family: Roboto, "Segoe UI", sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff;
    background: #d30f7f;
    border-radius: 999px;
    padding: 14px 22px;
    width: 100%;
    transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.map-offerte-cta:hover,
.map-offerte-submit:hover,
.map-offerte-cta:focus-visible,
.map-offerte-submit:focus-visible {
    background: #b80d6d;
    box-shadow: 0 8px 22px rgba(211, 15, 127, 0.28);
}

.map-offerte-cta:active,
.map-offerte-submit:active {
    transform: translateY(1px);
}

.map-offerte-overlay {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(32, 10, 24, 0.58);
    backdrop-filter: blur(6px);
}

.map-offerte-overlay[hidden] {
    display: none;
}

.map-offerte-modal {
    position: relative;
    width: min(640px, 100%);
    max-height: calc(100vh - 40px);
    overflow: auto;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(32, 10, 24, 0.28);
    padding: 28px 24px 22px;
}

.map-offerte-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    background: #fffaf2;
    color: #2d3748;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.map-offerte-close:hover,
.map-offerte-close:focus-visible {
    background: #eadfce;
}

.map-offerte-form {
    display: grid;
    gap: 16px;
}

.map-offerte-form.is-inline {
    max-width: 720px;
    margin: 24px auto;
    padding: 28px 24px;
    background: #fff;
    border: 1px solid #eadfce;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(32, 10, 24, 0.06);
}

.map-offerte-kicker {
    margin: 0 0 6px;
    color: #d30f7f;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.map-offerte-intro h2 {
    margin: 0 0 8px;
    color: #2d3748;
    font-size: 28px;
    line-height: 1.2;
}

.map-offerte-intro p {
    margin: 0;
    color: #4a5568;
    font-size: 15px;
    line-height: 1.5;
}

.map-offerte-workshops {
    border: 0;
    margin: 0;
    padding: 0;
}

.map-offerte-workshops legend {
    margin-bottom: 8px;
    font-weight: 700;
    color: #2d3748;
}

.map-offerte-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.map-offerte-chip {
    margin: 0;
}

.map-offerte-chip input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.map-offerte-chip span {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid #eadfce;
    background: #fffaf2;
    color: #2d3748;
    font-size: 14px;
    cursor: pointer;
}

.map-offerte-chip input:focus-visible + span,
.map-offerte-chip span:hover {
    border-color: #d30f7f;
}

.map-offerte-chip input:checked + span {
    background: #d30f7f;
    border-color: #d30f7f;
    color: #fff;
}

.map-offerte-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.map-offerte-form label,
.map-offerte-full {
    display: grid;
    gap: 6px;
    margin: 0;
    color: #2d3748;
    font-size: 14px;
    font-weight: 700;
}

.map-offerte-form input,
.map-offerte-form textarea {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #eadfce;
    border-radius: 12px;
    background: #fffaf2;
    color: #2d3748;
    padding: 12px 14px;
    font: 400 15px/1.4 Roboto, "Segoe UI", sans-serif;
}

.map-offerte-form input:focus,
.map-offerte-form textarea:focus {
    outline: 2px solid #d30f7f;
    outline-offset: 1px;
    background: #fff;
}

.map-offerte-hp {
    position: absolute;
    left: -9999px;
    height: 0;
    overflow: hidden;
}

.map-offerte-status {
    min-height: 1.2em;
    margin: 0;
    color: #b80d6d;
    font-size: 14px;
}

.map-offerte-form.is-success .map-offerte-status {
    color: #2f6f4e;
    background: #eef7f1;
    border-radius: 12px;
    padding: 12px 14px;
}

.map-offerte-note {
    margin: 0;
    color: #718096;
    font-size: 12px;
    font-weight: 400;
}

.map-offerte-submit[disabled] {
    opacity: 0.65;
    cursor: wait;
}

@media (max-width: 640px) {
    .map-offerte-modal {
        padding: 24px 16px 18px;
        border-radius: 18px;
    }

    .map-offerte-grid {
        grid-template-columns: 1fr;
    }

    .map-offerte-intro h2 {
        font-size: 24px;
        padding-right: 36px;
    }
}
