/*
 * Custom CSS for Nexus Cart Custom Orderform
 */

:host, :root {
    --vl-primary: #079455;
    --vl-primary-lifted: #0aaa63;
    --vl-primary-accented: #067647;

    --vl-secondary: var(--secondary);
    --vl-secondary-lifted: var(--secondary-lifted);
    --vl-secondary-accented: var(--secondary-accented);

    --vl-success: var(--success);
    --vl-success-lifted: var(--success-lifted);
    --vl-success-accented: var(--success-accented);

    --vl-info: var(--info);
    --vl-info-lifted: var(--info-lifted);
    --vl-info-accented: var(--info-accented);

    --vl-notice: var(--notice);
    --vl-notice-lifted: var(--notice-lifted);
    --vl-notice-accented: var(--notice-accented);

    --vl-warning: var(--warning);
    --vl-warning-lifted: var(--warning-lifted);
    --vl-warning-accented: var(--warning-accented);

    --vl-error: var(--error);
    --vl-error-lifted: var(--error-lifted);
    --vl-error-accented: var(--error-accented);

    --vl-grayscale: var(--grayscale);
    --vl-grayscale-lifted: var(--grayscale-lifted);
    --vl-grayscale-accented: var(--grayscale-accented);

    --vl-neutral: var(--neutral);
    --vl-neutral-lifted: var(--neutral-lifted);
    --vl-neutral-accented: var(--neutral-accented);

    --vl-text-inverted: var(--text-inverted);
    --vl-text-muted: var(--text-muted);
    --vl-text-lifted: var(--text-lifted);
    --vl-text-accented: var(--text-accented);
    --vl-text: var(--text);

    --vl-border-muted: #e8edf3;
    --vl-border: #dbe3ed;
    --vl-border-lifted: #cbd5e1;
    --vl-border-accented: #94a3b8;

    --vl-bg: #ffffff;
    --vl-bg-muted: #f8fafc;
    --vl-bg-lifted: #f1f5f9;
    --vl-bg-accented: #eef2f7;
    --vl-bg-inverted: #0f172a;

    --vl-text-xs: var(--text-xs);
    --vl-text-sm: var(--text-sm);
    --vl-text-md: var(--text-md);
    --vl-text-lg: var(--text-lg);

    --vl-outline-sm: var(--outline-sm);
    --vl-outline-md: var(--outline-md);
    --vl-outline-lg: var(--outline-lg);

    --vl-rounding-sm: 8px;
    --vl-rounding-md: 12px;
    --vl-rounding-lg: 18px;

    --vl-letter-spacing: var(--letter-spacing);
    --vl-disabled-opacity: var(--disabled-opacity);
}

/* Acao principal do carrinho, seguindo o botao Completar Pedido. */
button:has(> .bi-lock),
a:has(> .bi-lock),
[role="button"]:has(> .bi-lock) {
    width: 100% !important;
    min-height: 62px !important;
    padding: 15px 24px !important;
    align-items: center !important;
    justify-content: center !important;
    border: 0 !important;
    border-radius: 12px !important;
    background: #079455 !important;
    box-shadow: 0 12px 24px rgba(7, 148, 85, 0.22) !important;
    color: #fff !important;
    font-size: 18px !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    text-decoration: none !important;
    transition: background 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease !important;
}

button:has(> .bi-lock) > .bi-lock,
a:has(> .bi-lock) > .bi-lock,
[role="button"]:has(> .bi-lock) > .bi-lock {
    display: none !important;
}

button:has(> .bi-lock) *,
a:has(> .bi-lock) *,
[role="button"]:has(> .bi-lock) * {
    color: #fff !important;
    font-weight: 800 !important;
}

button:has(> .bi-lock)::after,
a:has(> .bi-lock)::after,
[role="button"]:has(> .bi-lock)::after {
    content: "\2192";
    display: grid;
    width: 22px;
    height: 22px;
    margin-left: 10px;
    flex: 0 0 22px;
    place-items: center;
    border-radius: 50%;
    background: #fff;
    color: #079455;
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
}

button:has(> .bi-lock):hover,
button:has(> .bi-lock):focus,
a:has(> .bi-lock):hover,
a:has(> .bi-lock):focus,
[role="button"]:has(> .bi-lock):hover,
[role="button"]:has(> .bi-lock):focus {
    background: #067647 !important;
    box-shadow: 0 14px 28px rgba(7, 148, 85, 0.28) !important;
    color: #fff !important;
    transform: translateY(-1px);
}

.nexus-cart-domain-page {
    padding: 18px 0 24px;
}

section#main-body:has(.nexus-products-page) .sidebar {
    display: none !important;
}

section#main-body:has(.nexus-products-page) .primary-content {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
}

.nexus-products-page {
    width: min(1500px, calc(100% - 8vw));
    margin: 0 auto;
    padding: 30px 0 70px;
}

.nexus-products-hero {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 34px;
    padding: 30px 0;
    border-bottom: 1px solid #dbe3ed;
}

.nexus-products-hero h1 {
    margin: 5px 0 8px;
    color: #0f172a;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 850;
    letter-spacing: -0.04em;
}

.nexus-products-hero p {
    max-width: 700px;
    margin: 0;
    color: #64748b;
    font-size: 15px;
}

.nexus-products-hero-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px 16px;
    color: #475569;
    font-size: 11px;
}

.nexus-products-hero-trust i {
    margin-right: 4px;
    color: #079455;
}

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

.nexus-product-card {
    display: flex;
    min-width: 0;
    overflow: hidden;
    flex-direction: column;
    border: 1px solid #dbe3ed;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 14px 38px rgba(15, 23, 42, 0.06);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.nexus-product-card:hover {
    transform: translateY(-4px);
    border-color: #86d9ae;
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.11);
}

.nexus-product-card-top {
    display: flex;
    position: relative;
    align-items: center;
    gap: 14px;
    padding: 24px 24px 18px;
}

.nexus-product-icon {
    display: grid;
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    place-items: center;
    border-radius: 12px;
    background: #e8f8ef;
    color: #079455;
    font-size: 18px;
}

.nexus-product-card-top small,
.nexus-product-pricing small {
    display: block;
    color: #079455;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.1em;
}

.nexus-product-card h2 {
    margin: 3px 0 0;
    color: #0f172a;
    font-size: 21px;
    font-weight: 800;
}

.nexus-product-stock {
    margin-left: auto;
    padding: 4px 8px;
    border-radius: 999px;
    background: #f1f5f9;
    color: #64748b;
    font-size: 10px;
}

.nexus-product-description {
    flex: 1;
    padding: 4px 24px 24px;
    color: #475569;
    font-size: 14px;
    line-height: 1.55;
}

.nexus-product-description p {
    margin: 0;
    white-space: pre-line;
}

.nexus-product-description ul {
    margin: 4px 0 0;
    padding: 0;
    list-style: none;
}

.nexus-product-description li {
    display: flex;
    gap: 9px;
    margin: 8px 0;
}

.nexus-product-description li i {
    margin-top: 4px;
    color: #079455;
    font-size: 10px;
}

.nexus-product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 24px 24px;
    border-top: 1px solid #e2e8f0;
    background: #f8fafc;
}

.nexus-product-pricing strong {
    display: inline-block;
    margin-top: 3px;
    color: #0f172a;
    font-size: 25px;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.nexus-product-pricing span {
    color: #64748b;
    font-size: 11px;
}

.nexus-product-cta {
    min-height: 48px;
    padding: 13px 18px;
    border: 0;
    border-radius: 10px;
    background: #079455;
    color: #fff !important;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none !important;
}

.nexus-product-cta:hover,
.nexus-product-cta:focus {
    background: #067647;
}

.nexus-product-cta i {
    margin-left: 7px;
}

.nexus-flow-eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 25px;
    margin-bottom: 8px;
    padding: 5px 10px;
    border-radius: 999px;
    background: #dcfce7;
    color: #067647;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.1em;
}

.nexus-process-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(110px, 1fr)) !important;
    width: min(720px, 100%);
    margin-top: 22px;
    overflow: hidden;
    border: 1px solid #dbe3ed;
    border-radius: 13px;
    background: #fff;
}

.nexus-process-steps a {
    position: relative;
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 8px;
    padding: 12px 11px;
    border-right: 1px solid #e2e8f0;
    color: #64748b;
    text-decoration: none !important;
    transition: color 0.18s ease, background 0.18s ease;
}

.nexus-process-steps a:last-child {
    border-right: 0;
}

.nexus-process-steps a:hover {
    background: #f1f5f9;
    color: #0f172a;
}

.nexus-process-steps a span {
    display: grid;
    width: 25px;
    height: 25px;
    flex: 0 0 25px;
    place-items: center;
    border: 1px solid #cbd5e1;
    border-radius: 50%;
    background: #fff;
    font-size: 11px;
    font-weight: 850;
}

.nexus-process-steps a strong {
    overflow: hidden;
    font-size: 11px;
    font-weight: 750;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.nexus-process-steps a.is-active {
    background: #eafbf1;
    color: #067647;
}

.nexus-process-steps a.is-active span {
    border-color: #079455;
    background: #079455;
    color: #fff;
}

.nexus-domain-hero .nexus-process-steps {
    width: 100%;
}

#order-standard_cart:has(#frmConfigureProduct) .nexus-process-steps {
    width: 100%;
    margin: 0 0 28px;
}

