/* ── Denobulus Standard Order Template ─────────────────────────────────── */

/* Cart summary table */
.cart-summary table.table tbody tr,
.cart-summary table.table tbody td {
    white-space: normal;
}

.table-curved tbody>tr>td.price-col {
    vertical-align: bottom;
    text-align: right;
}

/* Totals box */
.totals-box {
    margin-top: 20px;
}

.totals-box table {
    margin-bottom: 20px;
    text-align: right;
    border: none;
}

.totals-box table>tbody>tr>td {
    border: none;
    padding-top: 7px;
    padding-bottom: 7px;
    color: #495057;
    font-size: 0.9rem;
}

/* Total due row — visually prominent */
.totals-box table>tbody>tr:last-child>td {
    padding-top: 10px;
    border-top: 2px solid #dee2e6;
    font-weight: 700;
    color: #212529;
    font-size: 1rem;
}

.totals-box table>tbody>tr>td strong {
    color: #212529;
    font-weight: 600;
}

.totals-box table>tbody>tr:last-child>td strong {
    font-size: 1.1rem;
    color: #1a9438;
}

/* Domain whois */
.whois {
    background: rgba(0, 0, 0, 0.05);
    background-repeat: no-repeat;
    background-position: 110% -70px;
    background-image: url(../images/globe.svg);
    padding: 25px;
    border-radius: 8px;
}

.whois div.checkbox label {
    padding-right: 5px;
}

.whois div.tlds,
div.search {
    margin: 0 auto;
    text-align: center;
    display: block;
}

.whois div.tlds {
    margin-bottom: 0;
}

.whois .show_more {
    margin-left: 5px;
}

/* ── Step progress bar ───────────────────────────────────────────────────── */

.card-steps {
    padding: 0;
    background: #fff;
    border: 1px solid #e2e6ea;
    border-radius: 10px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .06);
    margin-bottom: 1.25rem;
    overflow: hidden;
}

.card-steps .card-body {
    padding: 0;
}

.card-steps .row {
    display: flex;
    align-items: stretch;
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    border: none;
}

.card-steps .step-col {
    flex: 1;
    padding: 14px 18px;
    position: relative;
    border-right: 1px solid #e2e6ea;
    transition: background 0.2s;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-steps .step-col:last-child {
    border-right: none;
}

/* step number bubble */
.card-steps .step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #ced4da;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    margin-right: 10px;
    flex-shrink: 0;
    vertical-align: middle;
}

/* checkmark for completed steps — hide the number, show FA check */
.card-steps .step-col.step-done .step-num {
    font-size: 0;
}

.card-steps .step-col.step-done .step-num::after {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free', 'FontAwesome';
    font-weight: 900;
    font-size: 0.7rem;
    color: #fff;
}

.card-steps .step-col a {
    display: flex;
    align-items: center;
    color: #868e96;
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    line-height: 1.2;
}

.card-steps .step-col p {
    margin: 2px 0 0 38px;
    font-size: 0.74rem;
    color: #2E3338;
    line-height: 1.3;
}

/* active step */
.card-steps .step-col.step-active {
    background: #f0f7ff;
}

.card-steps .step-col.step-active .step-num {
    background: #2195F3;
    font-size: 0.75rem;
}

.card-steps .step-col.step-active a {
    color: #2195F3;
    font-weight: 600;
}

.card-steps .step-col.step-active p {
    color: #495057;
}

/* completed step */
.card-steps .step-col.step-done {
    background: #eef9f1;
    border-right-color: #d5eddc;
}

.card-steps .step-col.step-done .step-num {
    background: #28a745;
}

.card-steps .step-col.step-done a {
    color: #2e7d32;
    font-weight: 600;
}

.card-steps .step-col.step-done p {
    color: #5c8a63;
}

/* chevron separators */
.card-steps .step-sep {
    display: flex;
    align-items: center;
    padding: 0 4px;
    color: #ced4da;
    font-size: 0.7rem;
}

/* ── Cart "Your Cart" sidebar card ──────────────────────────────────────── */

.card-blesta {
    border-radius: 10px;
}

/* Coupon section */
.dnb-coupon-section {
    padding: 12px 0 4px;
    border-top: 1px solid #e9ecef;
    margin-top: 8px;
}

.dnb-coupon-section .dnb-section-label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
    color: #495057;
    margin-bottom: 8px;
}

.dnb-coupon-section .input-group .form-control {
    border-radius: 6px 0 0 6px;
}

.dnb-coupon-section .input-group-append .btn {
    border-radius: 0 6px 6px 0;
}

/* Cart/review step coupon layout — compact and right-aligned on desktop */
.dnb-cart-coupon-wrap {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.dnb-cart-coupon-wrap .dnb-coupon-section {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
}

@media (min-width: 768px) {
    .dnb-cart-coupon-wrap {
        max-width: 520px;
        margin-left: auto;
        margin-right: 0;
    }
}

/* Login section */
.dnb-login-section {
    padding: 14px 16px;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    border-radius: 0 0 10px 10px;
}

.dnb-login-section .dnb-section-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #495057;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.dnb-login-section .form-group {
    margin-bottom: 10px;
}

.dnb-login-section .form-control {
    border-radius: 6px;
    font-size: 0.875rem;
}

.dnb-login-section .btn-block {
    border-radius: 6px;
    font-size: 0.875rem;
    margin-top: 4px;
}

/* Sub-items */
.table>tbody>tr.sub-item>td {
    border-top: none;
}

