/* OneBestHost global WHMCS brand header. */
#header a.logo img[alt="OneBestHost"] {
    content: url("/assets/img/onebesthost-logo.svg?v=20260825");
    display: inline-block;
    height: 50px;
    max-width: 100%;
    object-fit: contain;
    object-position: left center;
    vertical-align: middle;
    width: 218px;
}

@media (max-width: 767px) {
    #header a.logo img[alt="OneBestHost"] {
        height: 44px;
        width: 190px;
    }
}

@media (max-width: 420px) {
    #header a.logo img[alt="OneBestHost"] {
        height: 40px;
        width: 172px;
    }
}

/* Shared WHMCS commerce and account experience. */
:root {
    --obh-brand-navy: #062a43;
    --obh-brand-blue: #087ca7;
    --obh-brand-cyan: #00a8c6;
    --obh-brand-teal: #12a978;
    --obh-brand-ink: #102a3a;
    --obh-brand-muted: #5d7180;
    --obh-brand-line: #d9e5ea;
    --obh-brand-soft: #f3f8fa;
    --obh-brand-shadow: 0 20px 55px rgba(6, 42, 67, .12);
}

@supports selector(section:has(.logincontainer)) {
    #main-body:has(.logincontainer),
    #main-body:has(#order-standard_cart) {
        background:
            radial-gradient(circle at 8% 12%, rgba(0, 168, 198, .09), transparent 30%),
            linear-gradient(180deg, #fbfdfe 0%, #f5f9fb 100%);
        min-height: 620px;
        padding-bottom: 76px;
        padding-top: 46px;
    }
}

/* Restricted login and account-entry screens. */
.logincontainer {
    background: #fff;
    border: 1px solid var(--obh-brand-line);
    border-radius: 22px;
    box-shadow: var(--obh-brand-shadow);
    margin: 18px auto 42px;
    max-width: 590px;
    padding: 38px 42px 42px;
}

.logincontainer .header-lined {
    border-bottom: 0;
    margin-bottom: 26px;
    padding-bottom: 0;
}

.logincontainer .header-lined h1 {
    color: var(--obh-brand-navy);
    font-family: Raleway, "Open Sans", Arial, sans-serif;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -.03em;
    line-height: 1.15;
    margin: 0;
}

.logincontainer .header-lined h1 small {
    color: var(--obh-brand-muted);
    display: block;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
    margin-top: 9px;
}

.logincontainer .form-group {
    margin-bottom: 19px;
}

.logincontainer label {
    color: var(--obh-brand-ink);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 8px;
}

.logincontainer .form-control {
    background: #fbfdfe;
    border: 1px solid #cbdce3;
    border-radius: 10px;
    box-shadow: none;
    color: var(--obh-brand-ink);
    font-size: 15px;
    height: 50px;
    padding: 12px 15px;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.logincontainer .form-control:focus {
    border-color: var(--obh-brand-cyan);
    box-shadow: 0 0 0 3px rgba(0, 168, 198, .13);
}

.logincontainer .checkbox {
    color: var(--obh-brand-muted);
    margin: 4px 0 24px;
}

.logincontainer .btn {
    border-radius: 9px;
    font-size: 14px;
    font-weight: 700;
    min-height: 46px;
    padding: 12px 19px;
}

.logincontainer .btn-primary {
    background: linear-gradient(135deg, var(--obh-brand-blue), var(--obh-brand-cyan));
    border: 0;
    box-shadow: 0 10px 24px rgba(8, 124, 167, .2);
}

.logincontainer .btn-default {
    background: #fff;
    border-color: #bdd1d9;
    color: var(--obh-brand-navy);
}

/* Shared store shell and side navigation. */
#order-standard_cart {
    color: var(--obh-brand-ink);
    font-family: "Open Sans", Arial, sans-serif;
}

#order-standard_cart .header-lined {
    border-bottom: 0;
    margin-bottom: 12px;
}