#order-standard_cart:has(#frmCheckout) .nexus-checkout-flow-header .nexus-process-steps {
    flex: 0 1 720px;
    margin-top: 0;
}

.nexus-cart-flow-banner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(520px, 720px);
    grid-template-areas: "eyebrow steps" "title steps" "description steps";
    align-items: end;
    gap: 5px 30px;
    width: 100%;
    margin: 0 auto;
    padding: 34px 4vw 28px;
    border-bottom: 1px solid #e2e8f0;
    background: #fff;
}

.nexus-cart-flow-banner .nexus-flow-eyebrow {
    grid-area: eyebrow;
    width: max-content;
}

.nexus-cart-flow-banner h1 {
    grid-area: title;
    margin: 5px 0 6px;
    color: #0f172a;
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 850;
    letter-spacing: -0.035em;
}

.nexus-cart-flow-banner small {
    grid-area: description;
    margin-top: 4px;
    color: #64748b;
    font-size: 13px;
}

.nexus-cart-flow-banner .nexus-process-steps {
    grid-area: steps;
    margin: 0;
}

.nexus-unified-flow-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin: 0 0 30px;
    padding: 34px 0 28px;
    border-bottom: 1px solid #e2e8f0;
}

.nexus-unified-flow-copy {
    min-width: 0;
}

#order-standard_cart:has(#frmConfigureProduct) .nexus-unified-flow-header .header-lined {
    margin: 0;
}

#order-standard_cart:has(#frmConfigureProduct) .nexus-unified-flow-header .header-lined h1 {
    margin: 5px 0 6px;
    color: #0f172a;
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 850;
    letter-spacing: -0.035em;
}

#order-standard_cart:has(#frmConfigureProduct) .nexus-unified-flow-header .nexus-product-flow-description {
    margin: 0;
}

#order-standard_cart:has(#frmConfigureProduct) .nexus-unified-flow-header .nexus-process-steps {
    flex: 0 1 720px;
    margin: 0;
}

#order-standard_cart:has(#frmConfigureProduct) > .row,
.nexus-cart-product-domain-page,
.nexus-cart-configure-domains,
.nexus-cart-domain-page {
    width: min(1440px, calc(100% - 6vw));
    margin-right: auto;
    margin-left: auto;
}

#order-standard_cart:has(#frmConfigureProduct) .nexus-flow-eyebrow {
    margin: 4px 0 4px;
}

#order-standard_cart:has(#frmConfigureProduct) .nexus-product-flow-description {
    margin: -4px 0 24px;
    color: #64748b;
    font-size: 14px;
}

#order-standard_cart:has(#frmConfigureProduct) #orderSummary {
    isolation: isolate;
    position: sticky;
    top: 24px;
    overflow: hidden;
    padding: 24px;
    border: 1px solid #dbe3ed;
    border-radius: 18px;
    background: #f8fafc;
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.09);
}

#order-standard_cart:has(#frmConfigureProduct) .nexus-plan-summary-edit {
    position: absolute;
    z-index: 3;
    top: 27px;
    right: 24px;
    color: #475569;
    font-size: 12px;
    font-weight: 700;
    text-decoration: underline;
}

#order-standard_cart:has(#frmConfigureProduct) #orderSummary > .order-summary {
    position: static;
    margin: 0;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

#order-standard_cart:has(#frmConfigureProduct) #orderSummary h2,
#order-standard_cart:has(#frmConfigureProduct) .order-summary h2 {
    margin: 0 0 22px;
    padding: 0;
    border: 0 !important;
    border-radius: 0 !important;
    color: #0f172a;
    font-size: 21px;
    font-weight: 850;
    text-align: left;
}

#order-standard_cart:has(#frmConfigureProduct) #orderSummary h2::before {
    content: 'SEU PEDIDO';
    display: block;
    margin-bottom: 4px;
    color: #079455;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.12em;
}

#order-standard_cart:has(#frmConfigureProduct) #producttotal {
    padding: 20px 0;
    border-top: 1px solid #dbe3ed;
    border-right: 0 !important;
    border-bottom: 1px solid #dbe3ed;
    border-left: 0 !important;
    border-radius: 0 !important;
    background: transparent;
}

#order-standard_cart:has(#frmConfigureProduct) #producttotal .total-due-today {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #dbe3ed;
}

#order-standard_cart:has(#frmConfigureProduct) #producttotal .total-due-today span {
    color: #475569;
    font-size: 13px;
    text-align: left;
}

#order-standard_cart:has(#frmConfigureProduct) #producttotal .total-due-today .amt {
    order: 2;
    color: #0f172a;
    font-size: 24px;
    font-weight: 850;
    text-align: right;
}

#order-standard_cart:has(#frmConfigureProduct) .nexus-plan-summary-assurances {
    margin: 20px 0;
    padding-bottom: 18px;
    border-bottom: 1px solid #dbe3ed;
}

#order-standard_cart:has(#frmConfigureProduct) .nexus-plan-summary-assurances p {
    margin: 8px 0;
    color: #475569;
    font-size: 12px;
}

#order-standard_cart:has(#frmConfigureProduct) .nexus-plan-summary-assurances i {
    width: 17px;
    color: #079455;
    text-align: center;
}

#order-standard_cart:has(#frmConfigureProduct) #orderSummary > .text-center {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}

#order-standard_cart:has(#frmConfigureProduct) #btnCompleteProductConfig {
    width: 100%;
    min-height: 56px !important;
    border-radius: 11px;
}

#order-standard_cart:has(#frmConfigureProduct) #btnCompleteProductConfig,
#order-standard_cart:has(#frmConfigureDomains) button[type="submit"],
.nexus-domain-continue-wrap .btn-lg {
    min-height: 54px;
    padding: 14px 28px;
    border: 0;
    border-radius: 11px;
    background: #079455;
    box-shadow: 0 10px 22px rgba(7, 148, 85, 0.2);
    color: #fff;
    font-size: 16px;
    font-weight: 850;
}

#order-standard_cart:has(#frmConfigureProduct) #btnCompleteProductConfig:hover,
#order-standard_cart:has(#frmConfigureDomains) button[type="submit"]:hover,
.nexus-domain-continue-wrap .btn-lg:hover {
    background: #067647;
}

#order-standard_cart:has(#frmConfigureDomains) > .text-center.pt-4,
#order-standard_cart:has(#frmConfigureDomains) .text-center.pt-4 {
    position: sticky;
    z-index: 12;
    bottom: 0;
    margin: 28px -24px -24px;
    padding: 16px 24px !important;
    border-top: 1px solid #dbe3ed;
    border-radius: 0 0 18px 18px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 -12px 30px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(10px);
}

.nexus-domain-card,
.nexus-domain-section {
    border-color: #dbe3ed;
    box-shadow: 0 14px 38px rgba(15, 23, 42, 0.06);
}

.nexus-domain-option > label,
#order-standard_cart:has(#frmConfigureProduct) .nexus-billing-cycle,
#order-standard_cart:has(#frmConfigureProduct) .panel-addon {
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.nexus-domain-option > label:hover,
#order-standard_cart:has(#frmConfigureProduct) .nexus-billing-cycle:hover,
#order-standard_cart:has(#frmConfigureProduct) .panel-addon:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.09);
}

.nexus-cart-product-domain-page .form-control,
.nexus-cart-configure-domains .form-control,
#order-standard_cart:has(#frmConfigureProduct) .form-control {
    min-height: 48px;
    border-color: #cbd5e1;
    border-radius: 9px;
    box-shadow: none;
}

.nexus-cart-product-domain-page .form-control:focus,
.nexus-cart-configure-domains .form-control:focus,
#order-standard_cart:has(#frmConfigureProduct) .form-control:focus {
    border-color: #079455;
    box-shadow: 0 0 0 3px rgba(7, 148, 85, 0.11);
}

.nexus-cart-view-page .cart-sidebar,
.nexus-cart-view-page .sidebar,
.nexus-cart-view-page .sidebar-collapsed {
    display: none !important;
}

.nexus-cart-view-page .cart-body {
    float: none;
    width: 100%;
}

section#main-body:has(.nexus-cart-view-page) .sidebar {
    display: none !important;
}

section#main-body:has(.nexus-cart-view-page) .primary-content {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
}

#order-standard_cart:has(#frmCheckout) .cart-sidebar,
#order-standard_cart:has(#frmCheckout) .sidebar-collapsed {
    display: none !important;
}

#order-standard_cart:has(#frmCheckout) .cart-body {
    float: none;
    width: 100%;
}

section#main-body:has(#frmCheckout) .sidebar {
    display: none !important;
}

section#main-body:has(#frmCheckout) .primary-content {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
}

body:has(#frmCheckout) .main-navbar-wrapper,
body:has(#frmCheckout) [data-target="#mainNavbar"] {
    display: none !important;
}

section#main-body:has(#frmCheckout) {
    padding: 0 !important;
    background: #fff !important;
}

section#main-body:has(#frmCheckout) > .container,
section#main-body:has(#frmCheckout) .container {
    width: 100% !important;
    max-width: 100% !important;
}

#order-standard_cart:has(#frmCheckout) {
    width: 100%;
    max-width: none;
        padding: 20px !important;
}

#order-standard_cart:has(#frmCheckout) .nexus-checkout-sections-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin: 24px 0 30px;
    align-items: start;
}

#order-standard_cart:has(#frmCheckout) .nexus-checkout-section {
    position: relative;
    min-width: 0;
    padding: 18px;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