/* Message alerts inside login/coupon boxes */
#login_box #login_message .alert,
#coupon_message .alert {
    margin-top: 8px;
    margin-bottom: 4px;
    border-radius: 6px;
}

/* Password reset link */
.pass-reset {
    padding-top: 6px;
    font-size: 0.75rem;
    font-style: italic;
    color: #6c757d;
}

.pass-reset a {
    color: #6c757d;
}

/* ── Responsive: no horizontal overflow ─────────────────────────────────── */

@media (max-width: 575px) {
    .card-steps .row {
        flex-direction: column;
        border-radius: 8px;
    }

    .card-steps .step-col {
        border-right: none;
        border-bottom: 1px solid #e2e6ea;
    }

    .card-steps .step-col:last-child {
        border-bottom: none;
    }

    .card-steps .step-sep {
        display: none;
    }

    .totals-box {
        max-width: 100%;
        overflow-x: auto;
    }
}

/* ── Package list rows ──────────────────────────────────────────────────── */

.dnb-pkg-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.dnb-pkg-row:last-child {
    border-bottom: none;
    padding-bottom: 4px;
}

.dnb-pkg-row.dnb-pkg-unavailable {
    opacity: 0.55;
}

.dnb-pkg-info {
    flex: 1;
    min-width: 0;
}

.dnb-pkg-name {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 5px;
    color: #212529;
}

.dnb-pkg-description {
    font-size: 0.85rem;
    color: #495057;
    line-height: 1.5;
}

.dnb-pkg-description p:last-child {
    margin-bottom: 0;
}

.dnb-pkg-description ul,
.dnb-pkg-description ol {
    padding-left: 1.15rem;
    margin-bottom: 0;
}

.dnb-pkg-description li {
    color: #495057;
    margin-bottom: 2px;
}

.dnb-pkg-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.dnb-pkg-select .form-control {
    min-width: 160px;
    font-size: 0.875rem;
}

.dnb-pkg-btn {
    white-space: nowrap;
}

.dnb-pkg-form {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

@media (max-width: 575px) {
    .dnb-pkg-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .dnb-pkg-actions {
        width: 100%;
        flex-wrap: wrap;
    }

    .dnb-pkg-select .form-control {
        min-width: 0;
        width: 100%;
    }

    .dnb-pkg-form {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }
}

/* ── Package card grid (3-column layout on packages step) ───────────────── */

.dnb-pkg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 4px 0;
}

.dnb-pkg-card {
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, .10);
    border-radius: 8px;
    padding: 20px;
    background: #fff;
    transition: box-shadow 0.15s ease, border-color 0.15s ease;
}

.dnb-pkg-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, .10);
    border-color: rgba(0, 0, 0, .18);
}

.dnb-pkg-card.dnb-pkg-unavailable {
    opacity: 0.55;
}

.dnb-pkg-card .dnb-pkg-info {
    flex: 1;
    min-width: 0;
    margin-bottom: 16px;
}

.dnb-pkg-card .dnb-pkg-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: stretch;
}

.dnb-pkg-card .dnb-pkg-form {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    margin: 0;
}

.dnb-pkg-card .dnb-pkg-select .form-control {
    width: 100%;
    min-width: 0;
}

.dnb-pkg-card .dnb-pkg-btn {
    width: 100%;
    justify-content: center;
}

@media (max-width: 991px) {
    .dnb-pkg-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .dnb-pkg-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Cart review table ───────────────────────────────────────────────────── */

.dnb-cart-table thead th {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 700;
    color: #495057;
    border-bottom: 2px solid #dee2e6;
    padding-top: 14px;
    padding-bottom: 14px;
    background: #f8f9fa;
}

.dnb-cart-table tbody td {
    padding-top: 22px;
    padding-bottom: 22px;
    vertical-align: middle;
    border-top: 1px solid #e9ecef;
    line-height: 1.5;
    font-size: 0.9rem;
    color: #343a40;
}

.dnb-cart-table tbody tr:first-child td {
    border-top: none;
}

.dnb-cart-table tbody td strong {
    font-weight: 600;
    color: #212529;
    font-size: 0.95rem;
}

.dnb-cart-table tbody td .btn {
    font-size: 0.78rem;
}

/* Price column emphasis */
.dnb-cart-table tbody td.price-col strong,
.dnb-cart-table tbody td:last-child strong {
    font-size: 1rem;
    color: #1a9438;
}

/* ── Checkout tab switcher ───────────────────────────────────────────────── */

.dnb-checkout-tabs {
    border-bottom: 2px solid #dee2e6;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.dnb-tab-buttons {
    display: flex;
    gap: 0;
    justify-content: center;
    width: 100%;
    max-width: 420px;
}

.dnb-tab-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex: 1;
    padding: 11px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #6c757d;
    cursor: pointer;
    border: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: color 0.15s, border-color 0.15s;
    user-select: none;
    background: transparent;
    white-space: nowrap;
}

.dnb-tab-btn:hover {
    color: #343a40;
    border-bottom-color: #ced4da;
}

.dnb-tab-btn.dnb-tab-active {
    color: #2195F3;
    border-bottom-color: #2195F3;
    font-weight: 600;
}

/* Login form on step 4 — centered, width-matched to tab bar */
.dnb-login-form-wrap {
    max-width: 420px;
    margin: 0 auto;
    padding-top: 4px;
}

