.eco-express-page {
    background: linear-gradient(180deg, #f6f9fc 0%, #ffffff 28%);
    border-radius: 16px;
    margin-bottom: 40px;
}

.eco-express-hero {
    background: linear-gradient(135deg, #0f4c81 0%, #153e75 45%, #0b2745 100%);
    color: #fff;
    padding: 36px;
    border-radius: 18px;
    box-shadow: 0 22px 48px rgba(15, 76, 129, 0.18);
    margin-bottom: 28px;
}

.eco-express-hero h1 {
    font-size: 38px;
    line-height: 1.1;
    margin: 0 0 14px;
    color: #fff;
}

.eco-express-hero p {
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
    max-width: 720px;
    color: rgba(255, 255, 255, 0.9);
}

.eco-express-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.eco-express-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    font-size: 13px;
    font-weight: 600;
}

.eco-express-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(310px, 0.9fr);
    gap: 28px;
}

.eco-express-main,
.eco-express-sidebar {
    min-width: 0;
}

.eco-step-card,
.eco-summary-card,
.eco-checkout-card {
    background: #fff;
    border: 1px solid #dbe6ef;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(18, 44, 71, 0.06);
}

.eco-summary-card,
.eco-step-card {
    position: relative;
}

.eco-summary-card.is-loading::after,
.eco-step-card.is-loading::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.56);
    pointer-events: none;
}

.eco-summary-card.is-loading::before,
.eco-step-card.is-loading::before {
    content: "Actualizando...";
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
    padding: 6px 10px;
    border-radius: 999px;
    background: #eef6ff;
    color: #0f4c81;
    border: 1px solid #cfe1f2;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 8px 18px rgba(15, 76, 129, 0.08);
}

.eco-step-card {
    padding: 26px;
    margin-bottom: 22px;
}

.eco-step-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.eco-step-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    background: #eaf3fc;
    color: #0f4c81;
}

.eco-step-header h2 {
    margin: 0;
    font-size: 28px;
    color: #163352;
}

.eco-step-header p {
    margin: 4px 0 0;
    color: #5b6e81;
}

.eco-plan-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.eco-cycle-selector {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 18px;
}

.eco-cycle-option {
    position: relative;
    display: inline-flex;
    align-items: center;
    border: 1px solid #d4e1ec;
    background: #f8fbfe;
    border-radius: 999px;
    padding: 0;
    cursor: pointer;
    transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.eco-cycle-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.eco-cycle-option span {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 16px;
    font-size: 14px;
    font-weight: 700;
    color: #244567;
}

.eco-cycle-option.is-selected {
    border-color: #0f4c81;
    background: #eef6ff;
    box-shadow: 0 10px 20px rgba(15, 76, 129, 0.08);
}

.eco-plan-card {
    position: relative;
    border: 1px solid #d8e4ee;
    background: #fbfdff;
    border-radius: 16px;
    padding: 20px 20px 18px;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.eco-plan-card:hover {
    transform: translateY(-2px);
    border-color: #9ec0df;
    box-shadow: 0 18px 32px rgba(15, 76, 129, 0.08);
}

.eco-plan-card.is-selected {
    border-color: #0f4c81;
    box-shadow: 0 20px 36px rgba(15, 76, 129, 0.14);
    background: linear-gradient(180deg, #f8fbff 0%, #eef5fb 100%);
}

.eco-plan-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.eco-plan-title {
    font-size: 22px;
    line-height: 1.2;
    color: #133b64;
    margin: 0 0 10px;
}

.eco-plan-eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: #eef6ff;
    color: #0f4c81;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.eco-plan-price {
    font-size: 34px;
    line-height: 1;
    font-weight: 800;
    color: #0f4c81;
    margin-bottom: 8px;
}

.eco-plan-cycle {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #5c7185;
    margin-bottom: 12px;
}

.eco-plan-trust {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 12px;
    border-top: 1px solid #e4edf5;
    color: #45627f;
    font-size: 13px;
    font-weight: 600;
}

.eco-plan-trust i {
    color: #0f4c81;
}

.eco-domain-options {
    display: grid;
    gap: 14px;
}

.eco-domain-choice {
    border: 1px solid #d8e4ee;
    border-radius: 14px;
    padding: 16px;
    background: #fbfdff;
}

.eco-domain-choice.is-selected {
    border-color: #0f4c81;
    background: #f7fbff;
}

.eco-domain-choice label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0;
    cursor: pointer;
}

.eco-domain-choice-title {
    display: block;
    font-weight: 700;
    color: #173b61;
    margin-bottom: 4px;
}

.eco-domain-choice-copy {
    display: block;
    color: #5a6d81;
    line-height: 1.55;
}

.eco-domain-fields {
    display: none;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid #e5edf4;
}

.eco-domain-choice.is-selected .eco-domain-fields {
    display: block;
}

.eco-domain-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 110px;
    gap: 12px;
}