#order-standard_cart:has(#frmCheckout) .nexus-checkout-section.is-complete {
    border-color: #0f172a;
    background: #0f172a;
    color: #fff;
}

#order-standard_cart:has(#frmCheckout) .nexus-checkout-section.is-complete::after {
    position: absolute;
    top: 14px;
    right: 14px;
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border-radius: 50%;
    background: #fff;
    color: #15803d;
    content: "\2713";
    font-size: 15px;
    font-weight: 900;
}

#order-standard_cart:has(#frmCheckout) .nexus-checkout-section .sub-heading {
    height: auto;
    margin: 0 0 18px;
    border: 0;
    text-align: left;
}

#order-standard_cart:has(#frmCheckout) .nexus-checkout-section .sub-heading::before {
    display: block;
    margin-bottom: 5px;
    color: #15803d;
    content: 'ETAPA ' attr(data-step);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

#order-standard_cart:has(#frmCheckout) .nexus-checkout-section .nexus-step-heading {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

#order-standard_cart:has(#frmCheckout) .nexus-checkout-section .nexus-step-heading::before {
    display: none;
}

#order-standard_cart:has(#frmCheckout) .nexus-step-heading-icon {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    place-items: center;
    border-radius: 11px;
    background: #e8f8ef;
    color: #079455;
    font-size: 17px;
}

#order-standard_cart:has(#frmCheckout) .nexus-step-heading-copy {
    min-width: 0;
}

#order-standard_cart:has(#frmCheckout) .nexus-step-eyebrow {
    display: block;
    margin-bottom: 3px;
    color: #079455;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.1em;
}

#order-standard_cart:has(#frmCheckout) .nexus-step-description {
    margin: 4px 0 0;
    color: #64748b;
    font-size: 11px;
    font-weight: 400;
    line-height: 1.4;
}

#order-standard_cart:has(#frmCheckout) .nexus-checkout-section .sub-heading span {
    position: static;
    display: block;
    padding: 0;
    background: transparent;
    color: #0f172a;
    font-size: 17px;
    font-weight: 800;
}

#order-standard_cart:has(#frmCheckout) .nexus-checkout-section.is-complete .sub-heading::before,
#order-standard_cart:has(#frmCheckout) .nexus-checkout-section.is-complete .sub-heading span,
#order-standard_cart:has(#frmCheckout) .nexus-checkout-section.is-complete label,
#order-standard_cart:has(#frmCheckout) .nexus-checkout-section.is-complete .field-help-text,
#order-standard_cart:has(#frmCheckout) .nexus-checkout-section.is-complete .nexus-personal-password-title,
#order-standard_cart:has(#frmCheckout) .nexus-checkout-section.is-complete .text-muted {
    color: #fff !important;
}

#order-standard_cart:has(#frmCheckout) .nexus-checkout-section.is-complete .nexus-step-eyebrow,
#order-standard_cart:has(#frmCheckout) .nexus-checkout-section.is-complete .nexus-step-description {
    color: #fff !important;
}

#order-standard_cart:has(#frmCheckout) .nexus-checkout-section.is-complete .nexus-step-heading-icon {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}

#order-standard_cart:has(#frmCheckout) .nexus-checkout-section.is-complete .nexus-personal-password-title {
    border-color: rgba(255, 255, 255, 0.35);
}

#order-standard_cart:has(#frmCheckout) .nexus-checkout-section .row > [class*="col-"] {
    float: none;
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
}

#order-standard_cart:has(#frmCheckout) .nexus-personal-password-title {
    margin: 8px 0 14px;
    padding-top: 16px;
    border-top: 1px solid #e2e8f0;
    color: #0f172a;
    font-size: 14px;
    font-weight: 800;
}

#order-standard_cart:has(#frmCheckout) .nexus-checkout-section #containerPassword {
    margin: 0;
}

#order-standard_cart:has(#frmCheckout) .nexus-checkout-section #containerPassword > [class*="col-"] {
    padding-right: 0;
    padding-left: 0;
}

#order-standard_cart:has(#frmCheckout) #frmCheckout .field,
#order-standard_cart:has(#frmCheckout) #frmCheckout .form-control,
#order-standard_cart:has(#frmCheckout) #frmCheckout .custom-select,
#order-standard_cart:has(#frmCheckout) #frmCheckout .bootstrap-select > .dropdown-toggle {
    min-height: 48px;
    border: 1px solid #cbd5e1 !important;
    border-radius: 10px !important;
    background-color: #fff !important;
    box-shadow: none !important;
    color: #334155;
}

#order-standard_cart:has(#frmCheckout) #frmCheckout .prepend-icon .field {
    padding-left: 42px;
}

#order-standard_cart:has(#frmCheckout) #frmCheckout .prepend-icon .field-icon {
    width: 42px;
    height: 48px;
    line-height: 48px;
}

#order-standard_cart:has(#frmCheckout) #frmCheckout .input-group-text,
#order-standard_cart:has(#frmCheckout) #frmCheckout .input-group-addon,
#order-standard_cart:has(#frmCheckout) #frmCheckout .input-group-prepend .btn,
#order-standard_cart:has(#frmCheckout) #frmCheckout .input-group-append .btn {
    min-height: 48px;
    border-color: #cbd5e1 !important;
    background: #f8fafc;
}

#order-standard_cart:has(#frmCheckout) #frmCheckout .field:focus,
#order-standard_cart:has(#frmCheckout) #frmCheckout .form-control:focus,
#order-standard_cart:has(#frmCheckout) #frmCheckout .custom-select:focus,
#order-standard_cart:has(#frmCheckout) #frmCheckout .bootstrap-select > .dropdown-toggle:focus {
    border-color: #079455 !important;
    box-shadow: 0 0 0 3px rgba(7, 148, 85, 0.12) !important;
    outline: 0;
}

#order-standard_cart:has(#frmCheckout) #frmCheckout .field.is-invalid,
#order-standard_cart:has(#frmCheckout) #frmCheckout .form-control.is-invalid,
#order-standard_cart:has(#frmCheckout) #frmCheckout .field.error,
#order-standard_cart:has(#frmCheckout) #frmCheckout .form-control.error {
    border-color: #dc3545 !important;
}

#order-standard_cart:has(#frmCheckout) .nexus-postcode-status {
    display: block;
    min-height: 17px;
    margin: -8px 0 10px;
    color: #64748b;
    font-size: 11px;
}

#order-standard_cart:has(#frmCheckout) .nexus-postcode-status.is-loading {
    color: #0369a1;
}

#order-standard_cart:has(#frmCheckout) .nexus-postcode-status.is-success {
    color: #15803d;
}

#order-standard_cart:has(#frmCheckout) .nexus-postcode-status.is-error {
    color: #b91c1c;
}

#order-standard_cart:has(#frmCheckout) .nexus-address-fields {
    width: 100%;
    margin: 2px 0 15px;
}

#order-standard_cart:has(#frmCheckout) .nexus-address-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
	    padding-left: 16px;
    padding-right: 16px;
}

#order-standard_cart:has(#frmCheckout) .nexus-address-grid .form-control {
    width: 100%;
    min-width: 0;
}

#order-standard_cart:has(#frmCheckout) .nexus-address-grid .form-group {
    margin: 0;
}

#order-standard_cart:has(#frmCheckout) .nexus-checkout-section.is-complete .nexus-address-fields {
    background: transparent;
}

#order-standard_cart:has(#frmCheckout) .nexus-checkout-section.is-complete .nexus-postcode-status {
    color: #fff;
}

#order-standard_cart:has(#frmCheckout) .nexus-document-preview {
    margin-top: 7px;
    padding: 8px 10px;
    border-radius: 7px;
    background: #f1f5f9;
    color: #64748b;
    font-size: 12px;
    font-weight: 600;
}

#order-standard_cart:has(#frmCheckout) .nexus-document-preview.is-complete {
    background: #dcfce7;
    color: #15803d;
}

#order-standard_cart:has(#frmCheckout) .nexus-checkout-detail-section {
    margin: 30px 0;
    padding: 26px;
    border: 1px solid #dbe3ed;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(15, 23, 42, 0.06);
}

#order-standard_cart:has(#frmCheckout) .nexus-checkout-detail-section > .sub-heading {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0 0 10px;
    padding: 0;
    border: 0;
    text-align: left;
}

#order-standard_cart:has(#frmCheckout) .nexus-checkout-detail-section > .sub-heading::before,
#order-standard_cart:has(#frmCheckout) .nexus-checkout-detail-section > .sub-heading::after {
    display: none;
}

#order-standard_cart:has(#frmCheckout) .nexus-checkout-detail-section > .sub-heading i {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 10px;
    background: #e8f8ef;
    color: #079455;
    font-size: 17px;
}

#order-standard_cart:has(#frmCheckout) .nexus-checkout-detail-section > .sub-heading span {
    position: static;
    padding: 0;
    background: transparent !important;
    color: #0f172a;
    font-size: 20px;
    font-weight: 800;
}

#order-standard_cart:has(#frmCheckout) .nexus-registrant-section > .text-muted {
    margin: 0 0 18px 52px;
    color: #64748b !important;
    font-size: 14px;
    line-height: 1.55;
}

#order-standard_cart:has(#frmCheckout) .nexus-registrant-section .margin-bottom {
    margin-bottom: 0;
}

#order-standard_cart:has(#frmCheckout) .nexus-registrant-section .col-sm-offset-3 {
    width: 100%;
    margin-left: 0;
}