@media (max-width: 575px) {
    .dnb-tab-buttons {
        max-width: 100%;
    }

    .dnb-tab-btn {
        padding: 9px 12px;
        font-size: 0.85rem;
    }

    .dnb-login-form-wrap {
        max-width: 100%;
    }
}

/* ── Sidebar card contrast + border radius fixes ─────────────────────────── */

.card-blesta {
    border-radius: 10px;
    overflow: hidden;
}

.card-blesta .card-header {
    border-radius: 10px 10px 0 0;
}

/* Coupon section label — sentence case, readable */
.dnb-coupon-section .dnb-section-label {
    color: #495057;
}

/* Login section */
.dnb-login-section {
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

.dnb-login-section .dnb-section-label {
    color: #343a40;
    font-weight: 600;
}

.dnb-login-section label {
    color: #495057;
    font-size: 0.82rem;
    font-weight: 500;
    margin-bottom: 3px;
}

/* Pass-reset link */
.dnb-login-section .pass-reset,
.dnb-login-section .pass-reset a,
.pass-reset,
.pass-reset a {
    color: #6c757d;
}

/* Coupon message area */
#coupon_message:empty {
    display: none;
}

/* Cart summary sidebar — readable text */
.cart-summary .table td {
    color: #343a40;
    font-size: 0.875rem;
}

.cart-summary .table td strong {
    color: #212529;
    font-weight: 600;
}

/* ── Domain choice widget ───────────────────────────────────────────────── */

.dnb-domain-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 4px;
}

.dnb-domain-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex: 1 1 120px;
    min-width: 110px;
    max-width: 180px;
    padding: 14px 10px;
    border: 2px solid #dee2e6;
    border-radius: 10px;
    cursor: pointer;
    text-align: center;
    transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
    user-select: none;
    margin: 0;
    background: transparent;
    font-weight: 500;
    font-size: 0.82rem;
    color: #495057;
}

.dnb-domain-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

/* Register-domain card rendered as a link should match the radio cards */
a.dnb-domain-option-link {
    color: #495057;
    text-decoration: none;
}

a.dnb-domain-option-link:hover,
a.dnb-domain-option-link:focus {
    color: #495057;
    text-decoration: none;
}

.dnb-domain-option:hover {
    border-color: #adb5bd;
    background: rgba(0, 0, 0, .02);
}

.dnb-domain-option.dnb-domain-option-active {
    border-color: #2195F3;
    background: rgba(33, 149, 243, .06);
    box-shadow: 0 0 0 3px rgba(33, 149, 243, .12);
    color: #1a80d4;
}

/* Prevent the inner icon/label spans from inheriting card-level highlight */
.dnb-domain-option.dnb-domain-option-active .dnb-domain-option-icon,
.dnb-domain-option.dnb-domain-option-active .dnb-domain-option-label,
.dnb-domain-option input[type="radio"]:checked~.dnb-domain-option-icon,
.dnb-domain-option input[type="radio"]:checked~.dnb-domain-option-label {
    background: transparent !important;
    box-shadow: none !important;
    text-shadow: none !important;
    outline: none !important;
    filter: none !important;
}

.dnb-domain-option-icon {
    font-size: 1.3rem;
    line-height: 1;
}

.dnb-domain-option-label {
    line-height: 1.25;
}

.dnb-domain-input-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #495057;
    margin-bottom: 4px;
    display: block;
}

@media (max-width: 575px) {
    .dnb-domain-options {
        gap: 8px;
    }

    .dnb-domain-option {
        flex: 1 1 calc(50% - 8px);
        max-width: none;
        padding: 12px 8px;
        font-size: 0.8rem;
    }
}

/* ── Dark mode overrides (Blesta theme classes only — NOT prefers-color-scheme) ── */
/*
 * Scoped to body.theme-dark and body.theme-auto so these rules ONLY fire
 * when Blesta's theme system explicitly activates dark mode.
 * OS-level dark preference is intentionally ignored here.
 */

/* ── 1. Package rows — strong readable text ── */
body.theme-dark .dnb-pkg-name,
body.theme-auto .dnb-pkg-name {
    color: #e8eaed;
}

body.theme-dark .dnb-pkg-description,
body.theme-auto .dnb-pkg-description {
    color: #adb5bd;
}

body.theme-dark .dnb-pkg-description ul li,
body.theme-dark .dnb-pkg-description ol li,
body.theme-dark .dnb-pkg-description p,
body.theme-auto .dnb-pkg-description ul li,
body.theme-auto .dnb-pkg-description ol li,
body.theme-auto .dnb-pkg-description p {
    color: #adb5bd;
}

body.theme-dark .dnb-pkg-description strong,
body.theme-dark .dnb-pkg-description b,
body.theme-auto .dnb-pkg-description strong,
body.theme-auto .dnb-pkg-description b {
    color: #d0d5dd;
}

body.theme-dark .dnb-pkg-row,
body.theme-auto .dnb-pkg-row {
    border-bottom-color: rgba(255, 255, 255, .09);
}

body.theme-dark .dnb-pkg-card,
body.theme-auto .dnb-pkg-card {
    background: #1a2235;
    border-color: rgba(255, 255, 255, .10);
}

body.theme-dark .dnb-pkg-card:hover,
body.theme-auto .dnb-pkg-card:hover {
    border-color: rgba(255, 255, 255, .22);
    box-shadow: 0 4px 16px rgba(0, 0, 0, .35);
}