.eco-domain-existing {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 110px;
    gap: 12px;
}

.eco-domain-help {
    font-size: 13px;
    color: #6b7f92;
    margin-top: 8px;
}

.eco-domain-actions {
    margin-top: 16px;
}

.eco-domain-captcha-form {
    margin-top: 14px;
}

.eco-domain-captcha-trigger {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.eco-domain-captcha-wrap {
    padding: 0 8px;
}

.eco-domain-captcha-wrap .captcha-container {
    margin: 0;
}

.eco-domain-default-captcha {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.eco-domain-default-captcha .captchaimage img {
    max-width: 160px;
}

.eco-domain-autocheck {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    border-radius: 12px;
    border: 1px dashed #c8d9e8;
    background: #f7fbff;
    color: #486882;
    font-size: 13px;
    padding: 0 14px;
}

.eco-domain-result {
    margin-top: 16px;
    border-radius: 14px;
    padding: 16px 18px;
    border: 1px solid #d9e4ed;
    background: #f8fbff;
}

.eco-addons-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
}

.eco-ssl-select-card {
    display: grid;
    gap: 14px;
    padding: 18px;
    border: 1px solid #b9d7f4;
    border-radius: 16px;
    background: linear-gradient(180deg, #f7fbff 0%, #eef6ff 100%);
    box-shadow: 0 16px 30px rgba(15, 76, 129, 0.08);
    margin-bottom: 16px;
}

.eco-ssl-select-copy h3 {
    margin: 0 0 6px;
    font-size: 20px;
    color: #0f3f6d;
}

.eco-ssl-select-copy p {
    margin: 0;
    color: #557089;
    line-height: 1.6;
}

.eco-ssl-select-controls {
    display: grid;
    gap: 10px;
}

.eco-ssl-select {
    width: 100%;
    min-height: 46px;
    border: 1px solid #c7dbef;
    border-radius: 12px;
    padding: 0 14px;
    background: #fff;
    color: #173b61;
    font-size: 14px;
    font-weight: 600;
}

.eco-ssl-select-note {
    font-size: 13px;
    color: #4f6b86;
}

.eco-enhancements-group + .eco-enhancements-group {
    margin-top: 22px;
}

.eco-enhancements-title {
    font-size: 16px;
    font-weight: 800;
    color: #173b61;
    margin: 0 0 14px;
}

.eco-enhancements-subtitle {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #5a6d81;
    margin: 4px 0 12px;
}

.eco-config-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.eco-config-card {
    border: 1px solid #d8e4ee;
    border-radius: 16px;
    background: #fbfdff;
    padding: 18px;
}

.eco-config-card.is-included {
    border-color: #c8e8d0;
    background: linear-gradient(180deg, #f7fcf8 0%, #edf8f0 100%);
}

.eco-config-title {
    margin: 0 0 12px;
    font-size: 17px;
    font-weight: 800;
    color: #163352;
}

.eco-config-state {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    padding: 7px 12px;
    border-radius: 999px;
    background: #dff2e4;
    color: #21633b;
    font-size: 12px;
    font-weight: 800;
}

.eco-config-accordion {
    border: 1px solid #d8e4ee;
    border-radius: 16px;
    background: #fbfdff;
    overflow: hidden;
}

.eco-config-accordion.is-open {
    border-color: #0f4c81;
    box-shadow: 0 14px 28px rgba(15, 76, 129, 0.08);
}

.eco-config-accordion-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px;
    background: transparent;
    border: 0;
    text-align: left;
    color: #163352;
}

.eco-config-accordion-meta {
    min-width: 0;
}

.eco-config-accordion-copy {
    display: block;
    margin-top: 4px;
    color: #5a6d81;
    font-size: 13px;
    line-height: 1.5;
}

.eco-config-accordion-icon {
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #eef6ff;
    color: #0f4c81;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.eco-config-accordion.is-open .eco-config-accordion-icon {
    transform: rotate(180deg);
}

.eco-config-accordion-body {
    display: none;
    padding: 0 18px 18px;
    border-top: 1px solid #e5edf4;
}

.eco-config-accordion.is-open .eco-config-accordion-body {
    display: block;
}

.eco-config-card select,
.eco-config-card input[type="number"] {
    width: 100%;
    min-height: 46px;
    border: 1px solid #bfd1e2;
    border-radius: 12px;
    background: #fff;
    padding: 0 14px;
    color: #173b61;
}

.eco-config-choices {
    display: grid;
    gap: 10px;
}

.eco-config-choice {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    border: 1px solid #d9e4ef;
    border-radius: 12px;
    padding: 12px;
    background: #fff;
    cursor: pointer;
}

.eco-config-choice-compact {
    align-items: center;
    min-height: 56px;
}

.eco-config-choice input {
    margin-top: 3px;
}

.eco-config-choice-label {
    display: block;
    font-weight: 700;
    color: #173b61;
}

.eco-config-choice-copy {
    display: block;
    color: #5a6d81;
    font-size: 13px;
    line-height: 1.5;
    margin-top: 2px;
}

.eco-addon-card {
    position: relative;
    border: 1px solid #d8e4ee;
    border-radius: 16px;
    background: #fbfdff;
    padding: 18px;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
    cursor: pointer;
}

.eco-addon-card[data-addon-id="curated-ssl"] {
    border-color: #b9d7f4;
    background: linear-gradient(180deg, #f7fbff 0%, #eef6ff 100%);
    box-shadow: 0 16px 30px rgba(15, 76, 129, 0.08);
    grid-column: 1 / -1;
}

.eco-addon-card[data-addon-id="curated-ssl"] .eco-addon-title {
    font-size: 21px;
    color: #0f3f6d;
}

.eco-addon-card[data-addon-id="curated-ssl"] .eco-addon-price {
    color: #0f4c81;
}

.eco-addon-card[data-addon-id="curated-ssl"] .eco-addon-state {
    background: #dff0e3;
    color: #21633b;
}

.eco-ssl-options {
    margin-top: 16px;
    display: grid;
    gap: 12px;
}

.eco-ssl-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px;
    border: 1px solid #cfe1f2;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.86);
}

.eco-ssl-option-copy {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.eco-ssl-option-copy strong {
    color: #163352;
    font-size: 14px;
}

.eco-ssl-option-copy span {
    color: #5a6d81;
    font-size: 13px;
    line-height: 1.45;
}

.eco-ssl-option-link {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 10px;
    background: #0f4c81;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.eco-ssl-option-link:hover,
.eco-ssl-option-link:focus {
    color: #fff;
    text-decoration: none;
    background: #0b3c66;
}

.eco-addon-card:hover {
    transform: translateY(-2px);
    border-color: #9ec0df;
    box-shadow: 0 16px 28px rgba(15, 76, 129, 0.08);
}

.eco-addon-card.is-selected {
    border-color: #0f4c81;
    background: linear-gradient(180deg, #f8fbff 0%, #eef5fb 100%);
    box-shadow: 0 18px 34px rgba(15, 76, 129, 0.12);
}

.eco-addon-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.eco-addon-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 10px;
}

.eco-addon-title {
    margin: 0;
    font-size: 19px;
    line-height: 1.25;
    color: #163352;
}

.eco-addon-price {
    white-space: nowrap;
    font-size: 15px;
    font-weight: 800;
    color: #0f4c81;
}

.eco-addon-copy {
    margin: 0;
    color: #5a6d81;
    line-height: 1.6;
    font-size: 14px;
}

.eco-addon-state {
    margin-top: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: #edf4fb;
    color: #244567;
    font-size: 12px;
    font-weight: 700;
}

.eco-addon-card.is-selected .eco-addon-state {
    background: #dff0e3;
    color: #21633b;
}

.eco-addon-link-wrap {
    margin-top: 14px;
}

.eco-addon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 10px;
    border: 1px solid #0f4c81;
    color: #0f4c81;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    background: #eef6ff;
}

.eco-addon-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    width: 100%;
    padding: 0 16px;
    border-radius: 12px;
    border: 1px solid #0f4c81;
    background: #0f4c81;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.eco-addon-action:hover,
.eco-addon-action:focus {
    background: #0b3c66;
    border-color: #0b3c66;
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
}

.eco-addon-action.is-selected {
    background: #eef6ff;
    color: #0f4c81;
}

.eco-addon-action-link {
    background: #eef6ff;
    color: #0f4c81;
}

.eco-addon-link:hover,
.eco-addon-link:focus {
    color: #0b3558;
    text-decoration: none;
    background: #e2eefb;
}

.eco-addon-empty {
    border: 1px dashed #c8d8e8;
    border-radius: 14px;
    padding: 18px;
    background: #f8fbfe;
    color: #557089;
}

.eco-upsell-gate {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px;
    border: 1px solid #d7e5f2;
    background: #f7fbff;
    border-radius: 16px;
    margin-bottom: 18px;
}

.eco-upsell-gate-copy {
    display: grid;
    gap: 4px;
    color: #45627f;
}

.eco-upsell-gate-copy strong {
    color: #163352;
    font-size: 16px;
}

.eco-upsell-gate-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.eco-upsell-continue {
    margin-top: 18px;
    display: flex;
    justify-content: flex-end;
}

.eco-domain-result.is-success {
    background: #eefbf1;
    border-color: #b8dfc0;
    color: #1f5a2d;
}

.eco-domain-result.is-error {
    background: #fff3f3;
    border-color: #e8b5b5;
    color: #8a2d2d;
}

.eco-domain-result.is-info {
    background: #eef6ff;
    border-color: #cfe1f2;
    color: #184466;
}

.eco-domain-result.is-loading {
    background: #f7fbff;
    border-color: #cfe1f2;
    color: #184466;
}

.eco-domain-result-copy {
    line-height: 1.65;
}

.eco-domain-result.is-loading .eco-domain-result-copy::before {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-right: 10px;
    border-radius: 50%;
    border: 2px solid rgba(15, 76, 129, 0.2);
    border-top-color: #0f4c81;
    vertical-align: -2px;
    animation: ecoSpin 0.8s linear infinite;
}

.eco-domain-result-price {
    margin-top: 8px;
    font-size: 24px;
    font-weight: 800;
}

.eco-field-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #3a5571;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.eco-field-input,
.eco-field-select {
    width: 100%;
    height: 48px;
    border-radius: 12px;
    border: 1px solid #cdd9e4;
    background: #fff;
    padding: 0 14px;
    color: #17324c;
    box-shadow: inset 0 1px 2px rgba(8, 31, 56, 0.02);
}

.eco-field-input:focus,
.eco-field-select:focus {
    outline: none;
    border-color: #2e90fa;
    box-shadow: 0 0 0 4px rgba(46, 144, 250, 0.14);
}

.eco-summary-card {
    padding: 22px;
    position: sticky;
    top: 24px;
}

.eco-summary-card h3 {
    margin: 0 0 18px;
    font-size: 24px;
    color: #17324c;
}

.eco-summary-list {
    display: grid;
    gap: 12px;
    margin-bottom: 18px;
}

.eco-summary-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    font-size: 15px;
    color: #36516c;
}

.eco-summary-row strong {
    color: #163352;
}

.eco-summary-highlight {
    border: 1px solid #cfe1f2;
    background: linear-gradient(180deg, #f7fbff 0%, #edf5fb 100%);
    border-radius: 14px;
    padding: 18px;
    margin-bottom: 18px;
}

.eco-summary-highlight .eco-total-label {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #486783;
    margin-bottom: 8px;
}

.eco-summary-highlight .eco-total {
    font-size: 34px;
    line-height: 1;
    color: #0f4c81;
    font-weight: 800;
    margin-bottom: 6px;
}

.eco-summary-highlight .eco-total-copy {
    color: #597089;
    line-height: 1.55;
}

.eco-summary-note,
.eco-summary-message {
    color: #60768d;
    line-height: 1.65;
    margin-bottom: 14px;
}

.eco-summary-discount {
    margin-bottom: 14px;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid #b8dfc0;
    background: linear-gradient(180deg, #eefbf1 0%, #e6f7ea 100%);
}

.eco-summary-discount-label {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #2d6440;
    margin-bottom: 4px;
}

.eco-summary-discount-value {
    font-size: 28px;
    line-height: 1;
    font-weight: 800;
    color: #1f5a2d;
    margin-bottom: 4px;
}

.eco-summary-discount-copy {
    color: #41674d;
    font-size: 13px;
    line-height: 1.5;
}

.eco-summary-trust {
    display: grid;
    gap: 8px;
    margin: 12px 0 14px;
    padding: 12px 14px;
    border: 1px solid #d9e7f3;
    border-radius: 14px;
    background: #f8fbfe;
}

.eco-summary-trust span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #3f5f7f;
    font-size: 13px;
    font-weight: 700;
}

.eco-summary-trust i {
    color: #0f4c81;
}

.eco-renewal-hint {
    margin-bottom: 14px;
    padding: 10px 12px;
    border-radius: 12px;
    background: #f7fbff;
    border: 1px dashed #cfe1f2;
    color: #5f7890;
    font-size: 13px;
    line-height: 1.55;
}

.eco-summary-breakdown {
    margin-top: 18px;
    border-top: 1px solid #e1ebf3;
    padding-top: 18px;
}

.eco-summary-breakdown-title {
    font-size: 16px;
    font-weight: 700;
    color: #17324c;
    margin-bottom: 12px;
}

.eco-summary-breakdown-row {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    font-size: 14px;
    color: #4e667f;
    margin-bottom: 8px;
    align-items: flex-start;
}

.eco-summary-breakdown-row span {
    max-width: 64%;
    line-height: 1.45;
}

.eco-summary-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
}

.eco-summary-action {
    appearance: none;
    border: 0;
    background: transparent;
    color: #0f4c81;
    font-size: 12px;
    font-weight: 700;
    padding: 0;
    line-height: 1.2;
    cursor: pointer;
}

.eco-summary-action:hover {
    text-decoration: underline;
}

.eco-summary-action.is-danger {
    color: #b42318;
}

.eco-summary-breakdown-row strong {
    color: #17324c;
    text-align: right;
}

.eco-summary-breakdown-row.is-total {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #e1ebf3;
    font-size: 16px;
    font-weight: 700;
}

.eco-summary-breakdown-row.is-subtle span,
.eco-summary-breakdown-row.is-subtle strong {
    color: #6e8092;
    font-size: 12px;
    font-weight: 500;
}

.eco-promo-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #edf7ed;
    border: 1px solid #b5d9b7;
    color: #255f2c;
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 14px;
}

.eco-button-primary,
.eco-button-secondary,
.eco-button-tertiary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    border-radius: 14px;
    border: 0;
    height: 52px;
    font-size: 16px;
    font-weight: 700;
    transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

.eco-button-primary {
    color: #fff;
    background: linear-gradient(135deg, #0f4c81 0%, #1e6bc2 100%);
    box-shadow: 0 18px 30px rgba(15, 76, 129, 0.2);
}

.eco-button-secondary {
    margin-top: 12px;
    color: #0f4c81;
    background: #f7fbff;
    border: 1px solid #c7dbef;
    box-shadow: none;
    height: 46px;
    font-size: 14px;
}

.eco-button-tertiary {
    width: auto;
    height: auto;
    margin: 10px auto 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: #547190;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
}

.eco-button-primary:hover,
.eco-button-secondary:hover,
.eco-button-tertiary:hover {
    transform: translateY(-1px);
}

.eco-button-tertiary:hover {
    color: #0f4c81;
    box-shadow: none;
}

.eco-button-primary[disabled],
.eco-button-secondary[disabled],
.eco-button-tertiary[disabled] {
    opacity: 0.65;
    cursor: wait;
    transform: none;
}

.eco-checkout-card {
    padding: 30px 32px;
    min-height: 260px;
}

.eco-checkout-empty {
    display: grid;
    gap: 16px;
    justify-items: start;
}

.eco-checkout-empty h3,
.eco-checkout-loaded-header h3 {
    margin: 0;
    font-size: 28px;
    color: #17324c;
}

.eco-checkout-empty p,
.eco-checkout-loaded-header p {
    margin: 0;
    line-height: 1.7;
    color: #617589;
}

.eco-checkout-loaded-header,
.eco-native-checkout {
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.eco-checkout-loaded-header {
    margin-bottom: 22px;
}

.eco-checkout-status,
.eco-checkout-errors {
    margin-bottom: 16px;
    border-radius: 14px;
    padding: 15px 18px;
    line-height: 1.6;
}

.eco-checkout-status {
    background: #eef6ff;
    border: 1px solid #cde2f7;
    color: #184466;
}

.eco-checkout-errors {
    background: #fff1f1;
    border: 1px solid #f0b8b8;
    color: #8b2d2d;
}

.eco-checkout-errors ul {
    margin: 8px 0 0 18px;
    padding: 0;
}

.eco-field-invalid,
.eco-native-checkout .eco-field-invalid {
    border-color: #d64545 !important;
    box-shadow: 0 0 0 4px rgba(214, 69, 69, 0.12) !important;
}

.eco-field-invalid-group {
    border-color: #d64545 !important;
    background: #fff8f8 !important;
}

.eco-native-checkout .checkbox-inline.eco-field-invalid-group,
.eco-native-checkout .checkbox.eco-field-invalid-group,
.eco-native-checkout label.eco-field-invalid-group {
    display: inline-flex;
    flex-wrap: wrap;
    padding: 10px 12px;
    border: 1px solid #f0b8b8;
    border-radius: 12px;
}

.eco-field-error-message {
    width: 100%;
    margin-top: 6px;
    color: #9b2c2c;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
}

.eco-native-checkout .sub-heading span {
    color: #17324c;
    font-weight: 700;
}

.eco-native-checkout {
    margin-top: 18px;
}

.eco-native-data-note {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid #d8e7f4;
    background: #f8fbfe;
    color: #5a7288;
    font-size: 13px;
    line-height: 1.6;
}

.eco-native-data-note strong {
    color: #0f4c81;
}

.eco-native-data-note.is-active {
    border-color: #b8dbbf;
    background: #edf8ef;
    color: #356543;
}

.eco-native-data-note.is-active strong {
    color: #1f6a32;
}

.eco-native-section {
    margin-bottom: 18px;
    padding: 22px 24px;
    border: 1px solid #dbe7f0;
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    box-shadow: 0 8px 24px rgba(16, 44, 73, 0.04);
}

.eco-native-section .sub-heading {
    margin-top: 0;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e7eef5;
}

.eco-native-section .sub-heading span {
    display: block;
    font-size: 19px;
    letter-spacing: -0.01em;
}

.eco-native-section > .row:last-child,
.eco-native-section > .form-group:last-child,
.eco-native-section > p:last-child,
.eco-native-section > div:last-child {
    margin-bottom: 0;
}

.eco-native-section-collapsed,
.eco-native-hidden-field {
    display: none !important;
}

.eco-native-checkout .field,
.eco-native-checkout .form-control,
.eco-native-checkout select,
.eco-native-checkout input[type="text"],
.eco-native-checkout input[type="email"],
.eco-native-checkout input[type="password"],
.eco-native-checkout input[type="tel"] {
    width: 100%;
    border-radius: 12px;
    border-color: #cdd9e4;
    min-height: 46px;
    box-shadow: none;
    background: #fff;
}

.eco-native-checkout textarea.field {
    width: 100%;
    max-width: 100%;
    min-height: 120px;
    padding: 14px 16px;
    border-radius: 12px;
    border-color: #cdd9e4;
}

.eco-native-checkout .prepend-icon .field-icon {
    display: none;
}

.eco-native-checkout .prepend-icon .field {
    padding-left: 16px;
}

.eco-native-checkout .field:focus,
.eco-native-checkout .form-control:focus,
.eco-native-checkout select:focus,
.eco-native-checkout input[type="text"]:focus,
.eco-native-checkout input[type="email"]:focus,
.eco-native-checkout input[type="password"]:focus,
.eco-native-checkout input[type="tel"]:focus,
.eco-native-checkout textarea.field:focus {
    border-color: #2e90fa;
    box-shadow: 0 0 0 4px rgba(46, 144, 250, 0.12);
}

.eco-native-checkout .alert-success.large-text {
    display: none;
}

.eco-native-checkout #btnCompleteOrder {
    min-height: 54px;
    min-width: 240px;
    border-radius: 14px;
    padding: 0 28px;
    font-size: 16px;
    color: #fff !important;
    background: linear-gradient(135deg, #0f4c81 0%, #1e6bc2 100%);
    border: 0;
    box-shadow: 0 18px 30px rgba(15, 76, 129, 0.18);
    font-weight: 800;
    text-shadow: none;
}

.eco-native-checkout #btnCompleteOrder:hover,
.eco-native-checkout #btnCompleteOrder:focus {
    color: #fff !important;
    background: linear-gradient(135deg, #0d416e 0%, #175aa7 100%);
    box-shadow: 0 20px 34px rgba(15, 76, 129, 0.24);
}

.eco-native-checkout #btnCompleteOrder[disabled],
.eco-native-checkout #btnCompleteOrder.disabled {
    color: #fff !important;
    opacity: 0.72;
    cursor: wait;
}

.eco-native-checkout #btnCompleteOrder:not([disabled]):not(.disabled) {
    opacity: 1;
    cursor: pointer;
}

.eco-native-checkout .radio-inline,
.eco-native-checkout .radio {
    padding: 10px 14px;
    margin: 0 8px 8px 0;
    border: 1px solid #d7e2eb;
    border-radius: 12px;
    background: #fff;
}

.eco-native-checkout .checkbox-inline {
    line-height: 1.65;
}

.eco-native-checkout .apply-credit-container {
    margin: 0 0 16px;
    padding: 16px 18px;
    border: 1px solid #dbe7f0;
    background: #f8fbff;
    border-radius: 14px;
}

.eco-native-checkout .apply-credit-container p {
    margin-bottom: 12px;
    color: #4f657b;
}

.eco-native-checkout #paymentGatewaysContainer {
    margin-bottom: 18px;
}

