/* ==========================================================================
   HostTiller - Professional product configuration page (cart.php?a=confproduct)
   All rules are scoped to the configure form (#frmConfigureProduct / .ht-cp)
   so nothing else in the cart is affected.
   Brand: navy #0A3D61 / gold #EAB543
   ========================================================================== */

#frmConfigureProduct {
    font-family: 'Raleway', 'Segoe UI', Arial, sans-serif;
    color: #1e293b;
}

#frmConfigureProduct .product-configurable-options {
    border: 0;
    padding: 0;
}

/* ----------------------------------------------------------------
   Hero band (Configure panel)
   ---------------------------------------------------------------- */
.ht-cp-hero {
    position: relative;
    margin-bottom: 18px;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, #0A3D61 0%, #0e5077 60%, #1571a8 100%);
    color: #fff;
    box-shadow: 0 14px 30px -20px rgba(10, 61, 97, .6);
}

.ht-cp-hero::after {
    content: '';
    position: absolute;
    top: -70px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(234, 181, 67, .25) 0%, rgba(234, 181, 67, 0) 70%);
    pointer-events: none;
}

.ht-cp-hero::before {
    content: '';
    position: absolute;
    bottom: -80px;
    left: 35%;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, .07) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
}

.ht-cp-hero-inner {
    position: relative;
    z-index: 1;
    padding: 18px 20px 16px;
}

.ht-cp-hero-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.ht-cp-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .25);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.ht-cp-badge-outline {
    background: #EAB543;
    border-color: #EAB543;
    color: #0A3D61;
}

.ht-cp-hero-title {
    margin: 0 0 10px;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: .01em;
    color: #fff;
}

.ht-cp-hero-desc {
    max-width: 720px;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 12.5px;
    line-height: 1.55;
    color: rgba(255, 255, 255, .88);
}

.ht-cp-hero-desc ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 14px;
}

.ht-cp-hero-desc ul li {
    margin: 0;
    padding: 7px 10px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, .94);
    display: flex;
    align-items: center;
    gap: 8px;
}

.ht-cp-hero-desc ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 10px;
    color: #EAB543;
    flex: none;
}

/* ----------------------------------------------------------------
   Step indicator
   ---------------------------------------------------------------- */
.ht-cp-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    padding: 16px 20px;
    background: #fff;
    border: 1px solid #e5e9f0;
    border-radius: 12px;
    box-shadow: 0 4px 14px -10px rgba(15, 23, 42, .18);
}

.ht-cp-step {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #94a3b8;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    white-space: nowrap;
}

.ht-cp-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #f1f5f9;
    border: 2px solid #e2e8f0;
    font-size: 13px;
    font-weight: 700;
}

.ht-cp-step-bar {
    flex: 1;
    height: 2px;
    margin: 0 10px;
    background: #e2e8f0;
    border-radius: 2px;
    min-width: 22px;
}

.ht-cp-step-done .ht-cp-step-num {
    background: #0A3D61;
    border-color: #0A3D61;
    color: #fff;
}

.ht-cp-step-bar-done {
    background: #0A3D61;
}

.ht-cp-step-active {
    color: #0A3D61;
}

.ht-cp-step-active .ht-cp-step-num {
    background: #EAB543;
    border-color: #EAB543;
    color: #0A3D61;
    box-shadow: 0 0 0 4px rgba(234, 181, 67, .25);
}

/* ----------------------------------------------------------------
   Section cards
   ---------------------------------------------------------------- */
.ht-cp-card {
    background: #fff;
    border: 1px solid #e5e9f0;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px -8px rgba(15, 23, 42, .16);
    overflow: hidden;
}

.ht-cp-card-head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 22px;
    border-bottom: 1px solid #edf1f6;
    background: #fbfcfe;
}

.ht-cp-card-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    flex: none;
    border-radius: 9px;
    background: linear-gradient(135deg, #0A3D61, #1571a8);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
}

.ht-cp-card-title {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #0A3D61;
    letter-spacing: .01em;
}

.ht-cp-card-body {
    padding: 22px;
}