#order-standard_cart:has(#frmCheckout) .nexus-payment-section {
    position: relative;
    padding: 30px;
    border: 2px solid #079455;
    background: linear-gradient(145deg, #f6fffa 0%, #fff 34%);
    box-shadow: 0 18px 48px rgba(7, 148, 85, 0.12);
}

#order-standard_cart:has(#frmCheckout) .nexus-payment-section::before {
    content: 'ETAPA FINAL';
    position: absolute;
    top: 20px;
    right: 24px;
    padding: 5px 10px;
    border-radius: 999px;
    background: #dcfce7;
    color: #067647;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.08em;
}

#order-standard_cart:has(#frmCheckout) .nexus-payment-intro {
    margin: 0 0 22px 52px;
    color: #64748b;
    font-size: 14px;
}

#order-standard_cart:has(#frmCheckout) #totalDueToday {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 24px;
    padding: 18px 20px;
    border: 0;
    border-radius: 13px;
    background: #0f172a;
    color: #fff;
    text-align: left !important;
}

#order-standard_cart:has(#frmCheckout) #totalCartPrice {
    color: #6ee7a8;
    font-size: 24px;
    font-weight: 900;
}

#order-standard_cart:has(#frmCheckout) #paymentGatewaysContainer > .text-muted {
    margin-bottom: 12px;
    color: #334155 !important;
    font-size: 14px;
    font-weight: 700;
}

#order-standard_cart:has(#frmCheckout) #paymentGatewaysContainer > .text-center {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
    text-align: left !important;
}

#order-standard_cart:has(#frmCheckout) #paymentGatewaysContainer label.radio-inline {
    display: flex;
    min-height: 66px;
    align-items: center;
    gap: 11px;
    margin: 0;
    padding: 14px 16px;
    border: 1px solid #dbe3ed;
    border-radius: 12px;
    background: #fff;
    color: #334155;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

#order-standard_cart:has(#frmCheckout) #paymentGatewaysContainer label.radio-inline.is-selected {
    border-color: #079455;
    background: #eafbf1;
    color: #067647;
    box-shadow: 0 0 0 3px rgba(7, 148, 85, 0.1);
}

#order-standard_cart:has(#frmCheckout) .nexus-payment-method-icon {
    color: #079455;
    font-size: 19px;
}

#order-standard_cart:has(#frmCheckout) #creditCardInputFields,
#order-standard_cart:has(#frmCheckout) #paymentGatewayInput:not(:empty) {
    margin-top: 22px;
    padding: 22px;
    border: 1px solid #dbe3ed;
    border-radius: 14px;
    background: #fff;
}

#order-standard_cart:has(#frmCheckout) .nexus-checkout-flow-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin: 0 auto;
    padding: 34px 4vw 28px;
    border-bottom: 1px solid #e2e8f0;
}

#order-standard_cart:has(#frmCheckout) .nexus-checkout-eyebrow,
#order-standard_cart:has(#frmCheckout) .nexus-summary-heading span {
    color: #079455;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.12em;
}

#order-standard_cart:has(#frmCheckout) .nexus-checkout-flow-copy h1 {
    margin: 5px 0 6px;
    color: #0f172a;
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 850;
    letter-spacing: -0.035em;
}

#order-standard_cart:has(#frmCheckout) .nexus-checkout-flow-copy p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
}

#order-standard_cart:has(#frmCheckout) .nexus-checkout-progress {
    display: flex;
    gap: 28px;
    margin: 0;
    padding: 0;
    list-style: none;
}

#order-standard_cart:has(#frmCheckout) .nexus-checkout-progress li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #94a3b8;
    font-size: 12px;
    font-weight: 700;
}

#order-standard_cart:has(#frmCheckout) .nexus-checkout-progress span {
    display: grid;
    width: 27px;
    height: 27px;
    place-items: center;
    border: 1px solid #cbd5e1;
    border-radius: 50%;
    background: #fff;
}

#order-standard_cart:has(#frmCheckout) .nexus-checkout-progress li.is-active {
    color: #0f172a;
}

#order-standard_cart:has(#frmCheckout) .nexus-checkout-progress li.is-active span {
    border-color: #079455;
    background: #079455;
    color: #fff;
}

#order-standard_cart:has(#frmCheckout) .nexus-shopify-checkout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 420px);
    gap: clamp(28px, 4vw, 64px);
    width: min(1500px, 100%);
    margin: 0 auto;
    padding: 38px 4vw 70px;
    background: #fff;
}

#order-standard_cart:has(#frmCheckout) .nexus-shopify-checkout-main {
    min-width: 0;
}

#order-standard_cart:has(#frmCheckout) .nexus-shopify-checkout-summary {
    position: sticky;
    top: 24px;
    align-self: start;
    overflow: hidden;
    padding: 24px;
    border: 1px solid #dbe3ed;
    border-radius: 18px;
    background: #f8fafc;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

#order-standard_cart:has(#frmCheckout) .nexus-summary-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 22px;
}

#order-standard_cart:has(#frmCheckout) .nexus-summary-heading h2 {
    margin: 3px 0 0;
    color: #0f172a;
    font-size: 21px;
    font-weight: 850;
}

#order-standard_cart:has(#frmCheckout) .nexus-summary-heading a {
    color: #475569;
    font-size: 12px;
    font-weight: 700;
    text-decoration: underline;
}

#order-standard_cart:has(#frmCheckout) .nexus-summary-product {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 0 0 20px;
    border-bottom: 1px solid #dbe3ed;
}

#order-standard_cart:has(#frmCheckout) .nexus-summary-items {
    display: block;
    padding-bottom: 8px;
}

#order-standard_cart:has(#frmCheckout) .nexus-summary-item {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr) auto;
    align-items: center;
    gap: 13px;
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
}

#order-standard_cart:has(#frmCheckout) .nexus-summary-item:last-child {
    border-bottom: 0;
}

#order-standard_cart:has(#frmCheckout) .nexus-summary-item-copy {
    min-width: 0;
}

#order-standard_cart:has(#frmCheckout) .nexus-summary-item-price {
    color: #0f172a;
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
}

#order-standard_cart:has(#frmCheckout) .nexus-summary-item-price.is-free {
    padding: 4px 8px;
    border-radius: 999px;
    background: #dcfce7;
    color: #067647;
    font-size: 10px;
    letter-spacing: 0.04em;
}

#order-standard_cart:has(#frmCheckout) .nexus-summary-addon {
    color: #079455 !important;
}

#order-standard_cart:has(#frmCheckout) .nexus-summary-recurring {
    margin: 0 0 20px;
    padding: 16px;
    border: 1px solid #dbe3ed;
    border-radius: 12px;
    background: #fff;
}

#order-standard_cart:has(#frmCheckout) .nexus-summary-recurring-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: #0f172a;
    font-size: 13px;
}

#order-standard_cart:has(#frmCheckout) .nexus-summary-recurring-title i {
    color: #079455;
}

#order-standard_cart:has(#frmCheckout) .nexus-summary-recurring-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    padding: 11px 0;
    border-top: 1px solid #e2e8f0;
}

#order-standard_cart:has(#frmCheckout) .nexus-summary-recurring-row > div strong,
#order-standard_cart:has(#frmCheckout) .nexus-summary-recurring-row small {
    display: block;
}

#order-standard_cart:has(#frmCheckout) .nexus-summary-recurring-row > div strong {
    color: #334155;
    font-size: 12px;
}

#order-standard_cart:has(#frmCheckout) .nexus-summary-recurring-row small {
    margin-top: 3px;
    color: #64748b;
    font-size: 10px;
}

#order-standard_cart:has(#frmCheckout) .nexus-summary-recurring-row > span {
    color: #0f172a;
    font-size: 12px;
    font-weight: 850;
    white-space: nowrap;
}

#order-standard_cart:has(#frmCheckout) .nexus-summary-product-icon {
    display: grid;
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    place-items: center;
    border-radius: 11px;
    background: #e8f8ef;
    color: #079455;
    font-size: 18px;
}

#order-standard_cart:has(#frmCheckout) .nexus-summary-product strong,
#order-standard_cart:has(#frmCheckout) .nexus-summary-product small {
    display: block;
}

#order-standard_cart:has(#frmCheckout) .nexus-summary-product strong {
    color: #0f172a;
    font-size: 14px;
}

#order-standard_cart:has(#frmCheckout) .nexus-summary-product small {
    margin-top: 3px;
    color: #64748b;
}

#order-standard_cart:has(#frmCheckout) .nexus-shopify-checkout-summary #totalDueToday {
    margin: 20px 0;
    padding: 17px 0;
    border-top: 1px solid #dbe3ed;
    border-bottom: 1px solid #dbe3ed;
    border-radius: 0;
    background: transparent;
    color: #334155;
    font-size: 13px;
}

#order-standard_cart:has(#frmCheckout) .nexus-shopify-checkout-summary #totalCartPrice {
    color: #0f172a;
    font-size: 24px;
}

#order-standard_cart:has(#frmCheckout) .nexus-summary-assurances {
    margin: 0 0 20px;
}

#order-standard_cart:has(#frmCheckout) .nexus-summary-assurances p {
    margin: 8px 0;
    color: #475569;
    font-size: 12px;
}

#order-standard_cart:has(#frmCheckout) .nexus-summary-assurances i {
    width: 17px;
    color: #079455;
    text-align: center;
}