.eco-native-checkout #paymentGatewaysContainer .text-center {
    text-align: left;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.eco-native-checkout #paymentGatewaysContainer .radio-inline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    min-width: 158px;
    padding: 12px 16px;
    margin: 0;
    border: 1px solid #d5e3ef;
    border-radius: 14px;
    background: #fff;
    font-weight: 600;
    color: #17324c;
    cursor: pointer;
    transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease, color 0.18s ease;
}

.eco-native-checkout #paymentGatewaysContainer .radio-inline input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.eco-native-checkout #paymentGatewaysContainer .radio-inline.is-selected {
    border-color: #0f4c81;
    background: linear-gradient(180deg, #f5faff 0%, #ebf4ff 100%);
    color: #0f4c81;
    box-shadow: 0 10px 20px rgba(15, 76, 129, 0.12);
}

.eco-native-checkout #paymentGatewaysContainer p.small {
    margin-bottom: 14px;
    color: #63788d;
}

.eco-native-checkout #creditCardInputFields {
    margin-top: 10px;
    padding: 20px;
    border: 1px solid #dbe7f0;
    border-radius: 14px;
    background: #f9fbfe;
}

.eco-native-checkout #creditCardInputFields.hidden {
    display: none !important;
}

.eco-native-checkout .already-registered {
    display: none;
}

