.ec {
    --euro-primary-color: #2563eb;
    --ec-brand: var(--euro-primary-color);
    --ec-ink: #1e293b;
    --ec-muted: #475569;
    --ec-line: #cbd5e1;
    --ec-soft: #f8fafc;
    --ec-surface: #ffffff;
    --ec-on-primary: #ffffff;
    --ec-ok: #0f7b4c;
    --ec-ok-bg: #e9f8f1;
    --ec-err: #b42318;
    --ec-err-bg: #fdecec;
    --ec-shadow: 0 18px 50px rgba(15, 23, 42, 0.1);
    --ec-radius: 22px;
    max-width: 760px;
    margin: 0 auto;
    color: var(--ec-ink);
    font-family: "Segoe UI", system-ui, sans-serif;
}

.ec *,
.ec *::before,
.ec *::after {
    box-sizing: border-box;
}

.ec-shell {
    background: var(--ec-surface);
    border: 1px solid var(--ec-line);
    border-radius: var(--ec-radius);
    box-shadow: var(--ec-shadow);
    padding: 28px;
}

.ec-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
}

.ec-steps li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--ec-muted);
    font-size: 13px;
    font-weight: 600;
}

.ec-steps span {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    display: inline-grid;
    place-items: center;
    background: var(--ec-soft);
    color: var(--ec-muted);
    font-size: 12px;
    border: 1px solid var(--ec-line);
}

.ec-steps .is-active,
.ec-steps .is-done {
    color: var(--ec-ink);
}

.ec-steps .is-active span,
.ec-steps .is-done span {
    background: var(--ec-brand);
    border-color: var(--ec-brand);
    color: var(--ec-on-primary);
}

.ec-panel {
    animation: ec-in 0.28s ease;
}

.ec-title {
    margin: 0 0 6px;
    font-size: 26px;
    letter-spacing: -0.03em;
    color: var(--ec-ink);
}

.ec-lead {
    margin: 0 0 20px;
    color: var(--ec-muted);
}

.ec-chip {
    display: inline-flex;
    margin: 0 0 20px;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--ec-soft);
    color: var(--ec-ink);
    border: 1px solid var(--ec-line);
    font-weight: 700;
    font-size: 13px;
}

.ec-panel-head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.ec-panel-head__main {
    width: 100%;
}

.ec-panel-head__main .ec-title {
    margin-bottom: 8px;
}

.ec-panel-head__main .ec-chip {
    margin-bottom: 0;
}

.ec-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 0;
    padding: 6px 12px;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    background: #f8fafc;
    color: #475569;
    font: inherit;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.2;
    cursor: pointer;
    box-shadow: none;
    outline: none;
    text-decoration: none;
    transition: all 0.2s ease;
}

.ec-back__icon {
    font-size: 14px;
    line-height: 1;
}

.ec-back:hover,
.ec-back:focus-visible {
    background: #f1f5f9;
    border-color: #cbd5e1;
    color: #0f172a;
    outline: none;
    box-shadow: none;
}

.ec-sedes {
    display: grid;
    gap: 12px;
}

.ec-card {
    display: grid;
    grid-template-columns: 48px 1fr auto;
    gap: 14px;
    align-items: center;
    width: 100%;
    text-align: left;
    padding: 16px;
    border: 1px solid var(--ec-line);
    border-radius: 18px;
    background: var(--ec-surface);
    color: var(--ec-ink);
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.ec-card:hover,
.ec-card:focus-visible,
.ec-card.is-active {
    transform: translateY(-2px);
    border-color: var(--ec-brand);
    background: var(--ec-brand);
    color: var(--ec-on-primary);
    outline: none;
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.18);
}

.ec-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: var(--ec-soft);
    color: var(--ec-brand);
    border: 1px solid var(--ec-line);
}

.ec-card:hover .ec-card__icon,
.ec-card:focus-visible .ec-card__icon,
.ec-card.is-active .ec-card__icon {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.35);
    color: var(--ec-on-primary);
}

.ec-card__icon svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.ec-card__body {
    display: grid;
    gap: 2px;
}

.ec-card__body strong {
    font-size: 16px;
    color: inherit;
}

.ec-card__body em {
    font-style: normal;
    color: var(--ec-muted);
    font-size: 13px;
}

.ec-card:hover .ec-card__body em,
.ec-card:focus-visible .ec-card__body em,
.ec-card.is-active .ec-card__body em {
    color: rgba(255, 255, 255, 0.88);
}

