.start-central {
    --central-blue: #1288f6;
    --central-blue-dark: #0869ef;
    --central-ink: #000000;
    --central-muted: #000000;
    --central-border: rgba(12, 29, 53, .1);
    --central-sidebar-width: 252px;
    --central-shell-gap: clamp(18px, 2vw, 34px);
    --central-soft-surface: #f1f8ff;
    --central-hover-surface: #ffffff;
    --central-card-shadow: 0 4px 14px rgba(15, 32, 55, .045);
    --central-card-shadow-hover: 0 12px 28px rgba(15, 32, 55, .10);
    --central-action-shadow: 0 3px 8px rgba(15, 32, 55, .06);
    width: calc(100% - var(--start-container-gutter, clamp(32px, 6vw, 96px)));
    max-width: none;
    min-height: calc(100dvh - var(--start-fixed-header-offset, var(--start-blur-top, var(--start-header-height, 84px))));
    display: grid;
    grid-template-columns: var(--central-sidebar-width) minmax(0, 1fr);
    gap: var(--central-shell-gap);
    margin: 0 auto;
    overflow: visible;
    color: var(--central-ink);
    background: transparent;
    font-family: var(--start-font-family, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
    align-items: start;
}

.start-central,
.start-central * {
    box-sizing: border-box;
}


body.start-central-active #main-content,
body:has(.start-central) #main-content {
    width: 100% !important;
    display: block !important;
    padding-top: 0 !important;
}


.start-central a {
    text-decoration: none;
}


.start-central .btn-sm {
    min-height: 34px;
    padding: 6px 12px;
    font-size: 12px;
}

.start-central .btn svg {
    width: 17px;
    height: 17px;
    flex: 0 0 17px;
}



