:root {
    --mh-primary: #F97316;
    --mh-primary-hover: #EA580C;
    --mh-accent: #FB923C;
    --mh-secondary: #0F172A;
    --mh-text: #1E293B;
    --mh-muted: #64748B;
    --mh-bg: #FFFFFF;
    --mh-light: #FFF7ED;
    --mh-card: #FFFFFF;
    --mh-header-bg: #FFFFFF;
    --mh-footer-bg: #0F172A;
    --mh-button: #F97316;
    --mh-button-hover: #EA580C;
    --mh-link: #F97316;
    --mh-border: #FED7AA;
    --mh-shadow: 0 18px 45px rgba(15, 23, 42, .08);
    --mh-radius: 14px;
}

body.mh-theme-page {
    background: var(--mh-bg);
    color: var(--mh-text);
    font-family: Inter, "Open Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    padding-top: 79px;
}

body.mh-theme-page #fullpage-overlay,
body.mh-theme-page #fullpage-overlay.w-hidden,
body.mh-theme-page #fullpage-overlay[aria-hidden="true"] {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

a { color: var(--mh-link); }
a:hover { color: var(--mh-primary-hover); }
.btn { border-radius: 10px; font-weight: 700; }
.btn-primary, .btn-success, button[type="submit"].btn-primary {
    background: var(--mh-button);
    border-color: var(--mh-button);
    color: #fff;
    box-shadow: 0 10px 24px rgba(249, 115, 22, .22);
}
.btn-primary:hover, .btn-primary:focus, .btn-success:hover {
    background: var(--mh-button-hover);
    border-color: var(--mh-button-hover);
}
.btn-outline-primary { border-color: var(--mh-primary); color: var(--mh-primary); }
.btn-outline-primary:hover { background: var(--mh-primary); border-color: var(--mh-primary); color: #fff; }

.mh-topbar { background: var(--mh-secondary); color: #fff; font-size: 13px; }
.mh-topbar-inner { min-height: 38px; display: flex; gap: 20px; align-items: center; justify-content: flex-end; }
.mh-header { background: rgba(255,255,255,.96); border-bottom: 1px solid rgba(254, 215, 170, .7); z-index: 1060; position: fixed; top: 0; left: 0; right: 0; width: 100%; backdrop-filter: blur(14px); box-shadow: 0 10px 28px rgba(15,23,42,.05); }
.mh-navbar { min-height: 78px; padding: 12px 0; }
.mh-brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 900; color: var(--mh-secondary); text-decoration: none; }
.mh-brand:hover { text-decoration: none; color: var(--mh-secondary); }
.mh-logo-img { max-height: 46px; max-width: 190px; object-fit: contain; }
.mh-logo-mark { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; background: var(--mh-primary); color: #fff; font-weight: 900; }
.mh-logo-text { font-size: 19px; letter-spacing: 0; }
.mh-main-menu { gap: 4px; }
.mh-main-menu .nav-link { color: var(--mh-text); font-weight: 700; padding: 10px 13px; border-radius: 10px; display: inline-flex; gap: 7px; align-items: center; }
.mh-main-menu .nav-link:hover, .mh-main-menu .nav-item.active .nav-link { background: var(--mh-light); color: var(--mh-primary); }
.mh-main-menu > .dropdown:hover > .dropdown-menu { display: block; }
.mh-main-menu > .dropdown:hover > .dropdown-toggle:after { transform: rotate(180deg); }
.mh-dropdown { min-width: 260px; border: 0; border-top: 2px solid var(--mh-primary); border-bottom: 2px solid var(--mh-primary); border-radius: 2px; box-shadow: 0 20px 40px rgba(15,23,42,.12); padding: 0; overflow: hidden; margin-top: 10px; }
.mh-dropdown .dropdown-item { display: flex; align-items: center; gap: 12px; min-height: 48px; border-radius: 0; padding: 12px 18px; font-weight: 600; color: var(--mh-text); background: #fff; }
.mh-dropdown .dropdown-item + .dropdown-item { border-top: 1px solid #eef2f7; }
.mh-dropdown .dropdown-item i { width: 18px; color: #a8b0bd; text-align: center; }
.mh-dropdown .dropdown-item:hover, .mh-dropdown .dropdown-item:focus { background: #fff7ed; color: var(--mh-primary); }
.mh-dropdown .dropdown-item:hover i, .mh-dropdown .dropdown-item:focus i { color: var(--mh-primary); }
.mh-dropdown .mh-dropdown-child { padding-left: 28px; font-size: 13px; color: var(--mh-muted); }
.mh-dropdown .mh-dropdown-child:before { content: "-"; margin-right: 6px; color: var(--mh-primary); }
.mh-header-actions, .mh-mobile-actions { display: flex; align-items: center; gap: 10px; }
.mh-btn-sm { padding: 9px 14px; }
.mh-icon-btn { width: 42px; height: 42px; border: 1px solid var(--mh-border); background: #fff; border-radius: 12px; color: var(--mh-secondary); display: inline-grid; place-items: center; position: relative; }
.mh-cart-badge { position: absolute; top: -7px; right: -7px; background: var(--mh-primary); color: #fff; border-radius: 999px; min-width: 20px; height: 20px; line-height: 20px; font-size: 11px; text-align: center; }
.mh-currency-switcher { position: relative; display: inline-flex; align-items: center; min-height: 42px; border: 1px solid var(--mh-border); border-radius: 12px; background: #fff; color: var(--mh-secondary); overflow: hidden; }
.mh-currency-switcher i { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: var(--mh-primary); font-size: 13px; pointer-events: none; }
.mh-currency-switcher select { min-width: 92px; height: 42px; border: 0; background: transparent; color: var(--mh-secondary); font-size: 13px; font-weight: 800; outline: 0; padding: 0 28px 0 34px; appearance: auto; cursor: pointer; }
.mh-currency-switcher:hover { border-color: var(--mh-primary); box-shadow: 0 10px 24px rgba(249,115,22,.10); }
.mh-mobile-actions { display: none; }
.mh-mobile-menu-head, .mh-menu-backdrop { display: none; }

.mh-page-title { background: var(--mh-light); border-bottom: 1px solid var(--mh-border); padding: 34px 0 24px; }
.mh-page-title h1 { margin: 0 0 8px; font-size: clamp(28px, 4vw, 44px); font-weight: 900; color: var(--mh-secondary); }
.mh-main-body { padding: 42px 0 64px; }
.mh-home-main { padding: 0; }
.mh-primary-content .card, .mh-sidebar .card, .panel, .list-group, .tile, .client-home-panels .panel {
    border: 1px solid rgba(254, 215, 170, .8);
    border-radius: var(--mh-radius);
    box-shadow: 0 12px 30px rgba(15, 23, 42, .06);
    overflow: hidden;
}
.mh-dashboard-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    background: var(--mh-light);
    border: 1px solid var(--mh-border);
    border-radius: 18px;
    padding: 26px;
    margin-bottom: 24px;
}
.mh-dashboard-hero h2 {
    margin: 8px 0;
    color: var(--mh-secondary);
    font-weight: 900;
}
.mh-dashboard-hero p {
    margin: 0;
    color: var(--mh-muted);
}

.mh-hero { padding: 82px 0 68px; background: linear-gradient(180deg, #fff 0%, var(--mh-light) 100%); }
.mh-hero-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr); gap: 48px; align-items: center; }
.mh-kicker { display: inline-flex; align-items: center; gap: 8px; color: var(--mh-primary); font-weight: 900; text-transform: uppercase; font-size: 12px; letter-spacing: .08em; }
.mh-hero h1 { font-size: clamp(36px, 6vw, 64px); line-height: 1.02; font-weight: 900; color: var(--mh-secondary); margin: 16px 0; letter-spacing: 0; }
.mh-hero p, .mh-section-heading p, .mh-split p { color: var(--mh-muted); font-size: 17px; line-height: 1.8; }
.mh-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.mh-hero-panel { position: relative; }
.mh-server-card { background: #fff; border: 1px solid var(--mh-border); border-radius: 22px; box-shadow: var(--mh-shadow); padding: 30px; }
.mh-server-head { display: flex; gap: 8px; margin-bottom: 28px; }
.mh-server-head span { width: 12px; height: 12px; border-radius: 50%; background: var(--mh-border); }
.mh-server-card h2 { font-size: 72px; color: var(--mh-primary); font-weight: 900; margin: 0; }
.mh-meter { height: 10px; background: var(--mh-light); border-radius: 999px; overflow: hidden; margin: 24px 0; }
.mh-meter span { display: block; height: 100%; background: var(--mh-primary); }
.mh-hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.mh-hero-stats strong { background: var(--mh-light); color: var(--mh-secondary); border-radius: 10px; padding: 10px; text-align: center; font-size: 13px; }

.mh-section, .mh-domain-search { padding: 72px 0; }
.mh-light { background: var(--mh-light); }
.mh-section-heading { max-width: 760px; margin: 0 auto 34px; text-align: center; }
.mh-section-heading h2, .mh-split h2, .mh-cta h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 900; color: var(--mh-secondary); margin: 8px 0 12px; letter-spacing: 0; }
.mh-domain-box { display: grid; grid-template-columns: 1fr auto; gap: 12px; max-width: 820px; margin: 0 auto; background: #fff; border: 1px solid var(--mh-border); border-radius: 18px; padding: 10px; box-shadow: var(--mh-shadow); }
.mh-domain-box input { border: 0; outline: 0; min-height: 56px; padding: 0 18px; font-size: 18px; color: var(--mh-secondary); }
.mh-domain-box button { min-width: 150px; }
.mh-tlds { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.mh-tlds span { background: #fff; border: 1px solid var(--mh-border); border-radius: 999px; padding: 8px 14px; font-weight: 800; color: var(--mh-primary); }
.mh-card-grid, .mh-feature-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.mh-plan-card, .mh-feature, .mh-faq-grid details { background: #fff; border: 1px solid var(--mh-border); border-radius: var(--mh-radius); padding: 24px; box-shadow: 0 14px 34px rgba(15, 23, 42, .06); }
.mh-plan-icon, .mh-feature i { width: 48px; height: 48px; border-radius: 14px; background: var(--mh-light); color: var(--mh-primary); display: grid; place-items: center; font-size: 20px; margin-bottom: 18px; }
.mh-plan-card h3, .mh-feature h3 { font-size: 20px; font-weight: 900; color: var(--mh-secondary); }
.mh-plan-card p, .mh-feature p { color: var(--mh-muted); min-height: 54px; }
.mh-split { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; align-items: center; }
.mh-check-list { display: grid; gap: 14px; }
.mh-check-list span { background: #fff; border: 1px solid var(--mh-border); border-radius: 12px; padding: 16px 18px; font-weight: 800; color: var(--mh-secondary); box-shadow: 0 10px 26px rgba(15, 23, 42, .05); }
.mh-check-list i { color: var(--mh-primary); margin-right: 8px; }
.mh-faq-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.mh-faq-grid summary { cursor: pointer; font-weight: 900; color: var(--mh-secondary); }
.mh-faq-grid p { color: var(--mh-muted); margin: 14px 0 0; }
.mh-cta { background: var(--mh-primary); color: #fff; padding: 54px 0; }
.mh-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.mh-cta h2, .mh-cta p { color: #fff; margin: 0; }
.mh-cta p { opacity: .9; margin-top: 8px; }

.mh-footer { background: var(--mh-footer-bg); color: rgba(255,255,255,.78); padding: 64px 0 24px; }
.mh-footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr) 1.2fr; gap: 28px; }
.mh-footer .mh-brand, .mh-footer h3 { color: #fff; }
.mh-footer p { line-height: 1.8; }
.mh-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.mh-footer a { color: rgba(255,255,255,.78); }
.mh-footer a:hover { color: #fff; }
.mh-socials { display: flex; gap: 10px; }
.mh-socials a { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; background: rgba(255,255,255,.08); }
.mh-contact-list i { color: var(--mh-accent); width: 20px; }
.mh-live-chat { margin-top: 18px; }
.mh-footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 34px; padding-top: 20px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.mh-footer-bottom p { margin: 0; }
.mh-payments { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.mh-pay-img { height: 28px; width: auto; object-fit: contain; display: block; }

.mh-whatsapp-btn {
    position: fixed;
    bottom: 24px;
    z-index: 999;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(37,211,102,.4);
    transition: transform .2s ease, box-shadow .2s ease;
}
.mh-whatsapp-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 32px rgba(37,211,102,.5);
    color: #fff;
    text-decoration: none;
}
.mh-whatsapp-btn i { font-size: 28px; }

#order-standard_cart .products .product, #order-standard_cart .view-cart-items, #order-standard_cart .summary-container, .product-info, .domain-pricing .tld-row {
    border-radius: var(--mh-radius) !important;
    border-color: var(--mh-border) !important;
    box-shadow: 0 12px 28px rgba(15, 23, 42, .06);
}
#order-standard_cart .btn-primary, #order-standard_cart .domain-checker-container button { background: var(--mh-primary); border-color: var(--mh-primary); }
#order-standard_cart .order-summary { position: sticky; top: 96px; }

@media (max-width: 1199px) {
    .mh-mobile-actions { display: flex; margin-left: auto; }
    .mh-navbar > .container { padding-left: 15px; padding-right: 15px; }
    .mh-navbar { position: static; }
    .mh-menu-backdrop { display: block; position: fixed; inset: 0; border: 0; background: rgba(15,23,42,.42); opacity: 0; visibility: hidden; pointer-events: none; z-index: 1050; transition: opacity .22s ease, visibility .22s ease; }
    .mh-menu-open .mh-menu-backdrop { opacity: 1; visibility: visible; pointer-events: auto; }
    #mhMainNavbar.navbar-collapse { position: fixed; top: 0; left: 0; bottom: 0; width: min(320px, 84vw); height: 100vh !important; display: flex !important; flex-direction: column; align-items: stretch; background: #fff; padding: 18px 21px; box-shadow: 24px 0 48px rgba(15,23,42,.16); transform: translateX(-105%); visibility: hidden; z-index: 1070; overflow-y: auto; transition: transform .24s ease, visibility .24s ease; }
    .mh-menu-open #mhMainNavbar.navbar-collapse, #mhMainNavbar.navbar-collapse.show { transform: translateX(0); visibility: visible; }
    .mh-mobile-menu-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin: 0 0 18px; }
    .mh-mobile-menu-head .mh-brand { max-width: 210px; }
    .mh-mobile-menu-close { width: 38px; height: 38px; border: 1px solid var(--mh-border); border-radius: 8px; background: #fff; color: var(--mh-secondary); display: grid; place-items: center; }
    .mh-main-menu { width: 100%; padding: 0; gap: 0; margin: 0 !important; }
    .mh-main-menu .nav-item { width: 100%; border: 0; }
    .mh-main-menu .nav-link { display: flex; width: 100%; justify-content: flex-start; text-align: left; min-height: 52px; padding: 13px 0; border-radius: 0; color: #1f2937; font-weight: 500; background: transparent; }
    .mh-main-menu .nav-link span { text-align: left; }
    .mh-main-menu .nav-link:hover { background: transparent; color: var(--mh-primary); }
    .mh-main-menu .nav-link i { margin-right: 8px; }
    .mh-main-menu .dropdown-toggle:after { margin-left: auto; color: #a8b0bd; }
    .mh-main-menu > .dropdown:hover > .dropdown-menu { display: none; }
    .mh-main-menu > .dropdown.show > .dropdown-menu, .mh-main-menu > .dropdown .dropdown-menu.show { display: block; }
    .mh-dropdown, .mh-main-menu .dropdown-menu { position: static !important; float: none; width: 100%; min-width: 0; margin: 0 0 8px; transform: none !important; border: 0; border-left: 2px solid var(--mh-primary); border-radius: 0; box-shadow: none; padding: 0 0 0 12px; }
    .mh-dropdown .dropdown-item, .mh-main-menu .dropdown-menu .dropdown-item { min-height: 42px; padding: 9px 0; border: 0; background: #fff; font-size: 14px; color: #1f2937; }
    .mh-dropdown .dropdown-item:hover { background: transparent; color: var(--mh-primary); }
    .mh-header-actions { width: 100%; display: flex; flex-direction: column-reverse; gap: 14px; padding: 14px 0 0; margin-top: 8px; }
    .mh-header-actions .mh-currency-desktop { display: none; }
    .mh-header-actions .btn { width: 100%; min-height: 43px; display: inline-flex; align-items: center; justify-content: center; border-radius: 3px; }
    .mh-header-actions .btn-primary { order: 1; }
    .mh-header-actions .btn-outline-primary { order: 2; }
    body.mh-menu-open { overflow: hidden; }
}
@media (max-width: 991px) {
    .mh-hero-grid, .mh-split, .mh-footer-grid { grid-template-columns: 1fr; }
    .mh-card-grid, .mh-feature-grid, .mh-faq-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .mh-cta-inner { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 575px) {
    body.mh-theme-page { padding-top: 67px; }
    .mh-navbar { min-height: 66px; }
    .mh-logo-text { font-size: 16px; }
    .mh-logo-img { max-width: 150px; max-height: 40px; }
    .mh-mobile-actions { gap: 7px; }
    .mh-currency-mobile { min-height: 40px; border-radius: 11px; }
    .mh-currency-mobile i { left: 10px; font-size: 12px; }
    .mh-currency-mobile select { min-width: 74px; height: 40px; padding-left: 29px; padding-right: 20px; font-size: 12px; }
    .mh-mobile-actions .mh-icon-btn { width: 40px; height: 40px; border-radius: 11px; }
    .mh-hero, .mh-section, .mh-domain-search { padding: 46px 0; }
    .mh-domain-box { grid-template-columns: 1fr; }
    .mh-domain-box button { min-height: 52px; }
    .mh-card-grid, .mh-feature-grid, .mh-faq-grid { grid-template-columns: 1fr; }
    .mh-footer-bottom { align-items: flex-start; flex-direction: column; }
}

/* ================================================================
   MH ORDER FORM — Modern SaaS Store & Product Listing
   ================================================================ */
.mh-store-page { background: var(--mh-bg, #F8FAFC); }
.mh-store-page .mh-main-body { padding: 0; background: var(--mh-bg, #F8FAFC); }

/* Store Hero */
.mh-store-hero {
    background: var(--mh-white, #fff);
    border-bottom: 1px solid var(--mh-border, #E5E7EB);
    padding: 32px 24px 28px;
}
.mh-store-hero-inner { max-width: 1180px; margin: 0 auto; }
.mh-store-hero .mh-store-breadcrumb {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; color: var(--mh-muted, #6B7280); margin-bottom: 10px;
}
.mh-store-hero .mh-store-breadcrumb a { color: var(--mh-muted, #6B7280); text-decoration: none; }
.mh-store-hero .mh-store-breadcrumb a:hover { color: var(--mh-primary, #F97316); }
.mh-store-hero .mh-store-breadcrumb span { color: var(--mh-primary, #F97316); font-weight: 600; }
.mh-store-hero h1 { font-size: 30px; font-weight: 800; color: var(--mh-dark, #111827); margin: 0 0 6px; }
.mh-store-hero p { font-size: 14px; color: var(--mh-muted, #6B7280); margin: 0; }

/* Store Layout */
.mh-store-layout {
    max-width: 1180px;
    margin: 0 auto;
    padding: 28px 24px;
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}
@media (max-width: 991px) {
    .mh-store-layout { grid-template-columns: 1fr; }
}

/* Store Sidebar */
.mh-store-sidebar { position: sticky; top: 24px; }
.mh-store-sidebar .list-group-item {
    border: 0;
    border-left: 3px solid transparent;
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 4px;
    font-weight: 600;
    color: var(--mh-muted, #6B7280);
    transition: all .15s;
}
.mh-store-sidebar .list-group-item:hover { background: var(--mh-light, #FFF7ED); color: var(--mh-primary, #F97316); }
.mh-store-sidebar .list-group-item.active {
    background: var(--mh-light, #FFF7ED);
    color: var(--mh-primary, #F97316);
    border-left-color: var(--mh-primary, #F97316);
}
@media (max-width: 991px) {
    .mh-store-sidebar { position: static; }
    .mh-store-sidebar .list-group { display: flex; flex-wrap: wrap; gap: 6px; }
    .mh-store-sidebar .list-group-item { border-left: 0; border-bottom: 2px solid transparent; border-radius: 0; }
    .mh-store-sidebar .list-group-item.active { border-bottom-color: var(--mh-primary, #F97316); }
}

/* Store Product Grid */
.mh-store-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 18px;
}
.mh-store-card {
    position: relative;
    background: var(--mh-white, #fff);
    border: 1px solid var(--mh-border, #E5E7EB);
    border-radius: var(--mh-radius, 14px);
    padding: 24px;
    transition: all .2s;
    display: flex; flex-direction: column;
}
.mh-store-card:hover {
    border-color: var(--mh-primary, #F97316);
    box-shadow: 0 12px 32px rgba(249,115,22,.08);
    transform: translateY(-2px);
}
.mh-store-card .mh-store-card-icon {
    width: 48px; height: 48px; border-radius: 12px;
    background: var(--mh-light, #FFF7ED);
    color: var(--mh-primary, #F97316);
    display: grid; place-items: center;
    font-size: 22px; margin-bottom: 16px;
}
.mh-store-card .mh-store-card-name {
    font-size: 18px; font-weight: 800; color: var(--mh-dark, #111827); margin-bottom: 6px;
}
.mh-store-card .mh-store-card-desc {
    font-size: 13px; color: var(--mh-muted, #6B7280); line-height: 1.6; flex: 1; margin-bottom: 14px;
}
.mh-store-card .mh-store-card-features {
    list-style: none; padding: 0; margin: 0 0 16px; display: grid; gap: 6px;
}
.mh-store-card .mh-store-card-features li {
    font-size: 13px; color: var(--mh-dark, #111827);
    display: flex; align-items: center; gap: 8px;
}
.mh-store-card .mh-store-card-features li i { color: var(--mh-green, #16A34A); font-size: 12px; }
.mh-store-card .mh-store-card-footer {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 14px; border-top: 1px solid var(--mh-border-light, #F3F4F6);
}
.mh-store-card .mh-store-card-price {
    font-size: 22px; font-weight: 800; color: var(--mh-primary, #F97316);
}
.mh-store-card .mh-store-card-price small {
    font-size: 12px; font-weight: 500; color: var(--mh-muted, #6B7280);
}
.mh-store-card .mh-btn-store-order {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 9px 18px; border-radius: 10px;
    background: var(--mh-primary, #F97316); color: #fff;
    font-size: 13px; font-weight: 700; text-decoration: none;
    transition: background .2s;
}
.mh-store-card .mh-btn-store-order:hover {
    background: var(--mh-primary-hover, #EA580C); color: #fff; text-decoration: none;
}
.mh-store-card .mh-store-badge {
    position: absolute; top: 14px; right: 14px;
    padding: 3px 10px; border-radius: 999px;
    background: var(--mh-light, #FFF7ED); color: var(--mh-primary, #F97316);
    font-size: 11px; font-weight: 700;
}
@media (max-width: 575px) {
    .mh-store-product-grid { grid-template-columns: 1fr; }
    .mh-store-hero { padding: 24px 16px; }
    .mh-store-hero h1 { font-size: 24px; }
    .mh-store-layout { padding: 20px 16px; }
}

/* Auth pages */
body.mh-auth-page .mh-page-title {
    display: none;
}

body.mh-auth-page .mh-main-body {
    padding: 0;
    background:
        radial-gradient(circle at 16% 18%, rgba(249, 115, 22, .10), transparent 28%),
        radial-gradient(circle at 82% 24%, rgba(15, 23, 42, .08), transparent 24%),
        linear-gradient(180deg, #fff 0%, #fff7ed 100%);
}

body.mh-auth-register-page .mh-main-body {
    background:
        linear-gradient(180deg, #fff 0%, #fff7ed 48%, #ffffff 100%);
}

body.mh-auth-page .mh-main-body > .container {
    max-width: none;
    width: 100%;
    padding: 0;
}

body.mh-auth-page .mh-primary-content {
    width: 100%;
    max-width: none;
    padding: 0;
}

.mh-auth-shell {
    max-width: 1180px;
    margin: 0 auto;
    padding: 54px 24px 72px;
    display: grid;
    grid-template-columns: minmax(280px, .86fr) minmax(0, 1.14fr);
    gap: 28px;
    align-items: start;
}

.mh-login-shell {
    max-width: 980px;
    grid-template-columns: minmax(280px, .9fr) minmax(360px, 1fr);
    align-items: center;
    min-height: calc(100vh - 78px);
}

.mh-register-shell {
    max-width: 1240px;
    grid-template-columns: minmax(280px, .62fr) minmax(0, 1.38fr);
    gap: 32px;
    padding-top: 34px;
}

.mh-auth-panel,
.mh-auth-card {
    background: #fff;
    border: 1px solid rgba(254, 215, 170, .95);
    border-radius: 18px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, .08);
}

.mh-auth-panel {
    position: sticky;
    top: 104px;
    overflow: hidden;
    padding: 34px;
    color: #fff;
    background:
        radial-gradient(circle at 85% 12%, rgba(255, 255, 255, .18), transparent 28%),
        linear-gradient(135deg, #0f172a 0%, #082454 56%, #f97316 145%);
}

.mh-auth-panel:after {
    content: "";
    position: absolute;
    right: -72px;
    bottom: -84px;
    width: 220px;
    height: 220px;
    border: 34px solid rgba(255, 255, 255, .10);
    border-radius: 50%;
}

.mh-auth-mark,
.mh-auth-icon {
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    border-radius: 14px;
}

.mh-auth-mark {
    margin-bottom: 22px;
    background: #f97316;
    color: #fff;
    font-size: 21px;
    box-shadow: 0 16px 28px rgba(249, 115, 22, .28);
}

.mh-auth-panel .mh-kicker {
    color: #fed7aa;
}

.mh-auth-panel h1 {
    position: relative;
    z-index: 1;
    margin: 12px 0;
    color: #fff;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.08;
    font-weight: 900;
}

.mh-auth-panel p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: rgba(255, 255, 255, .80);
    line-height: 1.8;
}

.mh-auth-points {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 12px;
    margin-top: 28px;
}

.mh-auth-points span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 800;
}

.mh-auth-points i {
    color: #fb923c;
}

.mh-auth-panel-link {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    margin-top: 28px;
    color: #fff;
    font-weight: 800;
}

.mh-auth-panel-link:hover {
    color: #fed7aa;
}

.mh-auth-stats {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 28px;
}

.mh-auth-stats strong {
    display: grid;
    gap: 2px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 12px;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    font-size: 22px;
    line-height: 1;
}

.mh-auth-stats span {
    color: rgba(255, 255, 255, .72);
    font-size: 12px;
    font-weight: 800;
}

.mh-auth-card {
    padding: 34px;
}

.mh-register-card {
    padding: 0;
    overflow: hidden;
    background: rgba(255, 255, 255, .96);
}

.mh-auth-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.mh-register-card > .mh-auth-head {
    margin: 0;
    padding: 28px 30px;
    border-bottom: 1px solid #ffedd5;
    background: linear-gradient(180deg, #ffffff 0%, #fffaf5 100%);
}

.mh-auth-icon {
    flex: 0 0 50px;
    background: var(--mh-light);
    color: var(--mh-primary);
    font-size: 20px;
}

.mh-auth-head h2 {
    margin: 0 0 4px;
    color: var(--mh-secondary);
    font-size: 28px;
    font-weight: 900;
}

.mh-auth-head p {
    margin: 0;
    color: var(--mh-muted);
}

.mh-auth-form .form-group,
.mh-register-card .form-group {
    margin-bottom: 16px;
}

.mh-auth-form label,
.mh-register-card label {
    color: var(--mh-secondary);
    font-size: 13px;
    font-weight: 800;
}

.mh-auth-form .form-control,
.mh-register-card .form-control,
.mh-register-card .field,
.mh-register-card select,
.mh-register-card textarea {
    width: 100%;
    min-height: 46px;
    border: 1px solid #fed7aa;
    border-radius: 10px;
    background: #fff;
    color: var(--mh-secondary);
    box-shadow: none;
}

.mh-auth-field {
    position: relative;
    display: block;
}

.mh-auth-field .form-control {
    display: block;
    height: 48px;
    padding-left: 48px;
    padding-right: 16px;
    border: 1px solid #fed7aa;
    border-radius: 10px;
}

.mh-auth-password-field .form-control {
    padding-right: 52px;
}

.mh-auth-field-icon {
    position: absolute;
    left: 1px;
    top: 1px;
    z-index: 2;
    width: 44px;
    height: 46px;
    display: grid;
    place-items: center;
    border-right: 1px solid #fed7aa;
    border-radius: 9px 0 0 9px;
    background: #fff7ed;
    color: var(--mh-primary);
    pointer-events: none;
}

.mh-auth-form .form-control:focus,
.mh-register-card .form-control:focus,
.mh-register-card .field:focus,
.mh-register-card select:focus,
.mh-register-card textarea:focus {
    border-color: var(--mh-primary);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, .10);
}

.mh-register-card .prepend-icon .field-icon {
    border-color: #fed7aa;
    background: #fff7ed;
    color: var(--mh-primary);
}

.mh-auth-form .btn-reveal-pw {
    position: absolute;
    top: 1px;
    right: 1px;
    z-index: 3;
    width: 46px;
    height: 46px;
    min-width: 46px;
    border: 0;
    border-left: 1px solid #fed7aa;
    border-radius: 0 9px 9px 0;
    color: var(--mh-primary);
    background: #fff;
    box-shadow: none;
}

.mh-auth-link,
.mh-auth-footer a {
    color: var(--mh-primary);
    font-size: 13px;
    font-weight: 800;
}

.mh-auth-row {
    margin: 4px 0 18px;
}

.mh-auth-check {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin: 0;
}

.mh-auth-check input,
.mh-register-card input[type="checkbox"],
.mh-register-card input[type="radio"] {
    accent-color: var(--mh-primary);
}

.mh-auth-card .btn-primary,
.mh-register-card .btn-primary {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.mh-auth-footer {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid #ffedd5;
    color: var(--mh-muted);
}

.mh-auth-captcha {
    margin-bottom: 16px;
}

.mh-register-card #registration {
    padding: 0;
}

.mh-register-card .mh-register-form {
    padding: 28px 30px 30px;
}

.mh-register-card .mh-register-grid {
    display: grid;
    gap: 22px;
}

.mh-register-card .mh-register-form #containerNewUserSignup,
.mh-register-card .mh-register-form #containerNewUserSecurity {
    display: grid;
    gap: 18px;
}

.mh-register-card .mh-register-form .card {
    margin: 0 !important;
    border: 1px solid #fee4c7;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(15, 23, 42, .05);
    overflow: hidden;
}

.mh-register-card .mh-register-form .card-body {
    padding: 24px !important;
}

.mh-register-card .mh-register-form .card-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: -24px -24px 22px;
    padding: 17px 22px;
    border-bottom: 1px solid #ffedd5;
    background: #fffaf5;
    color: var(--mh-secondary);
    font-size: 18px;
    font-weight: 900;
}

.mh-register-card .mh-register-form .card-title:before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--mh-primary);
    box-shadow: 0 0 0 5px #fff7ed;
}

.mh-register-card .mh-register-form .prepend-icon {
    position: relative;
}

.mh-register-card .mh-register-form .prepend-icon .field,
.mh-register-card .mh-register-form .prepend-icon .form-control {
    display: block;
    min-height: 48px;
    padding-left: 48px;
    border-color: #fed7aa;
    border-radius: 10px;
    background: #fff;
}

.mh-register-card .mh-register-form .prepend-icon .field-icon {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 44px;
    height: 48px;
    border-right: 1px solid #fed7aa;
    border-radius: 10px 0 0 10px;
    display: grid;
    place-items: center;
    pointer-events: none;
}

.mh-register-card .mh-register-form .row {
    row-gap: 10px;
}

.mh-register-card .mh-register-form .password-strength-meter .progress {
    height: 8px;
    border-radius: 999px;
    background: #ffedd5;
}

.mh-register-card .mh-register-form .field-help-text {
    display: block;
    margin-top: 6px;
    color: var(--mh-muted);
    font-size: 12px;
}

.mh-register-card .mh-register-form .accepttos {
    position: static;
    margin: 0 8px 0 0;
}

.mh-register-card .mh-register-form input[type="submit"].btn {
    min-width: 220px;
    min-height: 52px;
    padding-left: 28px;
    padding-right: 28px;
    border-radius: 12px;
    font-size: 15px;
}

.mh-register-card .mh-register-form .btn-default {
    border-color: #fed7aa;
    background: #fff7ed;
    color: var(--mh-primary);
}

.mh-register-card .mh-register-form > .text-center {
    margin: 0;
}

.mh-register-card .mh-register-form > .text-center:last-child {
    padding-top: 4px;
}

.mh-register-card .linked-accounts,
.mh-auth-card .linked-accounts {
    margin-top: 18px;
}

@media (max-width: 991px) {
    .mh-auth-shell,
    .mh-login-shell {
        grid-template-columns: 1fr;
        min-height: 0;
        padding: 32px 16px 50px;
    }

    .mh-auth-panel {
        position: relative;
        top: auto;
    }
}

@media (max-width: 575px) {
    .mh-auth-panel,
    .mh-auth-card,
    .mh-register-card {
        padding: 22px;
        border-radius: 14px;
    }

    .mh-auth-head {
        align-items: flex-start;
    }

    .mh-auth-head h2 {
        font-size: 23px;
    }

    .mh-auth-footer {
        flex-direction: column;
        align-items: center;
    }
}

/* Register page final polish */
body.mh-auth-register-page .mh-auth-shell {
    max-width: 1260px;
    padding-top: 46px;
    grid-template-columns: 336px minmax(0, 1fr);
}

body.mh-auth-register-page .mh-auth-panel {
    border: 0;
    border-radius: 16px;
    box-shadow: 0 28px 70px rgba(15, 23, 42, .16);
}

body.mh-auth-register-page .mh-register-card {
    border-color: #fee4c7;
    border-radius: 16px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, .07);
}

body.mh-auth-register-page .mh-register-card > .mh-auth-head {
    padding: 30px 34px;
    background: #fff;
}

body.mh-auth-register-page .mh-register-form {
    padding: 28px 34px 34px;
}

body.mh-auth-register-page .mh-register-form .card {
    border-color: #e5e7eb;
    border-radius: 12px;
    box-shadow: none;
}

body.mh-auth-register-page .mh-register-form .card + .card {
    margin-top: 2px !important;
}

body.mh-auth-register-page .mh-register-form .card-title {
    margin: -24px -24px 24px;
    padding: 18px 24px;
    border-bottom: 1px solid #eef2f7;
    background: #fbfdff;
    font-size: 17px;
}

body.mh-auth-register-page .mh-register-form .card-title:before {
    width: 8px;
    height: 22px;
    border-radius: 999px;
    box-shadow: none;
}

body.mh-auth-register-page .mh-register-form .prepend-icon .field-icon {
    display: none !important;
}

body.mh-auth-register-page .mh-register-form .prepend-icon .field,
body.mh-auth-register-page .mh-register-form .prepend-icon .form-control,
body.mh-auth-register-page .mh-register-form .field,
body.mh-auth-register-page .mh-register-form .form-control,
body.mh-auth-register-page .mh-register-form select,
body.mh-auth-register-page .mh-register-form textarea {
    min-height: 50px !important;
    padding: 0 16px !important;
    border: 1px solid #d9e1ec !important;
    border-radius: 10px !important;
    background: #fcfdff !important;
    color: #0f172a !important;
    box-shadow: none !important;
}

body.mh-auth-register-page .mh-register-form textarea {
    padding-top: 12px !important;
}

body.mh-auth-register-page .mh-register-form .field:focus,
body.mh-auth-register-page .mh-register-form .form-control:focus,
body.mh-auth-register-page .mh-register-form select:focus,
body.mh-auth-register-page .mh-register-form textarea:focus {
    border-color: var(--mh-primary) !important;
    background: #fff !important;
    box-shadow: 0 0 0 4px rgba(249, 115, 22, .10) !important;
}

body.mh-auth-register-page .mh-register-form .intl-tel-input,
body.mh-auth-register-page .mh-register-form .iti {
    width: 100%;
}

body.mh-auth-register-page .mh-register-form .selected-flag,
body.mh-auth-register-page .mh-register-form .iti__selected-flag {
    min-height: 50px;
    border-radius: 10px 0 0 10px;
    background: #f8fafc;
}

body.mh-auth-register-page .mh-register-form .row {
    row-gap: 14px;
}

body.mh-auth-register-page .mh-register-form .form-group {
    margin-bottom: 14px;
}

body.mh-auth-register-page .mh-register-form input[type="submit"].btn {
    width: min(100%, 320px);
    box-shadow: 0 16px 34px rgba(249, 115, 22, .24);
}

body.mh-auth-register-page .mh-register-alert {
    padding: 22px 34px 0;
}

/* ================================================================
   MH Client Area — Shared Sidebar, Tables, and List Pages
   ================================================================ */
body.mh-theme-page .mh-main-body {
    background: #f8fbff;
}

body.mh-theme-page .mh-main-body > .container > .row {
    align-items: flex-start;
}

body.mh-template-clientareadomains .mh-page-title,
body.mh-template-supportticketslist .mh-page-title,
body.mh-template-clientareainvoices .mh-page-title,
body.mh-template-clientareaproducts .mh-page-title,
body.mh-template-clientareaproductdetails .mh-page-title {
    display: none !important;
}

body.mh-theme-page .mh-sidebar-col {
    position: sticky;
    top: 96px;
    align-self: flex-start;
    z-index: 1;
}

body.mh-theme-page .mh-sidebar {
    position: relative;
    z-index: 1;
}

body.mh-theme-page .mh-sidebar + .mh-sidebar {
    margin-top: 18px;
}

body.mh-theme-page .mh-sidebar .card-sidebar,
body.mh-theme-page .mh-sidebar > .card {
    overflow: hidden;
    margin-bottom: 18px !important;
    border: 1px solid #e5edf7 !important;
    border-radius: 8px !important;
    background: #fff !important;
    box-shadow: 0 18px 44px rgba(15, 23, 42, .07) !important;
}

body.mh-theme-page .mh-sidebar .card-header {
    min-height: 54px;
    display: flex;
    align-items: center;
    padding: 16px 18px;
    border-bottom: 1px solid #e5edf7;
    background: #fff;
}

body.mh-theme-page .mh-sidebar .card-title {
    width: 100%;
    color: #082052;
    font-size: 16px;
    font-weight: 900;
}

body.mh-theme-page .mh-sidebar .card-title i:not(.card-minimise) {
    color: #f97316;
}

body.mh-theme-page .mh-sidebar .card-minimise {
    color: #94a3b8;
    font-size: 12px;
}

body.mh-theme-page .mh-sidebar .card-body {
    padding: 18px;
    color: #475569;
}

body.mh-theme-page .mh-sidebar .card-footer {
    border-top: 1px solid #e5edf7;
    background: #fbfdff;
}

body.mh-theme-page .mh-sidebar .list-group {
    display: grid !important;
    gap: 10px;
    padding: 12px;
    border: 0;
}

body.mh-theme-page .mh-sidebar .list-group-item {
    min-height: 46px;
    display: flex;
    align-items: center;
    padding: 10px 12px;
    border: 1px solid #e5edf7 !important;
    border-radius: 6px !important;
    background: #fbfdff;
    color: #082052;
    font-weight: 800;
}

body.mh-theme-page .mh-sidebar .list-group-item:hover,
body.mh-theme-page .mh-sidebar .list-group-item.active {
    border-color: #fed7aa !important;
    background: #fff7ed !important;
    color: #f97316 !important;
    text-decoration: none;
}

body.mh-theme-page .mh-sidebar .sidebar-menu-item-wrapper {
    width: 100%;
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
}

body.mh-theme-page .mh-sidebar .sidebar-menu-item-wrapper > .sidebar-menu-item-label:first-child {
    grid-column: 1 / 3;
}

body.mh-theme-page .mh-sidebar .sidebar-menu-item-icon-wrapper {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 6px;
    background: #fff;
    color: #f97316;
}

body.mh-theme-page .mh-sidebar .sidebar-menu-item-label {
    min-width: 0;
    overflow: visible;
    text-overflow: clip;
    white-space: normal;
    overflow-wrap: anywhere;
    line-height: 1.25;
}

body.mh-theme-page .mh-sidebar .badge {
    border-radius: 999px;
    background: #0b49c8;
    color: #fff;
}

.mh-list-page {
    color: #0f172a;
}

.mh-list-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 22px;
    align-items: center;
    margin-bottom: 22px;
    padding: 26px;
    border-radius: 8px;
    background: linear-gradient(135deg, #082a8f, #00236f);
    color: #fff;
    overflow: hidden;
    position: relative;
}

.mh-list-hero:after {
    content: "";
    position: absolute;
    right: -38px;
    bottom: -58px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
}

.mh-list-hero > * {
    position: relative;
    z-index: 1;
}

.mh-list-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: #fb923c;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.mh-list-hero h2 {
    margin: 0 0 8px;
    color: #fff;
    font-size: clamp(26px, 4vw, 38px);
    line-height: 1.1;
    font-weight: 900;
}

.mh-list-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 14px;
    color: rgba(255, 255, 255, .74);
    font-size: 13px;
    font-weight: 800;
}

.mh-list-breadcrumb a,
.mh-list-breadcrumb span {
    color: rgba(255, 255, 255, .86);
    text-decoration: none;
}

.mh-list-breadcrumb a:hover {
    color: #fff;
}

.mh-list-breadcrumb i {
    color: #fb923c;
    font-size: 10px;
}

.mh-list-hero p {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, .84);
    line-height: 1.7;
}

.mh-list-hero-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.mh-list-hero-actions .btn {
    min-height: 42px;
    border-radius: 5px;
    font-weight: 900;
}

.mh-list-hero-actions .btn-light {
    border: 0;
    color: #0b49c8;
    background: #fff;
}

.mh-list-hero-actions .btn-primary {
    border: 0;
    background: #f97316;
}

.mh-list-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 22px;
}

.mh-list-stat {
    min-height: 96px;
    padding: 18px;
    border: 1px solid #e5edf7;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 44px rgba(15, 23, 42, .07);
}

.mh-list-stat i {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    margin-bottom: 12px;
    border-radius: 50%;
    background: #fff7ed;
    color: #f97316;
}

.mh-list-stat strong {
    display: block;
    color: #082052;
    font-size: 26px;
    line-height: 1;
    font-weight: 900;
}

.mh-list-stat span {
    display: block;
    margin-top: 5px;
    color: #64748b;
    font-weight: 800;
}

.mh-list-card {
    overflow: hidden;
    border: 1px solid #e5edf7;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 44px rgba(15, 23, 42, .07);
}

.mh-list-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 18px 22px;
    border-bottom: 1px solid #e5edf7;
}

.mh-list-card-head h3 {
    margin: 0;
    color: #082052;
    font-size: 19px;
    font-weight: 900;
}

.mh-list-card-head p {
    margin: 5px 0 0;
    color: #64748b;
}

.mh-list-card-body {
    padding: 0;
}

.mh-list-page .btn-group .btn,
.mh-list-page .setBulkAction {
    min-height: 38px;
    border: 1px solid #dbe6f6 !important;
    border-radius: 5px !important;
    background: #fff !important;
    color: #082052 !important;
    font-weight: 900;
}

.mh-list-page .btn-group .btn:hover,
.mh-list-page .setBulkAction:hover {
    border-color: #fed7aa !important;
    background: #fff7ed !important;
    color: #f97316 !important;
}

.mh-list-page .table-container {
    padding: 0;
}

.mh-list-page .dataTables_wrapper {
    padding: 18px;
}

.mh-list-page .dataTables_filter label,
.mh-list-page .dataTables_length label {
    color: #64748b;
    font-weight: 800;
}

.mh-list-page .dataTables_filter .form-control,
.mh-list-page .dataTables_length select,
.mh-list-page .form-control {
    min-height: 38px;
    border: 1px solid #dbe6f6;
    border-radius: 5px;
    background: #fbfdff;
    color: #082052;
    box-shadow: none;
}

.mh-list-page table.table-list {
    overflow: hidden;
    margin: 12px 0 0 !important;
    border: 1px solid #e5edf7 !important;
    border-radius: 8px !important;
}

.mh-list-page table.table-list thead th {
    padding: 14px 12px;
    border: 0 !important;
    border-bottom: 1px solid #e5edf7 !important;
    background: #fbfdff !important;
    color: #475569 !important;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.mh-list-page table.table-list tbody td {
    padding: 15px 12px;
    border-top: 1px solid #e5edf7 !important;
    background: #fff !important;
    color: #082052;
    font-size: 13px;
    vertical-align: middle;
}

.mh-list-page table.table-list tbody tr:hover td {
    background: #fbfdff !important;
}

.mh-list-page table.table-list a {
    color: #082052;
    font-weight: 900;
}

.mh-list-page table.table-list small,
.mh-list-page table.table-list .text-muted {
    color: #64748b !important;
    font-weight: 700;
}

.mh-list-page .label.status,
.mh-list-page .status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 72px;
    border-radius: 999px;
    padding: 7px 10px;
    background: #dcfce7 !important;
    color: #16a34a !important;
    font-size: 11px;
    font-weight: 900;
}

.mh-list-page .status-pending,
.mh-list-page .status-unpaid,
.mh-list-page .status-open,
.mh-list-page .status-customer-reply {
    background: #fff7ed !important;
    color: #f97316 !important;
}

.mh-list-page .status-suspended,
.mh-list-page .status-cancelled,
.mh-list-page .status-terminated,
.mh-list-page .status-fraud,
.mh-list-page .status-closed,
.mh-list-page .status-overdue {
    background: #fef2f2 !important;
    color: #dc2626 !important;
}

.mh-list-page .pagination .page-link,
.mh-list-page .pagination > li > a,
.mh-list-page .pagination > li > span {
    border-color: #dbe6f6;
    color: #082052;
    font-weight: 800;
}

.mh-list-page .page-item.active .page-link,
.mh-list-page .pagination > .active > a,
.mh-list-page .pagination > .active > span {
    border-color: #f97316;
    background: #f97316;
    color: #fff;
}

.mh-product-details-page > .tab-content {
    display: grid;
    gap: 22px;
}

.mh-product-details-page .mh-list-hero {
    padding: 16px 28px;
    min-height: 168px;
}

.mh-product-details-page .mh-list-hero:after {
    right: -28px;
    bottom: -46px;
    width: 130px;
    height: 130px;
}

.mh-product-details-page .mh-list-kicker {
    font-size: 11px;
}

.mh-product-details-page .mh-list-hero h2 {
    max-width: 560px;
    font-size: clamp(26px, 3.5vw, 38px);
    line-height: 1.03;
    margin-bottom: 4px;
}

.mh-product-details-page .mh-list-breadcrumb {
    margin-top: 8px;
    font-size: 12px;
}

.mh-product-details-page .mh-list-hero p {
    max-width: 610px;
    margin-top: 12px;
    font-size: 13px;
    line-height: 1.45;
}

.mh-product-details-page .mh-list-hero-actions .btn {
    min-height: 38px;
    padding: 8px 13px;
    font-size: 13px;
}

.mh-product-details-page .tab-pane > h3,
.mh-product-details-page .card-title {
    color: #082052;
    font-weight: 900;
}

.mh-product-details-page .mh-product-module-card,
.mh-product-details-page .product-details-tab-container,
.mh-product-details-page .tab-pane > .card,
.mh-product-details-page #tabAddons .card,
.mh-product-details-page #tabChangepw .card {
    margin-bottom: 22px;
    border: 1px solid #dbe6f6 !important;
    border-radius: 8px !important;
    background: #fff !important;
    box-shadow: 0 18px 44px rgba(8, 32, 82, .08) !important;
    overflow: hidden;
}

.mh-product-details-page .product-details-tab-container,
.mh-product-details-page .mh-product-module-card {
    padding: 24px;
}

.mh-product-details-page .responsive-tabs-sm {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 14px 16px 0;
    border: 1px solid #dbe6f6;
    border-bottom: 0;
    border-radius: 8px 8px 0 0;
    background: #fff;
}

.mh-product-details-page .responsive-tabs-sm .nav-link {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 0;
    border-radius: 6px 6px 0 0;
    color: #64748b;
    font-weight: 900;
}

.mh-product-details-page .responsive-tabs-sm .nav-link.active {
    border-bottom: 3px solid #f97316;
    background: #fff7ed;
    color: #f97316;
}

.mh-product-details-page .responsive-tabs-sm-connector {
    display: none;
}

.mh-product-details-page .product-details-tab-container {
    border-radius: 0 0 8px 8px !important;
}

.mh-product-details-page .product-details-tab-container .row {
    align-items: center;
    min-height: 38px;
    padding: 8px 0;
    color: #082052;
}

.mh-product-details-page .product-details-tab-container strong {
    color: #64748b;
    font-size: 13px;
    font-weight: 800;
}

.mh-product-details-page .module-client-area,
.mh-product-details-page .module-client-area * {
    max-width: 100%;
}

.mh-product-details-page .module-client-area .mlm-status-active,
.mh-product-details-page .mh-product-module-card .mlm-status-active {
    color: #22c55e !important;
}

.mh-product-overview-card {
    border: 1px solid #dbe6f6;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 22px 50px rgba(8, 32, 82, .08);
    overflow: hidden;
}

.mh-product-overview-tabs {
    display: flex;
    gap: 28px;
    padding: 0 24px;
    border-bottom: 1px solid #e5edf7;
}

.mh-product-overview-tabs a {
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-bottom: 3px solid transparent;
    color: #475569;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

.mh-product-overview-tabs a i {
    color: #f97316;
}

.mh-product-overview-tabs a.active {
    border-bottom-color: #f97316;
    color: #f97316;
}

.mh-product-overview-body {
    padding: 20px 24px 24px;
}

.mh-product-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.mh-product-title {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.mh-product-title > span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    flex: 0 0 42px;
    border-radius: 8px;
    background: #fff7ed;
    color: #f97316;
    font-size: 17px;
}

.mh-product-title h3 {
    margin: 0;
    color: #082052;
    font-size: 16px;
    line-height: 1.25;
    font-weight: 900;
}

.mh-product-title p {
    margin: 4px 0 0;
    color: #64748b;
    font-size: 12px;
    font-weight: 700;
}

.mh-product-status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 6px 11px;
    border-radius: 6px;
    background: #dcfce7;
    color: #059669;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.mh-product-status-badge.status-suspended,
.mh-product-status-badge.status-terminated,
.mh-product-status-badge.status-cancelled {
    background: #fee2e2;
    color: #dc2626;
}

.mh-product-status-badge.status-pending {
    background: #fff7ed;
    color: #f97316;
}

.mh-product-billing-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px 34px;
}

.mh-product-billing-grid div {
    min-width: 0;
}

.mh-product-billing-grid span {
    display: block;
    margin-bottom: 4px;
    color: #94a3b8;
    font-size: 12px;
    font-weight: 800;
}

.mh-product-billing-grid strong {
    display: block;
    color: #28466f;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 700;
    overflow-wrap: anywhere;
}

.mh-product-action-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.mh-product-action-row .btn {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 900;
}

.mh-product-details-page #tabDownloads,
.mh-product-details-page #tabAddons,
.mh-product-details-page #tabChangepw {
    border: 1px solid #dbe6f6;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 44px rgba(8, 32, 82, .08);
    padding: 24px;
}

@media (max-width: 991px) {
    .mh-product-billing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .mh-product-title-row {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 575px) {
    .mh-product-details-page .mh-list-hero {
        min-height: auto;
        padding: 16px;
    }
    .mh-product-details-page .mh-list-hero h2 {
        font-size: 24px;
    }
    .mh-product-details-page .mh-list-hero p {
        font-size: 13px;
    }
    .mh-product-overview-tabs {
        gap: 14px;
        padding: 0 16px;
    }
    .mh-product-overview-tabs a {
        min-height: 52px;
        font-size: 13px;
    }
    .mh-product-overview-body {
        padding: 18px 16px;
    }
    .mh-product-billing-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}

@media (max-width: 991px) {
    body.mh-theme-page .mh-main-body > .container > .row {
        flex-direction: column !important;
    }
    body.mh-theme-page .mh-main-body > .container > .row > .col-lg-4,
    body.mh-theme-page .mh-main-body > .container > .row > .col-xl-3 {
        order: 2;
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
    }
    body.mh-theme-page .mh-sidebar-col {
        position: static;
        z-index: auto;
    }
    body.mh-theme-page .mh-primary-content {
        order: 1;
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }
    body.mh-theme-page .mh-main-body > .container > .row > .sidebar-secondary {
        order: 3;
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
    }
    body.mh-theme-page .mh-sidebar {
        position: static;
        margin-top: 24px;
    }
    .mh-list-hero {
        grid-template-columns: 1fr;
    }
    .mh-list-hero-actions {
        justify-content: flex-start;
    }
    .mh-list-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575px) {
    .mh-list-hero {
        padding: 22px 18px;
    }
    .mh-list-stats {
        grid-template-columns: 1fr;
    }
    .mh-list-card-head {
        align-items: flex-start;
        flex-direction: column;
    }
    .mh-list-page .dataTables_wrapper {
        padding: 14px;
    }
}

@media (max-width: 991px) {
    body.mh-auth-register-page .mh-auth-shell {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    body.mh-auth-register-page .mh-register-card > .mh-auth-head,
    body.mh-auth-register-page .mh-register-form,
    body.mh-auth-register-page .mh-register-alert {
        padding-left: 20px;
        padding-right: 20px;
    }
}