#order-standard_cart .header-lined h1 {
    color: var(--obh-brand-navy);
    font-family: Raleway, "Open Sans", Arial, sans-serif;
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 700;
    letter-spacing: -.035em;
    line-height: 1.08;
}

#order-standard_cart .header-lined + p {
    color: var(--obh-brand-muted);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 24px;
}

#order-standard_cart .cart-sidebar .panel {
    background: #fff;
    border: 1px solid var(--obh-brand-line);
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(6, 42, 67, .06);
    margin-bottom: 18px;
    overflow: hidden;
}

#order-standard_cart .cart-sidebar .panel-heading {
    background: #f6fafc;
    border-bottom: 1px solid var(--obh-brand-line);
    color: var(--obh-brand-navy);
    padding: 15px 16px;
}

#order-standard_cart .cart-sidebar .panel-title {
    font-size: 14px;
    font-weight: 700;
}

#order-standard_cart .cart-sidebar .list-group-item {
    border-color: #edf2f4;
    color: #486170;
    font-size: 13px;
    padding: 13px 16px;
    transition: background-color .2s ease, color .2s ease, padding-left .2s ease;
}

#order-standard_cart .cart-sidebar .list-group-item:hover,
#order-standard_cart .cart-sidebar .list-group-item:focus,
#order-standard_cart .cart-sidebar .list-group-item.active {
    background: #eef9fb;
    color: var(--obh-brand-blue);
    padding-left: 20px;
}

#order-standard_cart .btn-primary,
#order-standard_cart .btn-success {
    background: linear-gradient(135deg, var(--obh-brand-blue), var(--obh-brand-cyan));
    border-color: transparent;
    box-shadow: 0 9px 22px rgba(8, 124, 167, .18);
}

#order-standard_cart .btn-primary:hover,
#order-standard_cart .btn-primary:focus,
#order-standard_cart .btn-success:hover,
#order-standard_cart .btn-success:focus {
    background: linear-gradient(135deg, #066d94, #0097b2);
    border-color: transparent;
}

/* Product-group cards. */
#order-standard_cart #products.products {
    display: block;
    margin-top: 24px;
}

#order-standard_cart #products.products::after {
    clear: both;
    content: "";
    display: table;
}

#order-standard_cart #products .product {
    background: #fff;
    border: 1px solid var(--obh-brand-line);
    border-radius: 18px;
    box-shadow: 0 14px 38px rgba(6, 42, 67, .08);
    float: none;
    margin: 0 0 22px !important;
    min-height: 310px;
    overflow: hidden;
    position: relative;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
    width: 100% !important;
}

#order-standard_cart #products .product:hover {
    border-color: #b7dce6;
    box-shadow: 0 22px 48px rgba(6, 42, 67, .13);
    transform: translateY(-3px);
}

#order-standard_cart #products .product > header {
    background:
        radial-gradient(circle at 90% 0, rgba(0, 168, 198, .22), transparent 36%),
        linear-gradient(135deg, var(--obh-brand-navy), #0a4a6a);
    border: 0;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    min-height: 64px;
    padding: 20px 22px;
}

#order-standard_cart #products .product > header,
#order-standard_cart #products .product > header span {
    color: #fff !important;
}

#order-standard_cart #products .product-desc {
    color: #46606e;
    float: none;
    font-size: 13px;
    line-height: 1.75;
    padding: 20px 45% 24px 22px;
    text-align: left;
    width: 100%;
}

#order-standard_cart #products .product-desc p {
    margin: 0;
}

#order-standard_cart #products .product-desc strong {
    font-weight: 600;
}

#order-standard_cart #products .product-pricing {
    color: var(--obh-brand-navy);
    float: none;
    font-size: 13px;
    position: absolute;
    right: 22px;
    text-align: right;
    top: 91px;
    width: 38%;
}