.eco-native-checkout .already-registered .pull-right {
    float: none !important;
    margin-bottom: 10px;
}

.eco-native-checkout .row {
    margin-left: -8px;
    margin-right: -8px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.eco-native-checkout .row > div {
    padding-left: 8px;
    padding-right: 8px;
}

.eco-native-checkout label {
    color: #3d5873;
    font-weight: 600;
}

.eco-native-checkout .sub-heading {
    margin-top: 24px;
    margin-bottom: 14px;
}

.eco-native-checkout .form-group {
    margin-bottom: 14px;
}

.eco-native-checkout .field-help-text,
.eco-native-checkout .small.text-muted,
.eco-native-checkout p.small.text-muted {
    color: #6b7f92;
    line-height: 1.6;
}

.eco-native-checkout .progress {
    height: 10px;
    border-radius: 999px;
    background: #e7eef5;
    box-shadow: none;
}

.eco-native-checkout .progress-bar {
    border-radius: 999px;
}

.eco-native-checkout .gateway-errors {
    border-radius: 12px;
    margin-bottom: 16px;
}

.eco-native-checkout .marketing-email-optin {
    margin: 18px 0;
    padding: 18px 20px;
    border: 1px solid #dbe7f0;
    background: #f8fbff;
    border-radius: 16px;
}

.eco-native-checkout .marketing-email-optin h4 {
    margin: 0 0 8px;
    color: #17324c;
    font-size: 18px;
}

.eco-native-checkout .marketing-email-optin p {
    margin-bottom: 12px;
    color: #5e748a;
}

.eco-native-submit {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid #e7eef5;
    text-align: center;
}

.eco-native-submit-trust {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 0 0 16px;
    padding: 12px 14px;
    border: 1px solid #d9e7f3;
    border-radius: 14px;
    background: #f8fbfe;
    text-align: left;
}

.eco-native-submit-trust span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #3f5f7f;
    font-size: 13px;
    font-weight: 700;
}