.start-central-sidebar {
    position: sticky;
    top: var(--start-central-sticky-top, var(--start-blur-top, var(--start-header-height, 84px)));
    z-index: 8;
    align-self: start;
    width: var(--central-sidebar-width);
    min-width: 0;
    height: fit-content;
    min-height: 0;
    max-height: none;
    display: flex;
    flex-direction: column;
    padding: 22px 14px 24px 0;
    overflow: visible;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.start-central-nav {
    position: static;
    top: auto;
    display: grid;
    gap: 22px;
    max-height: none;
    padding-left: 0;
    overflow-x: visible;
    overflow-y: visible;
    overscroll-behavior: auto;
    scrollbar-width: auto;
}

.start-central-nav__section {
    display: grid;
    gap: 8px;
}

.start-central-nav__label {
    display: block;
    padding: 0 10px;
    color: var(--central-menu-category-color, #000000);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .02em;
}

.start-central-nav__items {
    display: grid;
    gap: 4px;
}

.start-central-nav__link {
    min-height: 42px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 9px 10px;
    border-radius: 10px;
    color: var(--central-menu-text, #000000);
    background: var(--central-menu-background, transparent);
    font-size: 14px;
    font-weight: 760;
    transition: background .16s ease, color .16s ease;
}

.start-central-nav__link:hover,
.start-central-nav__link:focus-visible {
    color: var(--central-menu-hover-text, var(--central-ink));
    background: var(--central-menu-hover-background, rgba(18, 136, 246, .08));
    outline: 0;
}

.start-central-nav__link.is-active {
    color: var(--central-menu-active-text, var(--central-blue-dark));
    background: var(--central-menu-active-background, rgba(18, 136, 246, .11));
}

.start-central-nav__icon {
    width: 22px;
    height: 22px;
    display: inline-grid;
    place-items: center;
    flex: 0 0 22px;
    color: var(--central-menu-icon, currentColor);
}

.start-central-nav__link:hover .start-central-nav__icon,
.start-central-nav__link:focus-visible .start-central-nav__icon {
    color: var(--central-menu-hover-icon, currentColor);
}

.start-central-nav__link.is-active .start-central-nav__icon {
    color: var(--central-menu-active-icon, currentColor);
}

.start-central-nav__icon svg {
    width: 19px;
    height: 19px;
    display: block;
}

.start-central-main {
    grid-column: 2;
    min-width: 0;
    min-height: 0;
    display: block;
    padding: 35px 0 clamp(72px, 8vw, 112px);
}

.start-central-content {
    min-height: calc(100dvh - var(--start-fixed-header-offset, var(--start-blur-top, var(--start-header-height, 84px))) - 96px);
    display: block;
    padding: 0;
}

.start-central-content > * + * {
    margin-top: 18px;
}

.start-central-search-state {
    margin: 42px 0 0;
    padding: 14px 16px;
    border: 1px dashed rgba(18, 136, 246, .28);
    border-radius: 16px;
    color: var(--central-muted);
    background: rgba(18, 136, 246, .045);
    font-size: 13px;
    font-weight: 760;
}


.start-central.is-searching .start-central-hero {
    display: none;
}

.start-central-hero h2 {
    max-width: 680px;
    margin: 0;
    color: var(--central-ink);
    font-size: clamp(20px, 1.65vw, 28px);
    font-weight: 900;
    letter-spacing: -.04em;
    line-height: 1.08;
}

.start-central-hero p {
    max-width: 620px;
    margin: 5px 0 0;
    color: var(--central-muted);
    font-size: 12px;
    font-weight: 650;
    line-height: 1.35;
}

.start-central-hero__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.start-central-metrics {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    align-items: start;
    isolation: isolate;
    overflow: visible;
}

.start-central.is-searching .start-central-metrics {
    grid-template-columns: repeat(auto-fit, minmax(260px, 320px));
    justify-content: start;
    align-items: start;
}

.start-central-metric {
    position: relative;
    z-index: 0;
    min-width: 0;
    min-height: 164px;
    height: auto;
    align-self: start;
    display: grid;
    align-content: start;
    gap: 8px;
    padding: 20px;
    border: 0;
    border-radius: 24px;
    color: var(--central-ink);
    background: #ffffff;
    box-shadow: var(--central-card-shadow);
    transform: translate3d(0, 0, 0);
    transition:
        background-color .18s ease,
        box-shadow .22s cubic-bezier(.22, 1, .36, 1),
        transform .22s cubic-bezier(.22, 1, .36, 1);
}

.start-central-metric__icon {
    width: 38px;
    height: 38px;
    display: inline-grid;
    place-items: center;
    border-radius: 14px;
    color: var(--central-blue);
    background: rgba(18, 136, 246, .1);
}

.start-central-metric__icon svg {
    width: 21px;
    height: 21px;
}

.start-central-metric__label {
    margin-top: 0;
    color: #000000;
    font-size: 13px;
    font-weight: 850;
}

.start-central-metric__value {
    color: var(--central-ink);
    font-size: clamp(34px, 3.5vw, 52px);
    font-weight: 900;
    letter-spacing: -.06em;
    line-height: .9;
    padding: 5px 0;
}


.start-central-metric--green .start-central-metric__icon { background: rgba(37, 197, 104, .12); color: #0f9f56; }
.start-central-metric--amber .start-central-metric__icon { background: rgba(245, 158, 11, .13); color: #c77700; }

@media (min-width: 992px) {
    .start-central {
        align-items: start;
    }

    .start-central-sidebar {
        align-self: start;
    }

    .start-central-nav::-webkit-scrollbar {
        width: 6px;
    }
}


@media (max-width: 1199px) {
    .start-central {
        --central-sidebar-width: 232px;
    }

    .start-central-metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .start-central {
        width: 100%;
        min-height: 0;
        display: flex;
        flex-direction: column;
        gap: 0;
        margin: 0;
        overflow: visible;
    }

    .start-central-sidebar {
        position: static;
        top: auto;
        left: auto;
        right: auto;
        z-index: 2;
        order: 1;
        width: 100%;
        min-width: 0;
        height: auto;
        min-height: 0;
        max-height: none;
        display: block;
        margin: 0 0 14px;
        padding: 10px 14px 12px;
        overflow-x: auto;
        overflow-y: hidden;
        background: rgba(255, 255, 255, .94);
        border: 0;
        box-shadow: 0 12px 28px rgba(15, 32, 55, .06);
        scrollbar-width: none;
    }

    .start-central-sidebar::-webkit-scrollbar {
        display: none;
    }

    .start-central-nav {
        display: flex;
        align-items: center;
        gap: 8px;
        width: max-content;
        min-width: 100%;
        padding: 0;
    }

    .start-central-nav__section {
        display: flex;
        align-items: center;
        gap: 8px;
        min-width: max-content;
    }

    .start-central-nav__label {
        display: none;
    }

    .start-central-nav__items {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .start-central-nav__link {
        min-height: 38px;
        padding: 8px 12px;
        white-space: nowrap;
        background: rgba(248, 250, 252, .92);
    }

    .start-central-main {
        order: 2;
        grid-column: auto;
        width: 100%;
        padding: 0 14px clamp(96px, 18vw, 132px);
    }

    .start-central-content {
        width: 100%;
        min-height: 0;
        display: block;
    }

    .start-central-hero {
        position: relative;
        z-index: 1;
        margin: 10px 0 18px;
        padding: 0 2px;
    }

    .start-central-hero h2 {
        max-width: 100%;
        overflow-wrap: anywhere;
    }

    .start-central-metrics,
    .start-central.is-searching .start-central-metrics {
        grid-template-columns: 1fr;
        margin-bottom: clamp(64px, 14vw, 96px);
    }
}


/* Mobile Central UX: horizontal nav affordance and cleaner card shadows. */
.start-central-sidebar__hint {
    display: none;
}

.start-central-sidebar__track {
    display: block;
    width: 100%;
    min-width: 0;
}

@media (min-width: 992px) {
    .start-central-sidebar--with-hints .start-central-sidebar__track {
        overflow: visible;
    }
}

@media (max-width: 991px) {
    .start-central-sidebar--with-hints {
        position: relative;
        isolation: isolate;
        overflow: visible;
    }

    .start-central-sidebar--with-hints .start-central-sidebar__track {
        display: block;
        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-x: contain;
    }

    .start-central-sidebar--with-hints .start-central-sidebar__track::-webkit-scrollbar {
        display: none;
    }

    .start-central-sidebar--with-hints .start-central-nav {
        width: max-content;
        min-width: 100%;
    }

    .start-central-sidebar--with-hints::before,
    .start-central-sidebar--with-hints::after {
        content: "";
        position: absolute;
        top: 8px;
        bottom: 8px;
        z-index: 4;
        width: 42px;
        pointer-events: none;
        opacity: 0;
        transition: opacity .16s ease;
    }

    .start-central-sidebar--with-hints::before {
        left: 8px;
        background: linear-gradient(90deg, rgba(255, 255, 255, .98), rgba(255, 255, 255, 0));
    }

    .start-central-sidebar--with-hints::after {
        right: 8px;
        background: linear-gradient(270deg, rgba(255, 255, 255, .98), rgba(255, 255, 255, 0));
    }

    .start-central-sidebar--with-hints.can-scroll-left::before,
    .start-central-sidebar--with-hints.can-scroll-right::after {
        opacity: 1;
    }

    .start-central-sidebar__hint {
        position: absolute;
        top: 50%;
        z-index: 7;
        width: 34px;
        height: 34px;
        min-width: 34px;
        display: none;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(18, 136, 246, .16);
        border-radius: 999px;
        color: var(--central-blue-dark);
        background: rgba(255, 255, 255, .78);
        box-shadow: 0 12px 30px rgba(15, 32, 55, .12);
        -webkit-backdrop-filter: blur(12px) saturate(1.08);
        backdrop-filter: blur(12px) saturate(1.08);
        cursor: pointer;
        transform: translateY(-50%);
        user-select: none;
        -webkit-user-select: none;
        touch-action: manipulation;
    }

    .start-central-sidebar__hint svg {
        width: 18px;
        height: 18px;
        display: block;
        pointer-events: none;
    }

    .start-central-sidebar__hint--left {
        left: 10px;
    }

    .start-central-sidebar__hint--right {
        right: 10px;
    }

    .start-central-sidebar.can-scroll-left .start-central-sidebar__hint--left,
    .start-central-sidebar.can-scroll-right .start-central-sidebar__hint--right {
        display: inline-flex;
    }

    .start-central-sidebar__hint:hover,
    .start-central-sidebar__hint:focus-visible {
        color: #fff;
        background: linear-gradient(135deg, var(--central-blue), var(--central-blue-dark));
        outline: 0;
    }

    .start-central-metrics {
        isolation: isolate;
    }

}


.start-central-record-title {
    color: var(--central-ink);
    font-size: 18px;
    font-weight: 880;
    letter-spacing: -.02em;
    line-height: 1.2;
}


/* Customer Central collaboration and support */
.start-central-hero--actions,
.start-central-section-heading,
.start-central-actions-panel,
.start-central-ticket-summary,
.start-central-ticket-message header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.start-central-back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 14px;
    color: var(--central-blue-dark);
    font-size: 13px;
    font-weight: 800;
}

.start-central-progress-block {
    max-width: 760px;
    margin-top: 20px;
}

.start-central-progress-block > div:first-child {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 8px;
}

.start-central-record-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.start-central-record-grid--mail {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.start-central-panel,
.start-central-detail-panel,
.start-central-actions-panel,
.start-central-form,
.start-central-ticket-summary,
.start-central-ticket-thread,
.start-central-list-section {
    border: 0;
    border-radius: 18px;
    background: rgba(255, 255, 255, .96);
    box-shadow: var(--central-card-shadow);
}

.start-central-panel,
.start-central-detail-panel,
.start-central-actions-panel,
.start-central-ticket-summary,
.start-central-list-section {
    padding: 20px;
}

.start-central-panel h3,
.start-central-detail-panel h3,
.start-central-actions-panel h3,
.start-central-list-section h3 {
    margin: 0;
    color: var(--central-ink);
    font-size: 18px;
    font-weight: 900;
    line-height: normal;
}

.start-central-panel p,
.start-central-actions-panel p,
.start-central-section-heading p {
    margin: 6px 0 0;
    color: var(--central-muted);
    font-size: 13px;
    line-height: 1.5;
    padding-bottom: 10px;
}

.start-central-panel__eyebrow {
    display: block;
    margin-bottom: 7px;
    color: var(--central-muted);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.start-central-action-group,
.start-central-record-row__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.start-central-record-list {
    display: grid;
    gap: 10px;
}

.start-central-record-row {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 16px 18px;
    border: 0;
    border-radius: 16px;
    color: var(--central-ink);
    background: rgba(255, 255, 255, .96);
    box-shadow: var(--central-card-shadow);
    transition: background-color .16s ease, transform .16s ease, box-shadow .16s ease;
}

.start-central-record-row--static {
    background: rgb(247 248 249);
    box-shadow: none;
}

.start-central .start-central-record-row:not(.start-central-record-row--static):hover,
.start-central .start-central-record-row:not(.start-central-record-row--static):focus-visible,
.start-central .start-central-record-row:not(.start-central-record-row--static):active {
    background: var(--central-hover-surface);
    box-shadow: var(--central-card-shadow-hover);
    transform: translateY(-1px);
    outline: 0;
}

.start-central-record-row__main {
    min-width: 0;
    display: grid;
    gap: 4px;
}

.start-central-record-row__main strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 15px;
}

.start-central-record-row__main small,
.start-central-record-row__meta {
    color: #000000;
    font-size: 13px;
    font-weight: 700;
}


.start-central-record-row__meta .badge {
    padding: 5px 8px;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
}


.start-central-empty-state {
    display: grid;
    justify-items: center;
    gap: 10px;
    padding: 42px 20px;
    border: 1px dashed rgba(18, 136, 246, .28);
    border-radius: 18px;
    color: var(--central-muted);
    text-align: center;
    background: rgba(18, 136, 246, .035);
}

.start-central-empty-state svg {
    width: 30px;
    height: 30px;
    color: var(--central-blue);
}

.start-central-form {
    padding: clamp(24px, 2.2vw, 32px);
    border: 0;
}

.start-central-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 18px;
}

.start-central-form__section {
    min-width: 0;
    width: 100%;
}

.start-central-form__divider {
    width: 100%;
    height: 1px;
    margin: 22px 0;
    background: rgba(12, 29, 53, .10);
}

.start-central-field {
    min-width: 0;
    display: grid;
    gap: 7px;
}

.start-central-field--wide {
    grid-column: 1 / -1;
}

.start-central-field label {
    color: #000000;
    font-size: 13px;
    font-weight: 850;
}

.start-central-field input,
.start-central-field select,
.start-central-field textarea {
    width: 100%;
    min-height: 44px;
    padding: 10px 12px;
    border: 1px solid rgba(12, 29, 53, .16);
    border-radius: 12px;
    color: var(--central-ink);
    background: #fff;
    font: inherit;
    outline: 0;
    transition: border-color .16s ease, box-shadow .16s ease;
}

.start-central-select {
    position: relative;
    display: block;
    min-width: 0;
}

.start-central-select select {
    -webkit-appearance: none;
    appearance: none;
    padding-right: 46px;
    background-image: none;
    cursor: pointer;
}

.start-central-select::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 17px;
    width: 8px;
    height: 8px;
    border-right: 2px solid #000000;
    border-bottom: 2px solid #000000;
    pointer-events: none;
    transform: translateY(-68%) rotate(45deg);
    transform-origin: center;
    transition: transform .18s ease, border-color .18s ease;
}

.start-central-select.is-open::after {
    border-color: var(--central-blue-dark);
    transform: translateY(-32%) rotate(225deg);
}

.start-central-select:focus-within::after {
    border-color: var(--central-blue-dark);
}

.start-central-select:has(select:disabled) {
    opacity: .64;
}

.start-central-select:has(select:disabled)::after {
    border-color: #98a2b3;
}

.start-central-field textarea {
    min-height: 140px;
    resize: vertical;
}

.start-central-field input:focus,
.start-central-field select:focus,
.start-central-field textarea:focus {
    border-color: rgba(18, 136, 246, .7);
    box-shadow: 0 0 0 3px rgba(18, 136, 246, .1);
}

.start-central-field small {
    color: var(--central-muted);
    font-size: 11px;
}

.start-central-form__actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 28px;
    padding-top: 4px;
}

.start-central-form__actions--center {
    justify-content: center;
}

.start-central-ticket-submit {
    min-width: 174px;
}

.start-central-form .btn.btn-primary.start-central-ticket-submit {
    color: #0869ef;
    background: #f1f8ff;
    border: 0;
    box-shadow: none;
}

.start-central-form .btn.btn-primary.start-central-ticket-submit:hover,
.start-central-form .btn.btn-primary.start-central-ticket-submit:focus-visible,
.start-central-form .btn.btn-primary.start-central-ticket-submit:active {
    color: #0869ef;
    background: var(--central-hover-surface);
    box-shadow: var(--central-action-shadow);
    outline: 0;
    transform: translateY(-1px);
}

.start-central-rich-text {
    margin-top: 12px;
    color: #000000;
    font-size: 14px;
    line-height: 1.7;
}


.start-central-ticket-summary > span {
    display: grid;
    gap: 6px;
}

.start-central-ticket-summary small {
    color: var(--central-muted);
    font-size: 11px;
    font-weight: 850;
    text-transform: uppercase;
}

.start-central-ticket-thread {
    display: grid;
    gap: 14px;
    padding: 20px;
    border: 0;
}


.start-central-ticket-message header {
    margin-bottom: 8px;
}

.start-central-ticket-message header small {
    color: var(--central-muted);
    font-size: 11px;
}

.start-central-attachment-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    color: var(--central-blue-dark);
    font-size: 12px;
    font-weight: 850;
}

.start-central-section-heading > small {
    color: var(--central-muted);
    font-size: 11px;
    font-weight: 750;
}

.start-central-notice {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 13px 15px;
    border: 0;
    border-radius: 14px;
    color: #23415f;
    background: rgba(18, 136, 246, .055);
    box-shadow: var(--central-card-shadow);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.45;
}

.start-central-notice svg {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    color: var(--central-blue-dark);
}

.start-central-status-pill {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 4px 9px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.start-central-status-pill.is-positive {
    color: #087443;
    background: rgba(22, 163, 74, .12);
}

.start-central-status-pill.is-pending {
    color: #8a4b05;
    background: rgba(245, 158, 11, .14);
}

.start-central-row-action {
    width: 28px;
    height: 28px;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    color: var(--central-blue-dark);
    background: rgba(18, 136, 246, .08);
    box-shadow: none;
    transform: translateX(0);
    transition: transform .18s ease, background-color .18s ease, color .18s ease;
    will-change: transform;
}

.start-central-row-action svg {
    width: 16px;
    height: 16px;
}

.start-central-record-row:not(.start-central-record-row--static):hover .start-central-row-action,
.start-central-record-row:not(.start-central-record-row--static):focus-visible .start-central-row-action,
.start-central-mailbox--communication:hover .start-central-row-action,
.start-central-mailbox--communication:focus-visible .start-central-row-action,
.start-central-list-row:hover .start-central-row-action,
.start-central-list-row:focus-visible .start-central-row-action,
.start-central-list-row:active .start-central-row-action {
    color: #ffffff;
    background: var(--central-blue);
    transform: translateX(4px);
}

.start-central-alert .start-central-row-action {
    color: var(--central-alert-icon-color, var(--central-alert-color, var(--central-blue-dark)));
    background: #ffffff;
}

.start-central-alert.is-clickable:hover .start-central-row-action,
.start-central-alert.is-clickable:focus-visible .start-central-row-action,
.start-central-alert.is-clickable:active .start-central-row-action {
    color: var(--central-alert-hover-action-color, var(--central-alert-hover-icon-color, var(--central-alert-icon-color, var(--central-alert-color, var(--central-blue-dark)))));
    background: var(--central-alert-hover-action-background, var(--central-alert-hover-background, var(--central-alert-background, var(--central-soft-surface))));
    transform: translateX(4px);
}


.start-central-pagination {
    display: flex;
    justify-content: center;
    margin-top: 22px;
}

.start-central-invoice-totals {
    display: grid;
    gap: 12px;
    max-width: 560px;
    margin-left: auto;
}

.start-central-invoice-totals > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: var(--central-muted);
    font-size: 13px;
}

.start-central-invoice-totals > div strong {
    color: var(--central-ink);
}

.start-central-invoice-totals > .is-total {
    margin-top: 4px;
    padding-top: 14px;
    border-top: 1px solid var(--central-border);
    color: var(--central-ink);
    font-size: 16px;
    font-weight: 900;
}

@media (max-width: 991px) {
    .start-central-record-grid,
    .start-central-record-grid--mail,
    .start-central-ticket-summary {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .start-central-form {
        padding: 20px 18px 24px;
    }

    .start-central-hero--actions,
    .start-central-section-heading,
    .start-central-actions-panel,
    .start-central-record-row {
        align-items: stretch;
        flex-direction: column;
    }

    .start-central-record-grid,
    .start-central-ticket-summary,
    .start-central-form__grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .start-central-ticket-message {
        max-width: 100%;
    }

    .start-central-action-group,
    .start-central-form__actions {
        justify-content: stretch;
    }

    .start-central-form__actions .btn {
        width: 100%;
    }

    .start-central-action-group {
        align-items: stretch;
    }
}


.start-central-record-row.is-unread {
    background: linear-gradient(135deg, rgba(255, 251, 235, .96), rgba(255, 255, 255, .96));
}

.start-central-history-list {
    display: grid;
    gap: 10px;
    margin-top: 14px;
}

.start-central-history-entry {
    display: grid;
    grid-template-columns: minmax(120px, auto) minmax(0, 1fr);
    align-items: start;
    gap: 8px 16px;
    padding: 13px 15px;
    border: 0;
    border-radius: 14px;
    background: rgba(248, 250, 252, .8);
    box-shadow: var(--central-card-shadow);
}

.start-central-history-entry strong {
    color: var(--central-ink);
    font-size: 12px;
}

.start-central-history-entry span,
.start-central-history-entry small {
    color: var(--central-muted);
    font-size: 12px;
    line-height: 1.5;
}

.start-central-history-entry small {
    grid-column: 1 / -1;
}

@media (max-width: 640px) {
    .start-central-history-entry {
        grid-template-columns: minmax(0, 1fr);
    }

    .start-central-history-entry small {
        grid-column: auto;
    }
}

.start-central-quote-totals {
    display: grid;
    gap: 8px;
    justify-content: end;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--central-border);
}

.start-central-quote-totals span {
    display: flex;
    justify-content: space-between;
    gap: 32px;
    min-width: min(100%, 320px);
    color: var(--central-muted);
    font-size: 13px;
}

.start-central-quote-totals span:last-child {
    color: var(--central-ink);
    font-size: 15px;
}

@media (max-width: 640px) {
    .start-central-quote-totals {
        justify-content: stretch;
    }

    .start-central-quote-totals span {
        min-width: 0;
    }
}

.start-central-communication-body {
    white-space: pre-wrap;
    overflow-wrap: anywhere;
}

/* Invoice detail */
.sa-invoice-detail {
    display: block;
}

.sa-invoice-detail > .start-central-hero {
    margin-bottom: 24px;
}

.sa-invoice-detail__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(420px, .85fr);
    gap: 24px;
    align-items: start;
}

.sa-invoice-detail__main,
.sa-invoice-detail__sidebar {
    display: grid;
    gap: 20px;
}

.sa-invoice-detail__sidebar {
    align-content: start;
}

.sa-invoice-card {
    background: #fff;
    border: 0;
    border-radius: 20px;
    box-shadow: var(--central-card-shadow);
}

.sa-invoice-panel__eyebrow,
.sa-invoice-summary__eyebrow {
    display: inline-block;
    margin-bottom: 6px;
    color: #64748b;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.sa-invoice-panel__help,
.sa-invoice-summary__help {
    margin: 8px 0 0;
    padding: 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.5;
}

.sa-invoice-summary {
    padding: 20px;
}

.sa-invoice-summary__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(15, 23, 42, .08);
}

.sa-invoice-summary__row:first-of-type {
    padding-top: 0;
}

.sa-invoice-summary__row:last-of-type {
    padding-bottom: 0;
    border-bottom: 0;
}

.sa-invoice-summary__row strong {
    color: #0f172a;
}

.sa-invoice-summary__row--total {
    margin-top: 10px;
    padding-top: 16px;
    border-top: 1px solid rgba(15, 23, 42, .12);
    border-bottom: 0;
}

.sa-invoice-summary__row--total span,
.sa-invoice-summary__row--total strong {
    font-size: 18px;
}

.sa-invoice-payment {
    padding: 20px;
    padding-bottom: 30px;
}

.start-central .sa-invoice-payment .sa-invoice-payment__help {
    width: 100%;
    max-width: none;
    margin: 6px 0 14px;
    padding: 0;
    color: #475569;
    font-size: 14px;
    line-height: 1.45;
    text-align: left;
}

.sa-invoice-method-box,
.sa-invoice-status-box {
    padding: 16px;
    background: #fff;
    border: 0;
    border-radius: 16px;
    box-shadow: var(--central-card-shadow);
}

.sa-invoice-status-box--success {
    background: rgba(22, 163, 74, .06);
}

.sa-invoice-status-box--pending {
    background: rgba(245, 158, 11, .06);
}

.sa-invoice-status-box strong,
.sa-invoice-method-box strong {
    display: block;
    margin-bottom: 6px;
    color: #0f172a;
}

.sa-invoice-status-meta {
    display: grid;
    gap: 6px;
    margin-top: 10px;
    color: #475569;
    font-size: 14px;
}

.sa-invoice-pay-form {
    display: grid;
    gap: 16px;
}

.sa-invoice-pay-form .list_payment_method {
    margin: 0;
    overflow: hidden;
    border-radius: 16px;
}

.sa-invoice-pay-form .list_payment_method li {
    border-right: 0;
    border-left: 0;
}

.sa-invoice-pay-form .list_payment_method li:first-child {
    border-top: 0;
}

.sa-invoice-pay-form .list_payment_method li:last-child {
    border-bottom: 0;
}

.sa-invoice-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-height: 54px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    transition:
        transform .2s ease,
        background-color .2s ease,
        border-color .2s ease,
        color .2s ease,
        box-shadow .2s ease;
}