#order-standard_cart #products .product-pricing .price {
    color: var(--obh-brand-navy);
    display: block;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -.025em;
    margin-bottom: 3px;
}

#order-standard_cart #products .btn-order-now {
    align-items: center;
    background: linear-gradient(135deg, var(--obh-brand-blue), var(--obh-brand-cyan));
    border: 0;
    border-radius: 9px;
    bottom: 24px;
    display: inline-flex;
    font-size: 13px;
    font-weight: 700;
    justify-content: center;
    min-height: 43px;
    padding: 10px 16px;
    position: absolute;
    right: 22px;
}

/* Domain registration and transfer. */
#order-standard_cart .domain-checker-container {
    background:
        radial-gradient(circle at 92% 10%, rgba(255, 255, 255, .16), transparent 26%),
        linear-gradient(135deg, var(--obh-brand-navy) 0%, var(--obh-brand-blue) 56%, var(--obh-brand-cyan) 100%);
    border: 0;
    border-radius: 22px;
    box-shadow: var(--obh-brand-shadow);
    min-height: 230px;
    overflow: hidden;
    position: relative;
}

#order-standard_cart .domain-checker-container::after {
    background-image: radial-gradient(rgba(255, 255, 255, .28) 1px, transparent 1px);
    background-size: 17px 17px;
    content: "";
    height: 150px;
    pointer-events: none;
    position: absolute;
    right: 16px;
    top: 12px;
    width: 170px;
}

#order-standard_cart .domain-checker-bg {
    background: none !important;
    padding: 70px 22px !important;
    position: relative;
    z-index: 1;
}

#order-standard_cart .domain-checker-container .input-group-box {
    background: #fff;
    border: 0;
    border-radius: 14px;
    box-shadow: 0 16px 34px rgba(3, 29, 48, .25);
    padding: 7px;
}

#order-standard_cart .domain-checker-container #inputDomain {
    border: 0;
    border-radius: 9px 0 0 9px;
    box-shadow: none;
    color: var(--obh-brand-ink);
    font-size: 16px;
    height: 54px;
    padding-left: 16px;
}

#order-standard_cart .domain-checker-container .domain-check-availability {
    border: 0;
    border-radius: 9px;
    font-size: 15px;
    font-weight: 700;
    height: 54px;
    min-width: 112px;
}

#order-standard_cart .domain-pricing {
    margin-top: 28px;
}

#order-standard_cart .domain-pricing h4 {
    color: var(--obh-brand-navy);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 14px;
}

#order-standard_cart .domain-pricing .tld-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 16px;
}

#order-standard_cart .domain-pricing .tld-filters .badge {
    background: #eef4f7;
    border: 1px solid #d7e4e9;
    border-radius: 999px;
    color: #4a6370;
    font-size: 11px;
    font-weight: 700;
    margin: 0;
    padding: 8px 11px;
}

#order-standard_cart .domain-pricing .tld-filters .badge-success {
    background: #e8f9f5;
    border-color: #b7e8da;
    color: #087a5b;
}

#order-standard_cart .domain-pricing > .bg-white {
    border: 1px solid var(--obh-brand-line);
    border-radius: 16px;
    box-shadow: 0 14px 36px rgba(6, 42, 67, .07);
    overflow: hidden;
}

#order-standard_cart .domain-pricing .tld-pricing-header {
    background: var(--obh-brand-navy);
    border: 0;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
    padding: 14px 0;
    text-transform: uppercase;
}

#order-standard_cart .domain-pricing .tld-pricing-header > [class*="col-"],
#order-standard_cart .domain-pricing .tld-pricing-header > [class*="col-"] > .row,
#order-standard_cart .domain-pricing .tld-pricing-header > [class*="col-"] > .row > [class*="col-"] {
    background: transparent !important;
    border: 0 !important;
    color: #fff !important;
}

#order-standard_cart .domain-pricing .tld-row {
    background: #fff !important;
    border-bottom: 1px solid #e7eef1;
    color: #405966;
    min-height: 64px;
    padding-bottom: 11px;
    padding-top: 11px;
}

