/* =========================================================
   HostTiller - Original WHMCS Client Theme
   A clean, modern hosting-focused design.
   Built on top of the WHMCS default (six) contract.
   ========================================================= */

:root {
    --ht-primary: #2563eb;
    --ht-primary-dark: #1d4ed8;
    --ht-primary-light: #dbeafe;
    --ht-accent: #0ea5e9;
    --ht-dark: #0f172a;
    --ht-dark-2: #1e293b;
    --ht-gray: #f1f5f9;
    --ht-gray-2: #e2e8f0;
    --ht-text: #334155;
    --ht-text-light: #94a3b8;
    --ht-white: #ffffff;
    --ht-success: #16a34a;
    --ht-danger: #dc2626;
    --ht-warning: #f59e0b;
    --ht-radius: 10px;
    --ht-shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
    --ht-shadow-lg: 0 10px 40px rgba(15, 23, 42, 0.14);
}

html {
    font-size: 15px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--ht-text);
    background-color: var(--ht-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--ht-primary);
    transition: color 0.2s ease;
}

a:hover,
a:focus {
    color: var(--ht-primary-dark);
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--ht-dark);
    font-weight: 700;
    line-height: 1.25;
}

.container {
    max-width: 1180px;
}

/* ===================== TOP BAR ===================== */
#header {
    background: var(--ht-dark);
    padding: 18px 0;
    position: relative;
    z-index: 30;
}

#header .top-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 14px;
}

#header .top-nav > li {
    margin-left: 18px;
}

#header .top-nav a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
}

#header .top-nav a:hover,
#header .top-nav a:focus {
    color: var(--ht-white);
}

#header .top-nav .btn {
    background: var(--ht-primary);
    color: var(--ht-white);
    border: none;
    padding: 6px 16px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
}

#header .top-nav .btn:hover {
    background: var(--ht-primary-dark);
    color: var(--ht-white);
}

#header .logo {
    display: inline-block;
    color: var(--ht-white);
    font-size: 1.7rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

#header .logo img {
    max-height: 46px;
}

#header .logo-text {
    color: var(--ht-white);
}

#header .logo-text span {
    color: var(--ht-accent);
}

/* Language & notification popovers */
.choose-language {
    cursor: pointer;
}

.popover {
    border-radius: var(--ht-radius);
    border: 1px solid var(--ht-gray-2);
    box-shadow: var(--ht-shadow);
    max-width: 320px;
}

.popover a {
    color: var(--ht-text);
}

.popover a:hover {
    color: var(--ht-primary);
}

/* ===================== MAIN NAV ===================== */
#main-menu {
    position: relative;
    z-index: 20;
    background: var(--ht-white);
    border-bottom: 1px solid var(--ht-gray-2);
}

.navbar {
    margin-bottom: 0;
}

.navbar-main {
    min-height: 56px;
}

.navbar-main > .container {
    display: flex;
    align-items: center;
}

.navbar-main .nav > li > a {
    color: var(--ht-dark-2);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 18px 14px;
}

.navbar-main .nav > li > a:hover,
.navbar-main .nav > li > a:focus,
.navbar-main .nav > li.active > a {
    color: var(--ht-primary);
    background: transparent;
}

.navbar-main .nav > li > a .caret {
    margin-left: 5px;
}

.navbar-main .dropdown-menu {
    border: 1px solid var(--ht-gray-2);
    border-radius: var(--ht-radius);
    box-shadow: var(--ht-shadow-lg);
    padding: 8px 0;
    min-width: 200px;
}

.navbar-main .dropdown-menu > li > a {
    padding: 9px 18px;
    color: var(--ht-text);
    font-size: 0.92rem;
}

.navbar-main .dropdown-menu > li > a:hover,
.navbar-main .dropdown-menu > li > a:focus {
    background: var(--ht-gray);
    color: var(--ht-primary);
}

.navbar-toggle .icon-bar {
    background: var(--ht-dark);
}

/* ===================== BUTTONS ===================== */
.btn {
    border-radius: 8px;
    font-weight: 600;
}

.btn-primary {
    background: var(--ht-primary);
    border-color: var(--ht-primary);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background: var(--ht-primary-dark);
    border-color: var(--ht-primary-dark);
}

.btn-info {
    background: var(--ht-accent);
    border-color: var(--ht-accent);
}

.btn-success {
    background: var(--ht-success);
    border-color: var(--ht-success);
}

.btn-warning {
    background: var(--ht-warning);
    border-color: var(--ht-warning);
}

.btn-danger {
    background: var(--ht-danger);
    border-color: var(--ht-danger);
}

.btn-default {
    background: var(--ht-gray);
    border-color: var(--ht-gray-2);
    color: var(--ht-text);
}

.btn-default:hover {
    background: var(--ht-gray-2);
    color: var(--ht-dark);
}

/* ===================== HOMEPAGE HERO ===================== */
#home-banner {
    background: linear-gradient(135deg, var(--ht-primary) 0%, var(--ht-accent) 100%);
    color: var(--ht-white);
    padding: 80px 0 90px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

#home-banner:before {
    content: "";
    position: absolute;
    top: -40%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
}

#home-banner:after {
    content: "";
    position: absolute;
    bottom: -50%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

#home-banner h2 {
    color: var(--ht-white);
    font-size: 2.6rem;
    margin-bottom: 10px;
    font-weight: 800;
}

#home-banner .lead {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

#home-banner .input-group {
    max-width: 620px;
    margin: 0 auto;
    border-radius: var(--ht-radius);
    overflow: hidden;
    box-shadow: var(--ht-shadow-lg);
}

#home-banner .form-control {
    height: 56px;
    border: none;
    font-size: 1rem;
    padding-left: 18px;
}

#home-banner .input-group-btn .btn {
    height: 56px;
    background: var(--ht-dark);
    color: var(--ht-white);
    border: none;
    font-weight: 700;
    padding: 0 30px;
    font-size: 1rem;
}

#home-banner .input-group-btn .btn:hover {
    background: #0b1220;
}

/* Homepage shortcuts */
.home-shortcuts {
    background: var(--ht-white);
    transform: translateY(-40px);
    position: relative;
    z-index: 10;
}

.home-shortcuts .row {
    background: var(--ht-white);
    border-radius: var(--ht-radius);
    box-shadow: var(--ht-shadow-lg);
    padding: 20px 10px;
    margin: 0 auto;
    max-width: 1000px;
    border: 1px solid var(--ht-gray-2);
}

.home-shortcuts h4 {
    margin: 12px 0 0;
}

.home-shortcuts .lead {
    margin: 8px 0;
    font-weight: 600;
}

.home-shortcuts ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.home-shortcuts ul li {
    text-align: center;
    flex: 1;
    min-width: 120px;
    padding: 8px;
}

.home-shortcuts ul li a {
    display: block;
    color: var(--ht-text);
}

.home-shortcuts ul li a i {
    font-size: 1.6rem;
    color: var(--ht-primary);
    display: block;
    margin-bottom: 8px;
}

.home-shortcuts ul li a:hover {
    color: var(--ht-primary);
}

.home-shortcuts ul li p {
    margin: 0;
    font-weight: 500;
    font-size: 0.95rem;
}

/* ===================== HOME FEATURES ===================== */
.home-features {
    padding: 40px 0 80px;
}

.home-features .feature-card {
    text-align: center;
    padding: 28px 20px;
    border: 1px solid var(--ht-gray-2);
    border-radius: var(--ht-radius);
    background: var(--ht-white);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    height: 100%;
}

.home-features .feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--ht-shadow-lg);
}

.home-features .feature-card i {
    font-size: 2.2rem;
    color: var(--ht-primary);
    margin-bottom: 14px;
}

.home-features .feature-card h4 {
    margin: 0 0 8px;
}

.home-features .feature-card p {
    color: var(--ht-text-light);
    font-size: 0.95rem;
    margin: 0;
}

.home-section-title {
    text-align: center;
    margin-bottom: 40px;
}

.home-section-title h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.home-section-title p {
    color: var(--ht-text-light);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto;
}

/* ===================== HOME CTA ===================== */
.home-cta {
    padding: 40px 0 70px;
}

.home-cta .btn {
    margin: 8px;
    min-width: 200px;
}

.home-cta .btn-lg {
    font-size: 1rem;
    padding: 14px 28px;
}

/* ===================== PAGE HEADER / CRUMBS ===================== */
.page-header {
    margin: 0 0 28px;
    padding: 40px 0 20px;
    border-bottom: 1px solid var(--ht-gray-2);
}

.page-header h1 {
    margin: 0;
    font-size: 1.9rem;
    font-weight: 800;
}

.page-header p {
    color: var(--ht-text-light);
    margin: 6px 0 0;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 8px 0 0;
    font-size: 0.88rem;
}

.breadcrumb li {
    color: var(--ht-text-light);
}

.breadcrumb a {
    color: var(--ht-primary);
}

/* ===================== MAIN BODY / LAYOUT ===================== */
#main-body {
    padding-bottom: 60px;
    min-height: 55vh;
}

.main-content {
    padding-top: 30px;
}

/* Sidebar */
.sidebar {
    padding-top: 30px;
}

.sidebar .panel {
    border: 1px solid var(--ht-gray-2);
    border-radius: var(--ht-radius);
    box-shadow: none;
    margin-bottom: 20px;
}

.sidebar .panel-heading {
    background: var(--ht-gray);
    border-bottom: 1px solid var(--ht-gray-2);
    color: var(--ht-dark);
    font-weight: 700;
    border-radius: var(--ht-radius) var(--ht-radius) 0 0;
}

.sidebar .list-group-item {
    border: none;
    border-bottom: 1px solid var(--ht-gray);
    padding: 11px 15px;
}

.sidebar .list-group-item:last-child {
    border-bottom: none;
}

.sidebar .list-group-item a {
    color: var(--ht-text);
}

.sidebar .list-group-item.active {
    background: var(--ht-primary-light);
    color: var(--ht-primary-dark);
    font-weight: 600;
}

/* ===================== PANELS / CARDS ===================== */
.panel {
    border: 1px solid var(--ht-gray-2);
    border-radius: var(--ht-radius);
    box-shadow: none;
}

.panel-heading {
    border-radius: var(--ht-radius) var(--ht-radius) 0 0;
    border-bottom: 1px solid var(--ht-gray-2);
    background: var(--ht-gray);
    font-weight: 600;
    color: var(--ht-dark);
}

.panel-default > .panel-heading {
    background: var(--ht-gray);
    border-color: var(--ht-gray-2);
    color: var(--ht-dark);
}

.panel-primary > .panel-heading {
    background: var(--ht-primary);
    border-color: var(--ht-primary);
}

.panel-title {
    font-size: 1.05rem;
}

/* ===================== TABLES ===================== */
.table {
    border-bottom: 1px solid var(--ht-gray-2);
}

.table > thead > tr > th {
    background: var(--ht-gray);
    color: var(--ht-dark);
    border-bottom: 2px solid var(--ht-gray-2);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 0.4px;
    padding: 12px;
}

.table > tbody > tr > td {
    padding: 13px 12px;
    border-top: 1px solid var(--ht-gray);
    vertical-align: middle;
}

.table-striped > tbody > tr:nth-of-type(odd) {
    background-color: #fafbfc;
}

.table-hover > tbody > tr:hover {
    background-color: var(--ht-primary-light);
}

/* ===================== FORMS ===================== */
.form-control {
    border-radius: 8px;
    border: 1px solid var(--ht-gray-2);
    box-shadow: none;
    padding: 9px 14px;
    height: 42px;
    font-size: 0.95rem;
}

.form-control:focus {
    border-color: var(--ht-primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

textarea.form-control {
    height: auto;
}

select.form-control {
    height: 42px;
}

.form-group label {
    font-weight: 600;
    color: var(--ht-dark-2);
    font-size: 0.9rem;
}

/* ===================== ALERTS ===================== */
.alert {
    border-radius: var(--ht-radius);
    border-width: 1px;
    font-size: 0.95rem;
}

.alert-success {
    background: #ecfdf5;
    border-color: #6ee7b7;
    color: #065f46;
}

.alert-info {
    background: #ecfeff;
    border-color: #67e8f9;
    color: #155e75;
}

.alert-warning {
    background: #fffbeb;
    border-color: #fcd34d;
    color: #92400e;
}

.alert-danger {
    background: #fef2f2;
    border-color: #fca5a5;
    color: #991b1b;
}

/* ===================== PAGINATION ===================== */
.pagination > li > a {
    color: var(--ht-primary);
    border-color: var(--ht-gray-2);
}

.pagination > li.active > a,
.pagination > li.active > a:hover {
    background: var(--ht-primary);
    border-color: var(--ht-primary);
    color: var(--ht-white);
}

/* ===================== LOGIN PAGE ===================== */
.login-form,
#password-frm,
.registration .panel {
    background: var(--ht-white);
    border: 1px solid var(--ht-gray-2);
    border-radius: var(--ht-radius);
    box-shadow: var(--ht-shadow);
    padding: 30px;
    margin-top: 30px;
}

.login-remember {
    margin-top: 12px;
}

/* ===================== CLIENT AREA HOME ===================== */
.client-home {
    background: linear-gradient(135deg, var(--ht-dark) 0%, var(--ht-dark-2) 100%);
    color: var(--ht-white);
    border-radius: var(--ht-radius);
    padding: 30px;
    margin-bottom: 30px;
}

.client-home h3 {
    color: var(--ht-white);
    margin: 0 0 6px;
    font-size: 1.5rem;
}

.client-home p {
    opacity: 0.85;
    margin-bottom: 20px;
}

.client-home ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}

.client-home ul li {
    margin-right: 18px;
    font-size: 0.95rem;
}

.client-home ul li i {
    color: var(--ht-accent);
    margin-right: 6px;
}

/* Status labels */
.label {
    border-radius: 6px;
    font-weight: 600;
}

table .label {
    font-size: 0.78rem;
    padding: 4px 9px;
}

/* ===================== FOOTER ===================== */
#footer {
    background: var(--ht-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 36px 0 30px;
    font-size: 0.92rem;
    margin-top: 40px;
}

#footer a {
    color: rgba(255, 255, 255, 0.85);
}

#footer a:hover {
    color: var(--ht-white);
}

#footer p {
    margin: 0;
}

.back-to-top {
    float: right;
    font-size: 1.2rem;
    background: var(--ht-primary);
    border-radius: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ht-white) !important;
}

.back-to-top:hover {
    background: var(--ht-primary-dark);
}

/* ===================== MODALS ===================== */
.modal-content {
    border-radius: var(--ht-radius);
    border: none;
    box-shadow: var(--ht-shadow-lg);
}

.modal-header {
    border-bottom: 1px solid var(--ht-gray-2);
    background: var(--ht-gray);
    border-radius: var(--ht-radius) var(--ht-radius) 0 0;
}

.modal-title {
    font-weight: 700;
}

.modal-footer {
    border-top: 1px solid var(--ht-gray-2);
    background: var(--ht-gray);
    border-radius: 0 0 var(--ht-radius) var(--ht-radius);
}

/* ===================== TABS ===================== */
.nav-tabs {
    border-bottom: 2px solid var(--ht-gray-2);
}

.nav-tabs > li > a {
    color: var(--ht-text);
    font-weight: 500;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
}

.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
    color: var(--ht-primary);
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--ht-primary);
}

.nav-tabs > li > a:hover {
    border-bottom-color: var(--ht-gray-2);
}

/* ===================== MISC ===================== */
.text-primary { color: var(--ht-primary) !important; }
.bg-primary { background: var(--ht-primary); }

#fullpage-overlay {
    background: rgba(15, 23, 42, 0.5);
    color: var(--ht-white);
}

.paymethod-info,
.btn-pay {
    border-radius: 8px;
}

.linkedin-helper a,
.login-signup-links a {
    color: var(--ht-primary);
    font-weight: 500;
}

/* Responsive */
@media (max-width: 767px) {
    #home-banner h2 { font-size: 1.9rem; }
    #home-banner { padding: 50px 0 60px; }
    .navbar-main .nav > li > a { padding: 12px 14px; }
    .home-shortcuts .row { padding: 16px 8px; }
    .sidebar { padding-top: 0; }
}

/* =========================================================
   HostTiller Footer â€” full reference port (same to same)
   Scoped under #ht-footer to avoid Bootstrap collisions.
   ========================================================= */
:root {
    --hl-primary:#0A3D61;
    --hl-primary-dark:#082E4A;
    --hl-secondary:#EAB543;
    --hl-secondary-dark:#C99A26;
    --hl-secondary-soft:rgba(234,181,67,.14);
    --hl-radius:14px;
    --hl-heading:'Poppins','Inter',system-ui,sans-serif;
    --hl-body:'Inter',system-ui,sans-serif;
}
#ht-footer {
    font-family: var(--hl-body);
    -webkit-font-smoothing: antialiased;
    position: relative;
    overflow: hidden;
    background: var(--hl-primary-dark);
    color: #cbd5e1;
    line-height: 1.6;
}
#ht-footer, #ht-footer * { box-sizing: border-box; }
#ht-footer a { text-decoration: none; color: inherit; }
#ht-footer h1,#ht-footer h2,#ht-footer h3,#ht-footer h4,
#ht-footer .ft-heading { font-family: var(--hl-heading); }
#ht-footer img { max-width: 100%; }

.ht-container {
    margin-left: auto; margin-right: auto; width: 100%; max-width: 76rem; padding-left: 1.25rem; padding-right: 1.25rem;
}
@media (min-width: 1024px){ .ht-container{ padding-left: 2rem; padding-right: 2rem; } }

/* ---- animated background ---- */
#ht-footer .ft-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 60px 60px;
    -webkit-mask-image: radial-gradient(closest-side at 50% 0%, #000 10%, transparent 95%);
    mask-image: radial-gradient(closest-side at 50% 0%, #000 10%, transparent 95%);
    animation: htDrift 26s linear infinite;
    pointer-events: none;
}
@keyframes htDrift { to { background-position: 0 60px; } }
#ht-footer .ft-orb { position: absolute; border-radius: 9999px; filter: blur(40px); pointer-events: none; }
.ft-orb-a { animation: htOrbA 16s ease-in-out infinite; }
.ft-orb-b { animation: htOrbB 20s ease-in-out infinite; }
.ft-orb-c { animation: htOrbC 18s ease-in-out infinite; }
@keyframes htOrbA { 0%,100%{transform:translate(0,0) scale(1);} 33%{transform:translate(40px,30px) scale(1.12);} 66%{transform:translate(-20px,50px) scale(.95);} }
@keyframes htOrbB { 0%,100%{transform:translate(0,0) scale(1);} 50%{transform:translate(-50px,-35px) scale(1.18);} }
@keyframes htOrbC { 0%,100%{transform:translate(0,0) scale(1);} 50%{transform:translate(30px,-40px) scale(1.08);} }
#ht-footer .ft-sweep {
    position: absolute; inset: 0;
    background: linear-gradient(115deg, transparent 0%, rgba(234,181,67,.05) 45%, rgba(56,189,248,.06) 55%, transparent 100%);
    background-size: 220% 220%;
    animation: htSweep 14s ease-in-out infinite;
    mix-blend-mode: screen; pointer-events: none;
}
@keyframes htSweep { 0%,100%{background-position:0% 0%;} 50%{background-position:100% 100%;} }
#ht-footer .ft-mote {
    position: absolute; bottom: 0; border-radius: 9999px; opacity: 0; animation: htMote 9s linear infinite; pointer-events: none;
}
@keyframes htMote {
    0%{transform:translateY(0) scale(.6); opacity:0;}
    12%{opacity:var(--o,.5);}
    85%{opacity:var(--o,.5);}
    100%{transform:translateY(-460px) scale(1); opacity:0;}
}

/* ---- newsletter strip ---- */
#ht-footer .ft-newsletter {
    position: relative; overflow: hidden; border-radius: 24px;
    border: 1px solid rgba(255,255,255,.1);
    padding: 32px; display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 1.5rem;
    background: linear-gradient(120deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
}
@media (min-width: 1024px){ #ht-footer .ft-newsletter{ flex-direction: row; padding: 36px 40px; } }
#ht-footer .ft-newsletter .ic {
    display: none; place-items: center; width: 48px; height: 48px; border-radius: 16px;
    background: var(--hl-secondary-soft); color: var(--hl-secondary);
}
@media (min-width: 640px){ #ht-footer .ft-newsletter .ic{ display: grid; } }
#ht-footer .ft-newsletter h3 { font-size: 1.15rem; font-weight: 800; color: #fff; margin: 0; }
#ht-footer .ft-newsletter .sub { margin-top: 2px; font-size: 13px; color: #cbd5e1; }
#ht-footer .ft-newsletter form {
    position: relative; display: flex; width: 100%; max-width: 400px; align-items: center; gap: 8px;
    border-radius: 16px; border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.04);
    padding: 8px 8px 8px 16px;
}
#ht-footer .ft-newsletter form:focus-within { border-color: rgba(234,181,67,.6); }
#ht-footer .ft-newsletter input {
    width: 100%; min-width: 0; background: transparent; border: 0; outline: 0;
    font-size: 14px; color: #fff; font-family: inherit;
}
#ht-footer .ft-newsletter input::placeholder { color: #64748b; }
#ht-footer .ft-newsletter form .btn-subs {
    flex-shrink: 0; display: inline-flex; align-items: center; gap: 6px;
    border-radius: 12px; padding: 10px 16px; font-size: 13px; font-weight: 700; cursor: pointer; border: 0;
    background: var(--hl-secondary); color: var(--hl-primary-dark);
    box-shadow: 0 10px 24px -10px rgba(234,181,67,.6);
    transition: transform .2s ease, background .2s ease;
}
#ht-footer .ft-newsletter form .btn-subs:hover { background: #F5D77E; transform: translateY(-1px); }

/* ---- columns ---- */
#ht-footer .ft-cols {
    display: grid; grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 2rem 2rem;
}
@media (min-width: 768px){ #ht-footer .ft-cols{ grid-template-columns: repeat(3, minmax(0,1fr)); } }
@media (min-width: 1024px){ #ht-footer .ft-cols{ grid-template-columns: repeat(5, minmax(0,1fr)); } }
#ht-footer .ft-brand { grid-column: span 2; }
@media (min-width: 1024px){ #ht-footer .ft-brand{ grid-column: span 1; } }
#ht-footer .ft-brand .ft-brand-link{ display:inline-flex; align-items:center; }
#ht-footer .ft-brand .ft-logo-img{ display:block; height:34px; width:auto; }
#ht-footer .ft-brand p { font-size: 13px; line-height: 1.7; color: #cbd5e1; margin-top: 1.25rem; }
#ht-footer .ft-col h4 {
    display: flex; align-items: center; gap: 8px; color: #fff; font-weight: 700;
    margin: 0 0 1.25rem; font-size: 13px; text-transform: uppercase; letter-spacing: .06em;
}
#ht-footer .ft-col h4 .icx { color: #EAB543; }
#ht-footer .ft-col ul { list-style: none; margin: 0; padding: 0; }
#ht-footer .ft-col li { margin-bottom: 10px; }
#ht-footer .ft-col li a.ft-linkx { display: flex; align-items: center; gap: 8px; }
#ht-footer .ft-col li .dot {
    width: 4px; height: 4px; flex-shrink: 0; border-radius: 9999px; background: rgba(234,181,67,.5);
    transition: all .3s ease;
}
#ht-footer .ft-col li a.ft-linkx:hover .dot { width: 12px; background: #EAB543; }
#ht-footer .ft-col li .llabel { color: #cbd5e1; transition: color .2s ease; }
#ht-footer .ft-col li a.ft-linkx:hover .llabel { color: #fff; }
#ht-footer .ft-badge {
    font-size: 10px; font-weight: 800; padding: 2px 6px; border-radius: 5px;
    background: #F43F5E; color: #fff; letter-spacing: .04em;
}

/* ---- social ---- */
#ht-footer .ft-social { display: flex; gap: 10px; flex-wrap: wrap; }
#ht-footer .ft-social a {
    width: 36px; height: 36px; display: grid; place-items: center; border-radius: 12px;
    background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); color: #cbd5e1; font-size: 15px;
    backdrop-filter: blur(10px); transition: transform .25s ease, background .25s ease, color .25s ease;
}
#ht-footer .ft-social a:hover { transform: translateY(-3px); background: #fff; color: var(--hl-primary); }

/* ---- contact strip ---- */
#ht-footer .ft-contact {
    margin-top: 3rem; display: grid; grid-template-columns: 1fr; gap: 1rem;
    border-radius: 16px; border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.03); padding: 20px;
}
@media (min-width: 640px){ #ht-footer .ft-contact{ grid-template-columns: repeat(3, 1fr); padding: 24px; } }
#ht-footer .ft-contact a.ft-c { display: flex; align-items: center; gap: 12px; }
#ht-footer .ft-contact .ft-c .ci {
    flex-shrink: 0; display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px;
    background: var(--hl-secondary-soft); color: var(--hl-secondary);
}
#ht-footer .ft-contact .lab { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: #94a3b8; }
#ht-footer .ft-contact .val { display: block; margin-top: 2px; font-size: 14px; font-weight: 600; color: #fff; }
#ht-footer .ft-contact a.ft-c:hover .val { color: #F5D77E; }