body.theme-dark .dnb-pkg-select .form-control,
body.theme-auto .dnb-pkg-select .form-control {
    background-color: #1e2433;
    color: #c8cdd5;
    border-color: rgba(255, 255, 255, .12);
}

/* ── 2. Totals divider — muted, consistent with dark card borders ── */
body.theme-dark .cart-summary hr,
body.theme-auto .cart-summary hr {
    border-color: rgba(255, 255, 255, .09);
    opacity: 1;
}

body.theme-dark .totals-box table>tbody>tr>td,
body.theme-auto .totals-box table>tbody>tr>td {
    border-color: rgba(255, 255, 255, .09);
    color: #c8cdd5;
}

body.theme-dark .totals-box table>tbody>tr>td strong,
body.theme-auto .totals-box table>tbody>tr>td strong {
    color: #e8eaed;
}

body.theme-dark .totals-box table>tbody>tr:last-child>td,
body.theme-auto .totals-box table>tbody>tr:last-child>td {
    border-top-color: rgba(255, 255, 255, .12);
    color: #e8eaed;
}

body.theme-dark .totals-box table>tbody>tr:last-child>td strong,
body.theme-auto .totals-box table>tbody>tr:last-child>td strong {
    color: #5bdf8a;
}

body.theme-dark .cart-summary .table td,
body.theme-auto .cart-summary .table td {
    color: #c8cdd5;
}

body.theme-dark .cart-summary .table td strong,
body.theme-auto .cart-summary .table td strong {
    color: #e8eaed;
}

/* ── 3. Step bar — fully dark-native ── */
body.theme-dark .card-steps,
body.theme-auto .card-steps {
    background: #1a2235;
    border-color: rgba(255, 255, 255, .09);
    box-shadow: 0 1px 4px rgba(0, 0, 0, .3);
}

body.theme-dark .card-steps .row,
body.theme-auto .card-steps .row {
    background: #1a2235;
}

body.theme-dark .card-steps .step-col,
body.theme-auto .card-steps .step-col {
    border-right-color: rgba(255, 255, 255, .09);
}

body.theme-dark .card-steps .step-col a,
body.theme-auto .card-steps .step-col a {
    color: #8a9bb5;
}

body.theme-dark .card-steps .step-col p,
body.theme-auto .card-steps .step-col p {
    color: #5a6478;
}

body.theme-dark .card-steps .step-col.step-active,
body.theme-auto .card-steps .step-col.step-active {
    background: #1f2d45;
}

body.theme-dark .card-steps .step-col.step-active a,
body.theme-auto .card-steps .step-col.step-active a {
    color: #5baaff;
}

body.theme-dark .card-steps .step-col.step-active p,
body.theme-auto .card-steps .step-col.step-active p {
    color: #8a9bb5;
}

body.theme-dark .card-steps .step-col.step-done,
body.theme-auto .card-steps .step-col.step-done {
    background: rgba(72, 199, 116, .12);
    border-right-color: rgba(72, 199, 116, .22);
}

body.theme-dark .card-steps .step-col.step-done a,
body.theme-auto .card-steps .step-col.step-done a {
    color: #48c774;
}

body.theme-dark .card-steps .step-col.step-done p,
body.theme-auto .card-steps .step-col.step-done p {
    color: #8db79a;
}

body.theme-dark .card-steps .step-num,
body.theme-auto .card-steps .step-num {
    background: #2e3a52;
    color: #8a9bb5;
}

body.theme-dark .card-steps .step-col.step-active .step-num,
body.theme-auto .card-steps .step-col.step-active .step-num {
    background: #2195F3;
    color: #fff;
}

body.theme-dark .card-steps .step-col.step-done .step-num,
body.theme-auto .card-steps .step-col.step-done .step-num {
    background: #28a745;
    color: #fff;
}

body.theme-dark .card-steps .step-col.step-done .step-num::after,
body.theme-auto .card-steps .step-col.step-done .step-num::after {
    color: #fff;
}

/* ── 4. Cart review table ── */
body.theme-dark .dnb-cart-table thead th,
body.theme-auto .dnb-cart-table thead th {
    background: #151c2c;
    color: #8a9bb5;
    border-bottom-color: rgba(255, 255, 255, .1);
}

body.theme-dark .dnb-cart-table tbody td,
body.theme-auto .dnb-cart-table tbody td {
    border-top-color: rgba(255, 255, 255, .06);
    color: #c8cdd5;
}

body.theme-dark .dnb-cart-table tbody td strong,
body.theme-auto .dnb-cart-table tbody td strong {
    color: #e8eaed;
}

body.theme-dark .dnb-cart-table tbody td.price-col strong,
body.theme-dark .dnb-cart-table tbody td:last-child strong,
body.theme-auto .dnb-cart-table tbody td.price-col strong,
body.theme-auto .dnb-cart-table tbody td:last-child strong {
    color: #5bdf8a;
}

/* ── 5. Coupon + login sidebar sections ── */
body.theme-dark .dnb-coupon-section,
body.theme-auto .dnb-coupon-section {
    border-color: rgba(255, 255, 255, .09);
}

body.theme-dark .dnb-coupon-section .dnb-section-label,
body.theme-auto .dnb-coupon-section .dnb-section-label {
    color: #adb5bd;
}

body.theme-dark .dnb-coupon-section label,
body.theme-auto .dnb-coupon-section label {
    color: #adb5bd;
}