.eco-native-submit-trust i {
    color: #0f4c81;
}

.eco-native-submit p {
    margin-bottom: 16px;
}

.eco-native-checkout .text-center .checkbox-inline {
    display: inline-flex;
    align-items: flex-start;
    gap: 8px;
    max-width: 640px;
    text-align: left;
}

.eco-native-checkout .text-center .checkbox-inline input {
    margin-top: 3px;
}

.eco-native-checkout .checkout-security-msg {
    margin-top: 18px;
    border-radius: 14px;
    border: 1px solid #f2dbac;
    background: #fff8ea;
    color: #7a5a18;
}

.eco-loading-dots::after {
    content: "...";
    animation: ecoPulse 1s infinite steps(3);
}

@keyframes ecoPulse {
    0% {
        content: ".";
    }
    33% {
        content: "..";
    }
    66% {
        content: "...";
    }
}

@keyframes ecoSpin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 1199px) {
    .eco-plan-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {
    .eco-express-grid {
        grid-template-columns: 1fr;
    }

    .eco-summary-card {
        position: static;
    }

    .eco-native-submit-trust {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .eco-express-hero {
        padding: 24px;
    }

    .eco-express-hero h1 {
        font-size: 30px;
    }

    .eco-step-card,
    .eco-checkout-card,
    .eco-summary-card {
        padding: 20px;
    }

    .eco-domain-row,
    .eco-domain-existing {
        grid-template-columns: 1fr;
    }
}

.eco-button-tertiary {
    width: auto;
    height: auto;
    margin: 10px auto 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: #547190;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
    box-shadow: none;
}

.eco-button-tertiary:hover {
    transform: translateY(-1px);
    color: #0f4c81;
    box-shadow: none;
}