.ec-card__go {
    color: var(--ec-brand);
    font-size: 20px;
}

.ec-card:hover .ec-card__go,
.ec-card:focus-visible .ec-card__go,
.ec-card.is-active .ec-card__go {
    color: var(--ec-on-primary);
}

.ec-cal {
    margin: 0 0 22px;
}

.ec-cal__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 12px;
    color: var(--ec-ink);
}

.ec-cal__nav,
.euro-cal-nav {
    display: inline-grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--ec-line);
    border-radius: 12px;
    background: #ffffff;
    color: #1e293b;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
}

.euro-cal-nav__icon {
    display: block;
    color: #1e293b;
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
}

.ec-cal__nav:hover,
.euro-cal-nav:hover {
    border-color: var(--ec-brand);
    background: #f1f5f9;
}

.ec-cal__nav:hover .euro-cal-nav__icon,
.euro-cal-nav:hover .euro-cal-nav__icon {
    color: #1e293b;
}

.ec-cal__grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
}

.ec-cal__dow,
.ec-cal__pad {
    text-align: center;
    color: var(--ec-muted);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 0;
}

.ec-day {
    height: 42px;
    border: 1px solid var(--ec-line);
    border-radius: 12px;
    background: var(--ec-surface);
    color: var(--ec-ink);
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.ec-day.is-today {
    box-shadow: inset 0 0 0 1px var(--ec-brand);
}

.ec-day.is-selected,
.ec-day:hover:not(:disabled) {
    background: var(--ec-brand);
    border-color: var(--ec-brand);
    color: var(--ec-on-primary);
}

.ec-day.is-disabled,
.ec-day:disabled {
    background: transparent;
    border-color: transparent;
    color: #94a3b8;
    cursor: not-allowed;
}

.ec-slots {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    min-height: 48px;
}

.ec-pill {
    border: 1px solid var(--ec-line);
    background: var(--ec-surface);
    color: var(--ec-ink);
    border-radius: 999px;
    padding: 10px 14px;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    transition: 0.16s ease;
}

.ec-pill:hover:not(.is-selected):not(.is-active):not(.active):not(.selected) {
    background: #f1f5f9;
    border-color: #94a3b8;
    color: #0f172a;
}

.ec-pill.is-selected,
.ec-pill.is-active,
.ec-pill.active,
.ec-pill.selected {
    background: var(--ec-brand);
    border-color: var(--ec-brand);
    color: var(--ec-on-primary);
}

.ec-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 0 0 22px;
}

.ec-summary__item {
    background: var(--ec-soft);
    border: 1px solid var(--ec-line);
    border-radius: 16px;
    padding: 12px 14px;
}

.ec-summary__item span {
    display: block;
    color: var(--ec-muted);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 4px;
}

.ec-summary__item strong {
    color: var(--ec-ink);
}

.ec-form {
    display: grid;
    gap: 14px;
}

.ec-field {
    position: relative;
}

.ec-field input {
    width: 100%;
    border: 1px solid var(--ec-line);
    border-radius: 14px;
    padding: 20px 14px 8px;
    font: inherit;
    background: var(--ec-surface);
    color: var(--ec-ink);
}

.ec-field input:focus {
    outline: none;
    border-color: var(--ec-brand);
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--ec-brand) 18%, transparent);
}

.ec-field label {
    position: absolute;
    left: 14px;
    top: 14px;
    color: var(--ec-muted);
    pointer-events: none;
    transition: 0.16s ease;
}

.ec-field input:focus + label,
.ec-field input:not(:placeholder-shown) + label {
    top: 6px;
    font-size: 11px;
    font-weight: 700;
    color: var(--ec-brand);
}