body.theme-dark .dnb-login-section,
body.theme-auto .dnb-login-section {
    background: rgba(255, 255, 255, .03);
    border-color: rgba(255, 255, 255, .09);
}

body.theme-dark .dnb-login-section .dnb-section-label,
body.theme-auto .dnb-login-section .dnb-section-label {
    color: #c8cdd5;
}

body.theme-dark .dnb-login-section label,
body.theme-auto .dnb-login-section label {
    color: #adb5bd;
}

/* ── 6. Checkout tab bar ── */
body.theme-dark .dnb-checkout-tabs,
body.theme-auto .dnb-checkout-tabs {
    border-bottom-color: rgba(255, 255, 255, .1);
}

body.theme-dark .dnb-tab-btn,
body.theme-auto .dnb-tab-btn {
    color: #8a9bb5;
}

body.theme-dark .dnb-tab-btn:hover,
body.theme-auto .dnb-tab-btn:hover {
    color: #c8cdd5;
    border-bottom-color: rgba(255, 255, 255, .2);
}

body.theme-dark .dnb-tab-btn.dnb-tab-active,
body.theme-auto .dnb-tab-btn.dnb-tab-active {
    color: #5baaff;
    border-bottom-color: #5baaff;
}

/* ── 7. Signup form labels + inputs ── */
body.theme-dark .signup_form label,
body.theme-dark .login_form label,
body.theme-auto .signup_form label,
body.theme-auto .login_form label {
    color: #adb5bd;
}

body.theme-dark .signup_form h4,
body.theme-dark .signup_form h5,
body.theme-auto .signup_form h4,
body.theme-auto .signup_form h5 {
    color: #e8eaed;
}

body.theme-dark .pass-reset,
body.theme-dark .pass-reset a,
body.theme-auto .pass-reset,
body.theme-auto .pass-reset a {
    color: #6c8aaa;
}

/* ── 8. Domain choice widget ── */
body.theme-dark .dnb-domain-option,
body.theme-auto .dnb-domain-option,
body.theme-dark a.dnb-domain-option-link,
body.theme-auto a.dnb-domain-option-link,
body.theme-dark a.dnb-domain-option-link:hover,
body.theme-auto a.dnb-domain-option-link:hover,
body.theme-dark a.dnb-domain-option-link:focus,
body.theme-auto a.dnb-domain-option-link:focus {
    border-color: rgba(255, 255, 255, .1);
    color: #8a9bb5;
}

body.theme-dark .dnb-domain-option:hover,
body.theme-auto .dnb-domain-option:hover {
    border-color: rgba(255, 255, 255, .2);
    background: rgba(255, 255, 255, .03);
}

body.theme-dark .dnb-domain-option.dnb-domain-option-active,
body.theme-auto .dnb-domain-option.dnb-domain-option-active {
    border-color: #5baaff;
    background: rgba(91, 170, 255, .08);
    box-shadow: 0 0 0 3px rgba(91, 170, 255, .15);
    color: #5baaff;
}

body.theme-dark .dnb-domain-input-label,
body.theme-auto .dnb-domain-input-label {
    color: #adb5bd;
}

/* Responsive step bar — dark */
@media (max-width: 575px) {

    body.theme-dark .card-steps .step-col,
    body.theme-auto .card-steps .step-col {
        border-bottom-color: rgba(255, 255, 255, .09);
    }
}

/* ── Dark mode: step bar state-specific link + subtitle overrides ─────────
 * These sit at end-of-file with !important to beat Blesta base theme link
 * color rules that may override earlier order.css declarations.
 * ──────────────────────────────────────────────────────────────────────── */

/* Completed step — green headline */
body.theme-dark .card-steps .step-col.step-done>a,
body.theme-auto .card-steps .step-col.step-done>a {
    color: #48c774 !important;
}

/* Completed step subtitle */
body.theme-dark .card-steps .step-col.step-done>p,
body.theme-auto .card-steps .step-col.step-done>p {
    color: #fefefe !important;
}

/* Active step — bright blue headline */
body.theme-dark .card-steps .step-col.step-active>a,
body.theme-auto .card-steps .step-col.step-active>a {
    color: #5baaff !important;
}

/* Active step subtitle */
body.theme-dark .card-steps .step-col.step-active>p,
body.theme-auto .card-steps .step-col.step-active>p {
    color: #fefefe !important;
}

/* Upcoming step — muted gray/slate headline */
body.theme-dark .card-steps .step-col:not(.step-active):not(.step-done)>a,
body.theme-auto .card-steps .step-col:not(.step-active):not(.step-done)>a {
    color: #8a9bb5 !important;
}

/* Upcoming step subtitle */
body.theme-dark .card-steps .step-col:not(.step-active):not(.step-done)>p,
body.theme-auto .card-steps .step-col:not(.step-active):not(.step-done)>p {
    color: #fefefe !important;
}

/* ══════════════════════════════════════════════════════════════
   STOREFRONT — Hero + Product Category Cards
   ══════════════════════════════════════════════════════════════ */

/* ── Hero ── */
.dnb-store-hero {
    background: linear-gradient(135deg, #0d1117 0%, #111c2e 60%, #0d1a2f 100%);
    border-radius: 12px;
    margin-bottom: 2rem;
    padding: 3rem 3rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(33, 149, 243, 0.18);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    min-height: 240px;
}

.dnb-store-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 80% 20%, rgba(33, 149, 243, 0.13) 0%, transparent 55%),
        radial-gradient(ellipse at 10% 85%, rgba(33, 149, 243, 0.07) 0%, transparent 50%);
    pointer-events: none;
}