.ht-cp-muted {
    color: #64748b;
    font-size: 13.5px;
    margin: 0 0 14px;
}

/* ----------------------------------------------------------------
   Billing cycle circular picker
   ---------------------------------------------------------------- */
.ht-cp-cycles {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 18px;
}

.ht-cp-cycle {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 104px;
    height: 104px;
    padding: 12px 10px 8px;
    border: 2px solid #dde3ec;
    border-radius: 50%;
    background: #fff;
    text-align: center;
    cursor: pointer;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease, transform .2s ease;
}

.ht-cp-cycle::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px dashed transparent;
    pointer-events: none;
    transition: border-color .2s ease;
}

.ht-cp-cycle:hover {
    border-color: #1571a8;
    box-shadow: 0 6px 14px -10px rgba(10, 61, 97, .35);
}

.ht-cp-cycle input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.ht-cp-cycle-check {
    position: absolute;
    top: 7px;
    right: 7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid #cbd5e1;
    background: #fff;
    color: transparent;
    font-size: 8px;
    transition: transform .25s cubic-bezier(.34, 1.56, .64, 1), background .2s ease, border-color .2s ease, color .2s ease;
    z-index: 2;
}

.ht-cp-cycle-row {
    display: block;
    margin-bottom: 3px;
}

.ht-cp-cycle-term {
    display: block;
    font-size: 8.5px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #64748b;
    line-height: 1.2;
}

.ht-cp-cycle-price {
    display: block;
    font-family: 'Raleway', Arial, sans-serif;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.15;
    color: #0A3D61;
}

.ht-cp-cycle-save {
    display: inline-block;
    margin-top: 3px;
    padding: 1px 6px;
    border-radius: 999px;
    background: #EAB543;
    color: #6b4c00;
    font-size: 7.5px;
    font-weight: 800;
    letter-spacing: .02em;
    animation: htCpFadeUp .45s ease both;
}

.ht-cp-cycle-setup {
    display: block;
    margin-top: 2px;
    font-size: 8px;
    font-weight: 600;
    color: #94a3b8;
}

.ht-cp-cycle input:checked ~ .ht-cp-cycle-check {
    background: #0A3D61;
    border-color: #0A3D61;
    color: #fff;
    transform: scale(1);
    animation: htCpPop .4s cubic-bezier(.34, 1.56, .64, 1);
}

.ht-cp-cycle:has(input:checked),
.ht-cp-cycle.ht-cp-cycle-on {
    border-color: #0A3D61;
    background: #f2f8fe;
    box-shadow: 0 16px 34px -16px rgba(10, 61, 97, .55);
    animation: htCpPulse 1.8s ease-in-out infinite;
}

.ht-cp-cycle:has(input:checked)::before,
.ht-cp-cycle.ht-cp-cycle-on::before {
    border-color: rgba(10, 61, 97, .55);
    animation: htCpSpin 9s linear infinite;
}

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

@keyframes htCpPop {
    0%   { transform: scale(.2); }
    70%  { transform: scale(1.35); }
    100% { transform: scale(1); }
}

@keyframes htCpPulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(10, 61, 97, .10), 0 16px 34px -16px rgba(10, 61, 97, .55); }
    50%      { box-shadow: 0 0 0 10px rgba(10, 61, 97, 0), 0 16px 34px -16px rgba(10, 61, 97, .55); }
}