#order-standard_cart .domain-pricing .tld-row:nth-child(odd),
#order-standard_cart .domain-pricing .tld-row.highlighted {
    background: #f6fafc !important;
}

#order-standard_cart .domain-pricing .tld-row strong {
    color: var(--obh-brand-navy);
    font-size: 15px;
}

#order-standard_cart .domain-promo-box {
    background: #fff;
    border: 1px solid var(--obh-brand-line);
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(6, 42, 67, .07);
    min-height: 176px;
    padding: 24px;
}

#order-standard_cart .domain-promo-box h3 {
    color: var(--obh-brand-navy);
    font-size: 19px;
    font-weight: 700;
}

#order-standard_cart .domain-promo-box .btn-warning {
    background: #fff;
    border-color: #a9cad5;
    color: var(--obh-brand-navy);
}

/* Product domain-selection step. */
#order-standard_cart .domain-selection-options {
    background: #fff;
    border: 1px solid var(--obh-brand-line);
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(6, 42, 67, .08);
    overflow: hidden;
}

#order-standard_cart .domain-selection-options .option {
    border-color: #e3ecef;
    padding: 18px 20px;
}

#order-standard_cart .domain-input-group .form-control,
#order-standard_cart .domain-input-group .input-group-addon,
#order-standard_cart .domain-input-group .btn {
    min-height: 48px;
}

@media (max-width: 991px) {
    #order-standard_cart #products .product {
        float: none;
        margin: 0 0 22px !important;
        width: 100% !important;
    }
}

@media (max-width: 767px) {
    @supports selector(section:has(.logincontainer)) {
        #main-body:has(.logincontainer),
        #main-body:has(#order-standard_cart) {
            padding-bottom: 44px;
            padding-top: 26px;
        }
    }

    .logincontainer {
        border-radius: 16px;
        margin: 0 auto 28px;
        padding: 28px 22px 30px;
    }

    .logincontainer .header-lined h1 {
        font-size: 30px;
    }

    #order-standard_cart .header-lined h1 {
        font-size: 32px;
    }

    #order-standard_cart > .row {
        display: flex;
        flex-direction: column;
    }

    #order-standard_cart > .row > .cart-body {
        display: flex;
        flex-direction: column;
        float: none;
        order: 1;
        width: 100%;
    }

    #order-standard_cart > .row > .cart-body > .header-lined {
        order: 0;
    }

    #order-standard_cart > .row > .cart-body > *:not(.header-lined):not(.sidebar-collapsed) {
        order: 1;
    }

    #order-standard_cart > .row > .cart-body > .sidebar-collapsed {
        margin-top: 34px;
        order: 99;
    }

    #order-standard_cart > .row > .cart-sidebar {
        float: none;
        margin-top: 34px;
        order: 2;
        width: 100%;
    }

    #order-standard_cart #products .product {
        min-height: 0;
    }

    #order-standard_cart #products .product-desc {
        padding: 20px 22px 12px;
    }

    #order-standard_cart #products .product-pricing {
        padding: 0 22px 12px;
        position: static;
        text-align: left;
        width: auto;
    }

    #order-standard_cart #products .btn-order-now {
        margin: 0 22px 22px;
        position: static;
        width: calc(100% - 44px);
    }

    #order-standard_cart .domain-checker-bg {
        padding: 38px 10px !important;
    }

    #order-standard_cart .domain-checker-container {
        border-radius: 16px;
        min-height: 0;
    }

    #order-standard_cart .domain-checker-container #inputDomain {
        font-size: 14px;
    }

    #order-standard_cart .domain-checker-container .domain-check-availability {
        min-width: 92px;
    }

    #order-standard_cart .domain-pricing .tld-pricing-header,
    #order-standard_cart .domain-pricing .tld-row {
        font-size: 11px;
    }
}