/* Hero text column */
.dnb-store-hero-inner {
    position: relative;
    z-index: 1;
    flex: 0 1 560px;
}

.dnb-store-hero-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #e6edf3;
    line-height: 1.2;
    margin: 0 0 0.75rem;
    letter-spacing: -0.01em;
}

.dnb-store-hero-sub {
    font-size: 1rem;
    color: #8b949e;
    margin: 0 0 1.75rem;
    line-height: 1.65;
    max-width: 500px;
}

/* Hero CTA buttons */
.dnb-store-hero-actions {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex-wrap: wrap;
}

.dnb-store-hero-btn {
    font-size: 0.92rem;
    font-weight: 500;
    padding: 0.6rem 1.4rem;
    border-radius: 7px;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.dnb-store-hero-btn-secondary {
    font-size: 0.92rem;
    font-weight: 500;
    padding: 0.6rem 1.4rem;
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #cdd9e5;
    text-decoration: none;
    transition: background 0.18s, border-color 0.18s, color 0.18s;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.dnb-store-hero-btn-secondary:hover,
.dnb-store-hero-btn-secondary:focus {
    background: rgba(255, 255, 255, 0.13);
    border-color: rgba(255, 255, 255, 0.28);
    color: #ffffff;
    text-decoration: none;
}

/* Hero SVG artwork column */
.dnb-store-hero-art {
    position: relative;
    z-index: 1;
    flex: 0 0 340px;
    max-width: 340px;
    pointer-events: none;
    align-self: stretch;
    display: flex;
    align-items: center;
}

.dnb-store-hero-svg {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.9;
}

/* ── Product grid ── */
.dnb-store-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: start;
}

/* ── Product card ── */
.dnb-store-card {
    position: relative;
    overflow: hidden;
    background: #1a2235;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease, border-color 0.2s ease;
}

.dnb-store-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
    border-color: rgba(33, 149, 243, 0.5);
}

/* Watermark icon */
.dnb-store-card-watermark {
    position: absolute;
    bottom: -0.5rem;
    right: 0.75rem;
    font-size: 6rem;
    line-height: 1;
    color: #2195F3;
    opacity: 0.06;
    pointer-events: none;
    z-index: 0;
    transition: transform 0.22s ease, opacity 0.22s ease;
}

.dnb-store-card:hover .dnb-store-card-watermark {
    transform: scale(1.12);
    opacity: 0.10;
}