@keyframes htCpFadeUp {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ----------------------------------------------------------------
   Configurable options
   ---------------------------------------------------------------- */
.ht-cp-label {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .02em;
    color: #334155;
}

.ht-cp-select,
.ht-cp form .form-control {
    border: 1.5px solid #dde3ec;
    border-radius: 8px;
    padding: 9px 12px;
    min-height: 42px;
    box-shadow: none;
    transition: border-color .15s ease, box-shadow .15s ease;
}

.ht-cp-select:focus,
.ht-cp form .form-control:focus {
    border-color: #1571a8;
    box-shadow: 0 0 0 3px rgba(21, 113, 168, .15);
    outline: none;
}

.ht-cp-option-group {
    margin-bottom: 8px;
}

.ht-cp-radio,
.ht-cp-check {
    position: relative;
    display: flex;
    align-items: center;
    margin: 0 0 10px;
    padding-left: 30px;
    font-weight: 500;
    font-size: 13.5px;
    color: #334155;
    cursor: pointer;
}

.ht-cp-radio input,
.ht-cp-check input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.ht-cp-radio-dot {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #cbd5e1;
    background: #fff;
    transition: all .15s ease;
}

.ht-cp-radio input:checked ~ .ht-cp-radio-dot {
    border-color: #0A3D61;
    background: radial-gradient(circle, #0A3D61 0%, #0A3D61 38%, #fff 40%);
}

.ht-cp-radio-text {
    line-height: 1.4;
}

.ht-cp-check-box {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 5px;
    border: 2px solid #cbd5e1;
    background: #fff;
    color: transparent;
    font-size: 10px;
    transition: all .15s ease;
}

.ht-cp-check input:checked ~ .ht-cp-check-box {
    background: #0A3D61;
    border-color: #0A3D61;
    color: #fff;
}

/* ----------------------------------------------------------------
   Metrics
   ---------------------------------------------------------------- */
.ht-cp-metrics {
    margin: 0;
    padding: 0;
    list-style: none;
}

.ht-cp-metrics li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border: 1px solid #eef2f7;
    border-radius: 8px;
    margin-bottom: 8px;
    font-size: 13.5px;
    flex-wrap: wrap;
}

.ht-cp-metric-name {
    font-weight: 700;
    color: #0A3D61;
}

.ht-cp-metric-price {
    color: #334155;
}

.ht-cp-metric-included {
    color: #64748b;
}

/* ----------------------------------------------------------------
   Help box
   ---------------------------------------------------------------- */
.ht-cp-help {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: #f8fafc;
    border: 1px dashed #cbd5e1;
    border-radius: 10px;
    color: #475569;
    font-size: 13.5px;
}

.ht-cp-help i {
    font-size: 18px;
    color: #EAB543;
}

.ht-cp-help a {
    color: #0A3D61;
    font-weight: 700;
    text-decoration: underline;
}

/* ----------------------------------------------------------------
   Order summary panel
   ---------------------------------------------------------------- */
.ht-cp-summary {
    position: sticky;
    top: 16px;
    background: #fff;
    border: 1px solid #e5e9f0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 18px 44px -22px rgba(15, 23, 42, .35);
}

.ht-cp-summary-head {
    padding: 16px 20px;
    background: linear-gradient(135deg, #0A3D61, #0e5077);
}

.ht-cp-summary-title {
    margin: 0;
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.ht-cp-summary .order-summary {
    padding: 16px 20px;
    font-family: 'Open Sans', Arial, sans-serif;
}

.ht-cp-summary .product-name {
    display: block;
    font-family: 'Raleway', Arial, sans-serif;
    font-weight: 700;
    font-size: 14.5px;
    color: #0A3D61;
    margin-bottom: 2px;
}

.ht-cp-summary .product-group {
    display: block;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 12px;
}

.ht-cp-summary .clearfix {
    font-size: 13px;
    color: #475569;
    padding: 3px 0;
}

.ht-cp-summary .clearfix .pull-left,
.ht-cp-summary .clearfix .float-left {
    text-align: left;
}

.ht-cp-summary .clearfix .pull-right,
.ht-cp-summary .clearfix .float-right {
    text-align: right;
    font-weight: 600;
    color: #1e293b;
}

.ht-cp-summary .summary-totals {
    border-top: 1px dashed #d7dee8;
    padding-top: 10px;
    margin-top: 10px;
}

.ht-cp-summary .summary-totals .clearfix {
    font-size: 12.5px;
    color: #64748b;
}

.ht-cp-summary .total-due-today {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
    padding: 12px 14px;
    background: #f3f8fd;
    border: 1px solid #dcebf7;
    border-radius: 8px;
    color: #475569;
    font-weight: 600;
    font-size: 12.5px;
    text-transform: uppercase;
    letter-spacing: .03em;
}

.ht-cp-summary .total-due-today .amt {
    color: #0A3D61;
    font-family: 'Raleway', Arial, sans-serif;
    font-size: 20px;
    font-weight: 800;
    text-transform: none;
    letter-spacing: 0;
}

/* ----------------------------------------------------------------
   Continue button
   ---------------------------------------------------------------- */
.ht-cp-continue {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 13px 18px;
    border: 0;
    border-radius: 9px;
    background: linear-gradient(135deg, #0A3D61 0%, #1571a8 100%);
    color: #fff;
    font-family: 'Raleway', Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .03em;
    cursor: pointer;
    box-shadow: 0 14px 28px -14px rgba(10, 61, 97, .75);
    transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}

.ht-cp-continue:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 32px -14px rgba(10, 61, 97, .85);
    filter: brightness(1.08);
}

.ht-cp-continue:active {
    transform: translateY(0);
}

/* Variables used by cart JS (kept for compatibility) */
#frmConfigureProduct .loader {
    border: 0;
    background: transparent;
}

@media (max-width: 767px) {
    .ht-cp-step-label {
        display: none;
    }

    .ht-cp-hero-inner {
        padding: 18px;
    }

    .ht-cp-hero-title {
        font-size: 19px;
    }

    .ht-cp-hero-desc ul {
        grid-template-columns: 1fr;
    }

    .ht-cp-steps {
        padding: 12px;
    }

    .ht-cp-step-bar {
        margin: 0 6px;
    }

    #ht-checkout .ht-checkout-hero {
        padding: 20px;
    }

    #ht-checkout .ht-checkout-card {
        padding: 18px 16px;
    }

    #ht-checkout .already-registered {
        padding: 14px;
    }

    #ht-checkout #paymentGatewaysContainer label {
        width: 100%;
        justify-content: center;
    }
}