#order-standard_cart:has(#frmCheckout) .nexus-checkout-submit-area {
    margin: 0;
    padding-top: 18px;
    border-top: 1px solid #dbe3ed;
    text-align: left !important;
}

#order-standard_cart:has(#frmCheckout) .nexus-checkout-submit-area > p {
    margin-bottom: 15px;
    color: #475569;
    font-size: 12px;
    line-height: 1.5;
}

#order-standard_cart:has(#frmCheckout) #btnCompleteOrder {
    width: 100%;
    min-height: 56px;
    border: 0;
    border-radius: 11px;
    background: #079455;
    box-shadow: 0 10px 22px rgba(7, 148, 85, 0.22);
    color: #fff;
    font-size: 16px;
    font-weight: 850;
}

#order-standard_cart:has(#frmCheckout) #btnCompleteOrder:hover,
#order-standard_cart:has(#frmCheckout) #btnCompleteOrder:focus {
    background: #067647;
}

#order-standard_cart:has(#frmCheckout) .nexus-checkout-sections-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 0;
}

#order-standard_cart:has(#frmCheckout) .nexus-checkout-section {
    padding: 24px;
    border-radius: 15px;
    box-shadow: none;
}

#order-standard_cart:has(#frmCheckout) .nexus-already-registered {
    width: min(1500px, calc(100% - 8vw));
    margin: 22px auto 0;
    padding: 13px 16px;
    border: 1px solid #dbe3ed;
    border-radius: 11px;
    background: #f8fafc;
}

#order-standard_cart:has(#frmCheckout) .checkout-security-msg {
    width: min(1500px, calc(100% - 8vw));
    margin: 0 auto 35px;
}

/* Keep stages 1-3 on the same full-width shell used by cart and checkout. */
body:has(.nexus-cart-product-domain-page) .main-navbar-wrapper,
body:has(.nexus-cart-product-domain-page) [data-target="#mainNavbar"],
body:has(.nexus-cart-domain-page) .main-navbar-wrapper,
body:has(.nexus-cart-domain-page) [data-target="#mainNavbar"],
body:has(#frmConfigureProduct) .main-navbar-wrapper,
body:has(#frmConfigureProduct) [data-target="#mainNavbar"],
body:has(#frmConfigureDomains) .main-navbar-wrapper,
body:has(#frmConfigureDomains) [data-target="#mainNavbar"] {
    display: none !important;
}

section#main-body:has(.nexus-cart-product-domain-page),
section#main-body:has(.nexus-cart-domain-page),
section#main-body:has(#frmConfigureProduct),
section#main-body:has(#frmConfigureDomains) {
    padding: 0 !important;
    background: #fff !important;
}

section#main-body:has(.nexus-cart-product-domain-page) .container,
section#main-body:has(.nexus-cart-domain-page) .container,
section#main-body:has(#frmConfigureProduct) .container,
section#main-body:has(#frmConfigureDomains) .container {
    width: 100% !important;
    max-width: 100% !important;
}

section#main-body:has(.nexus-cart-product-domain-page) .primary-content,
section#main-body:has(.nexus-cart-domain-page) .primary-content,
section#main-body:has(#frmConfigureProduct) .primary-content,
section#main-body:has(#frmConfigureDomains) .primary-content {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
}

.nexus-cart-product-domain-page,
.nexus-cart-domain-page,
.nexus-cart-configure-domains,
#order-standard_cart:has(#frmConfigureProduct),
#order-standard_cart:has(#frmConfigureProduct) > .row {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

#order-standard_cart:has(#frmConfigureProduct) .cart-body {
    float: none;
    width: 100%;
}

.nexus-cart-product-domain-page .nexus-domain-hero,
.nexus-cart-domain-page .nexus-domain-hero,
.nexus-cart-configure-domains .nexus-domain-hero,
#order-standard_cart:has(#frmConfigureProduct) .nexus-unified-flow-header {
    width: 100%;
    margin: 0 0 38px;
    padding: 34px 4vw 28px;
}

.nexus-cart-product-domain-page .nexus-domain-card,
.nexus-cart-domain-page .nexus-domain-card,
.nexus-cart-configure-domains > .nexus-domain-card,
#order-standard_cart:has(#frmConfigureProduct) #frmConfigureProduct {
    width: min(1500px, calc(100% - 8vw));
    max-width: none;
    margin-right: auto;
    margin-left: auto;
}

.nexus-cart-configure-domains > .nexus-domain-card,
.nexus-cart-product-domain-page .nexus-domain-card,
.nexus-cart-domain-page .nexus-domain-card {
    margin-bottom: 60px;
}

.nexus-domain-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(520px, 720px);
    grid-template-areas: "eyebrow steps" "title steps" "description steps";
    align-items: end;
    gap: 5px 30px;
    max-width: none;
    margin: 0 auto 30px;
    padding: 34px 0 28px;
    border: 0;
    border-bottom: 1px solid #e2e8f0;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
}

.nexus-domain-hero > .nexus-flow-eyebrow {
    grid-area: eyebrow;
    width: max-content;
}

.nexus-domain-hero .header-lined {
    grid-area: title;
    margin: 0;
}

.nexus-domain-hero h1 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 5px 0 6px;
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 850;
    letter-spacing: -0.035em;
}

.nexus-domain-hero h1 i {
    color: #079455;
    font-size: 22px;
}

.nexus-cart-product-domain-page .nexus-domain-hero h1 i {
    display: none;
}

.nexus-domain-subtitle {
    grid-area: description;
    margin: 0;
    color: #475569;
    font-size: 15px;
    line-height: 1.6;
}

.nexus-domain-hero > .nexus-process-steps {
    grid-area: steps;
    align-self: end;
    margin: 0;
}

.nexus-domain-card {
    max-width: 980px;
    margin: 0 auto;
    padding: 22px 22px 18px;
    border-radius: 20px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #fff;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.06);
}

.nexus-domain-search {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.nexus-domain-search textarea,
.nexus-domain-search input.form-control {
    min-height: 64px;
    border-radius: 16px;
    border: 1px solid #dbe3ee;
    box-shadow: none;
    padding: 14px 16px;
    font-size: 16px;
    line-height: 1.5;
}

.nexus-domain-search textarea {
    resize: vertical;
    width: 100%;
}

.nexus-domain-search .btn {
    min-height: 64px;
    border-radius: 16px;
    padding: 0 20px;
    font-weight: 700;
}

.nexus-domain-search .multiselect,
.nexus-domain-search .bootstrap-multiselect {
    min-height: 44px;
}

.nexus-safe-search {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #334155;
    font-size: 14px;
    margin: 4px 0 0;
}

.nexus-domain-results {
    max-width: 980px;
    margin: 18px auto 0;
}

.nexus-results-card {
    padding: 18px 22px 22px;
}

.nexus-domain-results-card--pending {
    display: none;
}

.nexus-results-card #DomainSearchResults {
    margin-top: 0;
}

.nexus-results-card .primary-domain-header {
    margin: 18px 0 10px;
    color: #64748b;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nexus-results-card #searchDomainInfo {
    margin-top: 8px;
}

.nexus-results-card .domain-lookup-primary-results {
    margin: 12px 0 18px;
    padding: 22px 18px;
    border: 1px solid #bbf7d0;
    border-radius: 18px;
    background: linear-gradient(180deg, #f0fdf4 0%, #ecfdf5 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.nexus-results-card .domain-available.headline,
.nexus-results-card .domain-checker-available.headline {
    color: #166534;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.nexus-results-card .domain-unavailable.headline,
.nexus-results-card .domain-invalid.headline,
.nexus-results-card .transfer-not-eligible .headline {
    color: #991b1b;
    font-weight: 700;
}

.nexus-results-card .domain-price {
    margin: 14px 0 6px;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.04);
    text-align: center;
}

.nexus-results-card .domain-price .price {
    display: inline-block;
    margin-left: 8px;
    font-size: 1.8rem;
    font-weight: 800;
    color: #0f172a;
}

.nexus-results-card .domain-price .nexus-free-domain-price del {
    margin-right: 10px;
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 500;
}

.nexus-results-card .domain-price .nexus-free-domain-price strong {
    color: #047857;
    font-size: 1rem;
    letter-spacing: 0.04em;
}

.nexus-results-card .domain-price .register-price-label,
.nexus-results-card .domain-price .transfer-price-label {
    font-size: 13px;
    color: #475569;
}

.nexus-results-card .domain-contact-support.headline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    min-height: 44px;
    border-radius: 12px;
}

.nexus-results-card .spotlight-tlds-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 12px;
}

.nexus-results-card .spotlight-tld-container {
    width: auto;
}

.nexus-results-card .spotlight-tld {
    height: 100%;
    padding: 14px;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.04);
}

.nexus-results-card .suggested-domains {
    margin-top: 18px;
    border: 1px solid #dbe1f0;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

/* Estrutura usada pelo JavaScript do WHMCS, mas sem exibição para o cliente. */
.nexus-hidden-suggestions {
    display: none !important;
}

.nexus-results-card .suggested-domains .card-header {
    padding: 14px 18px;
    border: 0;
    background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
    font-weight: 700;
    color: #0f172a;
}

.nexus-results-card #domainSuggestions {
    margin: 0;
}

.nexus-results-card .domain-suggestion {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 17px 18px;
    border: 0;
    border-top: 1px solid #e5e7eb;
    background: #fff;
}

.nexus-results-card .domain-suggestion:first-child {
    border-top: 0;
}