/* Card header: icon + title/desc */
.dnb-store-card-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.dnb-store-card-icon-wrap {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: color-mix(in srgb, var(--dnb-accent, #2195F3) 12%, transparent);
    border: 1px solid color-mix(in srgb, var(--dnb-accent, #2195F3) 25%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--dnb-accent, #2195F3);
}

.dnb-store-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #e6edf3;
    margin: 0 0 0.35rem;
    line-height: 1.2;
}

.dnb-store-card-desc {
    font-size: 0.85rem;
    color: #8b949e;
    margin: 0;
    line-height: 1.55;
}

/* Feature bullets */
.dnb-store-card-features {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    position: relative;
    z-index: 1;
}

.dnb-store-card-features li {
    font-size: 0.84rem;
    color: #cdd9e5;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dnb-store-card-features li .fas.fa-check {
    color: #28a745;
    font-size: 0.75rem;
    flex-shrink: 0;
}

/* Package rows inside card */
.dnb-store-pkg-list {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1rem;
}

.dnb-store-pkg-list .dnb-pkg-row:first-child {
    padding-top: 0;
}

/* CTA footer */
.dnb-store-card-footer {
    margin-top: auto;
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1rem;
}

.dnb-store-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1.25rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    background-color: var(--dnb-accent, #2195F3);
    color: #ffffff;
    transition: background-color 0.15s, box-shadow 0.15s;
}

.dnb-store-cta:hover,
.dnb-store-cta:focus {
    color: #ffffff;
    text-decoration: none;
    filter: brightness(1.1);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

/* ── Dark / auto theme ── */
body.theme-dark .dnb-store-card,
body.theme-auto .dnb-store-card {
    background: #1a2235;
    border-color: rgba(255, 255, 255, 0.08);
}

body.theme-dark .dnb-store-card:hover,
body.theme-auto .dnb-store-card:hover {
    border-color: rgba(33, 149, 243, 0.5);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
}

body.theme-dark .dnb-store-card-icon-wrap,
body.theme-auto .dnb-store-card-icon-wrap {
    background: color-mix(in srgb, var(--dnb-accent, #2195F3) 15%, #0d1117);
    border-color: color-mix(in srgb, var(--dnb-accent, #2195F3) 30%, transparent);
}

body.theme-dark .dnb-store-card-title,
body.theme-auto .dnb-store-card-title {
    color: #e6edf3 !important;
}

body.theme-dark .dnb-store-card-desc,
body.theme-auto .dnb-store-card-desc {
    color: #8b949e !important;
}

body.theme-dark .dnb-store-card-features li,
body.theme-auto .dnb-store-card-features li {
    color: #cdd9e5 !important;
}

body.theme-dark .dnb-store-pkg-list,
body.theme-auto .dnb-store-pkg-list {
    border-top-color: rgba(255, 255, 255, 0.08);
}

body.theme-dark .dnb-store-card-footer,
body.theme-auto .dnb-store-card-footer {
    border-top-color: rgba(255, 255, 255, 0.08);
}

body.theme-dark .dnb-store-card-watermark,
body.theme-auto .dnb-store-card-watermark {
    opacity: 0.05;
}

body.theme-dark .dnb-store-card:hover .dnb-store-card-watermark,
body.theme-auto .dnb-store-card:hover .dnb-store-card-watermark {
    opacity: 0.09;
}

/* ═══════════════════════════════════════════════════
   LIGHT MODE — Service cards
   White background, subtle border/shadow, dark text.
   Hero section intentionally stays dark.
   ═══════════════════════════════════════════════════ */

/* Card container */
body.theme-light .dnb-store-card {
    background: #ffffff;
    border-color: #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
}

body.theme-light .dnb-store-card:hover {
    border-color: rgba(33, 149, 243, 0.4);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(33, 149, 243, 0.06);
}

/* Icon wrap */
body.theme-light .dnb-store-card-icon-wrap {
    background: color-mix(in srgb, var(--dnb-accent, #2195F3) 8%, #ffffff);
    border-color: color-mix(in srgb, var(--dnb-accent, #2195F3) 20%, transparent);
}

/* Title: dark */
body.theme-light .dnb-store-card-title {
    color: #111827 !important;
}

/* Description: medium gray */
body.theme-light .dnb-store-card-desc {
    color: #6b7280 !important;
}

/* Feature bullets: dark gray text */
body.theme-light .dnb-store-card-features li {
    color: #374151 !important;
}

/* Dividers: light gray */
body.theme-light .dnb-store-pkg-list {
    border-top-color: #e5e7eb;
}

body.theme-light .dnb-store-card-footer {
    border-top-color: #e5e7eb;
}

/* Watermark: reduced opacity on white backgrounds */
body.theme-light .dnb-store-card-watermark {
    opacity: 0.04;
    color: #94a3b8;
}

body.theme-light .dnb-store-card:hover .dnb-store-card-watermark {
    opacity: 0.07;
}

/* Package rows inside cards */
body.theme-light .dnb-pkg-row {
    border-bottom-color: #f3f4f6;
}

body.theme-light .dnb-pkg-name {
    color: #1f2937 !important;
}

body.theme-light .dnb-pkg-description,
body.theme-light .dnb-pkg-description p {
    color: #6b7280 !important;
}

/* Light mode hero — intentionally stays dark */
body.theme-light .dnb-store-hero {
    background: linear-gradient(135deg, #0d1117 0%, #111c2e 60%, #0d1a2f 100%);
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
    .dnb-store-card {
        transition: none;
    }

    .dnb-store-card:hover {
        transform: none;
    }

    .dnb-store-card-watermark,
    .dnb-store-card:hover .dnb-store-card-watermark {
        transition: none;
        transform: none;
    }

    .dnb-store-hero-btn-secondary {
        transition: none;
    }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .dnb-store-hero-art {
        flex: 0 0 260px;
        max-width: 260px;
    }

    .dnb-store-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .dnb-store-hero {
        flex-direction: column;
        padding: 2rem 1.5rem;
        min-height: auto;
        gap: 1.5rem;
    }

    .dnb-store-hero-art {
        flex: 0 0 auto;
        max-width: 100%;
        width: 100%;
        max-height: 140px;
        overflow: hidden;
        opacity: 0.6;
    }

    .dnb-store-hero-heading {
        font-size: 1.5rem;
    }

    .dnb-store-hero-sub {
        max-width: 100%;
    }

    .dnb-store-hero-actions {
        flex-direction: column;
    }

    .dnb-store-hero-btn,
    .dnb-store-hero-btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .dnb-store-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Cart review action buttons ── */
.dnb-cart-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.25rem;
    gap: 0.75rem;
    padding: 0 0.25rem;
}

.dnb-cart-actions-left {
    padding: 0;
}

.dnb-cart-actions-right {
    padding: 0;
    margin-left: auto;
}

.dnb-cart-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.6rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 400;
    border-radius: 8px;
    border: none;
    text-decoration: none;
    transition: background-color 0.15s, box-shadow 0.15s, color 0.15s;
    white-space: nowrap;
    cursor: pointer;
}

.dnb-cart-btn-more {
    background-color: #1a4f8a;
    color: #ffffff;
    margin-left: 10px;
}

.dnb-cart-btn-more:hover,
.dnb-cart-btn-more:focus {
    background-color: #163f70;
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(26, 79, 138, 0.40);
}

.dnb-cart-btn-checkout {
    background-color: #28a745;
    color: #ffffff;
}

.dnb-cart-btn-checkout:hover,
.dnb-cart-btn-checkout:focus {
    background-color: #218838;
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.30);
}

/* Dark / auto theme */
body.theme-dark .dnb-cart-btn-more,
body.theme-auto .dnb-cart-btn-more {
    background-color: #1a4f8a;
    color: #ffffff;
}

body.theme-dark .dnb-cart-btn-more:hover,
body.theme-auto .dnb-cart-btn-more:hover {
    background-color: #163f70;
    color: #ffffff;
}

body.theme-dark .dnb-cart-btn-checkout,
body.theme-auto .dnb-cart-btn-checkout {
    background-color: #28a745;
    color: #ffffff;
}

body.theme-dark .dnb-cart-btn-checkout:hover,
body.theme-auto .dnb-cart-btn-checkout:hover {
    background-color: #218838;
    color: #ffffff;
}

/* Mobile: stack full-width */
@media (max-width: 575px) {
    .dnb-cart-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .dnb-cart-actions-right {
        margin-left: 0;
    }

    .dnb-cart-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ── Signup form: section headings & muted dividers ── */
.dnb-signup-section-heading {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 1rem;
    padding-bottom: 0;
    border-bottom: none !important;
    border-top: none !important;
}

.dnb-signup-divider {
    border: 0;
    border-top: 1px solid #dee2e6;
    margin: 1.25rem 0;
    opacity: 1;
}

/* Dark / auto theme — must beat body.theme-dark hr { !important } in custom.css */
body.theme-dark .dnb-signup-divider,
body.theme-auto .dnb-signup-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-bottom: none !important;
    opacity: 1 !important;
}

body.theme-dark .dnb-signup-section-heading,
body.theme-auto .dnb-signup-section-heading {
    border-bottom: none !important;
    border-top: none !important;
}

/* ── Checkout page polish ──────────────────────────────────────────────── */

/* Section headings */
.dnb-checkout-section-heading {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
    margin: 1.25rem 0 0.75rem;
    padding-bottom: 0;
    border-bottom: none !important;
}

/* Muted horizontal dividers */
.dnb-checkout-divider {
    border: 0;
    border-top: 1px solid #dee2e6;
    margin: 1.25rem 0 0.5rem;
    opacity: 1;
}

body.theme-dark .dnb-checkout-divider,
body.theme-auto .dnb-checkout-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    opacity: 1 !important;
}

body.theme-dark .dnb-checkout-section-heading,
body.theme-auto .dnb-checkout-section-heading {
    border-bottom: none !important;
    color: #adb5bd;
}

/* Payment method selector row */
.dnb-payment-selector {
    margin-bottom: 0.5rem;
}

/* Contact info 2-col grid */
.dnb-checkout-fields .dnb-field-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 0;
}

.dnb-checkout-fields .dnb-field-row .form-group {
    flex: 1;
    min-width: 0;
    margin-bottom: 1rem;
}

.dnb-checkout-fields .dnb-field-row.dnb-field-full .form-group {
    flex: 0 0 100%;
}

@media (max-width: 767px) {
    .dnb-checkout-fields .dnb-field-row {
        flex-direction: column;
        gap: 0;
    }
}

/* ── Desktop two-column: Contact Info + Payment Info side-by-side ── */
@media (min-width: 992px) {
    .dnb-checkout-cols {
        display: flex;
        gap: 2rem;
        align-items: flex-start;
    }

    .dnb-checkout-col-contact {
        flex: 1 1 0%;
        min-width: 0;
    }

    .dnb-checkout-col-pay {
        flex: 0 0 30%;
        max-width: 30%;
        min-width: 260px;
    }
}

@media (max-width: 991px) {
    .dnb-checkout-cols {
        display: block;
    }

    .dnb-checkout-col-pay {
        margin-top: 1rem;
    }
}

/* ── Payment column compact styling ── */
.dnb-checkout-col-pay .dnb-checkout-section-heading {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.dnb-checkout-col-pay .dnb-checkout-divider {
    margin-top: 0;
    margin-bottom: 0.25rem;
}

.dnb-checkout-col-pay .form-group {
    margin-bottom: 0.75rem;
}

.dnb-checkout-exp-row {
    display: flex;
    gap: 0.5rem;
}

.dnb-checkout-exp-row .form-control {
    flex: 1;
}

/* ── Stacked checkout payment layout ── */
.dnb-checkout-payment-stack {
    max-width: 560px;
}

.dnb-checkout-section {
    padding: 0.75rem 1rem;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    background: #f8f9fa;
}

.dnb-checkout-section-heading {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #374151;
}

.dnb-checkout-section-heading i {
    color: #6b7280;
    margin-right: 4px;
}

.dnb-checkout-section .form-control {
    max-width: 100%;
}

body.theme-dark .dnb-checkout-section,
body.theme-auto .dnb-checkout-section {
    background: rgba(255, 255, 255, .04);
    border-color: rgba(255, 255, 255, .1);
}

body.theme-dark .dnb-checkout-section-heading,
body.theme-auto .dnb-checkout-section-heading {
    color: #d1d5db;
}

body.theme-dark .dnb-checkout-section-heading i,
body.theme-auto .dnb-checkout-section-heading i {
    color: #9ca3af;
}

/* ── Checkout payment heading ── */
.dnb-checkout-payment-heading {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: #1f2937;
}

.dnb-checkout-payment-heading i {
    color: #6b7280;
    margin-right: 5px;
}

.dnb-checkout-payment-desc {
    font-size: 0.88rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

body.theme-dark .dnb-checkout-payment-heading,
body.theme-auto .dnb-checkout-payment-heading {
    color: #e5e7eb;
}

body.theme-dark .dnb-checkout-payment-heading i,
body.theme-auto .dnb-checkout-payment-heading i {
    color: #9ca3af;
}

body.theme-dark .dnb-checkout-payment-desc,
body.theme-auto .dnb-checkout-payment-desc {
    color: #9ca3af;
}

/* ── Static price display (single pricing option) ── */
.dnb-pkg-price-static {
    padding: 0.4rem 0;
}

.dnb-pkg-price-label {
    font-size: 0.88rem;
    font-weight: 600;
    color: #374151;
}

body.theme-dark .dnb-pkg-price-label,
body.theme-auto .dnb-pkg-price-label {
    color: #e5e7eb;
}