.ec-submit {
    border: 0;
    border-radius: 14px;
    background: var(--ec-brand);
    color: var(--ec-on-primary);
    padding: 14px 18px;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.ec-submit:hover:not(:disabled) {
    filter: brightness(0.95);
}

.ec-submit:disabled {
    opacity: 0.6;
    cursor: wait;
}

.ec-submit--ghost {
    background: var(--ec-soft);
    color: var(--ec-ink);
    border: 1px solid var(--ec-line);
}

.ec-submit--ghost:hover:not(:disabled) {
    border-color: var(--ec-brand);
    color: var(--ec-brand);
    filter: none;
}

.ec-empty {
    width: 100%;
    border-radius: 14px;
    padding: 14px 16px;
    color: var(--ec-muted);
    background: var(--ec-soft);
    border: 1px solid var(--ec-line);
}

.ec-alert {
    width: 100%;
    border-radius: 14px;
    padding: 14px 16px;
    font-weight: 600;
}

.ec-alert.is-ok {
    color: var(--ec-ok);
    background: var(--ec-ok-bg);
    border: 1px solid #b7ebcf;
}

.ec-alert.is-error {
    color: var(--ec-err);
    background: var(--ec-err-bg);
    border: 1px solid #f5c2c0;
}

.ec-success {
    text-align: center;
    padding: 18px 8px 8px;
}

.euro-citas-wrapper .euro-spam-notice-box {
    display: flex !important;
    align-items: flex-start !important;
    gap: 12px !important;
    margin: 14px auto 0 !important;
    padding: 12px 16px !important;
    max-width: 420px !important;
    background-color: #fefce8 !important;
    border: 1px solid #fef08a !important;
    border-radius: 8px !important;
    color: #854d0e !important;
    font-size: 13.5px !important;
    line-height: 1.45 !important;
    text-align: left !important;
    box-sizing: border-box !important;
}

.euro-citas-wrapper .euro-spam-notice-box strong {
    color: #854d0e !important;
    font-weight: 700 !important;
}

.ec-success__icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 16px;
}

.ec-success__icon svg {
    width: 72px;
    height: 72px;
}

.ec-success__icon circle {
    fill: none;
    stroke: var(--ec-ok);
    stroke-width: 2;
}