/* ---- bottom bar ---- */
#ht-footer .ft-bottom {
    margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.1);
    display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 1rem;
}
@media (min-width: 640px){ #ht-footer .ft-bottom{ flex-direction: row; } }
#ht-footer .ft-bottom .copy { font-size: 12px; color: #94a3b8; margin: 0; }
#ht-footer .ft-bottom .legal { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 8px 20px; font-size: 12px; color: #94a3b8; }
#ht-footer .ft-bottom .legal a { display: inline-flex; align-items: center; gap: 6px; }
#ht-footer .ft-bottom .legal a:hover { color: #fff; }
#ht-footer .ft-bottom .legal .dotsep { width: 4px; height: 4px; border-radius: 9999px; background: #475569; }
#ht-footer .ft-bottom .powered { display: inline-flex; align-items: center; gap: 6px; color: #cbd5e1; }
#ht-footer .ft-bottom .powered .spark { color: #EAB543; }

/* reveal */
#ht-footer .ft-rv { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
#ht-footer .ft-rv.in-view { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
    #ht-footer .ft-grid, #ht-footer .ft-orb, #ht-footer .ft-sweep, #ht-footer .ft-mote { animation: none !important; }
    #ht-footer .ft-rv { opacity: 1 !important; transform: none !important; }
}

/* =========================================================
   HostTiller Header â€” full reference port (same to same)
   Scoped under #ht-header / .ht-announce to avoid Bootstrap clashes.
   ========================================================= */
.ht-announce {
    display: block; text-align: center; font-size: 13px; font-weight: 600;
    padding: 10px 16px; color: var(--hl-primary-dark, #082E4A);
    background: var(--hl-secondary, #EAB543);
    position: relative; z-index: 60;
}
.ht-announce a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }

#ht-header {
    font-family: var(--hl-body, 'Inter', system-ui, sans-serif);
    position: sticky; top: 0; z-index: 55;
    background: rgba(255,255,255,.9); backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(10,61,97,.06);
    transition: box-shadow .3s ease, background .3s ease;
}
#ht-header.scrolled { background: rgba(255,255,255,.97); box-shadow: 0 12px 30px -12px rgba(10,61,97,.12); }
#ht-header, #ht-header * { box-sizing: border-box; }
#ht-header a, #ht-header button { font-family: inherit; }
#ht-header ul { list-style: none; margin: 0; padding: 0; }

.ht-nav-inner {
    max-width: 76rem; margin: 0 auto; padding: 0 1.25rem;
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    height: 64px;
}
@media (min-width: 1024px){ .ht-nav-inner{ height: 76px; padding: 0 2rem; } }