.nexus-results-card .suggestion-domain {
    min-width: 260px;
    font-weight: 700;
    color: #0f172a;
    word-break: break-word;
}

.nexus-results-card .suggestion-meta {
    flex: 1;
}

.nexus-results-card .suggestion-meta .promo {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 8px;
    border-radius: 999px;
    background: #fee2e2;
    color: #b91c1c;
    font-size: 12px;
    font-weight: 700;
}

.nexus-results-card .actions .promo {
    padding: 4px 10px;
    border-radius: 999px;
    background: #e7f8f0;
    color: #047857;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.nexus-results-card .actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nexus-results-card .actions .price {
    font-weight: 800;
    color: #0f172a;
    white-space: nowrap;
}

.nexus-results-card .actions .btn-add-to-cart {
    min-height: 36px;
    min-width: 102px;
    padding: 0 14px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
}

.nexus-results-card .more-suggestions {
    margin: 0;
    padding: 12px 16px;
    background: #f8fafc;
}

.nexus-results-card .domain-suggestions-warning {
    padding: 12px 16px 4px;
    color: #64748b;
    font-size: 12px;
}

.nexus-domain-continue-wrap {
    margin-top: 18px;
}

.nexus-domain-continue-wrap .btn-lg {
    min-width: 220px;
    border-radius: 14px;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.16);
}

.nexus-domain-transfer-cta {
    max-width: 980px;
    margin: 14px auto 0;
    text-align: center;
}

.nexus-domain-transfer-cta .btn-link {
    font-weight: 600;
    color: #0f172a;
    text-decoration: none;
}

.nexus-domain-transfer-cta .btn-link:hover {
    text-decoration: underline;
}

.nexus-cart-configure-domains {
    padding: 18px 0 24px;
}

.nexus-domain-section {
    margin-bottom: 26px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.nexus-cart-configure-domains .addon-products {
    margin-top: 10px;
}

.nexus-cart-product-domain-page {
    padding: 18px 0 24px;
}

/* Product configuration: remove inherited category and action navigation. */
#order-standard_cart:has(#frmConfigureProduct) .cart-sidebar,
#order-standard_cart:has(#frmConfigureProduct) .sidebar-collapsed {
    display: none;
}

#order-standard_cart:has(#frmConfigureProduct) .cart-body {
    float: none;
    width: 100%;
}

#order-standard_cart:has(#frmConfigureProduct) .nexus-selected-domain {
    margin: 0 0 12px;
    padding: 10px 12px;
    border-left: 3px solid #0f172a;
    border-radius: 4px;
    background: #f0fdf4;
}

#order-standard_cart:has(#frmConfigureProduct) .nexus-selected-domain span,
#order-standard_cart:has(#frmConfigureProduct) .nexus-selected-domain strong {
    display: block;
}

#order-standard_cart:has(#frmConfigureProduct) .nexus-selected-domain span {
    color: #64748b;
    font-size: 12px;
}

#order-standard_cart:has(#frmConfigureProduct) .nexus-selected-domain strong {
    margin-top: 2px;
    color: #0f172a;
    font-size: 15px;
    word-break: break-word;
}

#order-standard_cart:has(#frmConfigureProduct) .nexus-billing-cycles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 16px;
    margin: 0 0 14px;
}

#order-standard_cart:has(#frmConfigureProduct) .nexus-billing-title {
    margin: 20px 0 0;
    padding: 18px 20px 7px;
    border: 1px solid #dbe7df;
    border-bottom: 0;
    border-radius: 14px 14px 0 0;
    background: linear-gradient(135deg, #f0fdf4 0%, #fff 100%);
    color: #0f172a;
    font-size: 20px;
    font-weight: 800;
}

#order-standard_cart:has(#frmConfigureProduct) .nexus-billing-title::before {
    display: block;
    margin-bottom: 6px;
    color: #15803d;
    content: 'ETAPA 1';
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
}

#order-standard_cart:has(#frmConfigureProduct) .nexus-billing-description {
    margin: 0 0 20px;
    padding: 0 20px 16px;
    border: 1px solid #dbe7df;
    border-top: 0;
    border-radius: 0 0 14px 14px;
    background: linear-gradient(135deg, #f0fdf4 0%, #fff 100%);
    color: #64748b;
    font-size: 14px;
}

#order-standard_cart:has(#frmConfigureProduct) .nexus-billing-cycle {
    position: relative;
    min-height: 152px;
    padding: 20px 18px 18px 54px;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    background: #fff;
    color: #0f172a;
    text-align: left;
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

#order-standard_cart:has(#frmConfigureProduct) .nexus-billing-cycle:hover {
    border-color: #0f172a;
    transform: translateY(-2px);
}

#order-standard_cart:has(#frmConfigureProduct) .nexus-billing-cycle.is-selected {
    border-color: #0f172a;
    background: #0f172a;
    color: #fff;
}

#order-standard_cart:has(#frmConfigureProduct) .nexus-billing-radio {
    position: absolute;
    top: 23px;
    left: 19px;
    width: 20px;
    height: 20px;
    border: 1px solid #cbd5e1;
    border-radius: 50%;
    background: #fff;
}

#order-standard_cart:has(#frmConfigureProduct) .nexus-billing-cycle.is-selected .nexus-billing-radio {
    border: 6px solid #fff;
    background: #0f172a;
}

#order-standard_cart:has(#frmConfigureProduct) .nexus-billing-cycle-name,
#order-standard_cart:has(#frmConfigureProduct) .nexus-billing-cycle-price {
    display: block;
}

#order-standard_cart:has(#frmConfigureProduct) .nexus-billing-cycle-name {
    margin-bottom: 7px;
    font-size: 16px;
    font-weight: 800;
}

#order-standard_cart:has(#frmConfigureProduct) .nexus-billing-cycle-price {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
}

#order-standard_cart:has(#frmConfigureProduct) .nexus-billing-discount {
    display: inline-block;
    margin: 10px 8px 0 0;
    padding: 3px 8px;
    border-radius: 999px;
    background: #0f172a;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
}

#order-standard_cart:has(#frmConfigureProduct) .nexus-billing-no-discount {
    display: inline-block;
    margin-top: 10px;
    padding: 3px 8px;
    border-radius: 999px;
    background: #dc2626;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
}

#order-standard_cart:has(#frmConfigureProduct) .nexus-billing-original-price {
    display: block;
    margin-bottom: 3px;
    color: #64748b;
    font-size: 12px;
}

#order-standard_cart:has(#frmConfigureProduct) .nexus-billing-savings {
    display: block !important;
    clear: both;
    width: 100%;
    margin-top: 5px;
    color: #15803d;
    font-size: 11px;
    font-weight: 700;
}

#order-standard_cart:has(#frmConfigureProduct) .nexus-billing-free-domain {
    display: block;
    margin-top: 10px;
    color: #047857;
    font-size: 12px;
    font-weight: 800;
}

#order-standard_cart:has(#frmConfigureProduct) .nexus-billing-cycle.is-selected .nexus-billing-discount {
    background: #fff;
    color: #15803d;
}

#order-standard_cart:has(#frmConfigureProduct) .nexus-billing-cycle.is-selected .nexus-billing-no-discount {
    background: #991b1b;
}

#order-standard_cart:has(#frmConfigureProduct) .nexus-billing-cycle.is-selected .nexus-billing-original-price,
#order-standard_cart:has(#frmConfigureProduct) .nexus-billing-cycle.is-selected .nexus-billing-free-domain,
#order-standard_cart:has(#frmConfigureProduct) .nexus-billing-cycle.is-selected .nexus-billing-savings {
    color: #fff;
}

#order-standard_cart:has(#frmConfigureProduct) .addon-products {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 0;
}

#order-standard_cart:has(#frmConfigureProduct) .nexus-addons-description {
    margin: -13px 0 20px;
    padding: 0 20px 16px;
    border: 1px solid #dbe7df;
    border-top: 0;
    border-radius: 0 0 14px 14px;
    background: linear-gradient(135deg, #f0fdf4 0%, #fff 100%);
    color: #64748b;
    font-size: 14px;
}

#order-standard_cart:has(#frmConfigureProduct) #productAddonsContainer .sub-heading {
    height: auto;
    margin: 36px 0 13px;
    padding: 18px 20px 7px;
    border: 1px solid #dbe7df;
    border-bottom: 0;
    border-radius: 14px 14px 0 0;
    background: linear-gradient(135deg, #f0fdf4 0%, #fff 100%);
    text-align: left;
}

#order-standard_cart:has(#frmConfigureProduct) #productAddonsContainer .sub-heading::before {
    display: block;
    margin-bottom: 6px;
    color: #15803d;
    content: 'ETAPA OPCIONAL';
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
}

#order-standard_cart:has(#frmConfigureProduct) #productAddonsContainer .sub-heading span {
    position: static;
    display: block;
    padding: 0;
    background: transparent;
    color: #0f172a;
    font-size: 20px;
    font-weight: 800;
}

#order-standard_cart:has(#frmConfigureProduct) .addon-products > [class*="col-"] {
    float: none !important;
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
    padding: 0;
}

#order-standard_cart:has(#frmConfigureProduct) .panel-addon {
    position: relative;
    min-height: 172px;
    margin: 0;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    background: #fff;
    box-shadow: none;
    cursor: pointer;
    text-align: left;
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

#order-standard_cart:has(#frmConfigureProduct) .panel-addon:hover {
    border-color: #0f172a;
    transform: translateY(-2px);
}