.ec-success__icon path {
    fill: none;
    stroke: var(--ec-ok);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ec-banner {
    position: fixed;
    z-index: 99999;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    max-width: 420px;
    padding: 14px 18px;
    border-radius: 14px;
    box-shadow: var(--ec-shadow);
    font: 15px/1.4 "Segoe UI", system-ui, sans-serif;
}

.ec-banner--ok {
    background: var(--ec-ok-bg);
    color: var(--ec-ok);
}

.ec-banner--error {
    background: var(--ec-err-bg);
    color: var(--ec-err);
}

@keyframes ec-in {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

/* Contraste forzado frente a estilos globales del tema */
.euro-citas-wrapper button.ec-pill,
.euro-citas-wrapper .euro-slot-btn,
.euro-citas-wrapper .euro-time-pill,
.euro-citas-wrapper button.euro-slot {
    background-color: #ffffff !important;
    color: #0f172a !important;
    border: 1px solid #cbd5e1 !important;
    font-weight: 600 !important;
    -webkit-text-fill-color: #0f172a !important;
}

.euro-citas-wrapper button.ec-pill:hover:not(.active):not(.selected):not(.is-active):not(.is-selected),
.euro-citas-wrapper .euro-slot-btn:hover:not(.active):not(.selected),
.euro-citas-wrapper button.euro-slot:hover:not(.active):not(.selected) {
    background-color: #f1f5f9 !important;
    color: #0f172a !important;
    border-color: #94a3b8 !important;
    -webkit-text-fill-color: #0f172a !important;
}

.euro-citas-wrapper button.ec-pill.is-selected,
.euro-citas-wrapper button.ec-pill.is-active,
.euro-citas-wrapper .euro-slot-btn.active,
.euro-citas-wrapper .euro-slot-btn.selected,
.euro-citas-wrapper button.euro-slot.active,
.euro-citas-wrapper button.euro-slot.selected {
    background-color: var(--euro-primary-color, #2563eb) !important;
    color: #ffffff !important;
    border-color: var(--euro-primary-color, #2563eb) !important;
    -webkit-text-fill-color: #ffffff !important;
}

.euro-citas-wrapper .ec-cal__nav,
.euro-citas-wrapper .euro-cal-nav {
    background-color: #ffffff !important;
    border: 1px solid #cbd5e1 !important;
    color: #1e293b !important;
}

.euro-citas-wrapper .euro-cal-nav__icon {
    color: #1e293b !important;
    -webkit-text-fill-color: #1e293b !important;
}

.euro-citas-wrapper button.ec-card,
.euro-citas-wrapper .euro-sede-card {
    background-color: #ffffff !important;
    color: #0f172a !important;
    border: 1px solid #cbd5e1 !important;
}

.euro-citas-wrapper button.ec-card .ec-card__body strong,
.euro-citas-wrapper button.ec-card .ec-card__body em,
.euro-citas-wrapper .euro-sede-card .ec-card__body strong,
.euro-citas-wrapper .euro-sede-card .ec-card__body em {
    color: #0f172a !important;
    -webkit-text-fill-color: #0f172a !important;
}

.euro-citas-wrapper button.ec-card .ec-card__body em,
.euro-citas-wrapper .euro-sede-card .ec-card__body em {
    color: #475569 !important;
    -webkit-text-fill-color: #475569 !important;
}

.euro-citas-wrapper button.ec-card:hover,
.euro-citas-wrapper button.ec-card:focus-visible,
.euro-citas-wrapper button.ec-card.is-active,
.euro-citas-wrapper .euro-sede-card:hover,
.euro-citas-wrapper .euro-sede-card.is-active {
    background-color: var(--euro-primary-color, #2563eb) !important;
    color: #ffffff !important;
    border-color: var(--euro-primary-color, #2563eb) !important;
}

.euro-citas-wrapper button.ec-card:hover .ec-card__body strong,
.euro-citas-wrapper button.ec-card:hover .ec-card__body em,
.euro-citas-wrapper button.ec-card.is-active .ec-card__body strong,
.euro-citas-wrapper button.ec-card.is-active .ec-card__body em,
.euro-citas-wrapper .euro-sede-card:hover .ec-card__body strong,
.euro-citas-wrapper .euro-sede-card:hover .ec-card__body em,
.euro-citas-wrapper .euro-sede-card.is-active .ec-card__body strong,
.euro-citas-wrapper .euro-sede-card.is-active .ec-card__body em {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}

.euro-citas-wrapper .ec-chip {
    color: #0f172a !important;
    background: #f8fafc !important;
    border: 1px solid #cbd5e1 !important;
}

.euro-citas-wrapper button.ec-back {
    background: #f8fafc !important;
    color: #475569 !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: none !important;
    outline: none !important;
    text-decoration: none !important;
    -webkit-text-fill-color: #475569 !important;
}

.euro-citas-wrapper button.ec-back:hover,
.euro-citas-wrapper button.ec-back:focus-visible {
    background: #f1f5f9 !important;
    border-color: #cbd5e1 !important;
    color: #0f172a !important;
    -webkit-text-fill-color: #0f172a !important;
}

.euro-citas-wrapper button.ec-day:not(.is-disabled):not(:disabled) {
    background-color: #ffffff !important;
    color: #0f172a !important;
    border: 1px solid #cbd5e1 !important;
}

.euro-citas-wrapper button.ec-day.is-selected,
.euro-citas-wrapper button.ec-day:hover:not(:disabled):not(.is-disabled) {
    background-color: var(--euro-primary-color, #2563eb) !important;
    color: #ffffff !important;
    border-color: var(--euro-primary-color, #2563eb) !important;
}

/* Pantalla final: "Pedir otra cita" (evita estilos agresivos del tema) */
.euro-citas-wrapper .euro-btn-reset,
.euro-citas-wrapper button[data-action="reset"],
.euro-citas-wrapper button[data-ec-reset],
.euro-citas-wrapper .ec-success .ec-submit--ghost,
.euro-citas-wrapper .euro-step-success button,
.euro-citas-wrapper .ec-success button.ec-submit {
    background-color: var(--euro-primary-color, #2563eb) !important;
    color: #ffffff !important;
    border: none !important;
    padding: 12px 24px !important;
    border-radius: 8px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.2) !important;
    transition: all 0.2s ease !important;
    outline: none !important;
    display: inline-block !important;
    margin-top: 16px !important;
    -webkit-text-fill-color: #ffffff !important;
    text-decoration: none !important;
}

.euro-citas-wrapper .euro-btn-reset:hover,
.euro-citas-wrapper button[data-action="reset"]:hover,
.euro-citas-wrapper button[data-ec-reset]:hover,
.euro-citas-wrapper .ec-success .ec-submit--ghost:hover,
.euro-citas-wrapper .euro-step-success button:hover,
.euro-citas-wrapper .ec-success button.ec-submit:hover {
    filter: brightness(0.9) !important;
    transform: translateY(-1px) !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}

/* Gestión de cita por token */
.ec-manage .ec-manage-summary__list {
    display: grid;
    gap: 12px;
    margin: 20px 0 24px;
    padding: 16px 18px;
    background: var(--ec-soft);
    border-radius: 14px;
    border: 1px solid var(--ec-line);
}

.ec-manage .ec-manage-summary__list div {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: baseline;
}

.ec-manage .ec-manage-summary__list dt {
    margin: 0;
    font-weight: 600;
    color: var(--ec-muted);
}

.ec-manage .ec-manage-summary__list dd {
    margin: 0;
    font-weight: 600;
    text-align: right;
}

.ec-manage-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.ec-manage-actions .ec-submit--ghost {
    background: transparent;
    color: var(--ec-err);
    border: 1px solid var(--ec-line);
    box-shadow: none;
}

.ec-manage-reschedule {
    margin-top: 20px;
}

.ec-manage--error .ec-alert {
    margin-top: 16px;
}

/* FAB de reserva (estilo WhatsApp) — fuera de .ec para evitar herencia del tema */
#euro-fab-booking.euro-fab-container,
.euro-fab-container {
    --fab-color: #0066b2;
    --fab-size: 58px;
    --fab-shadow: 0 8px 24px rgba(15, 23, 42, 0.28);
    position: fixed !important;
    z-index: 999999 !important;
    bottom: 22px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    background: transparent !important;
    box-sizing: border-box !important;
    font-family: "Segoe UI", system-ui, -apple-system, sans-serif !important;
    line-height: 1.2 !important;
    pointer-events: none;
}

.euro-fab-container--bottom-right {
    right: 22px !important;
    left: auto !important;
}

.euro-fab-container--bottom-left {
    left: 22px !important;
    right: auto !important;
}

.euro-fab-container .euro-fab-btn {
    pointer-events: auto;
    display: inline-flex !important;
    flex-direction: row;
    align-items: center !important;
    justify-content: flex-start;
    box-sizing: border-box !important;
    width: var(--fab-size);
    height: var(--fab-size);
    min-width: var(--fab-size);
    max-width: var(--fab-size);
    padding: 0;
    margin: 0;
    overflow: hidden;
    border: none !important;
    border-radius: 999px !important;
    background: var(--fab-color) !important;
    color: #ffffff !important;
    text-decoration: none !important;
    box-shadow: var(--fab-shadow);
    cursor: pointer;
    transition:
        max-width 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        width 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.25s ease,
        transform 0.25s ease;
    -webkit-tap-highlight-color: transparent;
}

.euro-fab-container--bottom-left .euro-fab-btn {
    flex-direction: row-reverse;
}

.euro-fab-container .euro-fab-icon {
    flex: 0 0 var(--fab-size);
    width: var(--fab-size);
    height: var(--fab-size);
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #ffffff !important;
}

.euro-fab-container .euro-fab-icon svg {
    display: block;
    width: 24px;
    height: 24px;
}

.euro-fab-container .euro-fab-label {
    display: inline-block;
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    white-space: nowrap;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: #ffffff !important;
    padding: 0;
    transition:
        max-width 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.25s ease,
        padding 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.euro-fab-container--bottom-right .euro-fab-label {
    padding-right: 0;
    padding-left: 0;
}

.euro-fab-container--bottom-left .euro-fab-label {
    padding-left: 0;
    padding-right: 0;
}

@media (hover: hover) and (pointer: fine) {
    .euro-fab-container .euro-fab-btn:hover,
    .euro-fab-container .euro-fab-btn:focus-visible {
        max-width: min(320px, calc(100vw - 44px));
        width: auto;
        transform: translateY(-2px);
        box-shadow: 0 12px 32px rgba(15, 23, 42, 0.32);
    }

    .euro-fab-container--bottom-right .euro-fab-btn:hover .euro-fab-label,
    .euro-fab-container--bottom-right .euro-fab-btn:focus-visible .euro-fab-label {
        max-width: 240px;
        opacity: 1;
        padding-right: 20px;
    }

    .euro-fab-container--bottom-left .euro-fab-btn:hover .euro-fab-label,
    .euro-fab-container--bottom-left .euro-fab-btn:focus-visible .euro-fab-label {
        max-width: 240px;
        opacity: 1;
        padding-left: 20px;
    }
}

@media (max-width: 720px) {
    .euro-fab-container {
        --fab-size: 54px;
        bottom: 16px !important;
    }

    .euro-fab-container--bottom-right {
        right: 16px !important;
    }

    .euro-fab-container--bottom-left {
        left: 16px !important;
    }
}

@media (max-width: 720px) {
    .ec-shell {
        padding: 18px;
        border-radius: 18px;
    }

    .ec-steps {
        font-size: 0;
        gap: 10px;
    }

    .ec-steps li {
        justify-content: center;
    }

    .ec-summary {
        grid-template-columns: 1fr;
    }

    .ec-title {
        font-size: 22px;
    }
}