.sa-invoice-action--primary {
    color: #fff;
    background: #000000;
    border-color: #000000;
}

.sa-invoice-action--primary:hover {
    color: #fff;
    background: var(--central-blue);
    border-color: var(--central-blue);
    transform: translateY(-1px);
    box-shadow: var(--central-action-shadow);
}

.sa-invoice-action--primary:focus-visible {
    color: #fff;
    background: var(--central-blue-dark);
    border-color: var(--central-blue-dark);
    outline: 3px solid rgba(18, 136, 246, .22);
    outline-offset: 3px;
}

.sa-invoice-action--primary:active {
    transform: translateY(0);
    box-shadow: 0 6px 16px rgba(18, 136, 246, .18);
}

.sa-invoice-action--secondary {
    color: #2563eb;
    background: #fff;
    border-color: rgba(37, 99, 235, .3);
}

.sa-invoice-action--secondary:hover,
.sa-invoice-action--secondary:focus-visible {
    color: #1d4ed8;
    background: rgba(37, 99, 235, .06);
}

.sa-invoice-heading {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.sa-invoice-heading h2 {
    margin: 0;
}

.sa-invoice-heading__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.sa-invoice-heading__actions .sa-invoice-action {
    width: auto;
    min-height: 42px;
    padding: 9px 16px;
}

/* Invoice payment focus */
.sa-invoice-detail--payment-focus .sa-invoice-detail__layout {
    display: block;
}

.sa-invoice-detail--payment-focus .sa-invoice-detail__main,
.sa-invoice-detail--payment-focus .sa-invoice-card--summary {
    display: none;
}

.sa-invoice-detail--payment-focus .sa-invoice-detail__sidebar {
    display: block;
    width: 100%;
}

.sa-invoice-detail--payment-focus .sa-invoice-card--payment {
    width: 100%;
    max-width: none;
    margin: 0;
    animation: saInvoicePaymentSlideLeft .42s cubic-bezier(.22, 1, .36, 1) both;
    will-change: transform, opacity;
}

.sa-invoice-detail--payment-focus .sa-invoice-card--payment .sa-invoice-summary__eyebrow,
.sa-invoice-detail--payment-focus .sa-invoice-card--payment .sa-invoice-payment__help {
    display: none;
}

.sa-invoice-detail--payment-focus .mp-embedded-checkout {
    width: 100%;
    max-width: none;
    margin: 0;
}

@keyframes saInvoicePaymentSlideLeft {
    from {
        opacity: .7;
        transform: translateX(72px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 767.98px) {
    .sa-invoice-detail--payment-focus .sa-invoice-card--payment {
        animation-name: saInvoicePaymentFadeIn;
    }

    @keyframes saInvoicePaymentFadeIn {
        from {
            opacity: .75;
        }

        to {
            opacity: 1;
        }
    }
}


/*
 * Faturas — linguagem visual por estado.
 * Pago/sucesso permanece intencionalmente sob o estilo existente.
 * A paleta abaixo atua apenas em pendência, cancelamento e estados críticos.
 */

/* Pendente — amarelo pastel claro, legível e sem aparência de alerta agressivo. */
.start-central .badge.bg-warning,
.start-central .badge.badge-warning,
.start-central .badge.text-bg-warning {
    --bs-warning-rgb: 254, 243, 199;
    --bs-bg-opacity: 1;
    border: 0;
    color: #8a5a00;
}

.start-central-record-list > *:has(.badge.bg-warning),
.start-central-record-list > *:has(.badge.badge-warning),
.start-central-record-list > *:has(.badge.text-bg-warning),
.start-central-record-list > *:has([data-status="pending"]),
.start-central-record-list > *:has([data-status="pendente"]) {
    background: linear-gradient(90deg, #fffbeb 0%, #fffdf5 58%, #ffffff 100%);
}

/* Cancelado — cinza frio pastel, neutro e claramente inativo. */
.start-central .badge.bg-secondary,
.start-central .badge.badge-secondary,
.start-central .badge.text-bg-secondary {
    --bs-secondary-rgb: 238, 242, 246;
    --bs-bg-opacity: 1;
    border: 1px solid #d9e0e8;
    color: #526071;
}

.start-central-record-list > *:has(.badge.bg-secondary),
.start-central-record-list > *:has(.badge.badge-secondary),
.start-central-record-list > *:has(.badge.text-bg-secondary),
.start-central-record-list > *:has([data-status="cancelled"]),
.start-central-record-list > *:has([data-status="canceled"]),
.start-central-record-list > *:has([data-status="cancelado"]) {
    background: linear-gradient(90deg, #f8fafc 0%, #fbfcfd 58%, #ffffff 100%);
}

/* Vencido/falha/problema — vermelho rosado pastel, claro sem perder prioridade. */
.start-central .badge.bg-danger,
.start-central .badge.badge-danger,
.start-central .badge.text-bg-danger {
    --bs-danger-rgb: 255, 228, 230;
    --bs-bg-opacity: 1;
    border: 1px solid #f8b4bd;
    color: #b42318;
}

.start-central-record-list > *:has(.badge.bg-danger),
.start-central-record-list > *:has(.badge.badge-danger),
.start-central-record-list > *:has(.badge.text-bg-danger),
.start-central-record-list > *:has([data-status="overdue"]),
.start-central-record-list > *:has([data-status="expired"]),
.start-central-record-list > *:has([data-status="failed"]),
.start-central-record-list > *:has([data-status="error"]),
.start-central-record-list > *:has([data-status="vencido"]),
.start-central-record-list > *:has([data-status="falhou"]),
.start-central-record-list > *:has([data-status="erro"]) {
    background: linear-gradient(90deg, #fff1f2 0%, #fff7f8 58%, #ffffff 100%);
}

/* Mantém a mudança de estado visual suave sem alterar layout ou interação. */
.start-central-record-list > * {
    transition:
        background-color .22s ease,
        border-color .22s ease;
}


.start-central-nav__badge {
    min-width: 20px;
    height: 20px;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    padding: 0 6px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -.01em;
    font-variant-numeric: tabular-nums;
    box-shadow: 0 4px 12px rgba(15, 32, 55, .06);
}

.start-central-nav__badge--warning {
    border-color: #f5df9b;
    color: #8a5a00;
    background: #fff7d6;
}

.start-central-nav__badge--danger {
    border-color: #f7c5cb;
    color: #b42318;
    background: #ffe9ec;
}

.start-central-nav__link.is-active .start-central-nav__badge {
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, .68),
        0 5px 14px rgba(15, 32, 55, .1);
}

@media (max-width: 991px) {
    .start-central-nav__badge {
        min-width: 19px;
        height: 19px;
        margin-left: 4px;
        padding: 0 5px;
        font-size: 9px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .start-central-metric,
    .start-central-metric:hover,
    .start-central-metric:focus-visible {
        transition: none;
        transform: none;
    }
}



/* Indicadores de novidade: sempre verdes e clean. */
.start-central-nav__badge--success {
    border-color: #ccebd9;
    color: #087443;
    background: #edf9f2;
}

.start-central-unread-label {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 3px 8px;
    border-radius: 999px;
    color: #087443;
    background: #edf9f2;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .02em;
    text-transform: uppercase;
    border: 1px solid #ccebd9;
}

/* Métricas: ícone + label juntos e hint como badge clean. */
.start-central-metric:has(.start-central-metric__icon) {
    grid-template-columns: 38px minmax(0, 1fr);
    align-items: center;
}

.start-central-metric:has(.start-central-metric__icon) .start-central-metric__icon {
    grid-column: 1;
    grid-row: 1;
}

.start-central-metric:has(.start-central-metric__icon) .start-central-metric__label {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    margin-top: 0;
}

.start-central-metric:has(.start-central-metric__icon) .start-central-metric__value,
.start-central-metric:has(.start-central-metric__icon) .start-central-metric__hint {
    grid-column: 1 / -1;
}

.start-central-metric__hint {
    color: #000000;
    font-size: 12px;
    font-weight: 740;
    line-height: 1.35;
    width: max-content;
    max-width: 100%;
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 5px 10px;
    border-radius: 999px;
    background: #f4f6f8;
}

.start-central-metric--green .start-central-metric__hint {
    color: #087443;
    background: #edf9f2;
}

.start-central-metric--amber .start-central-metric__hint {
    color: #8a5a00;
    background: #fff7d6;
}

/* Hover dos métricos preserva o fundo clean, sem borda adicional. */
.start-central .start-central-metric:hover,
.start-central .start-central-metric:focus-visible,
.start-central .start-central-metric:active {
    z-index: 3;
    outline: 0;
    background: var(--central-hover-surface);
    box-shadow: var(--central-card-shadow-hover);
    transform: translateY(-1px);
}

/* Metadados do resumo do chamado. */
.start-central-ticket-summary__item > small {
    color: #000000;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.start-central-ticket-summary__item > strong {
    color: #000000;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
}

/* Status/Urgência com a mesma base visual e alinhamento. */
.start-central-ticket-state,
.start-central-ticket-priority,
.start-central-ticket-meta {
    width: max-content;
    max-width: 100%;
    min-height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 8px;
    border: 0;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
}

.start-central-ticket-summary__item {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 7px;
}

.start-central-ticket-summary__item > .start-central-ticket-state,
.start-central-ticket-summary__item > .start-central-ticket-priority,
.start-central-ticket-summary__item > .start-central-ticket-meta {
    margin-top: 0;
}

/* Paleta semântica dos status. */
.start-central-ticket-state--open,
.start-central-ticket-state--in_progress {
    color: #075985 !important;
    background: #eaf7ff;
}

.start-central-ticket-state--waiting_customer {
    color: #8a5a00 !important;
    background: #fff7d6;
}

.start-central-ticket-state--resolved {
    color: #087443 !important;
    background: #edf9f2;
}

.start-central-ticket-state--closed {
    color: #000000 !important;
    background: #eef2f6;
}

.start-central-ticket-priority--low {
    color: #075985 !important;
    background: #edf8ff;
}

.start-central-ticket-priority--normal {
    color: #075985 !important;
    background: #eaf7ff;
}

.start-central-ticket-priority--medium {
    color: #8a5a00 !important;
    background: #fff7d6;
}

.start-central-ticket-priority--high,
.start-central-ticket-priority--urgent {
    color: #b42318 !important;
    background: #ffe9ec;
}

.start-central-ticket-meta--department {
    color: #0869ef !important;
    background: #e5f2fe;
}

.start-central-ticket-meta--updated {
    color: #26354a !important;
    background: #f1f8ff;
}

/* Resumo do chamado. */
.start-central-ticket-summary {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border: 0;
    padding: 18px 20px;
    background: #ffffff;
    box-shadow: var(--central-card-shadow);
}

/* Responder = um único card branco expansível. */
.start-central-ticket-reply {
    margin-top: 14px;
    overflow: hidden;
    border: 0;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: var(--central-card-shadow);
    user-select: none;
    -webkit-user-select: none;
}

.start-central-ticket-reply-toggle {
    width: 100%;
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 0 20px;
    border: 0;
    color: #000000;
    background: #ffffff;
    font-size: 14px;
    font-weight: 850;
    cursor: pointer;
    list-style: none;
    box-shadow: none;
    transition: background-color .18s ease, color .18s ease, box-shadow .18s ease, transform .18s ease;
    user-select: none;
    -webkit-user-select: none;
}

.start-central-ticket-reply-toggle::-webkit-details-marker {
    display: none;
}

.start-central-ticket-reply-toggle:hover,
.start-central-ticket-reply-toggle:focus-visible,
.start-central-ticket-reply-toggle:active {
    color: #0869ef;
    background: var(--central-hover-surface);
    box-shadow: var(--central-action-shadow);
    outline: 0;
    transform: translateY(-1px);
}

.start-central-ticket-reply-toggle svg {
    width: 18px;
    height: 18px;
    transition: transform .22s ease;
}

.start-central-ticket-reply[open] .start-central-ticket-reply-toggle {
    border-bottom: 1px solid var(--central-border);
}

.start-central-ticket-reply[open] .start-central-ticket-reply-toggle svg {
    transform: rotate(180deg);
}

.start-central-ticket-reply-panel {
    margin: 0;
    background: #ffffff;
}

.start-central-ticket-reply-panel .start-central-form {
    margin: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.start-central-ticket-reply-form,
.customer-central-ticket-admin-form {
    display: block;
}

.start-central-ticket-reply-form .start-central-form__section,
.customer-central-ticket-admin-form .start-central-form__section {
    display: block;
}

.start-central-ticket-reply-panel label,
.start-central-ticket-reply-panel small,
.start-central-ticket-reply-panel input[type="file"] {
    user-select: none;
    -webkit-user-select: none;
}

.start-central-ticket-reply-panel textarea,
.start-central-ticket-reply-panel input:not([type="file"]) {
    user-select: text;
    -webkit-user-select: text;
}

/* Thread mantém o contêiner original; apenas a ordem visual vem da view. */
.start-central-ticket-message {
    padding: 16px 18px;
    border: 0;
    border-radius: 18px;
    color: #26354a;
    background: #f7f8f9;
    box-shadow: none;
    line-height: 1.65;
    width: 100%;
    justify-self: stretch;
    max-width: none;
}

.start-central-ticket-message.is-team,
.start-central-ticket-message.is-customer {
    justify-self: stretch;
}

.start-central-ticket-message.is-team {
    background: #e5f2fe;
}

.start-central-ticket-message.is-customer {
    background: #f7f8f9;
}

.start-central-ticket-message.is-internal {
    color: #6b4f00;
    background: #fff7d6;
}

.start-central-ticket-attachments-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.start-central-ticket-attachments-list .start-central-attachment-link {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin: 0;
    padding: 0 11px;
    border-radius: 9px;
    color: #0869ef;
    background: rgba(255, 255, 255, .72);
    font-size: 12px;
    font-weight: 750;
    text-decoration: none;
    transition: background-color .18s ease, transform .18s ease;
}

.start-central-ticket-attachments-list .start-central-attachment-link:hover,
.start-central-ticket-attachments-list .start-central-attachment-link:focus-visible {
    outline: 0;
    background: #ffffff;
    transform: translateY(-1px);
}

.start-central-ticket-attachments-list .start-central-attachment-link small {
    color: #667085;
    font-size: 10px;
    font-weight: 800;
}

@media (max-width: 991px) {
    .start-central-ticket-summary {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575px) {
    .start-central-ticket-summary {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (prefers-reduced-motion: reduce) {
    .start-central-ticket-reply-toggle svg {
        transition: none;
    }
}


.start-central-alert-stack {
    display: grid;
    gap: 10px;
    margin: 0 0 22px;
}

.start-central-alert--success {
    --central-alert-color: #0f9f56;
    --central-alert-background: rgba(37, 197, 104, .12);
}

.start-central-alert--warning {
    --central-alert-color: #c77700;
    --central-alert-background: rgba(245, 158, 11, .13);
}

.start-central-alert--danger {
    --central-alert-color: #dc2626;
    --central-alert-background: rgba(220, 38, 38, .10);
}

.start-central-alert--neutral {
    --central-alert-color: #344054;
    --central-alert-background: rgba(15, 23, 42, .07);
}

.start-central-alert--info {
    --central-alert-color: var(--central-blue-dark);
    --central-alert-background: rgba(18, 136, 246, .09);
}

.start-central-mailbox-section {
    margin-top: 22px;
}
.start-central-mailbox-list {
    display: grid;
    gap: 12px;
}
.start-central-mailbox {
    padding: 18px;
    border: 0;
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--central-card-shadow);
}

.start-central-mailbox--communication {
    display: grid;
    gap: 14px;
    color: var(--central-ink);
    transition: background-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.start-central-mailbox--communication:hover,
.start-central-mailbox--communication:focus-visible {
    color: var(--central-ink);
    background: var(--central-hover-surface);
    box-shadow: var(--central-card-shadow-hover);
    outline: 0;
    transform: translateY(-1px);
}

.start-central-mailbox__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--central-muted);
    font-size: 12px;
    font-weight: 700;
}

.start-central-mailbox__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
}
.start-central-mailbox__header strong {
    display: block;
    color: #000;
    font-size: 16px;
}
.start-central-mailbox__usage,
.start-central-mailbox__percent {
    display: block;
    margin-top: 4px;
    color: #000;
    font-size: 13px;
}
.start-central-mailbox__status {
    display: inline-flex;
    align-items: center;
    min-height: 27px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}
.start-central-mailbox__status.is-active {
    color: #087443;
    background: rgba(22, 163, 74, .12);
}
.start-central-mailbox__status.is-suspended {
    color: #991b1b;
    background: rgba(220, 38, 38, .10);
}
.start-central-mailbox__progress {
    height: 7px;
    margin-top: 15px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(15, 23, 42, .08);
}
.start-central-mailbox__progress > span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: #000;
}
.start-central-mailbox__actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 14px;
}
@media (max-width: 767px) {
    .start-central-alert__action {
        width: 100%;
        padding-left: 50px;
    }
    .start-central-mailbox__header {
        flex-direction: column;
    }
    .start-central-mailbox__actions .btn {
        width: 100%;
    }
}


.start-central-hero {
    display: block;
    margin: 0;
    padding: 0;
    color: var(--central-ink);
    background: transparent;
    border: 0;
    box-shadow: none;
    padding-bottom: 18px;
}

.start-central-alert {
    position: relative;
    width: 100%;
    min-height: 64px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 13px;
    padding: 11px 16px;
    border: 0;
    border-radius: 13px;
    color: #000000;
    background: var(--central-alert-background, var(--central-soft-surface, #f1f8ff));
    font-family: var(--start-font-family, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
    text-decoration: none;
    transition: background-color .18s ease, box-shadow .18s ease, color .18s ease, transform .18s ease;
}

.start-central-alert.is-clickable {
    cursor: pointer;
}

.start-central .start-central-alert.is-clickable:hover,
.start-central .start-central-alert.is-clickable:focus-visible,
.start-central .start-central-alert.is-clickable:active {
    color: #000000;
    background: var(--central-alert-hover-background, var(--central-alert-background, var(--central-soft-surface, #f1f8ff)));
    text-decoration: none;
    outline: 0;
    transform: translateY(-1px);
    box-shadow: var(--central-card-shadow-hover, 0 12px 28px rgba(15, 32, 55, .10));
}

.start-central-alert__icon {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 999px;
    color: var(--central-alert-icon-color, var(--central-alert-color, var(--central-blue-dark, #0869ef)));
    background: var(--central-alert-icon-background, var(--central-alert-background, var(--central-soft-surface, #f1f8ff)));
    transition: background-color .18s ease, color .18s ease;
}

.start-central-alert__icon svg {
    width: 20px;
    height: 20px;
}

.start-central-alert.is-clickable:hover .start-central-alert__icon,
.start-central-alert.is-clickable:focus-visible .start-central-alert__icon,
.start-central-alert.is-clickable:active .start-central-alert__icon {
    color: var(--central-alert-hover-icon-color, var(--central-alert-icon-color, var(--central-alert-color, var(--central-blue-dark, #0869ef))));
    background: var(--central-alert-hover-icon-background, var(--central-alert-icon-background, var(--central-alert-hover-background, var(--central-alert-background, var(--central-soft-surface, #f1f8ff)))));
}

.start-central-alert__body {
    min-width: 0;
    display: grid;
    gap: 3px;
}

.start-central-alert__body strong,
.start-central-alert__body > span {
    display: block;
    margin: 0;
    padding: 0;
    transition: color .18s ease;
}

.start-central-alert__body strong {
    color: var(--central-alert-title-color, #111827);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0;
}

.start-central-alert__body > span {
    color: var(--central-alert-text-color, #344054);
    font-size: 12px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0;
}

.start-central-alert.is-clickable:hover .start-central-alert__body strong,
.start-central-alert.is-clickable:focus-visible .start-central-alert__body strong,
.start-central-alert.is-clickable:active .start-central-alert__body strong {
    color: var(--central-alert-hover-title-color, var(--central-alert-title-color, #111827));
}

.start-central-alert.is-clickable:hover .start-central-alert__body > span,
.start-central-alert.is-clickable:focus-visible .start-central-alert__body > span,
.start-central-alert.is-clickable:active .start-central-alert__body > span {
    color: var(--central-alert-hover-text-color, var(--central-alert-text-color, #344054));
}

@media (max-width: 767px) {
    .start-central-alert {
        grid-template-columns: auto minmax(0, 1fr) auto;
        align-items: start;
    }
}

/* Central Start — padrão canônico de listagens operacionais abertas. */
.start-central-open-list {
    min-width: 0;
}

.start-central-list-toolbar {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.start-central-list-toolbar__controls {
    min-width: 0;
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    gap: 10px;
}

.start-central-list-toolbar__actions {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.start-central-list-search {
    width: min(560px, 100%);
    min-height: 42px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 15px;
    border: 1px solid var(--start-search-field-border, #aeb5d0);
    border-radius: 999px;
    background: var(--start-search-field-surface, #ffffff);
    transition: border-color .18s ease, box-shadow .18s ease;
}

.start-central-list-search:focus-within {
    border-color: var(--start-search-field-border-focus, rgba(18, 136, 246, .55));
    box-shadow: var(--start-search-field-ring, 0 0 0 3px rgba(18, 136, 246, .10));
}

.start-central-list-search svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    color: var(--start-search-field-icon, #26304a);
}

.start-central-list-search input {
    width: 100%;
    min-width: 0;
    height: 40px;
    padding: 0;
    border: 0;
    outline: 0;
    color: var(--start-search-field-text, #1d2939);
    background: transparent;
    font: inherit;
    font-size: 13px;
}

.start-central-list-search input::placeholder {
    color: var(--start-search-field-placeholder, #667085);
    opacity: 1;
}

.start-central-filter-disclosure {
    position: relative;
    flex: 0 0 auto;
}

.start-central-filter-disclosure > summary {
    list-style: none;
}

.start-central-filter-disclosure > summary::-webkit-details-marker {
    display: none;
}

.start-central .btn,
.start-central-refresh-button,
.start-central-filter-button,
.start-central-filter-submit,
.start-central-filter-clear,
.start-central .btn.btn-outline-secondary,
.start-central-domain-search-button {
    width: auto;
    min-width: 0;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    border-radius: 10px;
    color: #0869ef;
    background: #f1f8ff;
    box-shadow: none;
    font-size: 12px;
    font-weight: 850;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
    transition: background-color .18s ease, color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.start-central-filter-button {
    min-width: 92px;
    padding: 0 13px;
}

.start-central .btn,
.start-central-refresh-button,
.start-central-filter-submit,
.start-central-filter-clear,
.start-central .btn.btn-outline-secondary,
.start-central-domain-search-button {
    padding: 0 16px;
}

.start-central-refresh-button {
    min-width: 150px;
}

.start-central .btn:hover,
.start-central .btn:focus-visible,
.start-central .start-central-refresh-button:hover,
.start-central .start-central-refresh-button:focus-visible,
.start-central .start-central-filter-button:hover,
.start-central .start-central-filter-button:focus-visible,
.start-central .start-central-filter-disclosure[open] .start-central-filter-button,
.start-central .start-central-filter-submit:hover,
.start-central .start-central-filter-submit:focus-visible,
.start-central .start-central-filter-clear:hover,
.start-central .start-central-filter-clear:focus-visible,
.start-central .btn.btn-outline-secondary:hover,
.start-central .btn.btn-outline-secondary:focus-visible,
.start-central .start-central-domain-search-button:hover,
.start-central .start-central-domain-search-button:focus-visible {
    color: #0869ef;
    background: var(--central-hover-surface);
    box-shadow: var(--central-action-shadow);
    outline: 0;
    transform: translateY(-1px);
}

.start-central .btn:active,
.start-central .start-central-refresh-button:active,
.start-central .start-central-filter-button:active,
.start-central .start-central-filter-submit:active,
.start-central .start-central-filter-clear:active,
.start-central .btn.btn-outline-secondary:active,
.start-central .start-central-domain-search-button:active {
    color: #0869ef;
    background: var(--central-hover-surface);
    box-shadow: var(--central-action-shadow);
    outline: 0;
    transform: translateY(-1px);
}

.start-central-domain-search__group {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: stretch;
    gap: 10px;
}

.start-central-domain-search__group > .form-control,
.start-central-domain-search__group > .start-central-domain-search-button {
    position: relative;
    z-index: auto;
    width: 100%;
    min-width: 0;
    margin-left: 0;
    border-radius: 10px;
}

.start-central-domain-search__group > .form-control {
    min-height: 48px;
}

.start-central-domain-search-button {
    min-width: 160px;
}

@media (max-width: 575px) {
    .start-central-domain-search__group {
        grid-template-columns: minmax(0, 1fr);
    }

    .start-central-domain-search-button {
        min-width: 0;
    }
}

.start-central-filter-button__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--central-blue);
}

.start-central-refresh-button svg,
.start-central-filter-button svg {
    width: 16px;
    height: 16px;
}

.start-central-refresh-button.is-refreshing svg {
    animation: start-central-refresh-spin .7s linear infinite;
}

@keyframes start-central-refresh-spin {
    to { transform: rotate(360deg); }
}

.start-central-filter-panel {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    z-index: 20;
    width: min(520px, calc(100vw - 36px));
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding: 18px;
    border: 1px solid rgba(38, 48, 74, .12);
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 22px 54px rgba(35, 47, 76, .16);
}

.start-central-filter-panel--support {
    width: min(680px, calc(100vw - 36px));
}

.start-central-filter-field {
    min-width: 0;
    display: grid;
    gap: 7px;
}

.start-central-filter-field > span {
    color: #344054;
    font-size: 11px;
    font-weight: 850;
}

.start-central-filter-field input,
.start-central-filter-field select {
    width: 100%;
    min-height: 42px;
    padding: 9px 11px;
    border: 1px solid #d9dde7;
    border-radius: 10px;
    color: #1d2939;
    background: #ffffff;
    font: inherit;
    font-size: 12px;
    outline: 0;
}

.start-central-filter-field input:focus,
.start-central-filter-field select:focus {
    border-color: rgba(18, 136, 246, .55);
    box-shadow: 0 0 0 3px rgba(18, 136, 246, .10);
}

.start-central-filter-panel__actions {
    grid-column: 1 / -1;
    display: flex;
    justify-content: flex-end;
    gap: 9px;
    padding-top: 2px;
}


.start-central-list-group + .start-central-list-group {
    margin-top: 30px;
}

.start-central-list-group__title {
    margin: 0 0 10px;
    padding: 0 6px;
    color: #111827;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.3;
    text-transform: lowercase;
}

.start-central-list-group__title::first-letter {
    text-transform: uppercase;
}

.start-central-list-group__rows {
    display: grid;
}

.start-central-list-row {
    min-width: 0;
    min-height: 74px;
    margin: 10px 0 0 0;
    display: grid;
    grid-template-columns: 60px minmax(250px, 1.5fr) minmax(150px, .82fr) minmax(115px, .62fr) minmax(105px, .56fr) 34px;
    align-items: center;
    gap: 20px;
    padding: 12px 18px;
    border: 0;
    border-radius: 13px;
    color: #20283a;
    background: #f1f8ff;
    box-shadow: none;
    transition: background-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.start-central .start-central-list-row:hover,
.start-central .start-central-list-row:focus-visible,
.start-central .start-central-list-row:active {
    color: #20283a;
    background: var(--central-hover-surface);
    box-shadow: var(--central-card-shadow-hover);
    outline: 0;
    transform: translateY(-1px);
}

.start-central-list-row.is-unread {
    box-shadow: inset 3px 0 0 #44ad79;
    background: linear-gradient(90deg, rgba(68, 173, 121, .07), #f1f8ff 42%);
}

.start-central .start-central-list-row.is-unread:hover,
.start-central .start-central-list-row.is-unread:focus-visible,
.start-central .start-central-list-row.is-unread:active {
    background: var(--central-hover-surface);
    box-shadow: inset 3px 0 0 #44ad79, var(--central-card-shadow-hover);
}

.start-central-list-row__time {
    color: #697392;
    font-size: 12px;
    font-weight: 650;
    text-align: left;
}

.start-central-list-row__lead {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.start-central-list-row__icon {
    width: 44px;
    height: 44px;
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    border: 0;
    border-radius: 999px;
    color: #2f3749;
    background: #ffffff;
}

.start-central-list-row__icon--support {
    color: #0877df;
}

.start-central-list-row__icon svg {
    width: 20px;
    height: 20px;
}

.start-central-list-row__main {
    min-width: 0;
    display: grid;
    gap: 3px;
}

.start-central-list-row__main strong {
    min-width: 0;
    overflow: hidden;
    color: #20283a;
    font-size: 13px;
    font-weight: 850;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.start-central-list-row__main small,
.start-central-list-row__reference {
    color: #6b7392;
    font-size: 12px;
    font-weight: 650;
}

.start-central-list-row__reference {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.start-central-list-row__status {
    min-width: 0;
}

.start-central-list-row__status .badge {
    margin: 0;
    padding: 5px 9px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 850;
}

.start-central-list-row__amount {
    color: #5f6787;
    font-size: 12px;
    font-weight: 850;
    text-align: right;
    white-space: nowrap;
}

.start-central-list-row .start-central-ticket-state,
.start-central-list-row .start-central-ticket-priority {
    justify-self: start;
    margin: 0;
}


@media (max-width: 1180px) {
    .start-central-list-row {
        grid-template-columns: 54px minmax(220px, 1.35fr) minmax(125px, .72fr) minmax(105px, .58fr) minmax(92px, .5fr) 30px;
        gap: 16px;
        padding-inline: 16px;
    }
}

@media (max-width: 900px) {
    .start-central-list-toolbar {
        align-items: stretch;
        flex-direction: column;
        gap: 12px;
    }

    .start-central-list-toolbar__actions {
        align-self: flex-end;
    }

    .start-central-list-row {
        grid-template-columns: 46px minmax(0, 1fr) 30px;
        gap: 7px 12px;
        padding: 13px 14px;
    }

    .start-central-list-row__time {
        grid-column: 1;
        grid-row: 1;
    }

    .start-central-list-row__lead {
        grid-column: 2;
        grid-row: 1;
    }

    .start-central-list-row__reference,
    .start-central-list-row__status,
    .start-central-list-row__amount,
    .start-central-list-row .start-central-ticket-state,
    .start-central-list-row .start-central-ticket-priority {
        grid-column: 2;
        justify-self: start;
        text-align: left;
    }

    .start-central-list-row .start-central-row-action {
        grid-column: 3;
        grid-row: 1 / span 5;
        align-self: center;
    }
}

@media (max-width: 620px) {
    .start-central-list-toolbar__controls {
        align-items: stretch;
        flex-wrap: wrap;
    }

    .start-central-list-search {
        width: 100%;
        max-width: none;
        flex: 1 0 100%;
    }

    .start-central-filter-panel,
    .start-central-filter-panel--support {
        position: static;
        width: min(100%, calc(100vw - 36px));
        grid-template-columns: minmax(0, 1fr);
        margin-top: 10px;
        box-shadow: 0 16px 36px rgba(35, 47, 76, .12);
    }

    .start-central-filter-panel__actions {
        grid-column: auto;
        justify-content: stretch;
    }

    .start-central-filter-submit,
    .start-central-filter-clear {
        flex: 1 1 0;
    }

    .start-central-list-toolbar__actions {
        width: 100%;
        align-self: stretch;
    }

    .start-central-list-toolbar__actions .start-central-refresh-button {
        min-width: 0;
        flex: 1 1 0;
    }

    .start-central-list-group__title {
        padding-left: 2px;
    }

    .start-central-list-row {
        grid-template-columns: 42px minmax(0, 1fr) 30px;
        padding-inline: 12px;
    }

    .start-central-list-row__icon {
        width: 40px;
        height: 40px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .start-central-refresh-button,
    .start-central-filter-button,
    .start-central-filter-submit,
    .start-central-filter-clear,
    .start-central-mailbox--communication,
    .start-central-list-row {
        transition: none;
    }

    .start-central-refresh-button.is-refreshing svg {
        animation: none;
    }
}

/* Jornada comercial e promoções */
.start-central--journey {
    width: 100%;
    max-width: none;
    display: block;
    margin: 0;
    padding-inline: clamp(24px, 4vw, 72px);
    outline: 0;
    -webkit-tap-highlight-color: transparent;
}

.start-central--journey:focus,
.start-central--journey:focus-visible {
    outline: 0;
    box-shadow: none;
}

.start-central--journey .start-central-main {
    grid-column: auto;
    width: 100%;
    min-width: 0;
    max-width: none;
}

.start-central--journey .start-central-content,
.start-central--journey .start-checkout {
    width: 100%;
    min-width: 0;
    max-width: none;
}

.start-checkout {
    display: grid;
    gap: 30px;
    padding: 24px 0 64px;
}

.start-checkout-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 8px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.start-checkout-step {
    width: 100%;
    min-height: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    border: 0;
    border-radius: 12px;
    color: #667085;
    background: #f6f8fb;
    font: inherit;
    font-size: 13px;
    font-weight: 800;
    text-align: left;
    appearance: none;
}

.start-checkout-step:is(a) {
    cursor: pointer;
    transition: color .16s ease, background-color .16s ease, box-shadow .16s ease, transform .16s ease;
}

.start-checkout-step:is(a):hover,
.start-checkout-step:is(a):focus-visible {
    color: #0869ef;
    background: #edf7ff;
    box-shadow: 0 8px 20px rgba(18, 136, 246, .10);
    outline: 0;
}

.start-checkout-step:is(a):active {
    transform: translateY(0);
    box-shadow: 0 5px 14px rgba(18, 136, 246, .10);
}

.start-checkout-step:disabled {
    opacity: 1;
    cursor: default;
}

.start-checkout-step strong {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #667085;
    background: #eef1f5;
}

.start-checkout-step.is-current {
    color: #0869ef;
    background: #eaf5ff;
}

.start-checkout-step.is-current strong,
.start-checkout-step.is-complete strong {
    color: #fff;
    background: #1288f6;
}

.start-checkout__hero {
    display: grid;
    gap: 8px;
    max-width: 920px;
}

.start-checkout__hero > span {
    color: #0869ef;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.start-checkout__hero h1 {
    margin: 0;
    font-size: clamp(34px, 4vw, 52px);
    letter-spacing: -.045em;
}

.start-checkout__hero p {
    max-width: 820px;
    margin: 0;
    color: #667085;
    font-size: 16px;
    line-height: 1.6;
}

.start-checkout__hero--compact {
    max-width: none;
}

.start-checkout__hero--compact p {
    max-width: none;
}

.start-checkout-domain,
.start-checkout-upsells {
    border: 0;
    box-shadow: none;
}

.start-checkout-review,
.start-checkout-summary {
    border: 0;
    box-shadow: var(--central-card-shadow);
}

.start-checkout-domain {
    display: grid;
    gap: 28px;
    padding: 0;
    background: transparent;
}

.start-checkout-domain__modes {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.start-checkout-domain__modes label {
    cursor: pointer;
}

.start-checkout-domain__modes input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.start-checkout-domain__modes label > span {
    display: grid;
    align-content: start;
    gap: 9px;
    padding: 18px;
    border: 1px solid #d8e1ee;
    border-radius: 16px;
    color: #344054;
    background: #fff;
    transition:
        border-color .18s ease,
        background-color .18s ease,
        box-shadow .18s ease,
        transform .18s ease;
}

.start-checkout-domain__modes label > span:hover {
    border-color: rgba(18, 136, 246, .36);
    transform: translateY(-1px);
}

.start-checkout-domain__modes input:checked + span {
    border-color: #1288f6;
    color: #0869ef;
    background: #f1f8ff;
    box-shadow: 0 0 0 3px rgba(18, 136, 246, .10);
}

.start-checkout-domain__modes input:focus-visible + span {
    outline: 3px solid rgba(18, 136, 246, .18);
    outline-offset: 3px;
}

.start-checkout-domain__mode-title {
    display: flex;
    align-items: center;
    gap: 9px;
    min-width: 0;
}

.start-checkout-domain__mode-title strong {
    min-width: 0;
    line-height: 1.3;
}

.start-checkout-domain__modes svg {
    width: 22px;
    height: 22px;
}

.start-checkout-domain__modes small,
.start-checkout-domain__field small {
    color: #667085;
    line-height: 1.5;
}

.start-checkout-domain__panel {
    display: grid;
    gap: 22px;
    padding: 0;
}

.start-checkout-domain__panel[hidden] {
    display: none;
}

.start-checkout-domain__workspace {
    min-width: 0;
    display: grid;
    gap: 26px;
}

.start-checkout-domain__field {
    min-width: 0;
    display: grid;
    gap: 9px;
}

.start-checkout-domain__field > label {
    font-weight: 850;
}

.start-checkout-domain__action-row,
.start-checkout-domain__search-row {
    min-width: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: stretch;
}

.start-checkout-domain__search-row {
    grid-template-columns: minmax(0, 1fr) minmax(126px, 164px) auto;
}

.start-checkout-domain__full-input,
.start-checkout-domain__label-input {
    min-width: 0;
    min-height: 52px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    overflow: hidden;
    border: 1px solid #d8e1ee;
    border-radius: 13px;
    background: #fff;
    transition: border-color .16s ease, box-shadow .16s ease;
}

.start-checkout-domain__full-input:focus-within,
.start-checkout-domain__label-input:focus-within {
    border-color: #1288f6;
    box-shadow: 0 0 0 3px rgba(18, 136, 246, .10);
}

.start-checkout-domain__full-input > span,
.start-checkout-domain__label-input > span {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    padding-inline: 16px;
    border-right: 1px solid #e4e7ec;
    color: #98a2b3;
    background: #f8fafc;
    font-weight: 800;
}

.start-checkout-domain__full-input .form-control,
.start-checkout-domain__label-input .form-control {
    min-height: 50px;
    padding-inline: 14px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.start-checkout-domain__full-input .form-control:focus,
.start-checkout-domain__label-input .form-control:focus {
    box-shadow: none;
}

.start-checkout-domain__extension-select {
    min-width: 0;
    display: block;
}

.start-checkout-domain__extension-select .form-select {
    width: 100%;
    min-height: 52px;
    padding: 0 42px 0 15px;
    border: 1px solid #d8e1ee;
    border-radius: 13px;
    color: #475467;
    background-color: #fff;
    font-weight: 800;
    box-shadow: none;
}

.start-checkout-domain__extension-select .form-select:focus {
    border-color: #1288f6;
    box-shadow: 0 0 0 3px rgba(18, 136, 246, .10);
}

.start-checkout-domain__action-row .start-central-refresh-button,
.start-checkout-domain__search-row .start-central-refresh-button {
    min-height: 52px;
    align-self: stretch;
    white-space: nowrap;
}

.start-checkout-domain__results-panel {
    min-width: 0;
    display: grid;
    gap: 18px;
    padding: clamp(20px, 2.5vw, 30px);
    border-radius: 20px;
    background: #f6f8fb;
}

.start-checkout-domain__results-panel > header {
    display: grid;
    gap: 5px;
}

.start-checkout-domain__results-panel > header > span,
.start-checkout-domain__discovery-heading span {
    color: #0869ef;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.start-checkout-domain__results-panel h2,
.start-checkout-domain__results-panel p,
.start-checkout-domain__discovery-heading h2,
.start-checkout-domain__discovery-heading p,
.start-checkout-domain__tip p,
.start-checkout-domain__extension-card p {
    margin: 0;
}

.start-checkout-domain__results-panel h2,
.start-checkout-domain__discovery-heading h2 {
    font-size: clamp(22px, 2.2vw, 30px);
    letter-spacing: -.02em;
}

.start-checkout-domain__results-panel > header p,
.start-checkout-domain__results-empty span,
.start-checkout-domain__discovery-heading p,
.start-checkout-domain__tip p,
.start-checkout-domain__extension-card p {
    color: #667085;
    line-height: 1.55;
}

.start-checkout-domain__results-empty {
    min-height: 150px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 8px;
    padding: 18px;
    text-align: center;
}

.start-checkout-domain__results-empty svg {
    width: 30px;
    height: 30px;
    color: #1288f6;
}

.start-checkout-domain__result-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.start-checkout-domain__result {
    position: relative;
    min-width: 0;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    padding: 17px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(15, 23, 42, .05);
    cursor: pointer;
    transition:
        box-shadow .18s ease,
        transform .18s ease,
        background-color .18s ease;
}

.start-checkout-domain__result:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(15, 23, 42, .08);
}

.start-checkout-domain__result.is-unavailable {
    opacity: .62;
    cursor: not-allowed;
}

.start-checkout-domain__result.is-unavailable:hover {
    transform: none;
}

.start-checkout-domain__result > input {
    position: absolute;
    opacity: 0;
}

.start-checkout-domain__result-check {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border: 1px solid #cbd5e1;
    border-radius: 999px;
    color: transparent;
    background: #fff;
}

.start-checkout-domain__result input:checked + .start-checkout-domain__result-check {
    border-color: #1288f6;
    color: #fff;
    background: #1288f6;
}

.start-checkout-domain__result:has(input:checked) {
    background: #eef8ff;
    box-shadow:
        inset 0 0 0 1px #1288f6,
        0 12px 28px rgba(18, 136, 246, .10);
}

.start-checkout-domain__result-copy,
.start-checkout-domain__result-meta {
    min-width: 0;
    display: grid;
    gap: 3px;
}

.start-checkout-domain__result-copy strong {
    overflow-wrap: anywhere;
}

.start-checkout-domain__result-copy small,
.start-checkout-domain__result-meta small {
    color: #667085;
    font-size: 12px;
}

.start-checkout-domain__result-meta {
    text-align: right;
}

.start-checkout-domain__result.is-available .start-checkout-domain__result-meta small {
    color: #078754;
    font-weight: 800;
}

.start-checkout-domain__result-actions {
    display: flex;
    justify-content: flex-end;
}

.start-checkout-domain__no-results {
    padding: 12px 14px;
    border-radius: 12px;
    color: #667085;
    background: #fff;
}

.start-checkout-domain__discovery {
    display: grid;
    gap: 22px;
    padding-top: clamp(10px, 2vw, 24px);
}

.start-checkout-domain__discovery-heading {
    display: grid;
    gap: 7px;
    max-width: 920px;
}

.start-checkout-domain__extension-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.start-checkout-domain__extension-card {
    position: relative;
    min-width: 0;
    display: grid;
    gap: 8px;
    padding: 18px;
    border: 0;
    border-radius: 18px;
    color: #172033;
    background: #fff;
    box-shadow: var(--central-card-shadow);
    text-align: left;
    cursor: pointer;
    transition:
        transform .18s ease,
        box-shadow .18s ease,
        background-color .18s ease;
}

.start-checkout-domain__extension-card:hover,
.start-checkout-domain__extension-card:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(15, 23, 42, .11);
}

.start-checkout-domain__extension-card:focus-visible {
    outline: 3px solid rgba(18, 136, 246, .18);
    outline-offset: 3px;
}

.start-checkout-domain__extension-card.is-selected {
    background: #f1f8ff;
    box-shadow:
        inset 0 0 0 1px #1288f6,
        var(--central-card-shadow);
}

.start-checkout-domain__extension-card-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-height: 24px;
    color: #667085;
    font-size: 12px;
}

.start-checkout-domain__extension-badge {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 4px 9px;
    border-radius: 999px;
    color: #0869ef;
    background: #eaf5ff;
    font-size: 11px;
    font-weight: 900;
}

.start-checkout-domain__extension-card > strong {
    color: #0869ef;
    font-size: clamp(25px, 2.4vw, 34px);
    line-height: 1;
    letter-spacing: -.035em;
}

.start-checkout-domain__extension-card > small {
    color: #344054;
    font-weight: 800;
}

.start-checkout-domain__extension-price {
    display: flex;
    align-items: baseline;
    gap: 7px;
    margin-top: 8px;
}

.start-checkout-domain__extension-price strong {
    font-size: 20px;
}

.start-checkout-domain__extension-price small,
.start-checkout-domain__extension-renewal {
    color: #667085;
    font-size: 12px;
}

.start-checkout-domain__tip {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 13px;
    align-items: start;
    padding: 18px 20px;
    border-radius: 16px;
    color: #344054;
    background: #fff8e8;
}

.start-checkout-domain__tip svg {
    width: 24px;
    height: 24px;
    color: #d97706;
}

.start-checkout-domain__tip > div {
    display: grid;
    gap: 4px;
}

.start-checkout-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(340px, .65fr);
    gap: clamp(24px, 3vw, 44px);
    align-items: start;
}

.start-checkout-layout--single {
    grid-template-columns: minmax(0, 1fr);
}

.start-checkout-upsells {
    display: grid;
    gap: 18px;
    padding: 0;
    background: transparent;
}

.start-checkout-review {
    display: grid;
    gap: 18px;
    padding: 22px;
    background: #fff;
}

.start-checkout-upsell {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    padding: 18px;
    border: 1px solid #d8e1ee;
    border-radius: 16px;
    background: #fff;
    cursor: pointer;
}

.start-checkout-upsell > input {
    position: absolute;
    opacity: 0;
}

.start-checkout-upsell:has(input:checked) {
    border-color: #1288f6;
    background: #f6fbff;
}

.start-checkout-upsell__check {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #cbd5e1;
    border-radius: 999px;
    color: transparent;
}

.start-checkout-upsell:has(input:checked) .start-checkout-upsell__check {
    border-color: #1288f6;
    color: #fff;
    background: #1288f6;
}

.start-checkout-upsell__copy strong,
.start-checkout-upsell__copy small {
    display: block;
}

.start-checkout-upsell__copy small {
    margin-top: 4px;
    color: #667085;
    line-height: 1.45;
}

.start-checkout-upsell__price {
    color: #0869ef;
    white-space: nowrap;
}

.start-checkout-summary-column {
    position: sticky;
    top: calc(var(--start-central-sticky-top, 84px) + 18px);
    display: grid;
    gap: 14px;
}

.start-checkout-summary {
    position: static;
    padding: 24px;
    border-radius: 20px;
    background: #fff;
}

.start-checkout-summary__title {
    display: block;
    color: #475569;
    font-size: 14px;
    font-weight: 750;
    letter-spacing: -.01em;
}

.start-checkout-summary h3 {
    margin: 8px 0 18px;
    font-size: 21px;
}

.start-checkout-summary__rows {
    display: grid;
}

.start-checkout-summary__rows > div {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(15, 23, 42, .08);
}

.start-checkout-summary__rows .is-discount {
    color: #078754;
}

.start-checkout-summary__rows .is-total {
    margin-top: 10px;
    padding-top: 16px;
    border-bottom: 0;
    font-size: 18px;
}

.start-checkout-review__plan {
    display: grid;
    gap: 20px;
    padding: 24px;
    border-radius: 18px;
    background: #f6f8fb;
}



.start-checkout-review__plan-intro {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #1f2937;
}

.start-checkout-review__plan-intro > span {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border-radius: 10px;
    color: #1288f6;
    background: #eaf5ff;
}

.start-checkout-review__plan-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.start-checkout-review__feature-group {
    display: grid;
    gap: 12px;
    align-content: start;
    padding: 18px;
    border-radius: 16px;
    background: #fff;
}

.start-checkout-review__feature-group--domain {
    padding: 20px;
}

.start-checkout-review__feature-heading small {
    display: block;
    margin-bottom: 4px;
    color: #64748b;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}


.start-checkout-review__feature-price {
    margin-inline-start: auto;
    color: #0f172a;
    font-size: 20px;
    white-space: nowrap;
}

.start-checkout-review__plan--domain {
    margin-top: 4px;
}

.start-checkout-review__feature-heading {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.start-checkout-review__feature-heading > span {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 34px;
    border-radius: 11px;
    color: #1288f6;
    background: #eef7ff;
}

.start-checkout-review__feature-heading > div {
    min-width: 0;
}

.start-checkout-review__feature-heading h3 {
    margin: 0;
    color: #0f172a;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.35;
}

.start-checkout-review__feature-heading p {
    margin: 4px 0 0;
    color: #667085;
    font-size: 13px;
    line-height: 1.5;
}


.start-checkout-review__feature-list {
    display: grid;
    gap: 9px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.start-checkout-review__feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: #344054;
    font-size: 14px;
    line-height: 1.45;
}

.start-checkout-review__feature-list li > span:first-child {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    margin-top: 1px;
    color: #078754;
}

.start-checkout-review__feature-list li.is-unavailable {
    color: #98a2b3;
}

.start-checkout-review__feature-list li.is-unavailable > span:first-child {
    color: #98a2b3;
}

.start-checkout-final-action {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    background: transparent;
}

.start-checkout-final-action .start-central-refresh-button {
    width: 100%;
    justify-content: center;
}

.start-central .start-checkout-primary-action,
.mp-embedded-checkout .start-checkout-primary-action {
    position: relative;
    isolation: isolate;
    width: 100%;
    min-width: 0;
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 14px 22px;
    overflow: hidden;
    border: 1px solid #000;
    border-radius: 999px;
    color: #fff;
    background: #000;
    box-shadow: none;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    cursor: pointer;
    transition:
        transform .2s ease,
        background-color .2s ease,
        border-color .2s ease,
        box-shadow .2s ease,
        opacity .2s ease;
}

.start-central .start-checkout-primary-action::before,
.mp-embedded-checkout .start-checkout-primary-action::before {
    content: '';
    position: absolute;
    z-index: 1;
    top: -45%;
    bottom: -45%;
    left: -42%;
    width: 24%;
    pointer-events: none;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0),
        rgba(255, 255, 255, .22),
        rgba(255, 255, 255, 0)
    );
    transform: skewX(-20deg) translateX(0);
    animation: startCheckoutPrimaryActionShine 5s ease-in-out infinite;
}

.start-central .start-checkout-primary-action::after,
.mp-embedded-checkout .start-checkout-primary-action::after {
    content: '';
    position: absolute;
    z-index: 0;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(90deg, #15803d 0%, #16a34a 48%, #22c55e 100%);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .9s cubic-bezier(.22, 1, .36, 1);
}

.start-central .start-checkout-primary-action > *,
.mp-embedded-checkout .start-checkout-primary-action > * {
    position: relative;
    z-index: 2;
}

.start-central .start-checkout-primary-action:hover:not(:disabled),
.start-central .start-checkout-primary-action:focus-visible,
.mp-embedded-checkout .start-checkout-primary-action:hover:not(:disabled),
.mp-embedded-checkout .start-checkout-primary-action:focus-visible {
    color: #fff;
    background: #000;
    border-color: #000;
    box-shadow: 0 12px 26px rgba(0, 0, 0, .22);
    outline: 0;
    transform: translateY(-2px);
}

.start-central .start-checkout-primary-action:hover:not(:disabled)::before,
.mp-embedded-checkout .start-checkout-primary-action:hover:not(:disabled)::before {
    animation: startCheckoutPrimaryActionShineHover 2.2s cubic-bezier(.22, 1, .36, 1) infinite;
}

.start-central .start-checkout-primary-action:focus-visible,
.mp-embedded-checkout .start-checkout-primary-action:focus-visible {
    outline: 3px solid rgba(0, 0, 0, .18);
    outline-offset: 3px;
}

.start-central .start-checkout-primary-action:active:not(:disabled),
.mp-embedded-checkout .start-checkout-primary-action:active:not(:disabled) {
    color: #fff;
    background: #000;
    border-color: #000;
    box-shadow: 0 9px 20px rgba(0, 0, 0, .18);
    transform: translateY(0);
}

.mp-embedded-checkout .start-checkout-primary-action:disabled {
    cursor: wait;
    opacity: .62;
}

.mp-embedded-checkout .start-checkout-primary-action.is-processing {
    border-color: #16a34a;
    box-shadow: 0 12px 28px rgba(22, 163, 74, .22);
    transform: none;
}

.mp-embedded-checkout .start-checkout-primary-action.is-processing::before {
    animation: none;
    opacity: 0;
}

.mp-embedded-checkout .start-checkout-primary-action.is-processing::after {
    transform: scaleX(1);
}

.mp-embedded-checkout .start-checkout-primary-action.is-processing:disabled {
    opacity: 1;
}

@keyframes startCheckoutPrimaryActionShine {
    0%,
    56% {
        transform: skewX(-20deg) translateX(0);
        opacity: 0;
    }

    62% {
        opacity: 1;
    }

    92% {
        transform: skewX(-20deg) translateX(670%);
        opacity: 1;
    }

    100% {
        transform: skewX(-20deg) translateX(670%);
        opacity: 0;
    }
}

@keyframes startCheckoutPrimaryActionShineHover {
    0% {
        transform: skewX(-20deg) translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    82% {
        transform: skewX(-20deg) translateX(670%);
        opacity: 1;
    }

    100% {
        transform: skewX(-20deg) translateX(670%);
        opacity: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .start-central .start-checkout-primary-action::before,
    .mp-embedded-checkout .start-checkout-primary-action::before {
        animation: none;
    }

    .start-central .start-checkout-primary-action::after,
    .mp-embedded-checkout .start-checkout-primary-action::after {
        transition-duration: .01ms;
    }
}

.start-central-promotions {
    display: grid;
    gap: 16px;
}

.start-central-promotion {
    min-height: var(--central-promotion-min-height, 220px);
    display: flex;
    align-items: center;
    padding: clamp(26px, 5vw, 54px);
    overflow: hidden;
    border-radius: var(--central-promotion-radius, 28px);
    color: var(--central-promotion-text, #fff);
    background: var(--central-promotion-background);
    background-position: center;
    background-size: cover;
    box-shadow: var(--central-card-shadow);
}

.start-central-promotion__content {
    max-width: 680px;
}

.start-central-promotion--center {
    justify-content: center;
    text-align: center;
}

.start-central-promotion--center .start-central-promotion__content {
    margin-inline: auto;
}

.start-central-promotion--right {
    justify-content: flex-end;
    text-align: right;
}

.start-central-promotion--right .start-central-promotion__content {
    margin-left: auto;
}

.start-central-promotion__content > span {
    display: block;
    margin-bottom: 14px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.start-central-promotion__content h2 {
    max-width: 620px;
    margin: 0;
    color: inherit;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.02;
    letter-spacing: -.04em;
}

.start-central-promotion__content p {
    max-width: 620px;
    margin: 18px 0 0;
    color: inherit;
    font-size: 17px;
    line-height: 1.55;
    opacity: .92;
}

.start-central-promotion--center .start-central-promotion__content p {
    margin-inline: auto;
}

.start-central-promotion--right .start-central-promotion__content p {
    margin-left: auto;
}

.start-central-promotion__content a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    padding: 0 18px;
    border-radius: var(--central-promotion-button-radius, 11px);
    color: var(--central-promotion-button-text, #1d4ed8);
    background: var(--central-promotion-button-background, #fff);
    font-size: 13px;
    font-weight: 900;
}

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

    .start-checkout-review__plan-features {
        grid-template-columns: 1fr;
    }

    .start-checkout-domain__extension-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .start-checkout-summary {
        position: static;
    }
}

@media (max-width: 767.98px) {
    .start-central--journey {
        width: 100%;
        padding-inline: 16px;
    }

    .start-checkout-domain__modes,
    .start-checkout-domain__result-list {
        grid-template-columns: 1fr;
    }

    .start-checkout-domain__search-row {
        grid-template-columns: minmax(0, 1fr) minmax(118px, 142px);
    }

    .start-checkout-domain__search-row .start-checkout-domain__search-button {
        width: 100%;
        grid-column: 1 / -1;
        justify-content: center;
    }

    .start-checkout-domain__extension-cards {
        grid-template-columns: 1fr;
    }

    .start-checkout-steps {
        grid-template-columns: repeat(var(--start-checkout-step-count, 4), auto);
        justify-content: center;
        gap: 12px;
    }

    .start-checkout-step,
    .start-checkout-step.is-current {
        width: auto;
        min-width: 32px;
        min-height: 32px;
        justify-content: flex-start;
        gap: 7px;
        padding: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    .start-checkout-step strong {
        width: 32px;
        height: 32px;
        flex: 0 0 32px;
    }

    .start-checkout-step > span {
        display: none;
        white-space: nowrap;
    }

    .start-checkout-step.is-current > span {
        display: inline;
    }

}

@media (max-width: 575.98px) {
    .start-checkout {
        padding-top: 16px;
    }

    .start-checkout-review__plan {
        padding: 18px;
    }

    .start-checkout-domain__action-row,
    .start-checkout-domain__search-row,
    .start-checkout-domain__result {
        grid-template-columns: 1fr;
    }

    .start-checkout-upsell {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .start-checkout-upsell__price {
        grid-column: 2;
    }

    .start-checkout-domain__result-meta {
        text-align: left;
    }

    .start-checkout-domain__action-row .start-central-refresh-button,
    .start-checkout-domain__search-row .start-central-refresh-button,
    .start-checkout-domain__result-actions .start-central-refresh-button {
        width: 100%;
        justify-content: center;
    }

    .start-checkout-domain__result-actions {
        display: block;
    }
}

.sa-invoice-summary__row--discount,
.sa-invoice-summary__coupon-note {
    color: #078754;
}

.sa-invoice-summary__coupon-note {
    display: block;
    margin: -6px 0 12px;
    font-size: 12px;
    line-height: 1.45;
}

.sa-invoice-coupon {
    margin: 14px 0 2px;
    background: transparent;
}

.sa-invoice-coupon__form {
    display: grid;
    gap: 8px;
}

.sa-invoice-coupon__form > label {
    color: #344054;
    font-size: 12px;
    font-weight: 850;
}

.sa-invoice-coupon__form > div {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
}

.sa-invoice-coupon__form input {
    min-width: 0;
    min-height: 40px;
    padding: 0 12px;
    border: 1px solid #d8e1ee;
    border-radius: 10px;
    background: #fff;
}

.sa-invoice-coupon__form button,
.sa-invoice-coupon__applied button {
    min-height: 40px;
    padding: 0 13px;
    border: 0;
    border-radius: 10px;
    color: #0869ef;
    background: #f1f8ff;
    font-size: 12px;
    font-weight: 850;
}

.sa-invoice-coupon__applied {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.sa-invoice-coupon__applied span,
.sa-invoice-coupon__applied strong,
.sa-invoice-coupon__applied small {
    display: block;
}

.sa-invoice-coupon__applied strong {
    color: #078754;
}

.sa-invoice-coupon__applied small {
    margin-top: 3px;
    color: #667085;
}


/* Feedback local e composição canônica de revisão/fatura. */
.start-central-field-feedback {
    display: block;
    margin-top: 7px;
    color: #b42318;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
}

.sa-invoice-card--payment {
    overflow: visible;
}

.sa-invoice-card--payment .mp-embedded-checkout {
    width: 100%;
    min-width: 0;
}

@media (max-width: 1180px) {
    .sa-invoice-detail__layout {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 1100px) {
    .start-checkout-summary-column {
        position: static;
    }
}

.start-auth-checkout-steps {
    margin-bottom: 18px;
}