/* ================================================================
   Checkout page refinement
   ================================================================ */

#ht-checkout .ht-checkout-hero {
    padding: 30px 34px;
}

#ht-checkout .ht-checkout-hero-in > div {
    flex: 1 1 240px;
}

#ht-checkout .ht-checkout-trust {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 26px;
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, .16);
}

#ht-checkout .ht-checkout-trust span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font: 600 12px/1.4 'Inter', sans-serif;
    letter-spacing: .02em;
    color: rgba(255, 255, 255, .8);
}

#ht-checkout .ht-checkout-trust span i {
    color: #EAB543;
    font-size: 13px;
}

#ht-checkout .already-registered {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    background: #fff;
    border: 1px solid #e6edf3;
    border-radius: 14px;
    padding: 12px 16px;
    margin-bottom: 18px;
    box-shadow: 0 8px 24px rgba(10, 61, 97, .05);
}

#ht-checkout .already-registered p {
    margin: 0;
    margin-right: auto;
    order: -1;
}

#ht-checkout .already-registered .btn-info {
    background: #fff;
    border: 1.5px solid #0A3D61;
    color: #0A3D61;
    border-radius: 999px;
    padding: 9px 24px;
    font-weight: 600;
    transition: all .25s ease;
}

#ht-checkout .already-registered .btn-info:hover {
    background: #0A3D61;
    color: #fff;
}

#ht-checkout .already-registered .btn-warning {
    background: #0A3D61;
    border: 1.5px solid #0A3D61;
    color: #fff;
    border-radius: 999px;
    padding: 9px 24px;
    font-weight: 600;
    transition: all .25s ease;
}

#ht-checkout .already-registered .btn-warning:hover {
    background: #082E4A;
}

#ht-checkout .ht-checkout-card {
    background: #fff;
    border: 1px solid #e6edf3;
    border-radius: 16px;
    padding: 24px 26px;
    box-shadow: 0 10px 30px rgba(10, 61, 97, .06);
    margin-bottom: 18px;
}