#order-standard_cart:has(#frmConfigureProduct) .panel-addon .icheckbox_square-blue {
    display: none !important;
}

#order-standard_cart:has(#frmConfigureProduct) .panel-addon::before {
    position: absolute;
    top: 21px;
    left: 18px;
    width: 20px;
    height: 20px;
    border: 1px solid #cbd5e1;
    border-radius: 50%;
    background: #fff;
    content: '';
}

#order-standard_cart:has(#frmConfigureProduct) .panel-addon-selected {
    border-color: #0f172a;
    background: #0f172a;
    color: #fff;
}

#order-standard_cart:has(#frmConfigureProduct) .panel-addon-selected::before {
    border: 6px solid #fff;
    background: #0f172a;
}

#order-standard_cart:has(#frmConfigureProduct) .panel-addon .panel-body {
    min-height: 113px;
    padding: 21px 18px 16px 54px;
    background: transparent;
    color: #475569;
    font-size: 13px;
    line-height: 1.45;
}

#order-standard_cart:has(#frmConfigureProduct) .panel-addon .panel-body label {
    display: block;
    margin: 0 0 8px;
    color: #0f172a;
    font-size: 16px;
    font-weight: 800;
}

#order-standard_cart:has(#frmConfigureProduct) .nexus-addon-video-trigger {
    position: absolute;
    top: 18px;
    right: 18px;
    padding: 7px 10px;
    border: 0;
    border-radius: 8px;
    background: #0f172a;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
}

#order-standard_cart:has(#frmConfigureProduct) .nexus-addon-video-trigger:hover {
    background: #15803d;
}

#order-standard_cart:has(#frmConfigureProduct) .panel-addon-selected .nexus-addon-video-trigger {
    background: #fff;
    color: #15803d;
}

.nexus-addon-video-modal {
    position: fixed;
    z-index: 1055;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(15, 23, 42, 0.68);
}

.nexus-addon-video-modal.is-open {
    display: flex;
}

.nexus-addon-video-dialog {
    position: relative;
    width: min(860px, 100%);
    padding: 28px;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 24px 80px rgba(15, 23, 42, 0.35);
}

.nexus-addon-video-modal-title {
    margin: 0 36px 18px 0;
    color: #0f172a;
    font-size: 19px;
    font-weight: 800;
}

.nexus-addon-video-close {
    position: absolute;
    top: 18px;
    right: 18px;
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: #eef2f7;
    color: #0f172a;
}

.nexus-addon-video-frame {
    position: relative;
    padding-top: 56.25%;
    overflow: hidden;
    border-radius: 12px;
    background: #0f172a;
}

.nexus-addon-video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

#order-standard_cart:has(#frmConfigureProduct) .panel-addon .panel-price {
    margin: 0;
    padding: 11px 18px 11px 54px;
    border-top: 1px solid #e2e8f0;
    background: transparent;
    color: #0f172a;
    font-size: 14px;
    font-weight: 700;
	text-align: right;
}

#order-standard_cart:has(#frmConfigureProduct) .panel-addon .panel-add {
    display: none;
}

#order-standard_cart:has(#frmConfigureProduct) .panel-addon-selected .panel-body,
#order-standard_cart:has(#frmConfigureProduct) .panel-addon-selected .panel-body label,
#order-standard_cart:has(#frmConfigureProduct) .panel-addon-selected .panel-price,
#order-standard_cart:has(#frmConfigureProduct) .panel-addon-selected .panel-add {
    background: transparent;
    color: #fff;
}

#order-standard_cart:has(#frmConfigureProduct) .panel-addon-selected .panel-price {
    border-color: rgba(255, 255, 255, 0.35);
}

.nexus-cart-product-domain-page .nexus-domain-card {
    padding-top: 18px;
	
}

#order-standard_cart .domain-selection-options {
border:none !important;
}

#order-standard_cart .domain-selection-options .option {
    margin-bottom: 2px;
    padding: 0px 0px;
    border-radius: 6px;
    background-color: #f8f8f8;
}
.nexus-cart-product-domain-page .domain-selection-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.nexus-domain-option {
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
}

.nexus-domain-option > label {
    position: relative;
    display: flex;
    min-height: 226px;
    margin: 0;
    padding: 28px 20px 24px;
    border: 1px solid #dbe1e8;
    border-radius: 5px;
    background: #fff;
    color: #0f172a;
    cursor: pointer;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.nexus-domain-option > label:hover {
    border-color: #0f172a;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    transform: translateY(-2px);
}

.nexus-domain-option > label > input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.nexus-domain-choice .iradio_square-blue {
    display: none !important;
}

.nexus-domain-option.option-selected > label,
.nexus-domain-option > label:has(input:checked) {
    border: 2px solid #0f172a;
    padding: 27px 19px 23px;
}

.nexus-domain-option.option-selected > label::after,
.nexus-domain-option > label:has(input:checked)::after {
    position: absolute;
    top: 0;
    right: 0;
    width: 38px;
    height: 38px;
    border-radius: 0 3px 0 16px;
    background: #0f172a;
    color: #fff;
    content: "\2713";
    font-family: inherit;
    font-size: 18px;
    font-weight: 900;
    line-height: 29px;
    text-align: center;
}

.nexus-domain-choice-icon {
    position: absolute;
    top: 28px;
    left: 50%;
    display: grid;
    width: 68px;
    height: 68px;
    place-items: center;
    border: 2px solid #0f172a;
    border-radius: 50%;
    color: #0f172a;
    font-size: 29px;
    transform: translateX(-50%);
}

.nexus-domain-choice-copy {
    display: block;
    align-self: flex-end;
    width: 100%;
}

.nexus-domain-choice-copy strong,
.nexus-domain-choice-copy small {
    display: block;
}

.nexus-domain-choice-copy strong {
    margin-bottom: 6px;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.2;
}

.nexus-domain-choice-copy small {
    color: #334155;
    font-size: 15px;
    line-height: 1.6;
}

.nexus-domain-action-panel {
    margin-top: 36px;
    padding: 52px 42px;
    border-radius: 0 0 12px 12px;
    background: linear-gradient(110deg, #060606 0%, #1d1d1d 100%);
}

.nexus-domain-action-panel .domain-input-group {
    margin: 0;
}

.nexus-domain-action-panel .form-control,
.nexus-domain-action-panel .input-group-addon {
    height: 58px;
    border-color: #d7dbe2;
    box-shadow: none;
}

.nexus-domain-action-panel .form-control {
    font-size: 17px;
}

.nexus-domain-action-panel .btn {
    height: 58px;
    border: 0;
    border-radius: 7px;
    background: #0f172a;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
}

.nexus-domain-action-panel .btn:hover,
.nexus-domain-action-panel .btn:focus {
    background: #15803d;
}

.nexus-domain-inline-group .input-group-addon {
    border-radius: 14px 0 0 14px;
    background: #eef2f7;
    border-color: #cbd5e1;
    color: #334155;
    font-weight: 700;
    box-shadow: none;
}

.nexus-domain-inline-group .form-control {
    border-radius: 0 14px 14px 0;
    box-shadow: none;
}

.nexus-domain-inline-group .form-control:focus {
    border-color: #0f172a;
    box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.08);
}

.nexus-tld-select {
    display: block;
    width: 100%;
    height: 42px;
    border-color: #cbd5e1;
    border-radius: 12px;
    box-shadow: none;
}

.nexus-free-domain-note {
    max-width: 980px;
    margin: 12px auto 0;
    color: #475569;
}

.nexus-cart-product-domain-page #frmProductDomain.nexus-domain-card {
    padding: 30px;
    border-radius: 18px;
}

.nexus-cart-product-domain-page .nexus-flow-eyebrow {
    background: #e2e8f0;
    color: #0f172a;
}

.nexus-cart-product-domain-page .nexus-process-steps a.is-active {
    background: #f1f5f9;
    color: #0f172a;
}

.nexus-cart-product-domain-page .nexus-process-steps a.is-active span {
    border-color: #0f172a;
    background: #0f172a;
}

.nexus-domain-selection-header {
    margin-bottom: 24px;
}

.nexus-domain-selection-header > span {
    color: #0f172a;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.11em;
}

.nexus-domain-selection-header h2 {
    margin: 4px 0 6px;
    color: #0f172a;
    font-size: 24px;
    font-weight: 850;
    letter-spacing: -0.025em;
}

.nexus-domain-selection-header p {
    margin: 0;
    color: #64748b;
    font-size: 13px;
}

.nexus-cart-product-domain-page .domain-selection-options {
    gap: 16px;
}

.nexus-cart-product-domain-page .nexus-domain-option > label {
    min-height: 120px;
    align-items: center;
    gap: 16px;
    padding: 20px;
    border: 1px solid #dbe3ed;
    border-radius: 14px;
}

.nexus-cart-product-domain-page .nexus-domain-choice-icon {
    position: static;
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    border: 0;
    border-radius: 13px;
    background: #f1f5f9;
    color: #475569;
    font-size: 21px;
    transform: none;
}

.nexus-cart-product-domain-page .nexus-domain-choice-copy {
    align-self: auto;
}

.nexus-cart-product-domain-page .nexus-domain-choice-copy strong {
    margin-bottom: 5px;
    color: #0f172a;
    font-size: 16px;
    font-weight: 800;
}

.nexus-cart-product-domain-page .nexus-domain-choice-copy small {
    color: #64748b;
    font-size: 12px;
    line-height: 1.45;
}