/* ---- logo ---- */
#ht-header .ht-logo { flex-shrink: 0; display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
#ht-header .ht-logo .ht-logo-img { display: block; height: 32px; width: auto; }
@media (min-width:768px){ #ht-header .ht-logo .ht-logo-img { height: 36px; } }
#ht-header .ht-logo .ht-logo-badge {
    position: relative; display: grid; place-items: center; width: 38px; height: 38px;
    border-radius: 11px; background: var(--hl-primary, #0A3D61); color: #fff;
    box-shadow: 0 8px 22px -8px rgba(10,61,97,.5);
}
#ht-header .ht-logo .ht-logo-badge b { font-family: var(--hl-heading, Poppins); font-weight: 900; font-size: 19px; }
#ht-header .ht-logo .ht-logo-badge::after {
    content: ''; position: absolute; top: -4px; right: -4px; width: 13px; height: 13px;
    border-radius: 9999px; background: var(--hl-secondary, #EAB543); border: 2px solid #fff;
}
#ht-header .ht-logo .ht-logo-text { font-family: var(--hl-heading, Poppins); font-weight: 800; font-size: 19px; letter-spacing: -.02em; color: var(--hl-primary, #0A3D61); }
#ht-header .ht-logo .ht-logo-text em { font-style: normal; color: #EAB543; }

/* ---- desktop nav ---- */
.ht-nav-desktop { display: none; align-items: center; }
@media (min-width: 1024px){ .ht-nav-desktop { display: flex; } }
.ht-nav-desktop > li { position: relative; }
.ht-nav-desktop > li > a,
.ht-nav-desktop > li > .ht-drop {
    display: inline-flex; align-items: center; gap: 6px; padding: 8px 13px;
    border-radius: 11px; font-size: 14px; font-weight: 600; color: #475569;
    text-decoration: none; background: none; border: 0; cursor: pointer;
    transition: color .2s ease, background .2s ease;
}
.ht-nav-desktop > li > a:hover,
.ht-nav-desktop > li > .ht-drop:hover,
.ht-nav-desktop > li.ht-active > a,
.ht-nav-desktop > li.ht-active > .ht-drop { color: var(--hl-primary, #0A3D61); background: rgba(10,61,97,.05); }
.ht-nav-desktop a.ht-badge-link .ht-badge {
    font-size: 10px; font-weight: 800; padding: 2px 6px; border-radius: 5px;
    background: #F43F5E; color: #fff; letter-spacing: .03em;
}
.ht-nav-desktop .ht-caret { font-size: 10px; opacity: .6; transition: transform .2s ease; }
.ht-nav-desktop > li:hover > .ht-drop .ht-caret,
.ht-nav-desktop > li.ht-open > .ht-drop .ht-caret { transform: rotate(180deg); }

/* ---- dropdown panels ---- */
.ht-drop-panel {
    position: absolute; top: 100%; left: 0; padding-top: 10px;
    width: 300px; z-index: 60;
    opacity: 0; visibility: hidden; transform: translateY(8px);
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
    pointer-events: none;
}
.ht-nav-desktop > li:last-child .ht-drop-panel, .ht-drop-panel.ht-right { left: auto; right: 0; }
.ht-nav-desktop > li:hover .ht-drop-panel,
.ht-nav-desktop > li.ht-open .ht-drop-panel { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; }
.ht-drop-panel .ht-panel {
    background: #fff; border-radius: 18px; padding: 8px;
    box-shadow: 0 30px 60px -18px rgba(10,61,97,.25); border: 1px solid rgba(10,61,97,.06);
    overflow: hidden;
}
.ht-drop-item {
    display: flex; align-items: flex-start; gap: 12px; padding: 10px 12px; border-radius: 12px;
    text-decoration: none; transition: background .15s ease;
}
.ht-drop-item:hover { background: rgba(10,61,97,.05); }
.ht-drop-item .ht-di { flex-shrink: 0; display: grid; place-items: center; width: 34px; height: 34px; border-radius: 10px; background: rgba(10,61,97,.08); color: var(--hl-primary, #0A3D61); font-size: 14px; }
.ht-drop-item .ht-dt { display: block; font-size: 14px; font-weight: 600; color: #1E293B; }
.ht-drop-item .ht-dd { display: block; font-size: 12px; color: #64748B; margin-top: 1px; line-height: 1.4; }

/* ---- domain search panel (wider) ---- */
.ht-nav-desktop > li.ht-domains .ht-drop-panel { width: 320px; }
.ht-search-form { display: flex; align-items: center; gap: 8px; border-radius: 12px; background: #F8FAFC; border: 1px solid #E2E8F0; padding: 4px 4px 4px 12px; }
.ht-search-form:focus-within { border-color: var(--hl-primary, #0A3D61); }
.ht-search-form input { width: 100%; min-width: 0; background: transparent; border: 0; outline: 0; font-size: 14px; color: #334155; }
.ht-search-form .ht-sbtn { flex-shrink: 0; border: 0; cursor: pointer; border-radius: 9px; padding: 8px 14px; font-size: 13px; font-weight: 700; background: var(--hl-primary, #0A3D61); color: #fff; }
.ht-search-tlds { display: flex; gap: 6px; margin-top: 12px; }
.ht-search-tlds button { border: 0; cursor: pointer; border-radius: 8px; padding: 5px 10px; font-size: 12px; font-weight: 700; background: #F1F5F9; color: #475569; transition: background .15s ease, color .15s ease; }
.ht-search-tlds button.ht-on { background: var(--hl-primary, #0A3D61); color: #fff; }
.ht-search-note { margin-top: 10px; font-size: 11px; color: #94a3b8; line-height: 1.5; }

/* ---- right actions ---- */
.ht-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.ht-phone { display: none; font-size: 14px; font-weight: 600; color: #475569; text-decoration: none; gap: 8px; align-items: center; }
@media (min-width: 1280px){ .ht-phone { display: inline-flex; } }
.ht-phone:hover { color: var(--hl-primary, #0A3D61); }
.ht-phone i { font-size: 15px; color: var(--hl-primary, #0A3D61); }

#ht-header .ht-cta {
    display: inline-flex; align-items: center; gap: 8px; border: 0; cursor: pointer;
    border-radius: 12px; padding: 10px 18px; font-size: 14px; font-weight: 700;
    background: var(--hl-secondary, #EAB543); color: var(--hl-primary-dark, #082E4A);
    box-shadow: 0 10px 24px -10px rgba(234,181,67,.6);
    transition: transform .2s ease, background .2s ease; text-decoration: none; white-space: nowrap;
}
#ht-header .ht-cta:hover { background: #F5D77E; transform: translateY(-1px); }
#ht-header .ht-account a {
    display: inline-flex; align-items: center; gap: 6px; text-decoration: none;
    font-size: 14px; font-weight: 600; color: #475569; padding: 8px 10px; border-radius: 10px;
}
#ht-header .ht-account a:hover { color: var(--hl-primary, #0A3D61); background: rgba(10,61,97,.05); }

/* ---- hamburger ---- */
.ht-burger {
    display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px;
    border: 1px solid #E2E8F0; background: #fff; color: var(--hl-primary, #0A3D61);
    font-size: 20px; cursor: pointer;
}
@media (min-width: 1024px){ .ht-burger { display: none; } }

/* ---- mobile drawer ---- */
.ht-drawer {
    display: none; border-top: 1px solid #F1F5F9; background: #fff;
    box-shadow: 0 30px 40px -20px rgba(10,61,97,.18); max-height: calc(100vh - 64px); overflow-y: auto;
}
.ht-drawer.ht-open { display: block; }
.ht-drawer nav { max-width: 76rem; margin: 0 auto; padding: 16px; display: flex; flex-direction: column; gap: 4px; }
.ht-drawer .ht-m-link {
    display: flex; align-items: center; justify-content: space-between; gap: 8px;
    padding: 12px 16px; border-radius: 11px; text-decoration: none;
    font-size: 15px; font-weight: 600; color: #334155;
}
.ht-drawer .ht-m-link.ht-noacc { justify-content: flex-start; }
.ht-drawer .ht-m-link.ht-on, .ht-drawer .ht-m-link:hover { background: rgba(10,61,97,.05); color: var(--hl-primary, #0A3D61); }
.ht-drawer .ht-m-link .ht-badge { font-size: 10px; font-weight: 800; padding: 2px 6px; border-radius: 5px; background: #F43F5E; color: #fff; }
.ht-drawer .ht-m-subs { margin: 0 0 8px 8px; padding-left: 16px; border-left: 1px solid #E2E8F0; display: flex; flex-direction: column; gap: 2px; }
.ht-drawer .ht-m-subs a { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: 10px; text-decoration: none; font-size: 14px; font-weight: 500; color: #64748B; }
.ht-drawer .ht-m-subs a:hover { background: rgba(10,61,97,.05); color: var(--hl-primary, #0A3D61); }
.ht-drawer .ht-m-subs a i { width: 18px; text-align: center; color: var(--hl-primary, #0A3D61); }
.ht-drawer .ht-m-cta { margin-top: 10px; }
.ht-drawer .ht-m-account { display: flex; flex-direction: column; gap: 6px; margin-top: 8px; padding-top: 12px; border-top: 1px solid #F1F5F9; }
.ht-drawer .ht-m-account a { display: flex; align-items: center; gap: 10px; padding: 11px 14px; border-radius: 10px; text-decoration: none; font-size: 14px; font-weight: 600; color: #334155; }
.ht-drawer .ht-m-account a:hover { background: rgba(10,61,97,.05); color: var(--hl-primary, #0A3D61); }
.ht-drawer .ht-m-account a i { width: 18px; text-align: center; color: var(--hl-primary, #0A3D61); }

/* force content to sit below sticky header cleanly */
html { scroll-padding-top: 90px; }
@media (prefers-reduced-motion: reduce) {
    #ht-header .ht-drop-panel { transition: none; }
    .ht-announce, #ht-header { transition: none; }
}

/* =========================================================
   Client Area Dashboard â€” professional redesign
   Scoped under #client-dash to avoid Bootstrap clashes.
   ========================================================= */
#client-dash { font-family: var(--hl-body, 'Inter', system-ui, sans-serif); }
#client-dash, #client-dash * { box-sizing: border-box; }
#client-dash a { text-decoration: none; }
#client-dash .cd-welcome {
    position: relative; overflow: hidden; border-radius: 22px; color: #fff;
    background: linear-gradient(120deg, #0A3D61 0%, #0d4d79 55%, #155e92 100%);
    padding: 2.2rem 2.4rem; margin-bottom: 1.6rem;
    box-shadow: 0 24px 50px -24px rgba(10,61,97,.55);
}
#client-dash .cd-welcome::before {
    content: ''; position: absolute; top: -60px; right: -40px; width: 260px; height: 260px;
    border-radius: 9999px; background: radial-gradient(circle, rgba(234,181,67,.28) 0%, transparent 70%);
}
#client-dash .cd-welcome::after {
    content: ''; position: absolute; bottom: -90px; left: 40%; width: 220px; height: 220px;
    border-radius: 9999px; background: radial-gradient(circle, rgba(255,255,255,.12) 0%, transparent 70%);
}
#client-dash .cd-welcome-inner { position: relative; z-index: 2; display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between; }
#client-dash .cd-hello { display: flex; align-items: center; gap: 1rem; }
#client-dash .cd-avatar {
    display: grid; place-items: center; width: 54px; height: 54px; border-radius: 16px;
    background: var(--hl-secondary, #EAB543); color: var(--hl-primary-dark, #082E4A);
    font-weight: 800; font-size: 22px; box-shadow: 0 10px 20px -8px rgba(234,181,67,.7); flex-shrink: 0;
}
#client-dash .cd-hello h1 { margin: 0; font-family: var(--hl-heading, Poppins); font-size: 22px; font-weight: 800; letter-spacing: -.01em; }
#client-dash .cd-hello p { margin: 4px 0 0; font-size: 14px; color: rgba(255,255,255,.78); }
#client-dash .cd-welcome .cd-hello b { color: var(--hl-secondary, #EAB543); }
#client-dash .cd-actions { display: flex; flex-wrap: wrap; gap: 10px; }
#client-dash .cd-actions a {
    display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px; border-radius: 12px;
    font-size: 13.5px; font-weight: 700; color: var(--hl-primary-dark, #082E4A);
    background: var(--hl-secondary, #EAB543); box-shadow: 0 12px 24px -12px rgba(234,181,67,.8);
    transition: transform .2s ease, background .2s ease;
}
#client-dash .cd-actions a.cd-ghost { background: rgba(255,255,255,.14); color: #fff; box-shadow: none; border: 1px solid rgba(255,255,255,.25); }
#client-dash .cd-actions a:hover { transform: translateY(-2px); }
#client-dash .cd-actions a.cd-ghost:hover { background: rgba(255,255,255,.22); }

/* KPI stat cards */
#client-dash .cd-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-bottom: 1.6rem; }
@media (min-width: 768px){ #client-dash .cd-stats { grid-template-columns: repeat(4, 1fr); } }
#client-dash .cd-stat {
    position: relative; overflow: hidden; background: #fff; border: 1px solid rgba(10,61,97,.08);
    border-radius: 18px; padding: 20px; display: flex; align-items: center; gap: 14px;
    box-shadow: 0 10px 26px -18px rgba(10,61,97,.35); transition: transform .2s ease, box-shadow .2s ease;
}
#client-dash .cd-stat:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -20px rgba(10,61,97,.4); }
#client-dash .cd-stat .cd-sicon {
    display: grid; place-items: center; width: 48px; height: 48px; border-radius: 14px; flex-shrink: 0;
    background: rgba(10,61,97,.08); color: var(--hl-primary, #0A3D61); font-size: 20px;
}
#client-dash .cd-stat.cd-red .cd-sicon { background: rgba(244,63,94,.12); color: #E11D48; }
#client-dash .cd-stat.cd-green .cd-sicon { background: rgba(16,185,129,.12); color: #059669; }
#client-dash .cd-stat.cd-gold .cd-sicon { background: rgba(234,181,67,.16); color: #B7811A; }
#client-dash .cd-stat .cd-snum { font-family: var(--hl-heading, Poppins); font-size: 28px; font-weight: 800; line-height: 1; color: var(--hl-primary, #0A3D61); }
#client-dash .cd-stat .cd-slabel { font-size: 12.5px; font-weight: 600; color: #64748B; margin-top: 5px; }
#client-dash .cd-stat .cd-arrow { position: absolute; right: 14px; top: 14px; font-size: 13px; color: #CBD5E1; }

/* quick actions */
#client-dash .cd-quick { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 1.8rem; }
@media (min-width: 900px){ #client-dash .cd-quick { grid-template-columns: repeat(4, 1fr); } }
#client-dash .cd-quick a {
    display: flex; flex-direction: column; align-items: flex-start; gap: 10px; padding: 16px;
    background: #fff; border: 1px solid rgba(10,61,97,.08); border-radius: 16px;
    font-size: 14px; font-weight: 700; color: #1E293B; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
#client-dash .cd-quick a:hover { transform: translateY(-3px); border-color: rgba(10,61,97,.2); box-shadow: 0 16px 34px -20px rgba(10,61,97,.35); }
#client-dash .cd-quick a .cd-qi {
    display: grid; place-items: center; width: 40px; height: 40px; border-radius: 12px;
    background: linear-gradient(135deg, #0A3D61, #0d4d79); color: #fff; font-size: 17px;
}
#client-dash .cd-quick a.cd-goldq .cd-qi { background: linear-gradient(135deg, #EAB543, #C99A26); }
#client-dash .cd-quick a .cd-qsub { font-size: 12px; font-weight: 500; color: #94a3b8; }

/* search */
#client-dash .cd-kbsearch { position: relative; margin: 0 0 1.6rem; }
#client-dash .cd-kbsearch input {
    width: 100%; border: 1px solid rgba(10,61,97,.12); border-radius: 14px; padding: 14px 18px 14px 46px;
    font-size: 15px; background: #fff; color: #334155; outline: none; transition: border-color .2s ease, box-shadow .2s ease;
}
#client-dash .cd-kbsearch input:focus { border-color: var(--hl-primary, #0A3D61); box-shadow: 0 0 0 4px rgba(10,61,97,.08); }
#client-dash .cd-kbsearch i { position: absolute; left: 18px; top: 50%; transform: translateY(-50%); color: #94a3b8; font-size: 15px; }

/* section titles */
#client-dash .cd-sec-title { display: flex; align-items: center; gap: 8px; font-family: var(--hl-heading, Poppins); font-size: 15.5px; font-weight: 700; color: var(--hl-primary, #0A3D61); margin: 1.6rem 0 .9rem; }
#client-dash .cd-sec-title i { color: var(--hl-secondary-dark, #C99A26); font-size: 14px; }

/* admin home panels restyled */
#client-dash .client-home-panels .panel { border: 1px solid rgba(10,61,97,.08); border-radius: 16px; box-shadow: 0 12px 30px -22px rgba(10,61,97,.4); overflow: hidden; }
#client-dash .client-home-panels .panel-heading { background: #F8FAFC; border-bottom: 1px solid #EEF2F7; padding: 14px 18px; }
#client-dash .client-home-panels .panel-title { font-family: var(--hl-heading, Poppins); font-weight: 700; color: var(--hl-primary, #0A3D61); font-size: 15px; }
#client-dash .client-home-panels .list-group-item { border-color: #F1F5F9; padding: 12px 18px; font-size: 14px; color: #475569; }
#client-dash .client-home-panels .list-group-item:hover { background: #F8FAFC; color: var(--hl-primary, #0A3D61); }
#client-dash .client-home-panels .panel-footer { background: #fff; border-top: 1px solid #F1F5F9; }
#client-dash .cd-more { margin-top: 1.4rem; }
@media (prefers-reduced-motion: reduce) { #client-dash .cd-stat, #client-dash .cd-quick a, #client-dash .cd-actions a { transition: none; } }

/* =========================================================
   Store / Product Group Page â€” professional redesign
   Scoped under #ht-store (orderform standard_cart).
   ========================================================= */
#ht-store { font-family: var(--hl-body, 'Inter', system-ui, sans-serif); }
#ht-store, #ht-store * { box-sizing: border-box; }
#ht-store a { text-decoration: none; }

/* ---- hero ---- */
.ht-store-hero {
    position: relative; overflow: hidden; border-radius: 24px; color: #fff;
    background: linear-gradient(125deg, #082E4A 0%, #0A3D61 55%, #155e92 100%);
    padding: 3rem 2.4rem; margin-bottom: 1.6rem;
    box-shadow: 0 30px 60px -28px rgba(10,61,97,.6);
}
.ht-store-hero::before {
    content: ''; position: absolute; top: -80px; right: -30px; width: 300px; height: 300px;
    border-radius: 9999px; background: radial-gradient(circle, rgba(234,181,67,.3) 0%, transparent 70%);
}
.ht-store-hero::after {
    content: ''; position: absolute; bottom: -110px; left: 30%; width: 260px; height: 260px;
    border-radius: 9999px; background: radial-gradient(circle, rgba(255,255,255,.1) 0%, transparent 70%);
}
.ht-store-hero .ht-sh-in { position: relative; z-index: 2; max-width: 52rem; }
.ht-store-hero .ht-sh-tag {
    display: inline-flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 700;
    letter-spacing: .04em; text-transform: uppercase; color: var(--hl-secondary, #EAB543);
    background: rgba(234,181,67,.14); border: 1px solid rgba(234,181,67,.35);
    padding: 5px 12px; border-radius: 999px; margin-bottom: 16px;
}
.ht-store-hero h1 { margin: 0 0 10px; font-family: var(--hl-heading, Poppins); font-size: 32px; font-weight: 800; letter-spacing: -.02em; line-height: 1.15; }
@media (min-width: 768px){ .ht-store-hero h1 { font-size: 42px; } }
.ht-store-hero h1 span { color: var(--hl-secondary, #EAB543); }
.ht-store-hero p { margin: 0; font-size: 15.5px; line-height: 1.6; color: rgba(255,255,255,.82); max-width: 46rem; }

/* ---- trust strip ---- */
.ht-store-trust { display: flex; flex-wrap: wrap; gap: 14px; margin: -8px 0 24px; }
.ht-store-trust span {
    display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: #334155;
    background: #fff; border: 1px solid rgba(10,61,97,.08); border-radius: 12px; padding: 8px 14px;
    box-shadow: 0 8px 20px -16px rgba(10,61,97,.4);
}
.ht-store-trust span i { color: var(--hl-primary, #0A3D61); }

/* ---- products grid ---- */
#ht-store .ht-products { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 768px){ #ht-store .ht-products { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px){ #ht-store .ht-products { grid-template-columns: repeat(3, 1fr); } }

.ht-pcard {
    position: relative; display: flex; flex-direction: column; background: #fff;
    border: 1px solid rgba(10,61,97,.09); border-radius: 20px; padding: 26px 24px 24px;
    box-shadow: 0 16px 40px -26px rgba(10,61,97,.5);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.ht-pcard:hover { transform: translateY(-6px); box-shadow: 0 28px 54px -24px rgba(10,61,97,.5); border-color: rgba(10,61,97,.2); }
.ht-pcard.ht-featured { border: 2px solid var(--hl-secondary, #EAB543); }
.ht-pcard .ht-ribbon {
    position: absolute; top: -12px; right: 18px; font-size: 11px; font-weight: 800; letter-spacing: .04em;
    padding: 5px 13px; border-radius: 999px; background: linear-gradient(135deg, #EAB543, #C99A26);
    color: #082E4A; box-shadow: 0 8px 18px -8px rgba(234,181,67,.9);
}
.ht-pcard .ht-pname { display: flex; align-items: center; gap: 10px; }
.ht-pcard .ht-pname .ht-picon {
    display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0;
    background: rgba(10,61,97,.08); color: var(--hl-primary, #0A3D61); font-size: 18px;
}
.ht-pcard.ht-featured .ht-pname .ht-picon { background: rgba(234,181,67,.18); color: #B7811A; }
.ht-pcard .ht-pname h3 { margin: 0; font-family: var(--hl-heading, Poppins); font-size: 18px; font-weight: 700; color: var(--hl-primary, #0A3D61); }
.ht-pcard .ht-pdesc { margin: 12px 0 16px; font-size: 13.5px; line-height: 1.55; color: #64748B; }
.ht-pcard .ht-plist { list-style: none; margin: 0 0 20px; padding: 0; display: grid; gap: 9px; }
.ht-pcard .ht-plist li {
    position: relative; display: flex; align-items: flex-start; gap: 9px;
    font-size: 13.5px; color: #475569; line-height: 1.4;
}
.ht-pcard .ht-plist li::before { content: ''; flex-shrink: 0; margin-top: 5px; width: 8px; height: 8px; border-radius: 3px; background: var(--hl-secondary, #EAB543); }
.ht-pcard.ht-featured .ht-plist li::before { background: var(--hl-primary, #0A3D61); }
.ht-pcard .ht-plist li b { color: var(--hl-primary, #0A3D61); margin-right: 6px; }

.ht-pcard .ht-pfoot { margin-top: auto; border-top: 1px solid #F1F5F9; padding-top: 18px; display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; }
.ht-pcard .ht-price { line-height: 1; }
.ht-pcard .ht-price .ht-p-amt { font-family: var(--hl-heading, Poppins); font-size: 28px; font-weight: 800; color: var(--hl-primary, #0A3D61); letter-spacing: -.02em; }
.ht-pcard .ht-price .ht-p-cycle { display: block; margin-top: 6px; font-size: 12.5px; color: #94a3b8; font-weight: 600; }
.ht-pcard .ht-price .ht-p-setup { display: block; margin-top: 3px; font-size: 11.5px; color: #a8b6c4; }
.ht-pcard .ht-order {
    display: inline-flex; align-items: center; gap: 8px; flex-shrink: 0;
    border: 0; cursor: pointer; border-radius: 12px; padding: 11px 18px;
    font-size: 13.5px; font-weight: 700; color: #fff; background: var(--hl-primary, #0A3D61);
    box-shadow: 0 12px 24px -12px rgba(10,61,97,.7); transition: transform .2s ease, background .2s ease;
}
.ht-pcard .ht-order:hover { transform: translateY(-2px); }
.ht-pcard.ht-featured .ht-order { background: linear-gradient(135deg, #EAB543, #C99A26); color: #082E4A; box-shadow: 0 12px 24px -12px rgba(234,181,67,.8); }
.ht-pcard .ht-hidden { display: none; }

/* ---- error / notice ---- */
#ht-store .alert { border-radius: 14px; padding: 16px 18px; }

/* ---- reveal animation (progressive: hidden only when JS adds html.ht-js) ---- */
html.ht-js .ht-rv { opacity: 0; transform: translateY(26px); }
html.ht-js .ht-rv.ht-on { opacity: 1; transform: translateY(0); transition: opacity .6s cubic-bezier(.22,.61,.36,1), transform .6s cubic-bezier(.22,.61,.36,1); }

@media (prefers-reduced-motion: reduce) {
    #ht-store .ht-pcard, #ht-store .ht-order { transition: none; }
    .ht-rv, .ht-rv.ht-on { opacity: 1 !important; transform: none !important; transition: none; }
}


/* =========================================================
   Store enhancements — floating particles, sheen, tilt, stats
   ========================================================= */
.ht-store-hero { isolation: isolate; }
.ht-store-hero .ht-orb { position: absolute; border-radius: 9999px; pointer-events: none; z-index: 0; }
.ht-store-hero .ht-sheen {
    position: absolute; top: 0; bottom: 0; width: 40%; z-index: 1; pointer-events: none;
    background: linear-gradient(105deg, transparent, rgba(255,255,255,.16), transparent);
    transform: translateX(-120%); animation: htSheen 5.5s ease-in-out infinite;
}
@keyframes htSheen { 0%,55%{ transform: translateX(-120%);} 85%,100%{ transform: translateX(320%);} }
.ht-store-hero .ht-sh-in { z-index: 2; }
.ht-store-hero .ht-stats { display: flex; flex-wrap: wrap; gap: 26px; margin-top: 26px; }
.ht-store-hero .ht-stat { position: relative; padding-left: 14px; }
.ht-store-hero .ht-stat::before { content: ''; position: absolute; left: 0; top: 6px; bottom: 6px; width: 3px; border-radius: 3px; background: var(--hl-secondary, #EAB543); }
.ht-store-hero .ht-stat b { display: block; font-family: var(--hl-heading, Poppins); font-size: 26px; font-weight: 800; color: #fff; line-height: 1; }
.ht-store-hero .ht-stat b em { font-style: normal; color: var(--hl-secondary, #EAB543); }
.ht-store-hero .ht-stat span { display: block; margin-top: 6px; font-size: 12.5px; color: rgba(255,255,255,.72); font-weight: 600; }

.ht-store-trust.ht-stats-trust { background: #fff; border: 1px solid rgba(10,61,97,.08); border-radius: 16px; padding: 10px; gap: 6px; box-shadow: 0 14px 30px -24px rgba(10,61,97,.4); margin-top: 18px; }
.ht-store-trust.ht-stats-trust span { flex: 1 1 130px; justify-content: center; border: 0; box-shadow: none; background: #F8FAFC; border-radius: 11px; padding: 12px; text-align: center; flex-direction: column; gap: 7px; margin: 0; }
.ht-store-trust.ht-stats-trust span i { font-size: 18px; }
.ht-store-trust.ht-stats-trust span b { display: block; font-family: var(--hl-heading, Poppins); font-size: 20px; color: var(--hl-primary, #0A3D61); line-height: 1; }
.ht-store-trust.ht-stats-trust span small { font-size: 11.5px; }

/* card tilt wrapper + features */
.ht-tilt { will-change: transform; transform-style: preserve-3d; }
.ht-tilt .ht-picon, .ht-tilt .ht-order { transform: translateZ(24px); }

.ht-guarantee {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 16px 34px;
    margin-top: 26px; padding: 20px 22px; background: #fff; border: 1px solid rgba(10,61,97,.08);
    border-radius: 18px; box-shadow: 0 16px 34px -26px rgba(10,61,97,.5);
}
.ht-guarantee span { display: inline-flex; align-items: center; gap: 10px; font-size: 13.5px; font-weight: 600; color: #334155; }
.ht-guarantee span i { color: var(--hl-secondary-dark, #C99A26); font-size: 18px; }
.ht-guarantee .ht-g-badge {
    display: inline-flex; align-items: center; gap: 10px; font-family: var(--hl-heading, Poppins);
    font-weight: 800; color: var(--hl-primary, #0A3D61); font-size: 16px;
    background: rgba(10,61,97,.06); padding: 10px 18px; border-radius: 14px;
}
@media (prefers-reduced-motion: reduce) {
    .ht-store-hero .ht-sheen, .ht-store-hero .ht-orb { animation: none !important; }
}
@keyframes htOrbA { 0%,100%{ transform: translate(0,0) scale(1);} 50%{ transform: translate(-24px,20px) scale(1.12);} }
@keyframes htOrbB { 0%,100%{ transform: translate(0,0) scale(1);} 50%{ transform: translate(30px,-26px) scale(1.1);} }

/* =========================================================
   Client-Area Sidebar — professional animated redesign
   Scoped under .sidebar (WHMCS client-area right sidebar).
   ========================================================= */
.ht-side { display: flex; flex-direction: column; gap: 16px; font-family: var(--hl-body, 'Inter', system-ui, sans-serif); }
.ht-side, .ht-side * { box-sizing: border-box; }

.ht-side-panel {
    background: #fff; border: 1px solid rgba(10,61,97,.08) !important; border-radius: 18px;
    overflow: hidden; box-shadow: 0 16px 34px -28px rgba(10,61,97,.5);
}
.ht-side-panel .panel-heading {
    display: flex; align-items: center; gap: 10px; background: linear-gradient(135deg, #0A3D61, #155e92);
    padding: 15px 18px !important; border-bottom: 0;
}
.ht-side-panel .panel-heading i.panel-minimise { color: rgba(255,255,255,.6) !important; font-size: 12px; }
.ht-side-panel .panel-title {
    margin: 0; font-family: var(--hl-heading, 'Poppins'); font-weight: 700; font-size: 15px !important;
    color: #fff !important; display: flex; align-items: center; gap: 9px; flex: 1;
}
.ht-side-panel .panel-title > i:first-child { color: var(--hl-secondary, #EAB543) !important; }
.ht-side-panel .panel-title .badge {
    background: var(--hl-secondary, #EAB543) !important; color: #082E4A !important; font-weight: 700;
}
.ht-side-panel .panel-body { padding: 16px 18px !important; color: #64748B; font-size: 13.5px; }
.ht-side-panel .panel-footer {
    padding: 12px 18px !important; background: #F8FAFC; border-top: 1px solid #EEF2F7; font-size: 13px; color: #64748B;
}

/* ---- animated menu list ---- */
.ht-side-nav { list-style: none; margin: 0 !important; padding: 8px !important; }
.ht-side-nav .ht-side-item {
    position: relative; display: flex; align-items: center; gap: 12px;
    padding: 11px 14px; margin: 2px 0; border-radius: 11px;
    font-size: 13.5px; font-weight: 600; color: #475569; text-decoration: none !important;
    transition: background .18s ease, color .18s ease, padding-left .18s ease;
}
.ht-side-nav .ht-side-item::before {
    content: ''; position: absolute; left: 0; top: 22%; bottom: 22%; width: 3px; border-radius: 3px;
    background: var(--hl-secondary, #EAB543); opacity: 0; transition: opacity .18s ease;
}
.ht-side-nav .ht-side-item:hover { background: rgba(10,61,97,.06); color: var(--hl-primary, #0A3D61); padding-left: 18px; }
.ht-side-nav .ht-side-item:hover::before { opacity: 1; }
.ht-side-nav .ht-side-item.active {
    background: rgba(234,181,67,.14); color: #082E4A;
}
.ht-side-nav .ht-side-item.active::before { opacity: 1; }
.ht-side-nav .ht-side-item.active .sidebar-menu-item-icon,
.ht-side-nav .ht-side-item:hover .sidebar-menu-item-icon { color: var(--hl-primary, #0A3D61); }
.ht-side-nav .ht-side-item .sidebar-menu-item-icon { width: 20px; text-align: center; color: #94a3b8; transition: color .18s ease; }
.ht-side-nav .ht-side-item .ht-side-wr { display: inline-flex; align-items: center; gap: 12px; flex: 1; min-width: 0; }
.ht-side-nav .ht-side-item .badge { margin-left: auto; background: var(--hl-primary, #0A3D61) !important; }
.ht-side-nav .ht-side-item.disabled { opacity: .5; pointer-events: none; }
.ht-side-nav .ht-side-item.disabled,
.ht-side-nav .ht-side-item > span.loading { margin-left: auto; }

/* ---- reveal / stagger animation ---- */
html.ht-js .ht-side-item { opacity: 0; transform: translateX(18px); }
html.ht-js .ht-side-item.ht-on { opacity: 1; transform: translateX(0); transition: opacity .45s cubic-bezier(.22,.61,.36,1), transform .45s cubic-bezier(.22,.61,.36,1); }
@media (prefers-reduced-motion: reduce) {
    html.ht-js .ht-side-item, html.ht-js .ht-side-item.ht-on { opacity: 1 !important; transform: none !important; transition: none; }
}

/* neutralise Bootstrap .list-group-item defaults inside the styled nav */
.ht-side-nav .ht-side-item {
    border: 0 !important; margin: 2px 0 !important; box-shadow: none !important; background: transparent !important;
    border-radius: 11px; line-height: 1.4;
}
.ht-side-nav .ht-side-item:nth-child(n) { border-bottom: 0 !important; }
.ht-side-nav .ht-side-item .ht-side-wr { display: inline-flex; align-items: center; gap: 12px; flex: 1; min-width: 0; }
.ht-side-nav .ht-side-item > .badge { position: static; margin-left: auto; float: none; }
.ht-side-nav .ht-side-item .badge { margin-left: auto; }
.ht-side-nav .ht-side-item::before { position: absolute; }

.ht-side-nav .ht-side-item > .badge { order: 2; margin-left: auto; float: none; display: inline-flex; align-items: center; }
.ht-side-nav .ht-side-item .ht-side-wr { order: 1; }

/* =========================================================
   Store / Orderform Sidebar (Categories) — professional redesign
   Scoped under .cart-sidebar .ht-ostside (standard_cart).
   ========================================================= */
.ht-ostside { display: flex; flex-direction: column; gap: 16px; font-family: var(--hl-body, 'Inter', system-ui, sans-serif); }
.ht-ostside, .ht-ostside * { box-sizing: border-box; }

.ht-ost-panel {
    background: #fff !important; border: 1px solid rgba(10,61,97,.08) !important; border-radius: 18px;
    overflow: hidden; box-shadow: 0 16px 34px -28px rgba(10,61,97,.5); margin-bottom: 0;
}
.ht-ost-panel .panel-heading {
    display: flex; align-items: center; gap: 10px; background: linear-gradient(135deg, #0A3D61, #155e92) !important;
    padding: 15px 18px !important; border-bottom: 0; border-radius: 0;
}
.ht-ost-panel .panel-heading i.card-minimise { color: rgba(255,255,255,.6) !important; font-size: 12px; }
.ht-ost-panel .panel-title {
    margin: 0; font-family: var(--hl-heading, 'Poppins'); font-weight: 700; font-size: 15px !important;
    color: #fff !important; display: flex; align-items: center; gap: 9px; flex: 1;
}
.ht-ost-panel .panel-title > i:first-child { color: var(--hl-secondary, #EAB543) !important; }
.ht-ost-panel .panel-title .badge { background: var(--hl-secondary, #EAB543) !important; color: #082E4A !important; font-weight: 700; }
.ht-ost-panel .card-body { padding: 16px 18px !important; color: #64748B; font-size: 13.5px; }
.ht-ost-panel .card-footer { padding: 12px 18px !important; background: #F8FAFC; border-top: 1px solid #EEF2F7; font-size: 13px; color: #64748B; }

/* ---- animated category list ---- */
.ht-ostnav { list-style: none; margin: 0 !important; padding: 8px !important; }
.ht-ostnav .ht-ost-item {
    position: relative; display: flex; align-items: center; gap: 12px;
    padding: 12px 14px; margin: 2px 0; border-radius: 12px;
    font-size: 13.5px; font-weight: 600; color: #475569; text-decoration: none !important;
    transition: background .18s ease, color .18s ease, padding-left .18s ease;
}
.ht-ostnav .ht-ost-item::before {
    content: ''; position: absolute; left: 0; top: 24%; bottom: 24%; width: 3px; border-radius: 3px;
    background: var(--hl-secondary, #EAB543); opacity: 0; transition: opacity .18s ease;
}
.ht-ostnav .ht-ost-item:hover { background: rgba(10,61,97,.06); color: var(--hl-primary, #0A3D61); padding-left: 18px; }
.ht-ostnav .ht-ost-item:hover::before { opacity: 1; }
.ht-ostnav .ht-ost-item.active { background: rgba(234,181,67,.16); color: #082E4A; }
.ht-ostnav .ht-ost-item.active::before { opacity: 1; }
.ht-ostnav .ht-ost-icon {
    display: grid; place-items: center; width: 34px; height: 34px; border-radius: 10px; flex-shrink: 0;
    background: rgba(10,61,97,.08); color: var(--hl-primary, #0A3D61); font-size: 15px; transition: background .18s ease, color .18s ease;
}
.ht-ostnav .ht-ost-item.active .ht-ost-icon { background: var(--hl-primary, #0A3D61); color: #fff; }
.ht-ostnav .ht-ost-item:hover .ht-ost-icon { background: var(--hl-primary, #0A3D61); color: #fff; }
.ht-ostnav .ht-ost-label { flex: 1; min-width: 0; }
.ht-ostnav .ht-ost-arrow { opacity: 0; transform: translateX(-6px); transition: opacity .18s ease, transform .18s ease; color: var(--hl-secondary-dark, #C99A26); font-size: 13px; }
.ht-ostnav .ht-ost-item:hover .ht-ost-arrow { opacity: 1; transform: translateX(0); }
.ht-ostnav .ht-ost-item .badge { margin-left: auto; background: var(--hl-primary, #0A3D61) !important; }
.ht-ostnav .ht-ost-item.disabled { opacity: .5; pointer-events: none; }
.ht-ostnav .ht-ost-item { border: 0 !important; box-shadow: none !important; background: transparent !important; }

/* ---- reveal / stagger ---- */
html.ht-js .ht-ost-item { opacity: 0; transform: translateX(20px); }
html.ht-js .ht-ost-item.ht-on { opacity: 1; transform: translateX(0); transition: opacity .45s cubic-bezier(.22,.61,.36,1), transform .45s cubic-bezier(.22,.61,.36,1); }
@media (prefers-reduced-motion: reduce) {
    html.ht-js .ht-ost-item, html.ht-js .ht-ost-item.ht-on { opacity: 1 !important; transform: none !important; transition: none; }
}

/* =========================================================
   Store / Orderform Sidebar — ENHANCED professional + animation
   (overrides for .cart-sidebar .ht-ostside, standard_cart store pages)
   ========================================================= */
.ht-ostside { position: relative; font-family: var(--hl-body, 'Inter', system-ui, sans-serif); }
.ht-ostside, .ht-ostside * { box-sizing: border-box; }

/* ---- entrance stagger (plays once on load; inline animation-delay = natural stagger) ---- */
.ht-ostnav .ht-ost-item {
    animation: htost-in .55s cubic-bezier(.22,.61,.36,1) both;
    will-change: transform, opacity;
}
@keyframes htost-in {
    0%   { opacity: 0; transform: translateX(18px) scale(.97); }
    100% { opacity: 1; transform: translateX(0) scale(1); }
}

/* ---- premium panel cards ---- */
.ht-ost-panel {
    position: relative; overflow: hidden;
    border-radius: 18px !important;
    background: #fff !important;
    border: 1px solid rgba(10,61,97,.08) !important;
    box-shadow: 0 18px 40px -30px rgba(10,61,97,.55);
}
.ht-ost-panel::before {
    content: ""; position: absolute; left: -40%; top: 0; bottom: 0; width: 28%;
    background: linear-gradient(105deg, rgba(255,255,255,.28), rgba(255,255,255,0));
    transform: skewX(-20deg); transition: left .8s ease; z-index: 2; pointer-events: none;
}
.ht-ost-panel:hover::before { left: 130%; }

/* ---- animated header accent ---- */
.ht-ost-panel .panel-heading {
    position: relative; overflow: hidden;
    background: linear-gradient(135deg, #0A3D61 0%, #0E4A75 55%, #125a90 100%) !important;
    padding: 16px 18px !important;
}
.ht-ost-panel .panel-heading::after {
    content: ""; position: absolute; left: 0; bottom: 0; height: 3px;
    background: linear-gradient(90deg, var(--hl-secondary,#EAB543), #3B82F6, var(--hl-secondary,#EAB543));
    background-size: 200% 100%; animation: htost-hdrflow 4s linear infinite; width: 100%;
}
.ht-ost-panel .panel-heading .panel-title {
    font-size: 15px !important; font-weight: 800; letter-spacing: .01em;
}
.ht-ost-panel .panel-heading .panel-title > i:first-child {
    animation: htost-icbounce 2.4s ease-in-out infinite;
}
@keyframes htost-hdrflow { 0%{background-position:0% 0;} 100%{background-position:200% 0;} }
@keyframes htost-icbounce { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-2px);} }

/* ---- nav items ---- */
.ht-ostnav { padding: 10px 8px !important; }
.ht-ostnav .ht-ost-item {
    position: relative; gap: 13px; padding: 12px 14px; margin: 3px 0;
    border-radius: 13px !important; border: 0 !important; box-shadow: none !important;
    font-size: 13.5px; font-weight: 600; color: #4B5563;
    overflow: hidden; transition: color .2s ease, background .2s ease;
}
.ht-ostnav .ht-ost-item::before {
    content: ""; left: 0; top: 50%; translate: 0 -50%; width: 4px; height: 0; border-radius: 4px;
    background: linear-gradient(180deg, var(--hl-secondary,#EAB543), #F5D77E); opacity: 0; transition: height .25s ease, opacity .25s ease;
}
.ht-ostnav .ht-ost-item::after {
    content: ""; position: absolute; inset: 0; border-radius: 13px; z-index: -1; opacity: 0;
    background: linear-gradient(120deg, rgba(234,181,67,.14), rgba(14,74,117,.08)); transition: opacity .25s ease;
}
.ht-ostnav .ht-ost-item:hover { color: var(--hl-primary,#0A3D61); background: transparent !important; }
.ht-ostnav .ht-ost-item:hover::before { height: 16px; opacity: 1; }
.ht-ostnav .ht-ost-item:hover::after { opacity: 1; }

.ht-ostnav .ht-ost-icon {
    width: 36px; height: 36px; border-radius: 11px;
    background: linear-gradient(135deg, rgba(10,61,97,.09), rgba(10,61,97,.04));
    border: 1px solid rgba(10,61,97,.08); color: var(--hl-primary,#0A3D61);
    transition: transform .3s cubic-bezier(.22,.61,.36,1), background .2s, color .2s, box-shadow .25s;
}
.ht-ostnav .ht-ost-item:hover .ht-ost-icon { transform: scale(1.08) rotate(-4deg); background: var(--hl-primary,#0A3D61); color: #fff; }

/* ---- active category ---- */
.ht-ostnav .ht-ost-item.active {
    color: #082E4A;
    background: linear-gradient(120deg, rgba(234,181,67,.22), rgba(234,181,67,.06)) !important;
    box-shadow: inset 0 0 0 1px rgba(234,181,67,.55), 0 10px 22px -16px rgba(234,181,67,.7) !important;
}
.ht-ostnav .ht-ost-item.active::before { height: 22px; opacity: 1; }
.ht-ostnav .ht-ost-item.active .ht-ost-icon {
    background: linear-gradient(135deg, #0A3D61, #155e92); color: var(--hl-secondary,#EAB543);
    box-shadow: 0 8px 18px -8px rgba(10,61,97,.65); transform: scale(1.06);
}
.ht-ostnav .ht-ost-item.active .ht-ost-label { font-weight: 800; }
.ht-ostnav .ht-ost-item.active .ht-ost-arrow { opacity: 1; transform: translateX(0); color: #C99A26; }

/* ---- arrow ---- */
.ht-ostnav .ht-ost-arrow { transition: transform .22s ease, opacity .22s ease; }
.ht-ostnav .ht-ost-item:hover .ht-ost-arrow { transform: translateX(3px); }

/* ---- styling for Action panel icons (domain actions) ---- */
.ht-ost-panel .panel-heading [class*="fa-plus"] { color: var(--hl-secondary,#EAB543) !important; }

/* ---- Choose Currency form panel ---- */
.ht-ost-panel .card-body { padding: 16px 18px !important; }
.ht-ost-panel .form-control {
    border-radius: 11px !important; border: 1px solid rgba(10,61,97,.16) !important;
    background: #F8FBFF; padding: 10px 12px; font-weight: 600; color: #0A3D61;
    transition: border-color .2s, box-shadow .2s;
}
.ht-ost-panel .form-control:focus { border-color: var(--hl-secondary,#EAB543) !important; box-shadow: 0 0 0 3px rgba(234,181,67,.18) !important; }

@media (prefers-reduced-motion: reduce) {
    .ht-ostnav .ht-ost-item, .ht-ost-panel .panel-heading::after, .ht-ost-panel::before,
    .ht-ost-panel .panel-heading .panel-title > i:first-child {
        animation: none !important;
    }
}

/* =========================================================
   Fix FA6-only / Pro-only sidebar icons that render blank
   (WordPress Hosting + backup/cloud-arrow icons) — map to
   reliable Font Awesome 5 glyphs present in the served fonts.
   ========================================================= */
/* backup / cloud upload icon -> free solid fa-cloud-upload-alt */
.fa-cloud-arrow-up:before { content: "\f382"; }
/* WordPress Hosting -> free brands wordpress logo (solid glyph absent in free font) */
.fa-wordpress-simple { font-family: "Font Awesome 5 Brands" !important; font-weight: 400 !important; }
.fa-wordpress-simple:before { content: "\f19a"; }

/* =========================================================
   Client-area home panels — professional card redesign + animation
   ========================================================= */
#client-dash .client-home-panels { margin-top: 22px; }
#client-dash .client-home-panels .row { margin: 0 -7px; }
#client-dash .client-home-panels [class*="col-"] { padding-left: 7px; padding-right: 7px; }

.ht-hpanel {
    position: relative; background: #fff; border: 1px solid rgba(10,61,97,.08); border-radius: 18px;
    overflow: hidden; margin-bottom: 18px; box-shadow: 0 16px 36px -28px rgba(10,61,97,.5);
    transition: transform .22s ease, box-shadow .22s ease;
}
.ht-hpanel:hover { transform: translateY(-3px); box-shadow: 0 24px 48px -26px rgba(10,61,97,.55); }

.ht-hp-head {
    display: flex; align-items: center; gap: 12px; padding: 15px 18px;
    background: linear-gradient(135deg, #0A3D61, #155e92);
}
.ht-hp-title {
    flex: 1; margin: 0; display: flex; align-items: center; gap: 10px;
    font-family: var(--hl-heading, 'Poppins'); font-weight: 700; font-size: 15px !important; color: #fff;
}
.ht-hp-title > i:first-child { color: var(--hl-secondary, #EAB543); font-size: 15px; }
.ht-hp-badge { background: var(--hl-secondary, #EAB543) !important; color: #082E4A !important; font-weight: 700; }
.ht-hp-btn {
    display: inline-flex; align-items: center; gap: 6px; padding: 7px 13px; border-radius: 9px;
    font-size: 12px; font-weight: 700; color: #082E4A; background: var(--hl-secondary, #EAB543);
    text-decoration: none !important; transition: transform .18s ease, background .18s ease; white-space: nowrap;
}
.ht-hp-btn:hover { background: #F5D77E; transform: translateY(-1px); }
.ht-hp-btn i { font-size: 11px; }

.ht-hp-body { padding: 14px 18px; color: #475569; font-size: 13.5px; line-height: 1.6; border-bottom: 1px solid #F1F5F9; }
.ht-hp-foot { padding: 12px 18px; background: #F8FAFC; border-top: 1px solid #EEF2F7; font-size: 13px; color: #64748B; }
.ht-hp-foot::after { content: ''; display: block; clear: both; }

/* ---- animated children list ---- */
.ht-hpnav { margin: 0 !important; padding: 8px !important; }
.ht-hplink {
    display: flex; align-items: center; gap: 10px; padding: 12px 14px; margin: 2px 0; border-radius: 12px;
    font-size: 13.5px; font-weight: 600; color: #475569; text-decoration: none !important;
    transition: background .18s ease, color .18s ease, padding-left .18s ease;
}
.ht-hplink:hover { background: rgba(10,61,97,.06); color: var(--hl-primary, #0A3D61); padding-left: 18px; }
.ht-hplink.active { background: rgba(234,181,67,.16); color: #082E4A; }
.ht-hplink .ht-hplink-label { flex: 1; min-width: 0; }
.ht-hplink .ht-hplink-arrow { opacity: 0; transform: translateX(-6px); transition: opacity .18s ease, transform .18s ease; color: var(--hl-secondary-dark, #C99A26); font-size: 12px; }
.ht-hplink:hover .ht-hplink-arrow { opacity: 1; transform: translateX(0); }
.ht-hplink .ht-hp-badge { margin-left: auto; }

/* ---- reveal / stagger ---- */
#client-dash .ht-hpanel { }
html.ht-js #client-dash .client-home-panels .ht-hpanel { opacity: 0; transform: translateY(24px); }
html.ht-js #client-dash .client-home-panels .ht-hpanel.ht-hp-on,
html.ht-js #client-dash .client-home-panels .ht-hpanel.ht-on { opacity: 1; transform: translateY(0); transition: opacity .55s cubic-bezier(.22,.61,.36,1), transform .55s cubic-bezier(.22,.61,.36,1); }
html.ht-js #client-dash .client-home-panels .ht-hplink { opacity: 0; transform: translateX(18px); }
html.ht-js #client-dash .client-home-panels .ht-hplink.ht-hp-on,
html.ht-js #client-dash .client-home-panels .ht-hplink.ht-on { opacity: 1; transform: translateX(0); transition: opacity .45s cubic-bezier(.22,.61,.36,1), transform .45s cubic-bezier(.22,.61,.36,1); }

/* ---- inner WHMCS body markup (services / invoices) ---- */
.ht-hp-body .suspended, .ht-hp-body span.suspended { color: #E11D48; font-weight: 700; }
.ht-hp-body .product, .ht-hp-body .service, .ht-hp-body .item,
.ht-hp-body .invoice { border-bottom: 1px dashed #E5EAF0; padding: 8px 0; }
.ht-hp-body .product:last-child, .ht-hp-body .service:last-child,
.ht-hp-body .item:last-child, .ht-hp-body .invoice:last-child { border-bottom: 0; }
.ht-hp-body a { color: var(--hl-primary, #0A3D61); }
.ht-hp-body a:hover { color: #155e92; }
.ht-hp-body label { font-weight: 600; color: var(--hl-primary, #0A3D61); }

@media (prefers-reduced-motion: reduce) {
    html.ht-js #client-dash .client-home-panels .ht-hpanel,
    html.ht-js #client-dash .client-home-panels .ht-hpanel.ht-hp-on,
    html.ht-js #client-dash .client-home-panels .ht-hplink,
    html.ht-js #client-dash .client-home-panels .ht-hplink.ht-hp-on { opacity: 1 !important; transform: none !important; transition: none; }
}

/* ===== Product Details (clientareaproductdetails.tpl) ===== */
#ht-prod .ht-rv{opacity:0;transform:translateY(26px);transition:opacity .65s cubic-bezier(.22,.61,.36,1),transform .65s cubic-bezier(.22,.61,.36,1)}
html.ht-js #ht-prod .ht-pd-on{opacity:1;transform:none}
#ht-prod .ht-prod-hero{position:relative;overflow:hidden;border-radius:20px;background:linear-gradient(135deg,#0A3D61 0%,#082E4A 55%,#0a2c44 100%);padding:34px 36px;margin-bottom:26px;box-shadow:0 18px 48px rgba(10,61,97,.22);color:#fff}
#ht-prod .ht-prod-hero::before{content:"";position:absolute;top:-60%;right:-10%;width:340px;height:340px;background:radial-gradient(circle,rgba(234,181,67,.28),transparent 62%);pointer-events:none}
#ht-prod .ht-prod-hero::after{content:"";position:absolute;bottom:-70%;left:-6%;width:300px;height:300px;background:radial-gradient(circle,rgba(255,255,255,.10),transparent 60%);pointer-events:none}
#ht-prod .ht-prod-hero-in{position:relative;z-index:1;display:flex;align-items:center;gap:22px;flex-wrap:wrap}
#ht-prod .ht-prod-icon{flex:0 0 auto;width:74px;height:74px;border-radius:18px;display:flex;align-items:center;justify-content:center;background:linear-gradient(135deg,#EAB543,#c99a26);color:#0A3D61;font-size:30px;box-shadow:0 10px 24px rgba(234,181,67,.4)}
#ht-prod .ht-prod-id{flex:1 1 260px;min-width:220px}
#ht-prod .ht-prod-tag{display:inline-block;font:600 12px/1 Inter,sans-serif;letter-spacing:.6px;text-transform:uppercase;color:#EAB543;background:rgba(234,181,67,.14);border:1px solid rgba(234,181,67,.35);border-radius:999px;padding:5px 12px;margin-bottom:10px}
#ht-prod .ht-prod-id h1{margin:0 0 8px;font:700 28px/1.2 Poppins,sans-serif;color:#fff}
#ht-prod .ht-prod-status{display:inline-flex;align-items:center;gap:7px;font:600 13px/1 Inter,sans-serif;padding:6px 13px;border-radius:999px;background:rgba(255,255,255,.10)}
#ht-prod .ht-prod-status i{font-size:8px}
#ht-prod .ht-prod-status-active{color:#7ae0a2}.ht-prod-status-active i{color:#3ddc84}
#ht-prod .ht-prod-status-pending{color:#ffd287}.ht-prod-status-pending i{color:#ffb84d}
#ht-prod .ht-prod-status-suspended{color:#ff9b9b}.ht-prod-status-suspended i{color:#ff6b6b}
#ht-prod .ht-prod-status-terminated,.ht-prod-status-cancelled{color:#c9d6e0}.ht-prod-status-terminated i,.ht-prod-status-cancelled i{color:#8ba3b5}
#ht-prod .ht-prod-actions{flex:0 0 auto;display:flex;gap:12px;flex-wrap:wrap;margin-left:auto}
#ht-prod .ht-prod-btn{display:inline-flex;align-items:center;gap:9px;font:600 14px/1 Inter,sans-serif;color:#0A3D61;background:linear-gradient(135deg,#EAB543,#d9a32f);border-radius:12px;padding:13px 22px;text-decoration:none;box-shadow:0 8px 22px rgba(234,181,67,.4);transition:transform .25s,box-shadow .25s}
#ht-prod .ht-prod-btn:hover{transform:translateY(-2px);box-shadow:0 14px 30px rgba(234,181,67,.5);color:#0A3D61}
#ht-prod .ht-prod-btn-ghost{background:rgba(255,255,255,.10);color:#fff;box-shadow:none;border:1px solid rgba(255,255,255,.28)}
#ht-prod .ht-prod-btn-ghost:hover{background:rgba(255,255,255,.18);color:#fff;box-shadow:none}
#ht-prod .ht-prod-btn-danger{background:rgba(255,107,107,.14);color:#ff9b9b;box-shadow:none;border:1px solid rgba(255,107,107,.4)}
#ht-prod .ht-prod-btn-danger:hover{background:rgba(255,107,107,.24);color:#ffcaca;box-shadow:none;transform:translateY(-2px)}
#ht-prod .ht-prod-btn.disabled,.ht-prod-btn[disabled]{opacity:.45;pointer-events:none}
#ht-prod .ht-prod-meta{position:relative;z-index:1;display:grid;grid-template-columns:repeat(auto-fit,minmax(150px,1fr));gap:0;margin-top:26px;border-top:1px solid rgba(255,255,255,.12);padding-top:20px}
#ht-prod .ht-prod-meta-item{display:flex;flex-direction:column;gap:5px;padding:10px 16px;border-left:1px solid rgba(255,255,255,.10);border-radius:10px;transition:background .25s}
#ht-prod .ht-prod-meta-item:first-child{border-left:0;padding-left:0}
#ht-prod .ht-prod-meta-item:hover{background:rgba(255,255,255,.05)}
#ht-prod .ht-prod-meta-item span{font:500 11px/1 Inter,sans-serif;letter-spacing:.4px;text-transform:uppercase;color:rgba(255,255,255,.58)}
#ht-prod .ht-prod-meta-item b{font:600 15px/1.2 Poppins,sans-serif;color:#fff}
#ht-prod .ht-prod-meta-item b.ht-prod-susp{color:#ff9b9b}

/* tabs rail */
#ht-prod .nav-tabs{border-bottom:2px solid #eaf0f5}
#ht-prod .nav-tabs>li{margin-bottom:-2px}
#ht-prod .nav-tabs>li>a{position:relative;font:600 14px/1 Inter,sans-serif;color:#5b7287;background:transparent;border:0;border-bottom:2px solid transparent;padding:14px 18px;transition:color .25s,border-color .25s}
#ht-prod .nav-tabs>li>a:hover{color:#0A3D61;background:transparent}
#ht-prod .nav-tabs>li.active>a,#ht-prod .nav-tabs>li.active>a:focus,#ht-prod .nav-tabs>li.active>a:hover{border:0;border-bottom:2px solid #EAB543;color:#0A3D61;background:transparent}
#ht-prod .nav-tabs>li>a i{color:#EAB543;margin-right:6px}
#ht-prod .product-details-tab-container{border:1px solid #e6edf3;border-top:0;border-radius:0 0 16px 16px;background:#fff;padding:28px;box-shadow:0 6px 22px rgba(10,61,97,.05)}
#ht-prod .tab-pane>h3{font:700 20px/1.3 Poppins,sans-serif;color:#0A3D61;margin:0 0 16px}
#ht-prod .tab-pane .row{display:flex;align-items:baseline;padding:12px 14px;border-bottom:1px solid #f0f4f8;transition:background .2s,padding-left .2s}
#ht-prod .tab-pane .row:hover{background:#f7fafc;padding-left:20px}
#ht-prod .tab-pane .row strong{font:600 13px/1.4 Inter,sans-serif;color:#44617a}
#ht-prod .tab-pane .row .text-left,#ht-prod .tab-pane .row .col-sm-7{font:500 14px/1.5 Inter,sans-serif;color:#12293c;overflow-wrap:anywhere}
#ht-prod .module-client-area{margin-top:20px}
/* knob / resource usage */
#ht-prod #resourceusage .col-sm-10{padding-top:14px}
#ht-prod .dial-usage,#ht-prod .dial{border:none!important;background:none;font:700 20px/1 Poppins,sans-serif!important;color:#0A3D61!important}
/* downloads / addons cards */
#ht-prod .tab-pane .col-xs-10{margin-top:14px}
#ht-prod .tab-pane .panel{border:1px solid #e6edf3;border-radius:14px;box-shadow:0 8px 22px rgba(10,61,97,.06);overflow:hidden}
#ht-prod .tab-pane .panel-default>.panel-heading{background:linear-gradient(135deg,#0A3D61,#082E4A);color:#fff;font:600 15px/1.3 Inter,sans-serif;border:0;padding:14px 18px}
#ht-prod .tab-pane .panel-default>.panel-heading .pull-right{color:#EAB543;font:600 12px/1 Inter,sans-serif}
#ht-prod .tab-pane .panel-body{font:500 14px/1.6 Inter,sans-serif;color:#223a50}
#ht-prod .tab-pane .panel-footer{background:#f7fafc;border-top:1px solid #e6edf3}
/* change password */
#ht-prod .using-password-strength .control-label{font:600 13px/1.4 Inter,sans-serif;color:#44617a;text-align:right}
#ht-prod .btn-primary{background:linear-gradient(135deg,#EAB543,#d9a32f);border:0;color:#0A3D61;font:600 14px/1.4 Inter,sans-serif;border-radius:10px;padding:10px 20px;box-shadow:0 6px 18px rgba(234,181,67,.35)}
#ht-prod .btn-primary:hover{background:#d9a32f;color:#0A3D61}
#ht-prod .generate-password,#ht-prod input[type=reset]{border:1px solid #d7e1ea;background:#fff;color:#44617a;font:600 13px/1.4 Inter,sans-serif;border-radius:10px;padding:10px 18px}
#ht-prod .generate-password:hover{background:#f7fafc}
@media (max-width:768px){
  #ht-prod .ht-prod-hero{padding:24px}
  #ht-prod .ht-prod-hero-in{gap:16px}
  #ht-prod .ht-prod-actions{width:100%;margin-left:0}
  #ht-prod .ht-prod-btn{flex:1 1 100%;justify-content:center}
  #ht-prod .ht-prod-meta-item{border-left:0;padding-left:0}
  #ht-prod .product-details-tab-container{padding:18px}
  #ht-prod .nav-tabs>li>a{padding:12px 10px;font-size:13px}
  #ht-prod .using-password-strength .control-label{text-align:left}
}

/* ===== Ticket Submit (supportticketsubmit-steptwo.tpl) ===== */
#ht-ticket .ht-tv{opacity:0;transform:translateY(28px);transition:opacity .65s cubic-bezier(.22,.61,.36,1),transform .65s cubic-bezier(.22,.61,.36,1)}
#ht-ticket .ht-tv-on{opacity:1;transform:none}
#ht-ticket{margin-bottom:10px}
#ht-ticket .ht-ticket-hero{position:relative;overflow:hidden;border-radius:20px;background:linear-gradient(135deg,#0A3D61 0%,#082E4A 55%,#0a2c44 100%);padding:36px 40px;margin-bottom:14px;box-shadow:0 18px 48px rgba(10,61,97,.22);color:#fff}
#ht-ticket .ht-ticket-hero::before{content:"";position:absolute;top:-70%;right:-8%;width:360px;height:360px;background:radial-gradient(circle,rgba(234,181,67,.30),transparent 62%);pointer-events:none}
#ht-ticket .ht-ticket-hero::after{content:"";position:absolute;bottom:-75%;left:-5%;width:320px;height:320px;background:radial-gradient(circle,rgba(255,255,255,.10),transparent 60%);pointer-events:none}
#ht-ticket .ht-ticket-hero-in{position:relative;z-index:1;display:flex;align-items:center;gap:24px;flex-wrap:wrap}
#ht-ticket .ht-ticket-icon{flex:0 0 auto;width:84px;height:84px;border-radius:20px;display:flex;align-items:center;justify-content:center;background:linear-gradient(135deg,#EAB543,#c99a26);color:#0A3D61;font-size:34px;box-shadow:0 12px 28px rgba(234,181,67,.4);animation:htFloat 4s ease-in-out infinite}
@keyframes htFloat{0%,100%{transform:translateY(0)}50%{transform:translateY(-7px)}}
#ht-ticket .ht-ticket-hero-txt{flex:1 1 300px}
#ht-ticket .ht-ticket-kicker{display:inline-block;font:600 12px/1 Inter,sans-serif;letter-spacing:.6px;text-transform:uppercase;color:#EAB543;background:rgba(234,181,67,.14);border:1px solid rgba(234,181,67,.35);border-radius:999px;padding:5px 13px;margin-bottom:12px}
#ht-ticket .ht-ticket-hero-txt h1{margin:0 0 8px;font:700 28px/1.2 Poppins,sans-serif;color:#fff}
#ht-ticket .ht-ticket-hero-txt p{margin:0;font:400 14px/1.6 Inter,sans-serif;color:rgba(255,255,255,.72)}
#ht-ticket .ht-ticket-card{position:relative;border:1px solid #e6edf3;border-radius:20px;background:#fff;padding:34px;box-shadow:0 12px 38px rgba(10,61,97,.07)}
#ht-ticket .form-group{margin-bottom:22px}
#ht-ticket label{font:600 13px/1.3 Inter,sans-serif;color:#0A3D61;margin-bottom:8px;display:inline-block}
#ht-ticket .form-control,#ht-ticket select.form-control,#ht-ticket textarea.form-control{height:auto;min-height:44px;border:1.5px solid #d8e3ec;border-radius:12px;padding:11px 15px;font:500 14px/1.5 Inter,sans-serif;color:#12293c;background:#fbfdff;box-shadow:inset 0 1px 3px rgba(10,61,97,.04);transition:border-color .25s,box-shadow .25s,background .25s}
#ht-ticket textarea.form-control{resize:vertical}
#ht-ticket .form-control:focus{border-color:#EAB543;background:#fff;box-shadow:0 0 0 4px rgba(234,181,67,.18);outline:none}
#ht-ticket .form-control[disabled],#ht-ticket .form-control.disabled{background:#eef3f7;border-color:#dbe4ec;color:#5b7287;cursor:not-allowed}
#ht-ticket .markdown-editor{border-radius:12px}
#ht-ticket .well{background:#f7fafc;border:1px dashed #c9d8e4;border-radius:12px}
#ht-ticket .text-muted{font:500 12.5px/1.5 Inter,sans-serif;color:#6b8195}
#ht-ticket .btn{font:600 14px/1.4 Inter,sans-serif;border-radius:11px;padding:12px 24px;transition:transform .25s,box-shadow .25s,background .25s;border:0}
#ht-ticket .btn-primary{background:linear-gradient(135deg,#EAB543,#d9a32f);color:#0A3D61;box-shadow:0 8px 22px rgba(234,181,67,.38)}
#ht-ticket .btn-primary:hover{transform:translateY(-2px);box-shadow:0 14px 30px rgba(234,181,67,.5);color:#0A3D61}
#ht-ticket .btn-default{border:1px solid #d7e1ea;background:#fff;color:#44617a}
#ht-ticket .btn-default:hover{background:#f7fafc;transform:translateY(-2px)}
#ht-ticket .btn-block{display:block;width:100%}
#ht-ticket #customFieldsContainer{margin-top:6px}
#ht-ticket #autoAnswerSuggestions{margin-top:16px}
#ht-ticket .ticket-attachments-message{margin-top:10px}
@media (max-width:768px){
  #ht-ticket .ht-ticket-hero{padding:26px}
  #ht-ticket .ht-ticket-hero-in{gap:16px}
  #ht-ticket .ht-ticket-card{padding:22px}
  #ht-ticket .btn{width:100%}
}

/* ===== Domain Register (domainregister.tpl) ===== */
#ht-domain .ht-dv{opacity:0;transform:translateY(28px);transition:opacity .65s cubic-bezier(.22,.61,.36,1),transform .65s cubic-bezier(.22,.61,.36,1)}
#ht-domain .ht-dv-on{opacity:1;transform:none}
#ht-domain .ht-domain-hero{position:relative;overflow:hidden;border-radius:20px;background:linear-gradient(135deg,#0A3D61 0%,#082E4A 55%,#0a2c44 100%);padding:38px 42px;margin-bottom:20px;box-shadow:0 18px 48px rgba(10,61,97,.22);color:#fff}
#ht-domain .ht-domain-hero::before{content:"";position:absolute;top:-70%;right:-8%;width:380px;height:380px;background:radial-gradient(circle,rgba(234,181,67,.30),transparent 62%);pointer-events:none}
#ht-domain .ht-domain-hero::after{content:"";position:absolute;bottom:-75%;left:-5%;width:330px;height:330px;background:radial-gradient(circle,rgba(255,255,255,.10),transparent 60%);pointer-events:none}
#ht-domain .ht-domain-hero-in{position:relative;z-index:1;display:flex;align-items:center;gap:26px;flex-wrap:wrap}
#ht-domain .ht-domain-icon{flex:0 0 auto;width:88px;height:88px;border-radius:22px;display:flex;align-items:center;justify-content:center;background:linear-gradient(135deg,#EAB543,#c99a26);color:#0A3D61;font-size:38px;box-shadow:0 12px 28px rgba(234,181,67,.4);animation:htDomainSpin 5s ease-in-out infinite}
@keyframes htDomainSpin{0%,100%{transform:rotate(0) scale(1)}50%{transform:rotate(8deg) scale(1.05)}}
#ht-domain .ht-domain-hero-in>div{flex:1 1 300px}
#ht-domain .ht-domain-kicker{display:inline-block;font:600 12px/1 Inter,sans-serif;letter-spacing:.6px;text-transform:uppercase;color:#EAB543;background:rgba(234,181,67,.14);border:1px solid rgba(234,181,67,.35);border-radius:999px;padding:5px 13px;margin-bottom:12px}
#ht-domain .ht-domain-hero h1{margin:0 0 8px;font:700 30px/1.2 Poppins,sans-serif;color:#fff}
#ht-domain .ht-domain-hero p{margin:0;font:400 15px/1.6 Inter,sans-serif;color:rgba(255,255,255,.74);max-width:640px}
/* hide duplicated default title */
#ht-domain .header-lined{display:none}
/* search box */
#ht-domain .domain-checker-container{margin-bottom:26px}
#ht-domain .domain-checker-bg{position:relative;border-radius:18px;background:linear-gradient(135deg,#f6faff,#eef4fb);border:1px solid #e3ebf3;padding:34px 20px;box-shadow:inset 0 1px 0 #fff,0 10px 34px rgba(10,61,97,.06);overflow:hidden}
#ht-domain .domain-checker-bg::before{content:"";position:absolute;top:-60%;right:-12%;width:300px;height:300px;background:radial-gradient(circle,rgba(234,181,67,.18),transparent 60%);pointer-events:none}
#ht-domain .domain-checker-bg .input-group-box{position:relative;z-index:1}
#ht-domain .domain-checker-bg .form-control{height:60px;border:2px solid #dbe5ee;border-right:0;border-radius:14px 0 0 14px;padding:0 22px;font:500 15px/1.4 Inter,sans-serif;color:#12293c;background:#fff;box-shadow:none}
#ht-domain .domain-checker-bg .form-control:focus{border-color:#EAB543;box-shadow:0 0 0 4px rgba(234,181,67,.15);outline:none}
#ht-domain .domain-checker-bg .input-group-btn .btn,#ht-domain .domain-checker-bg .input-group-append .btn{height:60px;border-radius:0 14px 14px 0;font:600 15px/1.4 Inter,sans-serif;padding:0 30px;letter-spacing:.3px}
#ht-domain .btn-primary{background:linear-gradient(135deg,#EAB543,#d9a32f);border:0;color:#0A3D61;font:600 14px/1.4 Inter,sans-serif;border-radius:11px;box-shadow:0 8px 22px rgba(234,181,67,.35);transition:transform .25s,box-shadow .25s}
#ht-domain .btn-primary:hover{transform:translateY(-2px);box-shadow:0 12px 28px rgba(234,181,67,.45);color:#0A3D61}
/* result headline / add to cart */
#ht-domain .domain-checker-result-headline .btn-add-to-cart{border-radius:11px}
#ht-domain .domain-price .price{font:700 22px/1.2 Poppins,sans-serif;color:#0A3D61}
/* spotlight tlds */
#ht-domain .spotlight-tlds{margin:14px 0 30px}
#ht-domain .spotlight-tld{background:#fff;border:1.5px solid #e6edf3;border-radius:16px;padding:26px 18px;color:#0A3D61;font:700 22px/1.2 Poppins,sans-serif;text-align:center;box-shadow:0 10px 28px rgba(10,61,97,.07);transition:transform .3s,box-shadow .3s,border-color .3s}
#ht-domain .spotlight-tld:hover{transform:translateY(-6px);border-color:#EAB543;box-shadow:0 18px 40px rgba(234,181,67,.22)}
#ht-domain .spotlight-tld .spotlight-tld-sale,#ht-domain .spotlight-tld .spotlight-tld-hot,#ht-domain .spotlight-tld .spotlight-tld-new{color:#0A3D61}
#ht-domain .spotlight-tld .domain-lookup-result .available,#ht-domain .spotlight-tld .domain-lookup-result .price{font:700 20px/1.2 Poppins,sans-serif;color:#EAB543}
#ht-domain .spotlight-tld .btn-add-to-cart{border-radius:10px}
/* featured tld cards */
#ht-domain .featured-tlds-container{margin:10px 0 28px}
#ht-domain .featured-tld{background:#fff;border:1.5px solid #e6edf3;border-radius:16px;padding:22px;text-align:center;box-shadow:0 10px 28px rgba(10,61,97,.06);transition:transform .3s,box-shadow .3s,border-color .3s}
#ht-domain .featured-tld:hover{transform:translateY(-6px);border-color:#EAB543;box-shadow:0 18px 40px rgba(234,181,67,.2)}
#ht-domain .featured-tld .img-container img{max-height:52px;margin:0 auto 12px}
#ht-domain .featured-tld .price{font:700 20px/1.3 Poppins,sans-serif;color:#0A3D61}
#ht-domain h4.font-size-18{font:700 18px/1.3 Poppins,sans-serif;color:#0A3D61;margin:26px 0 14px}
/* tld filters */
#ht-domain .tld-filters a.badge{background:#eef4fb;color:#0A3D61;border:1px solid #dbe5ee;border-radius:999px;font:600 12.5px/1 Inter,sans-serif;padding:8px 15px;transition:all .25s}
#ht-domain .tld-filters a.badge:hover,#ht-domain .tld-filters a.badge.active{background:#0A3D61;color:#fff;border-color:#0A3D61}
/* pricing table */
#ht-domain .bg-white{border:1px solid #e6edf3;border-radius:16px;overflow:hidden;box-shadow:0 10px 30px rgba(10,61,97,.06)}
#ht-domain .tld-pricing-header{background:linear-gradient(135deg,#0A3D61,#082E4A);color:#fff;font:600 13px/1.3 Inter,sans-serif;letter-spacing:.4px}
#ht-domain .tld-pricing-header .tld-column,#ht-domain .tld-pricing-header>div{color:#fff}
#ht-domain .tld-row{transition:background .2s}
#ht-domain .tld-row:hover{background:#f6faff}
#ht-domain .tld-row strong{font:700 15px/1.3 Inter,sans-serif;color:#0A3D61}
#ht-domain .tld-row small{font:500 12.5px/1.4 Inter,sans-serif;color:#5b7287}
#ht-domain .tld-sale-group{border-radius:999px;padding:3px 10px;font-size:11px}
/* promo boxes */
#ht-domain .domain-promo-box{background:#fff;border:1.5px solid #e6edf3;border-radius:18px;padding:30px;box-shadow:0 12px 34px rgba(10,61,97,.07);transition:transform .3s,box-shadow .3s}
#ht-domain .domain-promo-box:hover{transform:translateY(-6px);box-shadow:0 20px 44px rgba(10,61,97,.14)}
#ht-domain .domain-promo-box i.fa-4x{color:#EAB543;margin-bottom:14px}
#ht-domain .domain-promo-box h3{font:700 24px/1.3 Poppins,sans-serif;color:#0A3D61}
#ht-domain .btn-warning{background:linear-gradient(135deg,#EAB543,#d9a32f);border:0;color:#0A3D61;font:600 14px/1.4 Inter,sans-serif;border-radius:11px;box-shadow:0 8px 20px rgba(234,181,67,.35)}
/* suggestions */
#ht-domain .domain-suggestion.list-group-item{border:1px solid #e6edf3;border-radius:12px;margin-bottom:8px}
#ht-domain .domain-suggestion .btn-add-to-cart{border-radius:10px}
@media (max-width:768px){
  #ht-domain .ht-domain-hero{padding:26px}
  #ht-domain .ht-domain-hero-in{gap:16px}
  #ht-domain .domain-checker-bg{padding:24px 12px}
  #ht-domain .domain-checker-bg .form-control,#ht-domain .domain-checker-bg .input-group-btn .btn{height:52px}
}

/* ===== Markdown editor toolbar (bootstrap-markdown) ===== */
.md-editor{border:1.5px solid #d8e3ec;border-radius:14px;overflow:hidden;background:#fff;box-shadow:0 8px 24px rgba(10,61,97,.06)}
.md-editor.active{border-color:#EAB543;box-shadow:0 0 0 4px rgba(234,181,67,.18)}
.md-editor>.md-header{background:#f2f7fc;border-bottom:1px solid #e3ebf3;padding:7px 8px;display:flex;flex-wrap:wrap;gap:4px;align-items:center}
.md-editor>.md-header .btn-group{margin:0;display:inline-flex}
.md-editor>.md-header .md-controls{margin-left:auto;float:none;display:inline-flex;padding:3px}
.md-editor>.md-header .btn-group+.btn-group::before{content:"";width:1px;align-self:stretch;background:rgba(10,61,97,.14);margin:5px 8px}
.md-editor>.md-header .btn{border:0;background:transparent;color:#44617a;border-radius:8px;padding:7px 10px;line-height:1;transition:background .2s,color .2s,transform .2s}
.md-editor>.md-header .btn:hover{background:#e3ecf4;color:#0A3D61;transform:translateY(-1px)}
.md-editor>.md-header .btn-primary{background:linear-gradient(135deg,#EAB543,#d9a32f);color:#0A3D61;font:600 13px/1.4 Inter,sans-serif;box-shadow:0 4px 14px rgba(234,181,67,.32)}
.md-editor>.md-header .btn-primary:hover{color:#0A3D61;background:#d9a32f}
.md-editor>.md-header .btn .glyphicon{font-size:14px}
.md-editor>.md-header .btn-open-modal{color:#44617a}
.md-editor>.md-header .btn-open-modal:hover{background:#e3ecf4;color:#0A3D61}
.md-editor>.md-header .md-control,#ht-ticket .md-control,#ht-prod .md-control{color:#9fb2c2}
.md-editor>.md-header .md-control:hover{color:#0A3D61}
.md-editor>textarea,.md-editor>.md-input{border:0;border-radius:0;background:#fff;font:500 14px/1.6 Menlo,Monaco,Consolas,"Courier New",monospace;color:#223a50;padding:16px}
.md-editor>textarea:focus{background:#fff}
.md-editor>.md-preview{border-top:1px solid #e3ebf3;background:#fff;padding:16px;font:400 15px/1.7 Inter,sans-serif;color:#223a50}
/* map glyphicon -> Font Awesome 5 icons */
.md-editor .md-header .glyphicon, .md-editor>.md-header .glyphicon{display:inline-block;font-family:"Font Awesome 5 Pro";font-weight:900;-webkit-font-smoothing:antialiased;font-style:normal;text-rendering:auto}
.md-editor .glyphicon-bold::before{content:"\f032"}
.md-editor .glyphicon-italic::before{content:"\f033"}
.md-editor .glyphicon-header::before{content:"\f1dc"}
.md-editor .glyphicon-link::before{content:"\f0c1"}
.md-editor .glyphicon-picture::before{content:"\f03e"}
.md-editor .glyphicon-list::before{content:"\f0ca"}
.md-editor .glyphicon-th-list::before{content:"\f0cb"}
.md-editor .glyphicon-console::before{content:"\f121"}
.md-editor .glyphicon-comment::before{content:"\f10d"}
.md-editor .glyphicon-search::before{content:"\f002"}
.md-editor .glyphicon-fullscreen::before{content:"\f065"}
/* fullscreen mode */
.md-editor.md-fullscreen-mode{background:#fff!important;border-radius:0;box-shadow:none}
.md-editor.md-fullscreen-mode>.md-header{background:#f2f7fc}
.md-editor.md-fullscreen-mode>.md-header .btn{border:0;background:transparent;color:#44617a}
.md-editor.md-fullscreen-mode>.md-header .btn:hover{color:#0A3D61;background:#e3ecf4}

/* ===== Domain Transfer (domaintransfer.tpl) ===== */
#ht-transfer .ht-xv{opacity:0;transform:translateY(28px);transition:opacity .65s cubic-bezier(.22,.61,.36,1),transform .65s cubic-bezier(.22,.61,.36,1)}
#ht-transfer .ht-xv-on{opacity:1;transform:none}
#ht-transfer .ht-transfer-hero{position:relative;overflow:hidden;border-radius:20px;background:linear-gradient(135deg,#0A3D61 0%,#082E4A 55%,#0a2c44 100%);padding:38px 42px;margin-bottom:14px;box-shadow:0 18px 48px rgba(10,61,97,.22);color:#fff}
#ht-transfer .ht-transfer-hero::before{content:"";position:absolute;top:-70%;right:-8%;width:380px;height:380px;background:radial-gradient(circle,rgba(234,181,67,.30),transparent 62%);pointer-events:none}
#ht-transfer .ht-transfer-hero::after{content:"";position:absolute;bottom:-75%;left:-5%;width:330px;height:330px;background:radial-gradient(circle,rgba(255,255,255,.10),transparent 60%);pointer-events:none}
#ht-transfer .ht-transfer-hero-in{position:relative;z-index:1;display:flex;align-items:center;gap:26px;flex-wrap:wrap}
#ht-transfer .ht-transfer-icon{flex:0 0 auto;width:88px;height:88px;border-radius:22px;display:flex;align-items:center;justify-content:center;background:linear-gradient(135deg,#EAB543,#c99a26);color:#0A3D61;font-size:38px;box-shadow:0 12px 28px rgba(234,181,67,.4);animation:htTransferSlide 3.4s ease-in-out infinite}
@keyframes htTransferSlide{0%,100%{transform:translateX(0)}50%{transform:translateX(8px)}}
#ht-transfer .ht-transfer-hero-in>div{flex:1 1 300px}
#ht-transfer .ht-transfer-kicker{display:inline-block;font:600 12px/1 Inter,sans-serif;letter-spacing:.6px;text-transform:uppercase;color:#EAB543;background:rgba(234,181,67,.14);border:1px solid rgba(234,181,67,.35);border-radius:999px;padding:5px 13px;margin-bottom:12px}
#ht-transfer .ht-transfer-hero h1{margin:0 0 8px;font:700 30px/1.2 Poppins,sans-serif;color:#fff}
#ht-transfer .ht-transfer-hero p{margin:0;font:400 15px/1.6 Inter,sans-serif;color:rgba(255,255,255,.74)}
/* hide duplicated default title */
#ht-transfer .header-lined{display:none}
/* transfer card */
#ht-transfer form .panel{position:relative;border:1.5px solid #e6edf3;border-radius:18px;box-shadow:0 12px 34px rgba(10,61,97,.07);overflow:hidden}
#ht-transfer form .panel>.panel-heading{background:linear-gradient(135deg,#0A3D61,#082E4A);color:#fff;border:0;padding:18px 22px}
#ht-transfer form .panel-title{font:700 20px/1.3 Poppins,sans-serif;color:#fff;margin:0}
#ht-transfer form .panel-body{padding:26px 28px}
#ht-transfer form label{font:600 13px/1.3 Inter,sans-serif;color:#0A3D61;margin-bottom:8px}
#ht-transfer form .form-control{height:52px;border:1.5px solid #d8e3ec;border-radius:12px;padding:0 16px;font:500 14px/1.5 Inter,sans-serif;color:#12293c;background:#fbfdff;box-shadow:inset 0 1px 3px rgba(10,61,97,.04);transition:border-color .25s,box-shadow .25s,background .25s}
#ht-transfer form .form-control:focus{border-color:#EAB543;background:#fff;box-shadow:0 0 0 4px rgba(234,181,67,.18);outline:none}
#ht-transfer form .form-control::placeholder{color:#9fb2c2}
#ht-transfer form .panel-footer{background:#f7fafc;border-top:1px solid #e6edf3;padding:16px 22px}
#ht-transfer form .btn-primary{background:linear-gradient(135deg,#EAB543,#d9a32f);border:0;color:#0A3D61;font:600 15px/1.4 Inter,sans-serif;border-radius:12px;padding:13px 34px;box-shadow:0 8px 22px rgba(234,181,67,.38);transition:transform .25s,box-shadow .25s}
#ht-transfer form .btn-primary:hover{transform:translateY(-2px);box-shadow:0 14px 30px rgba(234,181,67,.5);color:#0A3D61}
#ht-transfer form .pull-right,#ht-transfer form .float-right{color:#0A3D61;font:600 12.5px/1 Inter,sans-serif}
#ht-transfer form .slim-alert{border-radius:12px}
#ht-transfer .ht-transfer-note{font:500 12.5px/1.5 Inter,sans-serif;color:#6b8195}
@media (max-width:768px){
  #ht-transfer .ht-transfer-hero{padding:26px}
  #ht-transfer .ht-transfer-hero-in{gap:16px}
  #ht-transfer form .panel-body{padding:20px}
  #ht-transfer form .btn-primary{width:100%}
}

/* ===== Domain Register ENHANCED (domainregister.tpl) ===== */
/* hero floating orbs */
#ht-domain .ht-domain-orb{position:absolute;border-radius:50%;pointer-events:none;z-index:0}
#ht-domain .ht-domain-orb-1{width:220px;height:220px;top:-70px;right:12%;background:radial-gradient(circle,rgba(234,181,67,.35),transparent 62%);animation:htOrbA 11s ease-in-out infinite}
#ht-domain .ht-domain-orb-2{width:150px;height:150px;bottom:-50px;left:8%;background:radial-gradient(circle,rgba(255,255,255,.14),transparent 60%);animation:htOrbB 9s ease-in-out infinite}
#ht-domain .ht-domain-orb-3{width:70px;height:70px;top:34%;left:28%;background:radial-gradient(circle,rgba(234,181,67,.22),transparent 60%);animation:htOrbA 7s ease-in-out infinite}
@keyframes htOrbA{0%,100%{transform:translate(0,0) scale(1)}33%{transform:translate(24px,-18px) scale(1.08)}66%{transform:translate(-16px,14px) scale(.95)}}
@keyframes htOrbB{0%,100%{transform:translate(0,0) scale(1)}40%{transform:translate(-22px,16px) scale(1.1)}70%{transform:translate(18px,-12px) scale(.94)}}
#ht-domain .ht-domain-hero-in{position:relative;z-index:2}
/* feature chips in hero */
#ht-domain .ht-domain-chips{display:flex;gap:10px;flex-wrap:wrap;margin-top:18px}
#ht-domain .ht-domain-chip{display:inline-flex;align-items:center;gap:8px;font:600 12.5px/1 Inter,sans-serif;color:#fff;background:rgba(255,255,255,.10);border:1px solid rgba(255,255,255,.22);border-radius:999px;padding:8px 14px;transition:background .25s,transform .25s,border-color .25s}
#ht-domain .ht-domain-chip i{color:#EAB543}
#ht-domain .ht-domain-chip:hover{background:rgba(255,255,255,.18);transform:translateY(-3px);border-color:rgba(234,181,67,.5)}
/* trust strip */
#ht-domain .ht-domain-trust{display:grid;grid-template-columns:repeat(4,1fr);gap:14px;margin:22px 0 8px}
#ht-domain .ht-domain-trust-item{display:flex;align-items:center;gap:13px;background:#fff;border:1.5px solid #e6edf3;border-radius:15px;padding:18px 20px;box-shadow:0 8px 26px rgba(10,61,97,.06);opacity:0;transform:translateY(22px);transition:opacity .6s cubic-bezier(.22,.61,.36,1),transform .6s cubic-bezier(.22,.61,.36,1),box-shadow .3s,border-color .3s}
#ht-domain .ht-domain-trust-item.ht-trust-on{opacity:1;transform:none}
#ht-domain .ht-domain-trust-item:nth-child(2){transition-delay:.12s}
#ht-domain .ht-domain-trust-item:nth-child(3){transition-delay:.24s}
#ht-domain .ht-domain-trust-item:nth-child(4){transition-delay:.36s}
#ht-domain .ht-domain-trust-item:hover{border-color:#EAB543;box-shadow:0 16px 40px rgba(234,181,67,.2);transform:translateY(-5px)}
#ht-domain .ht-domain-trust-item i{flex:0 0 auto;width:44px;height:44px;border-radius:12px;display:flex;align-items:center;justify-content:center;font-size:19px;color:#0A3D61;background:linear-gradient(135deg,rgba(234,181,67,.25),rgba(234,181,67,.10))}
#ht-domain .ht-domain-trust-item span{display:flex;flex-direction:column;font:500 13px/1.4 Inter,sans-serif;color:#5b7287}
#ht-domain .ht-domain-trust-item b{font:700 14px/1.2 Inter,sans-serif;color:#0A3D61}
/* stagger reveal for cards / rows */
#ht-domain .ht-stagger .featured-tld,#ht-domain .ht-stagger .spotlight-tld,#ht-domain .ht-stagger .tld-row{opacity:0;transform:translateY(22px);transition:opacity .55s cubic-bezier(.22,.61,.36,1),transform .55s cubic-bezier(.22,.61,.36,1),box-shadow .3s,border-color .3s}
#ht-domain .ht-stagger-on .featured-tld,#ht-domain .ht-stagger-on .spotlight-tld,#ht-domain .ht-stagger-on .tld-row{opacity:1;transform:none}
/* search box shine sweep */
#ht-domain .domain-checker-bg{overflow:hidden}
#ht-domain .domain-checker-bg::after{content:"";position:absolute;top:0;left:-80%;width:50%;height:100%;background:linear-gradient(100deg,transparent,rgba(255,255,255,.55),transparent);transform:skewX(-18deg);animation:htSheen 4.2s ease-in-out infinite;pointer-events:none}
@keyframes htSheen{0%{left:-80%}55%{left:130%}100%{left:130%}}
@media (max-width:768px){
  #ht-domain .ht-domain-trust{grid-template-columns:1fr 1fr}
  #ht-domain .ht-domain-chips{gap:8px}
}
@media (max-width:480px){
  #ht-domain .ht-domain-trust{grid-template-columns:1fr}
}

/* ===== Configure Product (configureproduct.tpl) ===== */
#ht-cfg .ht-gv{opacity:0;transform:translateY(28px);transition:opacity .65s cubic-bezier(.22,.61,.36,1),transform .65s cubic-bezier(.22,.61,.36,1)}
#ht-cfg .ht-gv-on{opacity:1;transform:none}
#ht-cfg .ht-cfg-hero{position:relative;overflow:hidden;border-radius:20px;background:linear-gradient(135deg,#0A3D61 0%,#082E4A 55%,#0a2c44 100%);padding:32px 38px;margin-bottom:14px;box-shadow:0 18px 48px rgba(10,61,97,.22);color:#fff}
#ht-cfg .ht-cfg-orb{position:absolute;border-radius:50%;pointer-events:none}
#ht-cfg .ht-cfg-orb-1{width:220px;height:220px;top:-70px;right:10%;background:radial-gradient(circle,rgba(234,181,67,.32),transparent 62%);animation:htOrbA 11s ease-in-out infinite}
#ht-cfg .ht-cfg-orb-2{width:150px;height:150px;bottom:-55px;left:6%;background:radial-gradient(circle,rgba(255,255,255,.13),transparent 60%);animation:htOrbB 9s ease-in-out infinite}
#ht-cfg .ht-cfg-hero-in{position:relative;z-index:1;display:flex;align-items:center;gap:22px;flex-wrap:wrap}
#ht-cfg .ht-cfg-icon{flex:0 0 auto;width:72px;height:72px;border-radius:18px;display:flex;align-items:center;justify-content:center;font-size:30px;color:#0A3D61;background:linear-gradient(135deg,#EAB543,#c99a26);box-shadow:0 10px 24px rgba(234,181,67,.4);animation:htCfgRotate 6s ease-in-out infinite}
@keyframes htCfgRotate{0%,100%{transform:rotate(0)}50%{transform:rotate(-10deg)}}
#ht-cfg .ht-cfg-hero-in>div{flex:1 1 280px}
#ht-cfg .ht-cfg-kicker{display:inline-block;font:600 12px/1 Inter,sans-serif;letter-spacing:.6px;text-transform:uppercase;color:#EAB543;background:rgba(234,181,67,.14);border:1px solid rgba(234,181,67,.35);border-radius:999px;padding:5px 13px;margin-bottom:10px}
#ht-cfg .ht-cfg-hero h1{margin:0 0 6px;font:700 28px/1.2 Poppins,sans-serif;color:#fff}
#ht-cfg .ht-cfg-hero p{margin:0;font:400 14px/1.6 Inter,sans-serif;color:rgba(255,255,255,.72)}
#ht-cfg .header-lined{display:none}
/* sections */
#ht-cfg .sub-heading{background:linear-gradient(135deg,#0A3D61,#082E4A);border-radius:12px;padding:13px 18px;margin:26px 0 16px}
#ht-cfg .sub-heading span{color:#fff;font:600 16px/1.3 Inter,sans-serif}
#ht-cfg .sub-heading span i,small{font-style:normal;color:rgba(255,255,255,.6)}
#ht-cfg .product-info{background:#fff;border:1.5px solid #e6edf3;border-left:4px solid #EAB543;border-radius:14px;padding:20px 22px;margin-bottom:10px;box-shadow:0 8px 26px rgba(10,61,97,.05)}
#ht-cfg .product-info .product-title{font:700 22px/1.3 Poppins,sans-serif;color:#0A3D61;margin:0 0 8px}
#ht-cfg .product-info p:last-child{font:400 14px/1.6 Inter,sans-serif;color:#44617a;margin:0}
#ht-cfg .secondary-cart-body>p{font:400 14px/1.6 Inter,sans-serif;color:#5b7287}
/* form controls */
#ht-cfg .form-group{margin-bottom:20px}
#ht-cfg label{font:600 13px/1.3 Inter,sans-serif;color:#0A3D61;margin-bottom:7px}
#ht-cfg .form-control{height:46px;border:1.5px solid #d8e3ec;border-radius:11px;padding:0 14px;font:500 14px/1.5 Inter,sans-serif;color:#12293c;background:#fbfdff;box-shadow:inset 0 1px 3px rgba(10,61,97,.04);transition:border-color .25s,box-shadow .25s}
#ht-cfg .form-control:focus{border-color:#EAB543;background:#fff;box-shadow:0 0 0 4px rgba(234,181,67,.16);outline:none}
#ht-cfg .field-container{background:#fbfdff;border:1px solid #e6edf3;border-radius:14px;padding:20px}
/* configurable option radios/checks */
#ht-cfg .product-configurable-options .form-group label{display:flex;align-items:flex-start;gap:9px;font-weight:500;cursor:pointer}
#ht-cfg .product-configurable-options input[type=radio],#ht-cfg input[type=checkbox]{accent-color:#EAB543;width:17px;height:17px}
/* addons */
#ht-cfg .addon-products .panel{border:1.5px solid #e6edf3;border-radius:14px;box-shadow:0 8px 24px rgba(10,61,97,.06);overflow:hidden;transition:transform .3s,box-shadow .3s,border-color .3s}
#ht-cfg .addon-products .panel:hover,#ht-cfg .addon-products .panel-addon-selected{border-color:#EAB543;transform:translateY(-4px);box-shadow:0 16px 38px rgba(234,181,67,.2)}
#ht-cfg .addon-products .panel-addon-selected{border-color:#EAB543}
/* alerts */
#ht-cfg .alert{border-radius:12px}
#ht-cfg .alert-warning{background:#fff7e6;border-color:#f5e2b0;color:#8a6d1d}
/* order summary */
#ht-cfg #orderSummary .order-summary{background:#fff;border:1.5px solid #e6edf3;border-top:4px solid #EAB543;border-radius:16px;padding:22px;box-shadow:0 12px 34px rgba(10,61,97,.08)}
#ht-cfg #orderSummary .order-summary h2{font:700 22px/1.2 Poppins,sans-serif;color:#0A3D61;margin:0 0 14px}
#ht-cfg #orderSummary .order-summary .summary-container{font:500 14px/1.6 Inter,sans-serif;color:#223a50}
#ht-cfg #orderSummary .btn-primary{background:linear-gradient(135deg,#EAB543,#d9a32f);border:0;color:#0A3D61;font:600 15px/1.4 Inter,sans-serif;border-radius:12px;padding:14px 34px;box-shadow:0 8px 22px rgba(234,181,67,.38);transition:transform .25s,box-shadow .25s;width:100%}
#ht-cfg #orderSummary .btn-primary:hover{transform:translateY(-2px);box-shadow:0 14px 30px rgba(234,181,67,.5);color:#0A3D61}
@media (max-width:768px){
  #ht-cfg .ht-cfg-hero{padding:24px}
  #ht-cfg .ht-cfg-hero-in{gap:16px}
}

/* ===== View Cart (viewcart.tpl) ===== */
#ht-cart .ht-cv{opacity:0;transform:translateY(28px);transition:opacity .65s cubic-bezier(.22,.61,.36,1),transform .65s cubic-bezier(.22,.61,.36,1)}
#ht-cart .ht-cv-on{opacity:1;transform:none}
#ht-cart .ht-cart-hero{position:relative;overflow:hidden;border-radius:20px;background:linear-gradient(135deg,#0A3D61 0%,#082E4A 55%,#0a2c44 100%);padding:32px 38px;margin-bottom:14px;box-shadow:0 18px 48px rgba(10,61,97,.22);color:#fff}
#ht-cart .ht-cart-orb{position:absolute;border-radius:50%;pointer-events:none}
#ht-cart .ht-cart-orb-1{width:220px;height:220px;top:-70px;right:10%;background:radial-gradient(circle,rgba(234,181,67,.32),transparent 62%);animation:htOrbA 11s ease-in-out infinite}
#ht-cart .ht-cart-orb-2{width:150px;height:150px;bottom:-55px;left:6%;background:radial-gradient(circle,rgba(255,255,255,.13),transparent 60%);animation:htOrbB 9s ease-in-out infinite}
#ht-cart .ht-cart-hero-in{position:relative;z-index:1;display:flex;align-items:center;gap:22px;flex-wrap:wrap}
#ht-cart .ht-cart-icon{flex:0 0 auto;width:72px;height:72px;border-radius:18px;display:flex;align-items:center;justify-content:center;font-size:30px;color:#0A3D61;background:linear-gradient(135deg,#EAB543,#c99a26);box-shadow:0 10px 24px rgba(234,181,67,.4);animation:htCfgRotate 6s ease-in-out infinite}
#ht-cart .ht-cart-hero-in>div{flex:1 1 280px}
#ht-cart .ht-cart-kicker{display:inline-block;font:600 12px/1 Inter,sans-serif;letter-spacing:.6px;text-transform:uppercase;color:#EAB543;background:rgba(234,181,67,.14);border:1px solid rgba(234,181,67,.35);border-radius:999px;padding:5px 13px;margin-bottom:10px}
#ht-cart .ht-cart-hero h1{margin:0 0 6px;font:700 28px/1.2 Poppins,sans-serif;color:#fff}
#ht-cart .ht-cart-hero p{margin:0;font:400 14px/1.6 Inter,sans-serif;color:rgba(255,255,255,.72)}
#ht-cart .header-lined{display:none}
/* items header + rows */
#ht-cart .view-cart-items-header{background:linear-gradient(135deg,#0A3D61,#082E4A);color:#fff;border-radius:12px 12px 0 0;padding:14px 18px;font:600 13px/1.4 Inter,sans-serif;letter-spacing:.3px}
#ht-cart .view-cart-items{overflow:hidden;border-radius:0 0 14px 14px;box-shadow:0 10px 30px rgba(10,61,97,.07)}
#ht-cart .item{opacity:0;transform:translateY(18px);transition:opacity .5s ease,transform .5s ease,background-color .25s,border-color .25s;background:#fff;border:1px solid #e6edf3;border-top:0}
#ht-cart .ht-citem{opacity:1;transform:none}
#ht-cart .item:hover{background:#fbfdff}
#ht-cart .item .item-title{display:block;font:600 15px/1.4 Poppins,sans-serif;color:#0A3D61;margin:2px 0 4px}
#ht-cart .item .item-title a{font:500 12px/1 Inter,sans-serif;color:#c99a26}
#ht-cart .item .item-group,.ht-cart .item .item-domain{display:block;font:400 12px/1.5 Inter,sans-serif;color:#5b7287}
#ht-cart .item .item-domain{color:#0A3D61;font-weight:600}
#ht-cart .item small{font:400 12px/1.7 Inter,sans-serif;color:#77899b}
#ht-cart .item-price{padding:12px 15px}
#ht-cart .item-price span{display:block;font:700 15px/1.4 Poppins,sans-serif;color:#12293c}
#ht-cart .item-price .cycle{font:400 12px/1.5 Inter,sans-serif;color:#77899b}
/* promo tabs */
#ht-cart .view-cart-tabs{margin-top:22px}
#ht-cart .view-cart-tabs .nav-tabs{border-bottom:0}
#ht-cart .view-cart-tabs .nav-tabs .nav-link{border:0;border-radius:12px 12px 0 0;font:600 13px/1.3 Inter,sans-serif;color:#44617a;padding:12px 20px;background:#eef3f8}
#ht-cart .view-cart-tabs .nav-tabs .nav-link.active{color:#0A3D61;background:#fff;box-shadow:0 -6px 20px rgba(10,61,97,.05)}
#ht-cart .view-cart-tabs .tab-content{background:#fff;border:1.5px solid #e6edf3;border-radius:0 14px 14px 14px;padding:22px;box-shadow:0 10px 30px rgba(10,61,97,.06)}
#ht-cart .view-cart-promotion-code{font:600 14px/1.5 Inter,sans-serif;color:#0A3D61;background:#fff7e6;border:1px dashed #EAB543;border-radius:10px;padding:12px 16px;margin-bottom:14px}
#ht-cart .tab-content .form-control{height:46px;border:1.5px solid #d8e3ec;border-radius:11px;font:500 14px/1.5 Inter,sans-serif;color:#12293c;background:#fbfdff}
#ht-cart .tab-content .btn{background:linear-gradient(135deg,#0A3D61,#082E4A);color:#fff;border:0;font:600 13px/1.4 Inter,sans-serif;border-radius:10px;padding:11px 22px}
#ht-cart .tab-content .btn-default{background:linear-gradient(135deg,#EAB543,#d9a32f);color:#0A3D61}
/* order summary */
#ht-cart .secondary-cart-sidebar .order-summary{background:#fff;border:1.5px solid #e6edf3;border-top:4px solid #EAB543;border-radius:16px;padding:22px;box-shadow:0 12px 34px rgba(10,61,97,.08)}
#ht-cart .order-summary h2{font:700 22px/1.2 Poppins,sans-serif;color:#0A3D61;margin:0 0 14px}
#ht-cart .order-summary .summary-container{font:500 13px/1.7 Inter,sans-serif;color:#223a50}
#ht-cart .order-summary .subtotal,#ht-cart .order-summary .bordered-totals{background:#f8fbfe;border-radius:10px;padding:10px 14px;margin-bottom:8px}
#ht-cart .order-summary .bordered-totals #totalDueToday{font-weight:700;color:#0A3D61}
#ht-cart .order-summary .btn-checkout{background:linear-gradient(135deg,#EAB543,#d9a32f);border:0;color:#0A3D61;font:700 16px/1.4 Inter,sans-serif;border-radius:12px;padding:14px 34px;box-shadow:0 8px 22px rgba(234,181,67,.38);transition:transform .25s,box-shadow .25s;width:100%}
#ht-cart .order-summary .btn-checkout:hover:not(.disabled){transform:translateY(-2px);box-shadow:0 14px 30px rgba(234,181,67,.5);color:#0A3D61}
#ht-cart .btn-continue-shopping{color:#0A3D61;font:500 13px/1.4 Inter,sans-serif}
/* alerts */
#ht-cart .alert{border-radius:12px}
@media (max-width:768px){
  #ht-cart .ht-cart-hero{padding:24px}
  #ht-cart .ht-cart-hero-in{gap:16px}
}

/* ===== Checkout (checkout.tpl) ===== */
#ht-checkout .ht-cok{opacity:0;transform:translateY(28px);transition:opacity .65s cubic-bezier(.22,.61,.36,1),transform .65s cubic-bezier(.22,.61,.36,1)}
#ht-checkout .ht-cok-on{opacity:1;transform:none}
#ht-checkout .ht-csec{opacity:0;transform:translateY(20px);transition:opacity .55s ease,transform .55s ease}
#ht-checkout .ht-csec-on{opacity:1;transform:none}
#ht-checkout .ht-checkout-hero{position:relative;overflow:hidden;border-radius:20px;background:linear-gradient(135deg,#0A3D61 0%,#082E4A 55%,#0a2c44 100%);padding:32px 38px;margin-bottom:14px;box-shadow:0 18px 48px rgba(10,61,97,.22);color:#fff}
#ht-checkout .ht-checkout-orb{position:absolute;border-radius:50%;pointer-events:none}
#ht-checkout .ht-checkout-orb-1{width:220px;height:220px;top:-70px;right:10%;background:radial-gradient(circle,rgba(234,181,67,.32),transparent 62%);animation:htOrbA 11s ease-in-out infinite}
#ht-checkout .ht-checkout-orb-2{width:150px;height:150px;bottom:-55px;left:6%;background:radial-gradient(circle,rgba(255,255,255,.13),transparent 60%);animation:htOrbB 9s ease-in-out infinite}
#ht-checkout .ht-checkout-hero-in{position:relative;z-index:1;display:flex;align-items:center;gap:22px;flex-wrap:wrap}
#ht-checkout .ht-checkout-icon{flex:0 0 auto;width:72px;height:72px;border-radius:18px;display:flex;align-items:center;justify-content:center;font-size:30px;color:#0A3D61;background:linear-gradient(135deg,#EAB543,#c99a26);box-shadow:0 10px 24px rgba(234,181,67,.4);animation:htCfgRotate 6s ease-in-out infinite}
#ht-checkout .ht-checkout-hero-in>div{flex:1 1 280px}
#ht-checkout .ht-checkout-kicker{display:inline-block;font:600 12px/1 Inter,sans-serif;letter-spacing:.6px;text-transform:uppercase;color:#EAB543;background:rgba(234,181,67,.14);border:1px solid rgba(234,181,67,.35);border-radius:999px;padding:5px 13px;margin-bottom:10px}
#ht-checkout .ht-checkout-hero h1{margin:0 0 6px;font:700 28px/1.2 Poppins,sans-serif;color:#fff}
#ht-checkout .ht-checkout-hero p{margin:0;font:400 14px/1.6 Inter,sans-serif;color:rgba(255,255,255,.72)}
#ht-checkout .header-lined{display:none}
/* locked buttons */
#ht-checkout .already-registered .btn-info{background:linear-gradient(135deg,#0A3D61,#082E4A);color:#fff;border:0;font:600 13px/1.4 Inter,sans-serif;border-radius:10px;padding:11px 24px}
#ht-checkout .already-registered .btn-warning{background:linear-gradient(135deg,#EAB543,#d9a32f);color:#0A3D61;border:0;font:600 13px/1.4 Inter,sans-serif;border-radius:10px;padding:11px 24px}
#ht-checkout .already-registered p{font:400 14px/1.6 Inter,sans-serif;color:#5b7287}
/* form sections */
#ht-checkout .sub-heading{background:linear-gradient(135deg,#0A3D61,#082E4A);border-radius:12px;padding:13px 18px;margin:26px 0 16px}
#ht-checkout .sub-heading span{color:#fff;font:600 16px/1.3 Inter,sans-serif}
#ht-checkout .sub-heading span i,small{font-style:normal;color:rgba(255,255,255,.6)}
#ht-checkout .field-container{background:#fff;border:1.5px solid #e6edf3;border-radius:16px;padding:24px;box-shadow:0 10px 30px rgba(10,61,97,.06)}
/* inputs */
#ht-checkout .form-group{margin-bottom:20px}
#ht-checkout .form-control{height:48px;border:1.5px solid #d8e3ec;border-radius:11px;padding:0 14px;font:500 14px/1.5 Inter,sans-serif;color:#12293c;background:#fbfdff;box-shadow:inset 0 1px 3px rgba(10,61,97,.04);transition:border-color .25s,box-shadow .25s}
#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 textarea.form-control{height:auto;padding:14px;resize:vertical}
/* account selection */
#ht-checkout .account{background:#fbfdff;border:1.5px solid #e6edf3;border-radius:14px;padding:16px;transition:transform .3s,box-shadow .3s,border-color .3s}
#ht-checkout .account.active,#ht-checkout .account:hover{border-color:#EAB543;transform:translateY(-3px);box-shadow:0 14px 30px rgba(234,181,67,.18)}
#ht-checkout .account strong{font:600 15px/1.4 Poppins,sans-serif;color:#0A3D61}
#ht-checkout .account .small{font:400 13px/1.6 Inter,sans-serif;color:#5b7287}
/* payment + total */
#ht-checkout #totalDueToday{background:linear-gradient(135deg,#0A3D61,#082E4A);color:#fff;border:0;border-radius:14px;padding:20px;font:500 15px/1.5 Inter,sans-serif;box-shadow:0 12px 30px rgba(10,61,97,.2)}
#ht-checkout #totalDueToday strong{font:700 22px/1.2 Poppins,sans-serif;color:#EAB543}
#ht-checkout .payment-methods{accent-color:#EAB543;width:17px;height:17px}
#ht-checkout #paymentGatewaysContainer label{font:500 14px/1.5 Inter,sans-serif;color:#223a50}
#ht-checkout .apply-credit-container{background:#fff7e6;border:1px dashed #EAB543;border-radius:14px;padding:18px 20px}
#ht-checkout .apply-credit-container label{font:500 14px/1.5 Inter,sans-serif;color:#223a50}
/* credit card container */
#ht-checkout .cc-input-container{background:#fff;border:1.5px solid #e6edf3;border-radius:16px;padding:22px;box-shadow:0 10px 30px rgba(10,61,97,.06)}
/* complete order */
#ht-checkout #btnCompleteOrder{background:linear-gradient(135deg,#EAB543,#d9a32f);border:0;color:#0A3D61;font:700 16px/1.4 Inter,sans-serif;border-radius:12px;padding:15px 44px;box-shadow:0 8px 22px rgba(234,181,67,.38);transition:transform .25s,box-shadow .25s}
#ht-checkout #btnCompleteOrder:hover:not(:disabled){transform:translateY(-2px);box-shadow:0 14px 30px rgba(234,181,67,.5);color:#0A3D61}
#ht-checkout .marketing-email-optin{background:#f4f8fb;border:1.5px solid #e6edf3;border-radius:14px;padding:18px 20px}
#ht-checkout .marketing-email-optin h4{font:700 17px/1.3 Poppins,sans-serif;color:#0A3D61}
#ht-checkout .marketing-email-optin p{font:400 13px/1.6 Inter,sans-serif;color:#5b7287}
#ht-checkout .alert{border-radius:12px}
#ht-checkout .checkout-security-msg{border-radius:12px}
@media (max-width:768px){
  #ht-checkout .ht-checkout-hero{padding:24px}
  #ht-checkout .ht-checkout-hero-in{gap:16px}
}
.ht-domopt{display:block}
.ht-domopt .domain-checker-result-headline{font:600 15px/1.5 Inter,sans-serif;border-radius:14px;padding:16px 20px;margin:6px 0 16px;display:flex;align-items:center;gap:10px}
.ht-domopt .domain-checker-available{background:#e9f9f1;border:1.5px solid #b7e6cd;color:#0c7a44}
.ht-domopt .domain-checker-available::before{content:"\f058";font-family:"Font Awesome 5 Pro";font-weight:900;color:#1faf65}
.ht-domopt .domain-checker-unavailable{background:#fff1f1;border:1.5px solid #f5c6c6;color:#b23a3a}
.ht-domopt .domain-checker-unavailable::before{content:"\f05e";font-family:"Font Awesome 5 Pro";font-weight:900;color:#d9534f}
.ht-domopt p.margin-bottom,.ht-domopt p.text-center{font:400 14px/1.6 Inter,sans-serif;color:#5b7287}
.ht-domopt .btn.btn-default,.ht-domopt .btn.btn-lg,.ht-domopt .btn.btn-sm{background:#fff;border:1.5px solid #d8e3ec;color:#0A3D61;font:600 14px/1.4 Inter,sans-serif;border-radius:11px;transition:transform .25s,box-shadow .25s,border-color .25s}
.ht-domopt .btn.btn-default:hover,.ht-domopt .btn.btn-sm:hover{border-color:#EAB543;transform:translateY(-2px);box-shadow:0 10px 24px rgba(234,181,67,.2)}
.ht-domopt .btn-group .btn{border-radius:11px 0 0 11px}
.ht-domopt .btn-group .btn.dropdown-toggle{border-radius:0 11px 11px 0;border-left:0}
.ht-domopt .dropdown-menu{background:#fff;border:1.5px solid #e6edf3;border-radius:12px;box-shadow:0 16px 40px rgba(10,61,97,.14);padding:8px}
.ht-domopt .dropdown-menu>li>a{font:500 13.5px/1.6 Inter,sans-serif;color:#223a50;border-radius:8px;padding:9px 14px}
.ht-domopt .dropdown-menu>li>a:hover{background:#0A3D61;color:#fff}
.ht-domopt .sub-heading{background:linear-gradient(135deg,#0A3D61,#082E4A);border-radius:12px;padding:13px 18px;margin:24px 0 14px}
.ht-domopt .sub-heading span{color:#fff;font:600 16px/1.3 Inter,sans-serif}
.ht-domopt .domain-suggestions .col-sm-6{background:#fbfdff;border:1px solid #e6edf3;border-radius:14px;padding:14px 16px;transition:transform .3s,box-shadow .3s,border-color .3s}
.ht-domopt .domain-suggestions .col-sm-6:hover{border-color:#EAB543;transform:translateY(-3px);box-shadow:0 12px 28px rgba(234,181,67,.16)}
.ht-domopt .domain-suggestions label{font:600 14px/1.5 Inter,sans-serif;color:#0A3D61}
.ht-domopt .domain-suggestions input[type=checkbox]{accent-color:#EAB543;width:16px;height:16px}
.ht-domopt .alert-info{background:#0A3D61;color:#fff;border:0;border-radius:12px;font:500 13px/1.5 Inter,sans-serif;margin-top:6px}
.ht-domopt .alert-info i{color:#EAB543}
.ht-domopt .btn-primary{background:linear-gradient(135deg,#EAB543,#d9a32f);border:0;color:#0A3D61;font:700 16px/1.4 Inter,sans-serif;border-radius:12px;padding:15px 44px;box-shadow:0 8px 22px rgba(234,181,67,.38);transition:transform .25s,box-shadow .25s}
.ht-domopt .btn-primary:hover{transform:translateY(-2px);box-shadow:0 14px 30px rgba(234,181,67,.5);color:#0A3D61}

/* ===== Configure Product blank (configureproduct.tpl) ===== */
.ht-confblank{min-height:60vh;display:flex;align-items:center;justify-content:center;padding:40px 20px}
.ht-confblank-actions{display:flex;gap:16px;flex-wrap:wrap;justify-content:center}
.ht-confblank-btn{display:inline-flex;align-items:center;gap:10px;font:600 15px/1.4 Inter,sans-serif;border-radius:13px;padding:16px 34px;text-decoration:none;transition:transform .25s,box-shadow .25s,background .25s}
.ht-confblank-btn i{font-size:16px}
.ht-confblank-btn-primary{background:linear-gradient(135deg,#EAB543,#d9a32f);color:#0A3D61;box-shadow:0 8px 22px rgba(234,181,67,.38)}
.ht-confblank-btn-primary:hover{transform:translateY(-3px);box-shadow:0 14px 32px rgba(234,181,67,.5);color:#0A3D61;text-decoration:none}
.ht-confblank-btn-ghost{background:#0A3D61;color:#fff;box-shadow:0 8px 22px rgba(10,61,97,.22)}
.ht-confblank-btn-ghost:hover{transform:translateY(-3px);background:#082E4A;color:#fff;box-shadow:0 14px 32px rgba(10,61,97,.34);text-decoration:none}
@media (max-width:480px){
  .ht-confblank-btn{width:100%;justify-content:center}
}

.ht-homeblank{position:relative;min-height:70vh;display:flex;align-items:center;justify-content:center;padding:60px 20px;overflow:hidden;background:radial-gradient(1200px 600px at 50% -10%,rgba(10,61,97,.35),transparent 60%),linear-gradient(160deg,#082E4A 0%,#0A3D61 55%,#0B1220 100%);}

/* ---- animated background ---- */
.ht-home-bg{position:absolute;inset:0;pointer-events:none;}
.ht-hb-grid{position:absolute;inset:0;background-image:linear-gradient(rgba(255,255,255,.05) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.05) 1px,transparent 1px);background-size:56px 56px;mask-image:radial-gradient(650px 420px at 50% 50%,#000 30%,transparent 75%);-webkit-mask-image:radial-gradient(650px 420px at 50% 50%,#000 30%,transparent 75%);animation:ht-grid-move 14s linear infinite;}
@keyframes ht-grid-move{0%{background-position:0 0,0 0;}100%{background-position:0 56px,56px 0;}}
.ht-hb-orb{position:absolute;border-radius:50%;filter:blur(60px);opacity:.55;}
.ht-hb-orb-a{width:420px;height:420px;top:-120px;left:-80px;background:radial-gradient(circle,#0E4A75,transparent 70%);animation:ht-orb-float 11s ease-in-out infinite;}
.ht-hb-orb-b{width:360px;height:360px;bottom:-140px;right:-60px;background:radial-gradient(circle,rgba(234,181,67,.55),transparent 70%);animation:ht-orb-float 13s ease-in-out infinite reverse;}
.ht-hb-orb-c{width:300px;height:300px;top:40%;left:68%;background:radial-gradient(circle,rgba(56,189,248,.4),transparent 70%);animation:ht-orb-float 15s ease-in-out infinite;}
@keyframes ht-orb-float{0%,100%{transform:translate(0,0) scale(1);}50%{transform:translate(30px,26px) scale(1.08);}}
.ht-hb-mote{position:absolute;width:5px;height:5px;border-radius:50%;background:#F5D77E;box-shadow:0 0 10px 2px rgba(234,181,67,.55);animation:ht-mote 4s ease-in-out infinite;animation-delay:var(--d);}
@keyframes ht-mote{0%,100%{opacity:0;transform:translateY(0);}45%{opacity:1;}60%{transform:translateY(-18px);opacity:.6;}80%{opacity:0;transform:translateY(-28px);}}

/* ---- center stage ---- */
.ht-home-center{position:relative;z-index:2;display:flex;flex-direction:column;align-items:center;gap:22px;text-align:center;}
.ht-home-kicker{display:inline-flex;align-items:center;gap:8px;padding:8px 16px;border-radius:999px;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.12);color:#cbd5e1;font-size:13px;font-weight:700;letter-spacing:.08em;text-transform:uppercase;}
.ht-k-pulse{width:8px;height:8px;border-radius:50%;background:#EAB543;animation:ht-pulse 1.6s infinite;}
@keyframes ht-pulse{0%{box-shadow:0 0 0 0 rgba(234,181,67,.55);}70%{box-shadow:0 0 0 12px rgba(234,181,67,0);}100%{box-shadow:0 0 0 0 rgba(234,181,67,0);}}

/* ---- buttons ---- */
.ht-home-btn{position:relative;display:inline-flex;align-items:center;justify-content:center;gap:10px;min-width:240px;padding:16px 38px;border-radius:999px;font-size:16px;font-weight:700;font-family:'Inter',sans-serif;text-decoration:none;cursor:pointer;overflow:hidden;transition:transform .25s cubic-bezier(.2,.8,.3,1.2),box-shadow .25s ease;border:2px solid transparent;}
.ht-home-btn i{font-size:17px;}
.ht-home-btn:active{transform:scale(.96);}
.ht-home-btn-primary{background:linear-gradient(135deg,#F5D77E,#EAB543 55%,#C99A26);color:#082E4A;box-shadow:0 14px 34px -12px rgba(234,181,67,.75);}
.ht-home-btn-primary:hover{transform:translateY(-4px) scale(1.03);box-shadow:0 22px 48px -14px rgba(234,181,67,.9);}
.ht-home-btn-primary .ht-btn-shine{position:absolute;top:0;left:-120%;width:60%;height:100%;background:linear-gradient(100deg,transparent,rgba(255,255,255,.65),transparent);animation:ht-shine 3s 1s infinite;}
@keyframes ht-shine{0%{left:-120%;}55%,100%{left:140%;}}
.ht-home-btn-ghost{background:rgba(255,255,255,.05);color:#fff;border-color:rgba(255,255,255,.35);backdrop-filter:blur(6px);-webkit-backdrop-filter:blur(6px);}
.ht-home-btn-ghost:hover{transform:translateY(-4px) scale(1.03);background:rgba(255,255,255,.14);border-color:#EAB543;color:#F5D77E;box-shadow:0 18px 40px -14px rgba(10,61,97,.8);}

@media (max-width:520px){
  .ht-home-btn{min-width:220px;padding:15px 28px;}
  .ht-home-center{gap:16px;}
}

/* ============================================================

/* ============================================================
   HOSTTILLER � SERVER / NETWORK STATUS PAGE (.ht-status)
   ============================================================ */
.ht-status{font-family:'Inter',system-ui,sans-serif;color:#1E293B;line-height:1.6;-webkit-font-smoothing:antialiased;}
.ht-status *{box-sizing:border-box;}
.ht-status a{text-decoration:none;}

/* ---- hero ---- */
.ht-status-hero{position:relative;overflow:hidden;border-radius:20px;margin-bottom:40px;background:linear-gradient(135deg,#082E4A 0%,#0A3D61 55%,#0B1220 100%);color:#fff;box-shadow:0 30px 60px -24px rgba(10,61,97,.5);}
.ht-status-bg{position:absolute;inset:0;pointer-events:none;}
.htsts-grid{position:absolute;inset:0;background-image:linear-gradient(rgba(255,255,255,.045) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.045) 1px,transparent 1px);background-size:44px 44px;mask-image:radial-gradient(600px 360px at 60% 30%,#000 20%,transparent 75%);-webkit-mask-image:radial-gradient(600px 360px at 60% 30%,#000 20%,transparent 75%);animation:htsts-grid 16s linear infinite;}
@keyframes htsts-grid{0%{background-position:0 0,0 0;}100%{background-position:0 44px,44px 0;}}
.htsts-orb{position:absolute;border-radius:50%;filter:blur(60px);opacity:.5;animation:htsts-orb 12s ease-in-out infinite;}
.htsts-orb-a{width:360px;height:360px;top:-120px;left:-60px;background:radial-gradient(circle,#0E4A75,transparent 70%);}
.htsts-orb-b{width:300px;height:300px;bottom:-120px;right:-40px;background:radial-gradient(circle,rgba(234,181,67,.5),transparent 70%);animation-delay:2s;}
.htsts-orb-c{width:240px;height:240px;top:30%;right:30%;background:radial-gradient(circle,rgba(56,189,248,.4),transparent 70%);animation-delay:4s;}
@keyframes htsts-orb{0%,100%{transform:translate(0,0) scale(1);}50%{transform:translate(28px,22px) scale(1.1);}}
.htsts-wave{position:absolute;left:0;right:0;bottom:-2px;height:80px;opacity:.35;background:repeating-linear-gradient(90deg,#EAB543 0 3px,transparent 3px 16px);animation:htsts-wave 3s linear infinite;}
@keyframes htsts-wave{0%{background-position-x:0;}100%{background-position-x:32px;}}
.ht-status-hero-in{position:relative;z-index:2;padding:48px 40px;}
.htsts-eyebrow{display:inline-flex;align-items:center;gap:8px;padding:8px 16px;border-radius:999px;background:rgba(255,255,255,.07);border:1px solid rgba(255,255,255,.14);color:#cbd5e1;font-size:12px;font-weight:800;letter-spacing:.12em;text-transform:uppercase;}
.htsts-dot{width:8px;height:8px;border-radius:50%;background:#34D399;animation:htsts-pulse 1.6s infinite;}
@keyframes htsts-pulse{0%{box-shadow:0 0 0 0 rgba(52,211,153,.6);}70%{box-shadow:0 0 0 10px rgba(52,211,153,0);}100%{box-shadow:0 0 0 0 rgba(52,211,153,0);}}
.htsts-title{margin:20px 0 0;font-family:'Poppins','Inter',sans-serif;font-size:clamp(1.9rem,4vw,3rem);font-weight:900;line-height:1.1;color:#fff;}
.htsts-title span{background:linear-gradient(90deg,#F5D77E,#EAB543);-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent;}
.htsts-sub{margin:16px 0 0;max-width:34rem;font-size:16px;color:#cbd5e1;}
.htsts-chips{display:flex;flex-wrap:wrap;gap:10px;margin-top:22px;}
.htsts-chip{display:inline-flex;align-items:center;gap:7px;padding:8px 14px;border-radius:999px;background:rgba(255,255,255,.07);border:1px solid rgba(255,255,255,.12);color:#e2e8f0;font-size:13px;font-weight:600;}
.htsts-chip i{color:#EAB543;}

/* ---- body ---- */
.ht-status-body{padding:8px 4px 40px;}
.htsts-sec-head{margin-bottom:20px;}
.htsts-sec-head p{margin:6px 0 0;color:#64748B;font-size:14px;}
.htsts-h2{display:inline-flex;align-items:center;gap:10px;margin:0;font-family:'Poppins','Inter',sans-serif;font-size:22px;font-weight:800;color:#0A3D61;}
.htsts-h2 i{color:#EAB543;font-size:19px;}

/* ---- issues ---- */
.htsts-issues{display:grid;grid-template-columns:1fr;gap:18px;}
.htsts-issue{position:relative;padding:22px 24px;border-radius:16px;background:#fff;border:1px solid #E8EDF3;box-shadow:0 14px 34px -20px rgba(10,61,97,.28);overflow:hidden;animation:htsts-in .55s cubic-bezier(.22,1,.36,1) both;}
.htsts-issue:nth-child(2){animation-delay:.08s;}
.htsts-issue:nth-child(3){animation-delay:.16s;}
.htsts-issue:nth-child(4){animation-delay:.24s;}
.htsts-issue::before{content:"";position:absolute;top:0;left:0;width:5px;height:100%;}
.htsts-issue-warn::before{background:#F59E0B;}
.htsts-issue-info::before{background:#0EA5E9;}
@keyframes htsts-in{0%{opacity:0;transform:translateY(18px);}100%{opacity:1;transform:translateY(0);}}
.htsts-issue-top{display:flex;gap:8px;flex-wrap:wrap;align-items:center;}
.htsts-status-tag{display:inline-flex;align-items:center;gap:5px;padding:5px 12px;border-radius:999px;font-size:12px;font-weight:800;}
.htsts-tag-red{background:#FEE2E2;color:#B91C1C;}
.htsts-tag-orange{background:#FEF3C7;color:#B45309;}
.htsts-tag-green{background:#DCFCE7;color:#15803D;}
.htsts-tag-blue{background:#E0F2FE;color:#0369A1;}
.htsts-tag-muted{background:#F1F5F9;color:#64748B;}
.htsts-issue-title{margin:14px 0 6px;font-family:'Poppins','Inter',sans-serif;font-size:18px;font-weight:800;color:#0A3D61;}
.htsts-issue-meta{margin:0 0 8px;font-size:13px;color:#64748B;}
.htsts-issue-desc{margin:0 0 14px;font-size:14px;color:#475569;}
.htsts-issue-foot{display:flex;flex-wrap:wrap;gap:8px 22px;padding-top:14px;border-top:1px solid #F1F5F9;font-size:13px;color:#64748B;}
.htsts-issue-foot i{color:#EAB543;}

/* ---- all systems ok banner ---- */
.htsts-okbanner{display:flex;align-items:flex-start;gap:16px;padding:24px 26px;border-radius:16px;background:linear-gradient(135deg,#F0FDF4,#ffffff);border:1px solid #BBF7D0;box-shadow:0 14px 34px -22px rgba(22,163,74,.5);animation:htsts-in .5s ease both;}
.htsts-okic{flex-shrink:0;display:grid;place-items:center;width:52px;height:52px;border-radius:14px;background:#22C55E;color:#fff;font-size:22px;box-shadow:0 10px 22px -8px rgba(34,197,94,.6);}
.htsts-okbanner b{font-family:'Poppins','Inter',sans-serif;font-size:17px;color:#15803D;}
.htsts-okbanner p{margin:4px 0 0;font-size:14px;color:#4B5563;}

/* ---- pager ---- */
.htsts-pager{display:flex;gap:12px;margin-top:24px;}
.htsts-btn{display:inline-flex;align-items:center;gap:8px;padding:10px 18px;border-radius:10px;border:1px solid #E2E8F0;background:#fff;color:#0A3D61;font-size:14px;font-weight:700;transition:all .2s ease;}
.htsts-btn:hover{background:#0A3D61;color:#fff;border-color:#0A3D61;}
.htsts-btn.disabled{opacity:.45;pointer-events:none;}

/* ---- server table ---- */
.htsts-table-wrap{overflow-x:auto;border-radius:16px;border:1px solid #E8EDF3;box-shadow:0 18px 40px -24px rgba(10,61,97,.28);background:#fff;}
.htsts-table{width:100%;border-collapse:collapse;min-width:760px;font-size:14px;}
.htsts-table thead th{padding:16px 18px;text-align:left;font-family:'Poppins','Inter',sans-serif;font-size:12px;font-weight:800;text-transform:uppercase;letter-spacing:.08em;color:#64748B;background:#F8FAFC;border-bottom:2px solid #E8EDF3;}
.htsts-table tbody td{padding:16px 18px;border-bottom:1px solid #F1F5F9;vertical-align:middle;}
.htsts-table tbody tr:last-child td{border-bottom:none;}
.htsts-table tbody tr{transition:background .2s ease;}
.htsts-table tbody tr:hover{background:#F8FBFF;}
.htsts-tcenter{text-align:center!important;}
.htsts-server{display:flex;align-items:center;gap:12px;}
.htsts-svr-ic{display:grid;place-items:center;width:40px;height:40px;border-radius:11px;background:linear-gradient(135deg,#0A3D61,#0E4A75);color:#F5D77E;font-size:17px;box-shadow:0 8px 18px -8px rgba(10,61,97,.5);}
.htsts-svr-name{font-weight:700;color:#1E293B;}
.htsts-phpbtn{display:inline-flex;align-items:center;gap:6px;padding:6px 12px;border-radius:8px;background:#F1F5F9;color:#334155;font-size:13px;font-weight:600;transition:all .2s ease;white-space:nowrap;}
.htsts-phpbtn:hover{background:#0A3D61;color:#fff;}
.htsts-phpbtn i{color:#777BB4;}
.htsts-phpbtn:hover i{color:#F5D77E;}
.htsts-loader{display:inline-flex;align-items:center;justify-content:center;}
.htsts-spin{width:20px;height:20px;border-radius:50%;border:2px solid #E2E8F0;border-top-color:#EAB543;animation:htsts-rot .7s linear infinite;display:inline-block;}
@keyframes htsts-rot{to{transform:rotate(360deg);}}
.htsts-no{text-align:center;color:#94A3B8;padding:30px!important;}

/* WHMCS injects status via AJAX into cells - make those indicators pretty */
.htsts-table td span.online{color:#22C55E;}
.htsts-table td span.offline{color:#EF4444;}
.htsts-table td span.unknown{color:#94A3B8;}

/* ============================================================
   HOSTTILLER SERVER STATUS - PROFESSIONAL SERVER CARDS
   ============================================================ */
.htsts-grid-servers{display:grid;grid-template-columns:repeat(auto-fill,minmax(300px,1fr));gap:18px;}

.htsts-card{
  position:relative;overflow:hidden;border-radius:18px;background:#fff;
  border:1px solid #E8EDF3;box-shadow:0 18px 42px -26px rgba(10,61,97,.32);
  padding:20px 20px 16px;display:flex;flex-direction:column;gap:14px;
  transition:transform .3s cubic-bezier(.22,1,.36,1),box-shadow .3s ease,border-color .3s ease;
  animation:htsts-in .55s cubic-bezier(.22,1,.36,1) both;
}
.htsts-card:nth-child(2){animation-delay:.07s;}
.htsts-card:nth-child(3){animation-delay:.14s;}
.htsts-card:nth-child(4){animation-delay:.21s;}
.htsts-card:nth-child(5){animation-delay:.28s;}
.htsts-card:nth-child(6){animation-delay:.35s;}
.htsts-card:hover{transform:translateY(-6px);box-shadow:0 26px 54px -26px rgba(10,61,97,.42);border-color:#EAB543;}

.htsts-card-acc{position:absolute;top:0;left:0;right:0;height:4px;background:linear-gradient(90deg,#0A3D61,#EAB543);}

.htsts-card-head{display:flex;align-items:center;gap:12px;}
.htsts-card-ic{flex-shrink:0;display:grid;place-items:center;width:46px;height:46px;border-radius:13px;background:linear-gradient(135deg,#0A3D61,#0E4A75);color:#F5D77E;font-size:19px;box-shadow:0 10px 22px -10px rgba(10,61,97,.55);}
.htsts-card-id{flex:1;min-width:0;}
.htsts-card-name{display:block;font-family:'Poppins','Inter',sans-serif;font-size:16px;font-weight:800;color:#0A3D61;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}
.htsts-card-sub{display:block;margin-top:2px;font-size:12px;color:#94A3B8;font-weight:600;}
.htsts-card-sub i{color:#EAB543;margin-right:4px;}

.htsts-protos{display:flex;gap:10px;flex-wrap:wrap;}
.htsts-proto{display:inline-flex;align-items:center;gap:6px;padding:5px 11px;border-radius:8px;background:#F1F8FF;border:1px solid #D7E7F7;color:#0E4A75;font-size:12px;font-weight:800;letter-spacing:.02em;}
.htsts-proto i{color:#EAB543;}

.htsts-status-row{display:flex;flex-direction:column;gap:8px;background:#F8FBFF;border:1px solid #EDF2F8;border-radius:12px;padding:12px 14px;}
.htsts-status-slot{display:flex;align-items:center;justify-content:space-between;}
.htsts-status-label{display:inline-flex;align-items:center;gap:7px;font-size:13px;color:#475569;font-weight:600;}
.htsts-status-label i{color:#94A3B8;}
.htsts-status-label em{font-style:normal;display:inline-flex;align-items:center;gap:6px;font-weight:800;font-size:13px;min-width:66px;justify-content:flex-end;}
.htsts-status-label em.st-on{color:#16A34A;}
.htsts-status-label em.st-off{color:#DC2626;}
.htsts-dot{width:9px;height:9px;border-radius:50%;flex-shrink:0;}
.htsts-dot.on{background:#22C55E;animation:htsts-pulse 1.6s infinite;}
.htsts-dot.off{background:#EF4444;box-shadow:0 0 0 0 rgba(239,68,68,.5);}
.htsts-dot.on{background:#22C55E;animation:htsts-pulse 1.6s infinite;}

.htsts-load{display:flex;flex-direction:column;gap:8px;}
.htsts-load-top{display:flex;align-items:center;justify-content:space-between;font-size:13px;color:#475569;font-weight:600;}
.htsts-load-top i{color:#EAB543;margin-right:5px;}
.htsts-load-top b{font-family:'Poppins','Inter',sans-serif;font-size:15px;font-weight:800;color:#0A3D61;}
.htsts-load-track{height:8px;border-radius:999px;background:#EAF1F8;overflow:hidden;position:relative;}
.htsts-load-fill{display:block;height:100%;width:0;border-radius:999px;background:linear-gradient(90deg,#0E4A75,#EAB543);transition:width 1.1s cubic-bezier(.22,1,.36,1);position:relative;}
.htsts-load-fill::after{content:"";position:absolute;inset:0;background:linear-gradient(90deg,transparent,rgba(255,255,255,.45),transparent);transform:translateX(-100%);animation:htsts-shine 2.4s infinite;}
@keyframes htsts-shine{0%{transform:translateX(-100%);}100%{transform:translateX(100%);}}

.htsts-foot{display:flex;align-items:center;justify-content:space-between;padding-top:12px;border-top:1px solid #F1F5F9;margin-top:auto;}
.htsts-foot-label{font-size:12px;color:#94A3B8;font-weight:700;text-transform:uppercase;letter-spacing:.06em;}
.htsts-foot-label i{color:#EAB543;margin-right:5px;}
.htsts-uptime{display:inline-flex;align-items:center;font-family:'Poppins','Inter',sans-serif;font-size:13px;font-weight:800;color:#0E4A75;}

@media (max-width:640px){
  .htsts-grid-servers{grid-template-columns:1fr;}
}

/* ---- uptime live ticker / offline state ---- */
.htsts-uptime{display:inline-flex;align-items:center;gap:6px;font-family:'Poppins','Inter',sans-serif;font-size:13px;font-weight:800;color:#0E4A75;}
.htsts-upic{color:#22C55E;font-size:11px;}
.htsts-uptime.htsts-off{color:#DC2626;font-weight:800;font-size:13px;}
.htsts-uptime.htsts-off .htsts-dot.off{box-shadow:0 0 0 0 rgba(239,68,68,.5);}

/* ============================================================
   HostTiller Login Page — Professional Animated Design
   ============================================================ */
.ht-login-page{
    position:relative;
    min-height:calc(100vh - 64px);
    display:flex;
    align-items:center;
    justify-content:center;
    padding:70px 24px 60px;
    background:#060D1A;
    overflow:hidden;
    font-family:'Inter','Poppins',-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;
}

/* ---- animated background ---- */
.ht-login-bg{position:absolute;inset:0;pointer-events:none;}
.lg-grid{
    position:absolute;inset:0;
    background-image:
        linear-gradient(rgba(148,163,184,.07) 1px,transparent 1px),
        linear-gradient(90deg,rgba(148,163,184,.07) 1px,transparent 1px);
    background-size:44px 44px;
    -webkit-mask-image:radial-gradient(ellipse 70% 60% at 50% 45%,#000 30%,transparent 75%);
            mask-image:radial-gradient(ellipse 70% 60% at 50% 45%,#000 30%,transparent 75%);
    animation:lg-grid-pan 26s linear infinite;
}
@keyframes lg-grid-pan{0%{transform:translate(0,0);}100%{transform:translate(44px,44px);}}

.lg-orb{position:absolute;border-radius:50%;filter:blur(80px);opacity:.5;}
.lg-orb-a{top:-12%;left:-8%;width:46vw;height:46vw;background:radial-gradient(circle,#0E4A75 0%,transparent 70%);animation:lg-float-a 16s ease-in-out infinite;}
.lg-orb-b{bottom:-14%;right:-6%;width:44vw;height:44vw;background:radial-gradient(circle,#1D4ED8 0%,transparent 70%);animation:lg-float-b 19s ease-in-out infinite;}
.lg-orb-c{top:34%;right:26%;width:24vw;height:24vw;background:radial-gradient(circle,rgba(234,181,67,.55) 0%,transparent 70%);opacity:.28;animation:lg-float-c 22s ease-in-out infinite;}
@keyframes lg-float-a{0%,100%{transform:translate(0,0) scale(1);}50%{transform:translate(5vw,4vh) scale(1.08);}}
@keyframes lg-float-b{0%,100%{transform:translate(0,0) scale(1);}50%{transform:translate(-4vw,-5vh) scale(1.06);}}
@keyframes lg-float-c{0%,100%{transform:translate(0,0) rotate(0);}50%{transform:translate(-3vw,3vh) rotate(8deg);}}

.lg-mote{position:absolute;width:5px;height:5px;border-radius:50%;background:#EAB543;opacity:.5;box-shadow:0 0 12px rgba(234,181,67,.8);animation:lg-mote-rise 9s linear infinite;animation-delay:var(--d,0s);}
.lg-mote:nth-of-type(even){background:#60A5FA;box-shadow:0 0 12px rgba(96,165,250,.8);}
@keyframes lg-mote-rise{
    0%{transform:translateY(0) scale(1);opacity:0;}
    8%{opacity:.55;}
    92%{opacity:.45;}
    100%{transform:translateY(-46vh) scale(.4);opacity:0;}
}

.lg-sweep{
    position:absolute;inset:0;
    background:linear-gradient(115deg,transparent 42%,rgba(234,181,67,.06) 50%,transparent 58%);
    transform:translateX(-100%);
    animation:lg-sweep 7s ease-in-out infinite;
}
@keyframes lg-sweep{0%{transform:translateX(-100%);}55%,100%{transform:translateX(100%);}}

/* ---- main panel ---- */
.ht-login-wrap{
    position:relative;z-index:2;
    width:100%;max-width:1040px;
    display:grid;
    grid-template-columns:1.05fr 1fr;
    border-radius:24px;
    overflow:hidden;
    background:rgba(13,27,46,.58);
    border:1px solid rgba(148,163,184,.16);
    box-shadow:0 40px 120px -30px rgba(0,0,0,.75),0 0 0 1px rgba(255,255,255,.03) inset;
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    opacity:0;transform:translateY(34px) scale(.985);
    transition:opacity .9s cubic-bezier(.16,1,.3,1),transform .9s cubic-bezier(.16,1,.3,1);
}
.ht-login-page.lg-ready .ht-login-wrap{opacity:1;transform:translateY(0) scale(1);}

/* ---- hero side ---- */
.ht-login-hero{
    position:relative;
    display:flex;
    align-items:center;
    padding:56px 52px;
    background:
        radial-gradient(120% 120% at 8% 0%,rgba(14,74,117,.75) 0%,rgba(9,36,62,.55) 55%,transparent 100%),
        linear-gradient(160deg,#0B2A47 0%,#06111F 100%);
    border-right:1px solid rgba(148,163,184,.12);
    overflow:hidden;
}
.ht-login-hero::before{
    content:"";position:absolute;top:-60px;right:-60px;width:220px;height:220px;border-radius:50%;
    border:1px solid rgba(234,181,67,.25);animation:lg-ring 9s linear infinite;
}
.ht-login-hero::after{
    content:"";position:absolute;top:-30px;right:-30px;width:120px;height:120px;border-radius:50%;
    border:1px solid rgba(234,181,67,.18);animation:lg-ring 9s linear infinite;animation-delay:.6s;
}
@keyframes lg-ring{0%{transform:rotate(0);}100%{transform:rotate(360deg);}}

.lg-hero-inner{position:relative;z-index:1;max-width:420px;}

.lg-brand{display:inline-flex;align-items:center;gap:12px;text-decoration:none;}
.lg-brand-img{
    display:inline-flex;padding:12px 18px;background:#fff;border-radius:14px;
    box-shadow:0 16px 40px -14px rgba(0,0,0,.6);
}
.lg-logo-img{max-height:46px;width:auto;max-width:240px;display:block;object-fit:contain;}
.lg-brand-badge{
    position:relative;display:grid;place-items:center;width:44px;height:44px;border-radius:13px;
    background:linear-gradient(135deg,#0E4A75,#2563EB);color:#fff;font-family:'Poppins',sans-serif;font-weight:900;font-size:22px;
    box-shadow:0 12px 28px -10px rgba(37,99,235,.9);
}
.lg-brand-badge i{position:absolute;top:-4px;right:-4px;width:14px;height:14px;border-radius:50%;background:#EAB543;border:2px solid #0B2A47;animation:lg-ping 2.4s ease-out infinite;}
@keyframes lg-ping{0%{box-shadow:0 0 0 0 rgba(234,181,67,.55);}70%{box-shadow:0 0 0 9px rgba(234,181,67,0);}100%{box-shadow:0 0 0 0 rgba(234,181,67,0);}}
.lg-brand-text{font-family:'Poppins',sans-serif;font-weight:800;font-size:22px;letter-spacing:-.02em;color:#fff;}
.lg-brand-text em{font-style:normal;color:#EAB543;}

.lg-hero-title{font-family:'Poppins',sans-serif;font-weight:800;font-size:clamp(26px,3.2vw,38px);line-height:1.15;color:#fff;margin:40px 0 14px;letter-spacing:-.02em;}
.lg-dot{color:#EAB543;animation:lg-blink 2s ease-in-out infinite;}
@keyframes lg-blink{0%,100%{opacity:1;}50%{opacity:.25;}}
.lg-hero-sub{color:#A7B8CC;font-size:15px;line-height:1.65;margin:0 0 34px;max-width:400px;}

.lg-features{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:14px;}
.lg-features li{display:flex;align-items:center;gap:12px;color:#E2E8F0;font-size:14px;font-weight:500;
    opacity:0;transform:translateX(-16px);transition:opacity .7s cubic-bezier(.16,1,.3,1) var(--dl,0s),transform .7s cubic-bezier(.16,1,.3,1) var(--dl,0s);}
.lg-features li:nth-child(1){--dl:.35s;}
.lg-features li:nth-child(2){--dl:.5s;}
.lg-features li:nth-child(3){--dl:.65s;}
.ht-login-page.lg-ready .lg-features li{opacity:1;transform:translateX(0);}
.lg-f-icon{
    flex-shrink:0;display:grid;place-items:center;width:36px;height:36px;border-radius:11px;
    background:rgba(234,181,67,.14);color:#EAB543;font-size:14px;
    border:1px solid rgba(234,181,67,.22);transition:transform .3s ease,background .3s ease;
}
.lg-features li:hover .lg-f-icon{transform:scale(1.12) rotate(-6deg);background:rgba(234,181,67,.24);}

.lg-stats{display:flex;gap:34px;margin-top:42px;padding-top:28px;border-top:1px solid rgba(148,163,184,.16);
    opacity:0;transform:translateY(14px);transition:opacity .8s cubic-bezier(.16,1,.3,1) .85s,transform .8s cubic-bezier(.16,1,.3,1) .85s;}
.ht-login-page.lg-ready .lg-stats{opacity:1;transform:translateY(0);}
.lg-stats div{display:flex;flex-direction:column;gap:2px;}
.lg-stats strong{font-family:'Poppins',sans-serif;font-size:21px;font-weight:800;color:#fff;letter-spacing:-.01em;}
.lg-stats span{font-size:12px;color:#8FA3BB;font-weight:500;text-transform:uppercase;letter-spacing:.08em;}

/* ---- card side ---- */
.ht-login-card{background:#F8FAFC;padding:48px 50px;display:flex;align-items:center;}
.lg-card-inner{width:100%;max-width:400px;margin:0 auto;}

.lg-card-head{text-align:center;margin-bottom:30px;
    opacity:0;transform:translateY(18px);transition:opacity .7s cubic-bezier(.16,1,.3,1) .15s,transform .7s cubic-bezier(.16,1,.3,1) .15s;}
.ht-login-page.lg-ready .lg-card-head{opacity:1;transform:translateY(0);}
.lg-avatar{
    display:inline-grid;place-items:center;width:62px;height:62px;margin-bottom:16px;border-radius:20px;
    background:linear-gradient(135deg,#0E4A75,#2563EB);color:#fff;font-size:22px;
    box-shadow:0 16px 36px -12px rgba(37,99,235,.75);
    animation:lg-avatar 5s ease-in-out infinite;
}
@keyframes lg-avatar{
    0%,100%{transform:translateY(0) rotate(0deg);}
    50%{transform:translateY(-7px) rotate(-3deg);}
}
.lg-card-title{font-family:'Poppins',sans-serif;font-size:25px;font-weight:800;color:#0A3D61;margin:0 0 4px;letter-spacing:-.02em;}
.lg-card-sub{color:#8FA3BB;font-size:14px;margin:0;}

.ht-login-form .form-group{margin-bottom:22px;}

/* flash / provider feedback */
.ht-login-card .alert{border-radius:14px;font-size:13px;padding:12px 16px;
    opacity:0;transform:translateY(10px);animation:lg-in .6s cubic-bezier(.16,1,.3,1) .2s forwards;}
@keyframes lg-in{to{opacity:1;transform:translateY(0);}}

.lg-field-wrap{
    margin-bottom:22px;text-align:left;
    opacity:0;transform:translateY(16px);
    transition:opacity .6s cubic-bezier(.16,1,.3,1) .25s,transform .6s cubic-bezier(.16,1,.3,1) .25s;
}
.lg-field-wrap:nth-of-type(2){transition-delay:.35s;}
.ht-login-page.lg-ready .lg-field-wrap{opacity:1;transform:translateY(0);}
.lg-field-wrap label{display:block;font-size:13px;font-weight:600;color:#334155;margin-bottom:8px;letter-spacing:.01em;}

.lg-input-group{position:relative;display:flex;align-items:center;}
.lg-input-icon{position:absolute;left:15px;top:50%;transform:translateY(-50%);color:#94A3B8;font-size:14px;transition:color .3s ease,transform .3s ease;z-index:2;pointer-events:none;}
.lg-input{
    width:100%;padding:13px 44px 13px 44px;border:1.5px solid #E2E8F0;border-radius:12px;
    background:#fff;color:#0F172A;font-size:14px;font-family:'Inter',sans-serif;
    transition:border-color .3s ease,box-shadow .3s ease,transform .3s ease;
    outline:none;
}
.lg-input::placeholder{color:#9AA8BA;}
.lg-input:focus{border-color:#2563EB;box-shadow:0 0 0 4px rgba(37,99,235,.12);transform:translateY(-1px);}
.lg-input-group:focus-within .lg-input-icon{color:#2563EB;transform:translateY(-50%) scale(1.1);}
.lg-input-bar{
    position:absolute;left:44px;right:44px;bottom:0;height:2px;background:#EAB543;border-radius:2px;
    transform:scaleX(0);transform-origin:left;transition:transform .45s cubic-bezier(.16,1,.3,1);pointer-events:none;
}
.lg-input-group:focus-within .lg-input-bar{transform:scaleX(1);}

.lg-eye{
    position:absolute;right:12px;top:50%;transform:translateY(-50%);
    background:none;border:none;padding:6px;color:#94A3B8;cursor:pointer;font-size:14px;z-index:2;
    transition:color .25s ease;line-height:1;
}
.lg-eye:hover{color:#2563EB;}

.lg-row-between{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-bottom:8px;
    opacity:0;transform:translateY(16px);transition:opacity .6s cubic-bezier(.16,1,.3,1) .45s,transform .6s cubic-bezier(.16,1,.3,1) .45s;}
.ht-login-page.lg-ready .lg-row-between{opacity:1;transform:translateY(0);}
.lg-check{display:inline-flex;align-items:center;gap:8px;cursor:pointer;user-select:none;margin:0;}
.lg-check input{position:absolute;opacity:0;pointer-events:none;}
.lg-check-box{
    flex-shrink:0;display:grid;place-items:center;width:20px;height:20px;border-radius:6px;
    border:1.5px solid #CBD5E1;background:#fff;color:#fff;font-size:10px;
    transition:all .25s ease;
}
.lg-check input:checked + .lg-check-box{background:#2563EB;border-color:#2563EB;box-shadow:0 4px 10px -3px rgba(37,99,235,.6);}
.lg-check input:checked + .lg-check-box i{animation:lg-check-pop .35s cubic-bezier(.16,1,.3,1);}
@keyframes lg-check-pop{0%{transform:scale(0);}70%{transform:scale(1.35);}100%{transform:scale(1);}}
.lg-check:hover .lg-check-box{border-color:#2563EB;}
.lg-check-label{font-size:13px;color:#475569;font-weight:500;}
.lg-forgot{font-size:13px;font-weight:600;color:#2563EB;text-decoration:none;transition:color .25s ease;}
.lg-forgot i{font-size:11px;margin-right:4px;}
.lg-forgot:hover{color:#1D4ED8;text-decoration:underline;}

.lg-captcha{
    margin:14px 0 4px;
    opacity:0;transform:translateY(16px);
    transition:opacity .6s cubic-bezier(.16,1,.3,1) .5s,transform .6s cubic-bezier(.16,1,.3,1) .5s;
}
.ht-login-page.lg-ready .lg-captcha{opacity:1;transform:translateY(0);}

.lg-submit{
    position:relative;display:flex;align-items:center;justify-content:center;gap:10px;
    width:100%;margin-top:18px;padding:15px 22px;border:none;border-radius:13px;cursor:pointer;
    background:linear-gradient(135deg,#0E4A75,#2563EB 60%,#1D4ED8);
    color:#fff;font-family:'Poppins',sans-serif;font-size:15px;font-weight:700;letter-spacing:.01em;
    overflow:hidden;isolation:isolate;
    box-shadow:0 18px 38px -14px rgba(37,99,235,.85),0 0 0 1px rgba(255,255,255,.08) inset;
    transition:transform .3s cubic-bezier(.16,1,.3,1),box-shadow .3s ease;
    opacity:0;transform:translateY(16px);
    transition:opacity .6s cubic-bezier(.16,1,.3,1) .55s,transform .6s cubic-bezier(.16,1,.3,1) .55s,box-shadow .3s ease;
}
.ht-login-page.lg-ready .lg-submit{opacity:1;transform:translateY(0);}
.lg-submit:hover{transform:translateY(-3px) scale(1.015);box-shadow:0 24px 48px -14px rgba(37,99,235,.95);}
.lg-submit:active{transform:translateY(0) scale(.985);}
.lg-submit i{font-size:14px;transition:transform .3s ease;}
.lg-submit:hover .lg-submit-arrow{transform:translateX(5px);}
.lg-submit-shine{
    position:absolute;inset:0;z-index:-1;
    background:linear-gradient(115deg,transparent 30%,rgba(255,255,255,.4) 50%,transparent 70%);
    transform:translateX(-120%);transition:none;
}
.lg-submit:hover .lg-submit-shine{animation:lg-btn-shine 1.1s ease;animation-fill-mode:forwards;}
@keyframes lg-btn-shine{0%{transform:translateX(-120%);}100%{transform:translateX(120%);}}

.lg-register{
    display:flex;align-items:center;gap:12px;margin-top:24px;padding-top:22px;border-top:1px dashed #E2E8F0;
    opacity:0;transform:translateY(16px);
    transition:opacity .6s cubic-bezier(.16,1,.3,1) .65s,transform .6s cubic-bezier(.16,1,.3,1) .65s;
}
.ht-login-page.lg-ready .lg-register{opacity:1;transform:translateY(0);}
.lg-register-text{font-size:13px;color:#64748B;font-weight:500;}
.lg-register-btn{
    flex:1;display:flex;align-items:center;justify-content:center;gap:8px;
    padding:11px 18px;border:1.5px solid #CBD5E1;border-radius:11px;
    color:#0A3D61;font-size:13px;font-weight:700;text-decoration:none;background:#fff;
    transition:all .3s ease;
}
.lg-register-btn i{font-size:12px;}
.lg-register-btn:hover{border-color:#2563EB;color:#2563EB;background:#EFF6FF;transform:translateY(-2px);box-shadow:0 10px 22px -10px rgba(37,99,235,.5);}

.lg-social{margin-top:26px;}
.lg-social-divider{display:flex;align-items:center;gap:14px;color:#94A3B8;font-size:12px;font-weight:600;text-transform:uppercase;letter-spacing:.09em;margin-bottom:16px;}
.lg-social-divider::before,.lg-social-divider::after{content:"";flex:1;height:1px;background:#E2E8F0;}
.lg-social .providerLinkingFeedback{display:none;}
.ht-login-card .social-signin-btns{display:flex;flex-direction:column;gap:10px;}
.ht-login-card .social-signin-btns .btn{display:flex;align-items:center;justify-content:center;gap:9px;width:100%;
    padding:11px 16px;border-radius:11px;border:1.5px solid #E2E8F0;background:#fff;color:#334155;font-size:13px;font-weight:600;
    transition:all .3s ease;box-shadow:none;}
.ht-login-card .social-signin-btns .btn:hover{transform:translateY(-2px);border-color:#2563EB;box-shadow:0 10px 22px -10px rgba(37,99,235,.5);}
.ht-login-card .social-signin-btns .btn img,.ht-login-card .social-signin-btns .btn svg{width:16px;height:16px;}
.ht-login-card .btn-google,.ht-login-card .provider-icon{width:100%;}

.lg-footer-note{display:flex;align-items:center;justify-content:center;gap:7px;margin:26px 0 0;color:#94A3B8;font-size:12px;font-weight:500;}
.lg-footer-note i{color:#16A34A;font-size:11px;}

/* hide default page header on this template's login page */
.logincontainer{max-width:none;}

/* full-bleed dark login background */
.container:has(.ht-login-page){max-width:100%;width:100%;padding:0;}
.container:has(.ht-login-page) .row{margin:0;}
.container:has(.ht-login-page) .main-content{padding-top:0;padding-left:0;padding-right:0;}
#main-body:has(.ht-login-page){padding-bottom:0;min-height:0;}

/* ---- responsive ---- */
@media (max-width:900px){
    .ht-login-wrap{grid-template-columns:1fr;max-width:520px;border-radius:22px;}
    .ht-login-hero{display:none;}
    .ht-login-card{padding:44px 34px;}
}
@media (max-width:520px){
    .ht-login-page{padding:56px 16px 48px;}
    .ht-login-card{padding:36px 22px;border-radius:20px;}
    .lg-row-between{flex-direction:column;align-items:flex-start;gap:12px;}
}

/* ============================================================
   HostTiller Register Page — Professional Animated Design
   ============================================================ */
.ht-register-page{
    position:relative;
    min-height:calc(100vh - 130px);
    padding:74px 22px 60px;
    background:#060D1A;
    overflow:hidden;
    font-family:'Inter','Poppins',-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;
}
.main-content:has(.ht-register-page){padding-top:0;}
.main-content:has(.ht-register-page) .page-header{display:none;}
#main-body:has(.ht-register-page){padding-bottom:0;min-height:0;}
.container:has(.ht-register-page){max-width:100%;width:100%;padding:0;}
.container:has(.ht-register-page) > .row{margin:0;}
.container:has(.ht-register-page) > .row > .main-content{padding-left:0;padding-right:0;}

.ht-register-wrap{
    position:relative;z-index:2;
    width:100%;max-width:1040px;margin:0 auto;
    display:grid;grid-template-columns:1.05fr 1fr;
    border-radius:24px;overflow:hidden;
    background:rgba(13,27,46,.58);
    border:1px solid rgba(148,163,184,.16);
    box-shadow:0 40px 120px -30px rgba(0,0,0,.75),0 0 0 1px rgba(255,255,255,.03) inset;
    backdrop-filter:blur(18px);-webkit-backdrop-filter:blur(18px);
    opacity:0;transform:translateY(34px) scale(.985);
    transition:opacity .9s cubic-bezier(.16,1,.3,1),transform .9s cubic-bezier(.16,1,.3,1);
}
.ht-register-page.lg-ready .ht-register-wrap{opacity:1;transform:translateY(0) scale(1);}

/* ---- hero side (mirrors login) ---- */
.ht-rg-hero{
    position:relative;display:flex;align-items:center;
    padding:56px 52px;
    background:
        radial-gradient(120% 120% at 8% 0%,rgba(14,74,117,.75) 0%,rgba(9,36,62,.55) 55%,transparent 100%),
        linear-gradient(160deg,#0B2A47 0%,#06111F 100%);
    border-right:1px solid rgba(148,163,184,.12);
    overflow:hidden;
}
.ht-rg-hero::before{
    content:"";position:absolute;top:-60px;right:-60px;width:220px;height:220px;border-radius:50%;
    border:1px solid rgba(234,181,67,.25);animation:lg-ring 9s linear infinite;
}
.ht-rg-hero::after{
    content:"";position:absolute;top:-30px;right:-30px;width:120px;height:120px;border-radius:50%;
    border:1px solid rgba(234,181,67,.18);animation:lg-ring 9s linear infinite;animation-delay:.6s;
}
.ht-rg-hero .lg-hero-inner{max-width:420px;}
.ht-rg-hero .lg-hero-title{margin-top:36px;}
.ht-rg-hero .lg-hero-sub{margin-bottom:28px;}

.ht-rg-already{
    display:inline-flex;align-items:center;gap:9px;margin-top:32px;
    padding:11px 20px;border-radius:999px;text-decoration:none;
    background:rgba(255,255,255,.05);border:1px solid rgba(148,163,184,.22);color:#E2E8F0;
    font-size:13px;font-weight:600;text-align:left;
    backdrop-filter:blur(6px);-webkit-backdrop-filter:blur(6px);
    transition:all .3s ease;
}
.ht-rg-already:hover{border-color:rgba(234,181,67,.45);color:#fff;transform:translateY(-2px);}
.ht-rg-already i{color:#EAB543;font-size:11px;transition:transform .3s ease;}
.ht-rg-already:hover i{transform:translateX(4px);}

/* hero entrance (mirrors login) */
.ht-register-page:not(.lg-ready) .ht-rg-already{
    opacity:0;transform:translateY(14px);
    transition:opacity .7s cubic-bezier(.16,1,.3,1) .95s,transform .7s cubic-bezier(.16,1,.3,1) .95s;
}
.ht-register-page.lg-ready .lg-features li{opacity:1;transform:translateX(0);}
.ht-register-page.lg-ready .lg-stats{opacity:1;transform:translateY(0);}

/* ---- form side (mirrors login) ---- */
.ht-rg-form{background:#F8FAFC;padding:44px 46px 40px;}
.ht-rg-form .lg-footer-note{color:#64748B;}

/* ---- alerts ---- */
.ht-rg-form .ht-register-alerts{max-width:520px;margin:0 auto 18px;}
.ht-register-alerts .alert{border-radius:14px;font-size:14px;padding:14px 18px;box-shadow:0 12px 30px -14px rgba(0,0,0,.4);}

/* ---- form body ---- */
.ht-register-card{
    position:relative;background:transparent;border:0;box-shadow:none;border-radius:0;
    padding:0;width:100%;max-width:520px;margin:0 auto;
}
.ht-register-card::before{display:none;}
.ht-register-card .providerLinkingFeedback{margin-bottom:8px;}

/* section titles */
.ht-register-page #registration .sub-heading{
    height:auto;border:0;text-align:left;margin:44px 0 4px;padding:0 0 12px;
    position:relative;border-bottom:2px solid #EAF1F8;
    animation:rg-in .6s cubic-bezier(.16,1,.3,1) both;
}
.ht-register-page #registration .sub-heading::after{
    content:"";position:absolute;left:0;bottom:-2px;width:62px;height:3px;border-radius:3px;
    background:linear-gradient(90deg,#0E4A75,#EAB543);
}
.ht-register-page #registration .sub-heading span{
    position:static;padding:0;top:auto;background:none;
    font-family:'Poppins',sans-serif;font-size:16px;font-weight:800;color:#0A3D61;letter-spacing:-.01em;
}
.ht-register-page #registration .sub-heading span i{font-style:normal;font-size:12px;color:#8FA3BB;font-weight:500;}

/* fields */
.ht-register-page #registration .field,
.ht-register-page #registration .form-control{
    height:48px;border:1.5px solid #E2E8F0;border-radius:12px;
    font-size:14px;color:#0F172A;background:#fff;padding:0 42px 0 14px;
    -webkit-box-shadow:none;box-shadow:none;
    transition:border-color .25s ease,box-shadow .25s ease;
}
.ht-register-page #registration .prepend-icon .field{padding-left:44px;}
.ht-register-page #registration .prepend-icon .field-icon{width:44px;height:48px;line-height:48px;}
.ht-register-page #registration .prepend-icon .field-icon i{
    color:#94A3B8;font-size:14px;
    transition:color .25s ease,transform .25s ease;
}
.ht-register-page #registration .form-group:focus-within .field-icon i{color:#2563EB;transform:scale(1.12);}
.ht-register-page #registration .field:focus,
.ht-register-page #registration .form-control:focus{
    border-color:#2563EB;box-shadow:0 0 0 4px rgba(37,99,235,.1);
    outline:0;background:#fff;
}
.ht-register-page #registration select.field,.ht-register-page #registration select.form-control{padding:0 14px 0 44px;}
.ht-register-page #registration textarea.field{height:auto;padding:12px 14px 12px 44px;}
.ht-register-page #registration .field-help-text{color:#8FA3BB;font-size:12px;margin-top:6px;}
.ht-register-page #registration .form-group:not(.prepend-icon) label{font-size:13px;font-weight:600;color:#334155;margin-bottom:7px;}

/* row entrance */
.ht-register-page #registration .row{animation:rg-in .6s cubic-bezier(.16,1,.3,1) both;}

/* password */
.ht-register-page #registration .generate-password{
    margin:0;padding:10px 18px;border:1.5px solid #CBD5E1;border-radius:11px;
    background:#fff;color:#334155;font-size:13px;font-weight:600;
    transition:all .25s ease;
}
.ht-register-page #registration .generate-password:hover{border-color:#2563EB;color:#2563EB;background:#EFF6FF;transform:translateY(-2px);}
.ht-register-page .password-strength-meter .progress{height:8px;border-radius:999px;background:#EAF1F8;overflow:hidden;box-shadow:none;}
.ht-register-page .password-strength-meter p{font-size:12px;color:#8FA3BB;}

.ht-rg-eye{
    position:absolute;right:12px;top:50%;transform:translateY(-50%);
    background:none;border:none;padding:6px;color:#94A3B8;cursor:pointer;font-size:14px;
    z-index:6;transition:color .25s ease;line-height:1;
}
.ht-rg-eye:hover{color:#2563EB;}

/* marketing opt-in */
.ht-register-page .marketing-email-optin{
    margin-top:30px;padding:20px 22px;border-radius:14px;
    background:#F0FDF4;border:1px solid #BBF7D0;
    animation:rg-in .6s cubic-bezier(.16,1,.3,1) both;
}
.ht-register-page .marketing-email-optin h4{font-family:'Poppins',sans-serif;font-size:15px;font-weight:700;color:#166534;margin:0 0 6px;}
.ht-register-page .marketing-email-optin p{font-size:13px;color:#15803D;margin:0 0 10px;}

/* captcha */
.ht-rg-captcha{display:flex;justify-content:center;margin:26px 0 4px;}

/* TOS */
.ht-register-page #registration .tospanel{border-radius:14px;overflow:hidden;border:1px solid #FECACA;box-shadow:none;}
.ht-register-page #registration .tospanel .panel-heading{background:#FEF2F2;border-bottom:1px solid #FECACA;color:#991B1B;}
.ht-register-page #registration .tospanel .panel-title{font-size:14px;color:#991B1B;}
.ht-register-page #registration .tospanel .panel-body{background:#fff;}

/* submit */
.ht-rg-submit-wrap{margin-top:30px;text-align:center;
    animation:rg-in .6s cubic-bezier(.16,1,.3,1) .2s both;}
.ht-rg-submit{
    position:relative;display:inline-flex;align-items:center;justify-content:center;gap:10px;
    min-width:280px;padding:16px 34px;border:none;border-radius:13px;cursor:pointer;
    background:linear-gradient(135deg,#0E4A75,#2563EB 60%,#1D4ED8);
    color:#fff;font-family:'Poppins',sans-serif;font-size:15px;font-weight:700;letter-spacing:.01em;
    overflow:hidden;isolation:isolate;
    box-shadow:0 18px 38px -14px rgba(37,99,235,.85),0 0 0 1px rgba(255,255,255,.08) inset;
    transition:transform .3s cubic-bezier(.16,1,.3,1),box-shadow .3s ease;
}
.ht-rg-submit:hover{transform:translateY(-3px) scale(1.02);box-shadow:0 24px 48px -14px rgba(37,99,235,.95);}
.ht-rg-submit:active{transform:translateY(0) scale(.98);}
.ht-rg-submit .ht-rg-submit-icon{font-size:15px;transition:transform .3s ease;}
.ht-rg-submit:hover .ht-rg-submit-icon{transform:translateX(4px) rotate(-8deg);}
.ht-rg-submit .lg-submit-shine{
    position:absolute;inset:0;z-index:-1;
    background:linear-gradient(115deg,transparent 30%,rgba(255,255,255,.4) 50%,transparent 70%);
    transform:translateX(-120%);
}
.ht-rg-submit:hover .lg-submit-shine{animation:lg-btn-shine 1.1s ease forwards;}

/* social sign-in */
.ht-register-page #registration .social-signin-btns{display:flex;flex-direction:column;gap:10px;margin-bottom:8px;}
.ht-register-page #registration .social-signin-btns .btn{
    display:flex;align-items:center;justify-content:center;gap:9px;width:100%;
    padding:11px 16px;border-radius:11px;border:1.5px solid #E2E8F0;background:#fff;
    color:#334155;font-size:13px;font-weight:600;
    transition:all .3s ease;box-shadow:none;
}
.ht-register-page #registration .social-signin-btns .btn:hover{
    transform:translateY(-2px);border-color:#2563EB;box-shadow:0 10px 22px -10px rgba(37,99,235,.5);
}
.ht-register-page #registration .social-signin-btns .btn img,
.ht-register-page #registration .social-signin-btns .btn svg{width:16px;height:16px;}

/* keyframes */
@keyframes rg-in{from{opacity:0;transform:translateY(16px);}to{opacity:1;transform:translateY(0);}}

/* ---- responsive (mirrors login) ---- */
@media (max-width:900px){
    .ht-register-wrap{grid-template-columns:1fr;max-width:520px;border-radius:22px;}
    .ht-rg-hero{display:none;}
    .ht-rg-form{padding:36px 26px;}
}
@media (max-width:520px){
    .ht-register-page{padding:48px 14px 40px;}
    .ht-rg-form{padding:28px 18px;}
    .ht-rg-submit{min-width:100%;}
    .ht-register-card{max-width:100%;}
}
@media (min-width:768px){
    .ht-register-page #registration #containerNewUserSignup > .sub-heading:nth-of-type(1){animation-delay:.1s;}
    .ht-register-page #registration #containerNewUserSignup > .row:nth-of-type(1){animation-delay:.2s;}
    .ht-register-page #registration #containerPassword > .row .col-sm-6:nth-of-type(1){animation-delay:.1s;}
}