#ht-checkout .ht-checkout-card.ht-checkout-cta-card {
    background: linear-gradient(135deg, #f7fafe, #eef4fa);
    border: 1px solid #dde7f1;
    padding: 20px 18px 22px;
    text-align: center;
}

#ht-checkout .sub-heading {
    background: none;
    border: 0;
    border-radius: 0;
    padding: 0 0 12px;
    margin: 0 0 20px;
    border-bottom: 1px solid #e6edf3;
    position: relative;
}

#ht-checkout .sub-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 46px;
    height: 3px;
    border-radius: 99px;
    background: linear-gradient(90deg, #EAB543, #f1cf7a);
}

#ht-checkout .sub-heading span {
    color: #0A3D61;
    font-family: 'Raleway', Arial, sans-serif;
    font-weight: 800;
    font-size: 17px;
    letter-spacing: .01em;
    line-height: 1.35;
}

#ht-checkout .sub-heading span i,
#ht-checkout .sub-heading span small {
    color: #64748b;
    font-style: normal;
    font-weight: 600;
    font-size: 12px;
}

#ht-checkout .prepend-icon .field-icon {
    color: #8aa2b8;
    font-size: 13px;
}

#ht-checkout .prepend-icon .field {
    padding-left: 44px;
}

#ht-checkout .prepend-icon .field-icon {
    width: 44px;
    height: 48px;
    line-height: 48px;
}

#ht-checkout .prepend-icon .field-icon i {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

#ht-checkout .form-control {
    box-shadow: inset 0 1px 3px rgba(10, 61, 97, .04);
}

#ht-checkout .form-control:focus {
    border-color: #EAB543;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(234, 181, 67, .16);
    outline: none;
}

#ht-checkout #containerExistingAccountSelect .account {
    background: #fff;
}

#ht-checkout #btnExistingLogin {
    background: linear-gradient(135deg, #0A3D61, #082E4A);
    border: 0;
    border-radius: 10px;
    padding: 11px 36px;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 8px 20px rgba(10, 61, 97, .25);
    transition: transform .25s ease, box-shadow .25s ease;
}

#ht-checkout #btnExistingLogin:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(10, 61, 97, .32);
}

#ht-checkout .generate-password {
    border-radius: 8px;
    border: 1.5px solid #0A3D61;
    color: #0A3D61;
    background: #fff;
    font-weight: 600;
}

#ht-checkout #totalDueToday {
    border-radius: 12px;
    padding: 18px 22px;
    font-weight: 500;
    margin-bottom: 20px;
}

#ht-checkout #totalDueToday strong {
    font-size: 21px;
    color: #EAB543;
}

#ht-checkout #paymentGatewaysContainer .text-center {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

#ht-checkout #paymentGatewaysContainer label {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin: 0;
    padding: 10px 20px;
    border: 1.5px solid #d8e3ec;
    border-radius: 999px;
    background: #fbfdff;
    color: #223a50;
    font-weight: 600;
    cursor: pointer;
    transition: all .25s ease;
}

#ht-checkout #paymentGatewaysContainer label:hover {
    border-color: #0A3D61;
}

#ht-checkout #paymentGatewaysContainer label:has(input:checked) {
    background: linear-gradient(135deg, #0A3D61, #0e5077);
    border-color: #0A3D61;
    color: #fff;
    box-shadow: 0 10px 22px rgba(10, 61, 97, .3);
}

#ht-checkout #paymentGatewaysContainer input {
    accent-color: #EAB543;
    width: 15px;
    height: 15px;
    margin-right: 6px;
}

#ht-checkout .cc-input-container {
    box-shadow: none;
}

#ht-checkout .marketing-email-optin h4 {
    font-weight: 700;
}

#ht-checkout #btnCompleteOrder {
    border-radius: 999px;
    font-size: 17px;
    padding: 16px 52px;
    box-shadow: 0 10px 26px rgba(234, 181, 67, .4);
    letter-spacing: .02em;
}

#ht-checkout #btnCompleteOrder:disabled {
    opacity: .55;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none;
}

#ht-checkout .checkout-security-msg {
    border-radius: 12px;
    border-left: 4px solid #EAB543;
}