.nexus-cart-product-domain-page .nexus-domain-option.option-selected > label,
.nexus-cart-product-domain-page .nexus-domain-option > label:has(input:checked) {
    padding: 19px;
    border: 2px solid #0f172a;
    background: #f8fafc;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.1);
}

.nexus-cart-product-domain-page .nexus-domain-option.option-selected .nexus-domain-choice-icon,
.nexus-cart-product-domain-page .nexus-domain-option > label:has(input:checked) .nexus-domain-choice-icon {
    background: #e2e8f0;
    color: #0f172a;
}

.nexus-cart-product-domain-page .nexus-domain-option.option-selected > label::after,
.nexus-cart-product-domain-page .nexus-domain-option > label:has(input:checked)::after {
    top: 12px;
    right: 12px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #0f172a;
    font-size: 13px;
    line-height: 25px;
}

.nexus-cart-product-domain-page .nexus-domain-action-panel {
    margin-top: 22px;
    padding: 24px;
    border: 1px solid #dbe3ed;
    border-radius: 14px;
    background: #f8fafc;
}

.nexus-domain-search-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.nexus-domain-search-icon {
    display: grid;
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    place-items: center;
    border-radius: 10px;
    background: #e2e8f0;
    color: #0f172a;
}

.nexus-domain-search-heading strong,
.nexus-domain-search-heading small {
    display: block;
}

.nexus-domain-search-heading strong {
    color: #0f172a;
    font-size: 15px;
}

.nexus-domain-search-heading small {
    margin-top: 2px;
    color: #64748b;
    font-size: 11px;
}

.nexus-cart-product-domain-page .nexus-domain-action-panel .btn {
    border-radius: 10px;
    background: #0f172a;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.18);
}

.nexus-cart-product-domain-page .nexus-domain-action-panel .btn:hover,
.nexus-cart-product-domain-page .nexus-domain-action-panel .btn:focus {
    background: #1e293b;
}

.nexus-cart-domain-page .spotlight-tlds,
.nexus-cart-domain-page .suggested-domains,
.nexus-cart-domain-page .domain-pricing {
    margin-top: 18px;
}

@media (max-width: 767px) {
    .nexus-products-page {
        width: calc(100% - 28px);
        padding-top: 18px;
    }

    .nexus-products-hero {
        display: block;
        padding: 20px 0 24px;
    }

    .nexus-products-hero-trust {
        justify-content: flex-start;
        margin-top: 20px;
    }

    .nexus-products-grid {
        grid-template-columns: 1fr;
    }

    .nexus-product-footer {
        align-items: stretch;
        flex-direction: column;
    }

    .nexus-product-cta {
        width: 100%;
        text-align: center;
    }

    .nexus-cart-product-domain-page .nexus-domain-hero,
    .nexus-cart-domain-page .nexus-domain-hero,
    .nexus-cart-configure-domains .nexus-domain-hero,
    #order-standard_cart:has(#frmConfigureProduct) .nexus-unified-flow-header {
        display: block;
        margin-bottom: 24px;
        padding: 26px 18px 20px;
    }

    .nexus-cart-product-domain-page .nexus-domain-card,
    .nexus-cart-domain-page .nexus-domain-card,
    .nexus-cart-configure-domains > .nexus-domain-card,
    #order-standard_cart:has(#frmConfigureProduct) #frmConfigureProduct {
        width: calc(100% - 28px);
    }

    .nexus-domain-hero,
    .nexus-cart-flow-banner,
    .nexus-unified-flow-header {
        display: block;
        padding: 26px 0 20px;
    }

    .nexus-cart-flow-banner {
        padding-right: 18px;
        padding-left: 18px;
    }

    .nexus-domain-hero > .nexus-process-steps,
    .nexus-cart-flow-banner .nexus-process-steps,
    #order-standard_cart:has(#frmConfigureProduct) .nexus-unified-flow-header .nexus-process-steps {
        margin-top: 22px;
    }

    .nexus-unified-flow-header {
        margin-bottom: 22px;
    }

    .nexus-process-steps {
        display: flex;
        width: 100%;
        overflow-x: auto;
        border-radius: 11px;
        scrollbar-width: thin;
    }

    .nexus-process-steps a {
        min-width: 112px;
    }

    #order-standard_cart:has(#frmCheckout) .nexus-checkout-flow-header .nexus-process-steps {
        margin-top: 22px;
    }

    #order-standard_cart:has(#frmConfigureProduct) > .row,
    .nexus-cart-product-domain-page,
    .nexus-cart-configure-domains,
    .nexus-cart-domain-page {
        width: calc(100% - 24px);
    }

    .nexus-cart-flow-banner {
        width: calc(100% - 24px);
        margin-top: 16px;
        padding: 18px;
    }

    .nexus-cart-flow-banner h1 {
        font-size: 21px;
    }

    #order-standard_cart:has(#frmConfigureProduct) #orderSummary {
        position: static;
    }

    #order-standard_cart:has(#frmConfigureDomains) .text-center.pt-4 {
        margin-right: -16px;
        margin-left: -16px;
        padding-right: 16px !important;
        padding-left: 16px !important;
    }

    #order-standard_cart:has(#frmConfigureDomains) button[type="submit"],
    .nexus-domain-continue-wrap .btn-lg {
        width: 100%;
    }

    .nexus-domain-card {
        padding: 16px;
        border-radius: 16px;
    }

    .nexus-domain-search .btn,
    .nexus-domain-search textarea,
    .nexus-domain-search input.form-control {
        min-height: 54px;
    }

    .nexus-results-card .domain-suggestion {
        flex-direction: column;
        align-items: flex-start;
    }

    .nexus-results-card .actions {
        width: 100%;
        justify-content: flex-start;
    }

    .nexus-domain-continue-wrap .btn-lg {
        width: 100%;
        min-width: 0;
    }

    .nexus-cart-product-domain-page .domain-selection-options {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .nexus-domain-option > label {
        min-height: 220px;
    }

    .nexus-domain-action-panel {
        margin-top: 20px;
        padding: 24px 18px;
    }

    .nexus-domain-action-panel .col-sm-2,
    .nexus-domain-action-panel .col-sm-8 {
        margin-top: 12px;
    }

    #order-standard_cart:has(#frmConfigureProduct) .nexus-billing-cycles {
        grid-template-columns: 1fr;
    }

    #order-standard_cart:has(#frmConfigureProduct) .addon-products > [class*="col-"] {
        width: 100%;
    }

    #order-standard_cart:has(#frmCheckout) .nexus-checkout-sections-grid {
        grid-template-columns: 1fr;
    }

    #order-standard_cart:has(#frmCheckout) .nexus-checkout-detail-section,
    #order-standard_cart:has(#frmCheckout) .nexus-payment-section {
        margin: 22px 0;
        padding: 20px 16px;
        border-radius: 15px;
    }

    #order-standard_cart:has(#frmCheckout) .nexus-payment-section::before {
        position: static;
        display: inline-block;
        margin-bottom: 14px;
    }

    #order-standard_cart:has(#frmCheckout) #totalDueToday {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
    }

    #order-standard_cart:has(#frmCheckout) #paymentGatewaysContainer > .text-center {
        grid-template-columns: 1fr;
    }

    #order-standard_cart:has(#frmCheckout) #creditCardInputFields,
    #order-standard_cart:has(#frmCheckout) #paymentGatewayInput:not(:empty) {
        padding: 16px 12px;
    }

    #order-standard_cart:has(#frmCheckout) .nexus-checkout-flow-header {
        display: block;
        padding: 26px 18px 20px;
    }

    #order-standard_cart:has(#frmCheckout) .nexus-checkout-progress {
        justify-content: space-between;
        gap: 8px;
        margin-top: 22px;
    }

    #order-standard_cart:has(#frmCheckout) .nexus-checkout-progress li {
        gap: 5px;
        font-size: 10px;
    }

    #order-standard_cart:has(#frmCheckout) .nexus-shopify-checkout {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 24px 14px 45px;
    }

    #order-standard_cart:has(#frmCheckout) .nexus-shopify-checkout-summary {
        position: static;
        grid-row: 2;
        padding: 20px 16px;
    }

    #order-standard_cart:has(#frmCheckout) .nexus-shopify-checkout-main {
        grid-row: 1;
    }

    #order-standard_cart:has(#frmCheckout) .nexus-checkout-section {
        padding: 20px 16px;
    }

    #order-standard_cart:has(#frmCheckout) .nexus-already-registered,
    #order-standard_cart:has(#frmCheckout) .checkout-security-msg {
        width: calc(100% - 28px);
    }

    .nexus-addon-video-modal {
        align-items: flex-end;
        padding: 0;
    }

    .nexus-addon-video-dialog {
        width: 100%;
        padding: 24px 18px 28px;
        border-radius: 20px 20px 0 0;
        animation: nexus-video-sheet-in 0.22s ease-out;
    }
}

@keyframes nexus-video-sheet-in {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}
/* Apply the DITU pill treatment to every checkout action. */
#order-standard_cart .btn,
#order-standard_cart button,
#order-standard_cart input[type="button"],
#order-standard_cart input[type="submit"],
#order-standard_cart input[type="reset"],
#order-standard_cart [role="button"] {
    border-radius: 999px !important;
}

/* Billing cycles are selectable cards, not pill actions. */
#order-standard_cart .nexus-billing-cycles .nexus-billing-cycle {
    border-radius: 16px !important;
}
