@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --hs-primary: #FF6E41;
    --hs-primary-dark: #E85A2F;
    --hs-primary-light: #FF9068;
    --hs-primary-glow: rgba(255,110,65,0.35);
    --hs-accent: #FF6E41;
    --hs-accent-dark: #E85A2F;
    --hs-accent-glow: rgba(255,110,65,0.35);
    --hs-secondary: #0EA5E9;
    --hs-dark: #2A363F;
    --hs-dark-2: #1E2A33;
    --hs-dark-3: #344350;
    --hs-gray-900: #1A252E;
    --hs-gray-700: #4A5568;
    --hs-gray-500: #8896A4;
    --hs-gray-300: #CBD5E0;
    --hs-gray-100: #F0F3F6;
    --hs-white: #FFFFFF;
    --hs-bg: #F7F9FB;
    --hs-gradient: linear-gradient(135deg, #FF6E41 0%, #FF9068 100%);
    --hs-gradient-accent: linear-gradient(135deg, #FF6E41 0%, #FF8C5A 50%, #FFB347 100%);
    --hs-radius: 16px;
    --hs-radius-lg: 24px;
    --hs-radius-pill: 40px;
    --hs-shadow: 0 2px 8px rgba(42,54,63,0.06);
    --hs-shadow-lg: 0 12px 32px rgba(42,54,63,0.1);
    --hs-shadow-xl: 0 24px 48px rgba(42,54,63,0.12);
    --hs-font-heading: 'Poppins', sans-serif;
    --hs-font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* =================== GLOBAL =================== */
body {
    font-family: var(--hs-font-body);
    background-color: var(--hs-bg);
    color: var(--hs-gray-700);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--hs-font-heading);
    font-weight: 700;
    color: var(--hs-dark);
}

a {
    text-decoration: none;
    color: var(--hs-primary);
    transition: all 0.25s ease;
}
a:hover {
    color: var(--hs-primary-dark);
    text-decoration: none;
}

body.primary-bg-color,
section#main-body {
    background-color: var(--hs-bg);
}
section#main-body {
    min-height: auto;
    padding: 0;
}

/* Homepage: remove main-body bg so hero shows through */
section#main-body:has(.hs-hero) {
    background: transparent !important;
    padding: 0 !important;
}

.hs-overline {
    display: inline-block;
    background: rgba(255,110,65,0.08) !important;
    color: var(--hs-primary);
    padding: 6px 18px;
    border-radius: var(--hs-radius-pill);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    font-family: var(--hs-font-body);
}

.hs-heading-2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.hs-section-sub {
    color: var(--hs-gray-500);
    font-size: 1.05rem;
    max-width: 560px;
}
.text-center .hs-section-sub {
    margin-left: auto;
    margin-right: auto;
}

.hs-section-header {
    margin-bottom: 48px;
}

/* =================== BUTTONS =================== */
.hs-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--hs-font-heading);
    font-weight: 600;
    font-size: 15px;
    padding: 14px 32px;
    border-radius: var(--hs-radius-pill);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none !important;
}
.hs-btn i { font-size: 13px; transition: transform 0.25s ease; }
.hs-btn:hover i { transform: translateX(3px); }

.hs-btn-accent {
    background: var(--hs-gradient-accent) !important;
    color: var(--hs-white) !important;
    box-shadow: 0 4px 20px var(--hs-accent-glow);
}
.hs-btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--hs-accent-glow);
    color: var(--hs-white) !important;
}

.hs-btn-glass {
    background: rgba(255,255,255,0.08) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--hs-white) !important;
}
.hs-btn-glass:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.3);
    transform: translateY(-2px);
    color: var(--hs-white) !important;
}

.hs-btn-lg {
    padding: 16px 40px;
    font-size: 16px;
}

/* =================== HEADER =================== */
header.header .topbar {
    padding: 8px 0;
    background: linear-gradient(135deg, var(--hs-dark) 0%, var(--hs-dark-3) 100%);
}

header.header .navbar.navbar-light {
    border-bottom: 1px solid var(--hs-gray-100);
    padding: 0.5rem 0;
    background: var(--hs-white) !important;
}

header.header .main-navbar-wrapper {
    padding: 12px 0;
    background: var(--hs-white) !important;
    border-bottom: 1px solid var(--hs-gray-100);
}

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

header.header .main-navbar-wrapper .navbar-nav a {
    font-size: 15px;
    color: var(--hs-gray-700);
    font-weight: 500;
    font-family: var(--hs-font-body);
    padding-right: 0 !important;
    margin: 0 16px;
    position: relative;
    transition: all 0.25s ease;
    text-decoration: none;
    padding-bottom: 5px;
}
header.header .main-navbar-wrapper .navbar-nav a:hover {
    color: var(--hs-primary);
}
header.header .main-navbar-wrapper .navbar-nav a::before {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: var(--hs-gradient) !important;
    bottom: 0;
    left: 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}
header.header .main-navbar-wrapper .navbar-nav a:hover::before {
    width: 100%;
}

header.header .main-navbar-wrapper .navbar-nav ul.dropdown-menu {
    padding: 8px 0;
    margin-top: 10px;
    background-color: var(--hs-white);
    border: 1px solid var(--hs-gray-100);
    border-radius: var(--hs-radius);
    box-shadow: var(--hs-shadow-lg);
}
header.header .main-navbar-wrapper .navbar-nav ul.dropdown-menu li {
    padding: 2px 12px;
}
header.header .main-navbar-wrapper .navbar-nav ul.dropdown-menu li:hover {
    background-color: var(--hs-gray-100);
}
header.header .main-navbar-wrapper .navbar-nav ul.dropdown-menu li a {
    margin: 0;
    font-size: 14px;
    color: var(--hs-gray-700);
    padding: 6px 8px !important;
    display: block;
}
header.header .main-navbar-wrapper .navbar-nav ul.dropdown-menu li a::before,
.main-navbar-wrapper .navbar-nav ul.dropdown-menu .dropdown-divider {
    display: none;
}

/* Login / Register buttons */
header.header a.login-btn-20i,
header.header a.register-btn-20i {
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--hs-radius-pill);
    padding: 9px 24px;
    text-decoration: none;
    border: none;
    transition: all 0.25s ease;
    letter-spacing: 0;
    font-family: var(--hs-font-body);
}
header.header a.login-btn-20i {
    background: var(--hs-primary) !important;
    color: var(--hs-white) !important;
    margin-right: 10px;
}
header.header a.login-btn-20i:hover {
    background: var(--hs-primary-dark);
    color: var(--hs-white) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(255,110,65,0.3);
}
header.header a.register-btn-20i {
    background: var(--hs-dark) !important;
    color: var(--hs-white) !important;
}
header.header a.register-btn-20i:hover {
    background: var(--hs-dark-2);
    color: var(--hs-white) !important;
    transform: translateY(-1px);
}

.navbar.navbar-light.mobile-bar { display: none; }

body header.header .main-navbar-wrapper .cart-btn span.badge.badge-info {
    color: #fff !important;
    line-height: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: absolute !important;
    top: 1px !important;
    right: 6px !important;
    background: var(--hs-accent) !important;
    border-radius: 100% !important;
    font-size: 9px !important;
    padding: 0 !important;
    width: 16px !important;
    height: 16px !important;
    letter-spacing: 0 !important;
}
header.header .toolbar .nav-link .badge {
    color: #fff !important;
    background-color: var(--hs-accent);
}
.right-part-20i {
    display: flex;
    align-items: center;
}
.right-part-20i a.search-20i { margin: 0 17px; }
.right-part-20i .cartbtn-20i { margin-right: 22px; }
li#Secondary_Navbar-Account ul.dropdown-menu.dropdown-menu-right.show {
    position: absolute;
}

/* Topbar notification carousel */
div#carousel-20i-notification {
    width: 100%;
    text-align: center;
    height: 26px;
}
div#carousel-20i-notification .carousel-item {
    margin: auto;
    float: none;
}
div#carousel-20i-notification .carousel-item a {
    color: #fff;
    text-decoration: none;
    max-width: 60%;
}
div#carousel-20i-notification .carousel-item a span {
    font-size: 13px;
    letter-spacing: 0.5px;
    line-height: 22px;
    color: rgba(255,255,255,0.9);
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 60%;
    display: inline-block;
}
div#carousel-20i-notification .carousel-item a i {
    position: relative;
    top: -6px;
}
div#carousel-20i-notification .carousel-control-next-icon,
div#carousel-20i-notification .carousel-control-prev-icon {
    width: 10px;
}

header.header .main-navbar-wrapper .cart-btn { position: relative; }
header.header .main-navbar-wrapper .cart-btn i { font-weight: 700; }
header.header .navbar.navbar-expand-xl.main-navbar-wrapper.login-20i-header { padding: 7px 0; }
header.header .main-navbar-wrapper div#mainNavbar { padding-left: 0; padding-right: 0; }

.form-knowldegbase-20i .input-group.search,
.form-knowldegbase-20i-without-login .input-group.search,
.form-knowldegbase-20i,
.form-knowldegbase-20i-without-login {
    width: 60%;
    margin-left: auto;
}

/* =================== HERO SECTION =================== */
.hs-hero {
    background: linear-gradient(160deg, #1A252E 0%, #2A363F 40%, #344350 70%, #2A363F 100%) !important;
    padding: 90px 0 100px;
    position: relative;
    overflow: hidden;
}

.hs-hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}
.hs-glow-1 {
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,110,65,0.15) 0%, transparent 70%) !important;
}
.hs-glow-2 {
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(246,122,60,0.12) 0%, transparent 70%) !important;
}

.hs-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1020px;
    margin: 0 auto;
}

.hs-promo-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(246,122,60,0.12) !important;
    border: 1px solid rgba(246,122,60,0.25);
    color: #FBB86C !important;
    padding: 8px 22px;
    border-radius: var(--hs-radius-pill);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 28px;
    letter-spacing: 0.3px;
    font-family: var(--hs-font-body);
}
.hs-pill-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--hs-accent);
    animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.hs-hero-title {
    font-family: var(--hs-font-heading);
    font-size: 3.2rem;
    font-weight: 800;
    color: #FFFFFF !important;
    line-height: 1.12;
    margin-bottom: 22px;
    letter-spacing: -0.5px;
}

.hs-text-gradient {
    background: linear-gradient(135deg, #FF6E41 0%, #FF8C5A 50%, #FFB347 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    color: transparent !important;
    display: inline !important;
}

.hs-hero-sub {
    font-size: 1.15rem;
    color: #CBD5E0 !important;
    margin-bottom: 36px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hs-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 50px;
}

/* Hero Stats Bar */
.hs-hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: rgba(255,255,255,0.05) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--hs-radius-lg);
    padding: 20px 10px;
    max-width: 720px;
    margin: 0 auto;
}
.hs-stat-item {
    flex: 1;
    text-align: center;
    padding: 0 24px;
}
.hs-stat-num {
    font-family: var(--hs-font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--hs-white);
    margin-bottom: 2px;
}
.hs-stat-label {
    font-size: 12px;
    color: var(--hs-gray-500);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.hs-stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.1) !important;
    flex-shrink: 0;
}

/* =================== DOMAIN SEARCH SECTION =================== */
.hs-domain-section {
    margin-top: -40px;
    position: relative;
    z-index: 10;
    padding-bottom: 40px;
}

.hs-domain-card {
    background: var(--hs-white) !important;
    border-radius: var(--hs-radius-lg);
    box-shadow: var(--hs-shadow-xl);
    padding: 0;
    overflow: hidden;
}

.hs-domain-header {
    text-align: center;
    padding: 32px 24px 8px;
}
.hs-domain-header h2 {
    font-size: 1.5rem;
    margin-bottom: 6px;
}
.hs-domain-header p {
    color: var(--hs-gray-500);
    font-size: 0.95rem;
}

/* Domain search form overrides */
.home-domain-search {
    background: transparent !important;
}
.home-domain-search .container { padding: 0; }
.home-domain-search .p-5 h2 { display: none; }

.home-domain-search .input-group .form-control {
    border-radius: 12px 0 0 12px;
    padding: 14px 22px;
    font-size: 16px;
    border: 2px solid var(--hs-gray-100);
    height: auto;
    font-family: var(--hs-font-body);
}
.home-domain-search .input-group .form-control:focus {
    border-color: var(--hs-primary);
    box-shadow: 0 0 0 3px rgba(255,110,65,0.1);
}

.home-domain-search .btn-primary,
#frmCheckout button#btnCompleteOrder,
#frmProductDomainSelections button#btnDomainContinue {
    background: var(--hs-accent) !important;
    border-color: var(--hs-accent) !important;
    border-radius: 0 12px 12px 0;
    padding: 14px 28px;
    font-weight: 600;
    font-family: var(--hs-font-body);
}
.home-domain-search .btn-primary:hover,
#frmCheckout button#btnCompleteOrder:hover,
#frmProductDomainSelections button#btnDomainContinue:hover {
    background: var(--hs-accent-dark) !important;
    border-color: var(--hs-accent-dark) !important;
}

.home-domain-search .btn-success {
    background: var(--hs-secondary) !important;
    border-color: var(--hs-secondary) !important;
    border-radius: 0 12px 12px 0;
    padding: 14px 28px;
    font-weight: 600;
}

/* TLD logos */
ul.tld-logos {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    padding: 0;
    margin-top: 16px;
}
ul.tld-logos li {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.tld-hm-20i {
    font-weight: 700;
    color: var(--hs-dark);
    font-size: 15px;
    font-family: var(--hs-font-heading);
}
.price-hm-20i {
    color: var(--hs-accent);
    font-weight: 600;
    font-size: 13px;
}

/* =================== HOSTING SOLUTIONS =================== */
.hs-solutions {
    padding: 80px 0;
}

.hs-solution-grid {
    display: flex;
    flex-wrap: wrap;
}

.hs-solution-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: var(--hs-white) !important;
    border-radius: var(--hs-radius-lg);
    padding: 32px 28px;
    height: 100%;
    border: 1px solid var(--hs-gray-100);
    transition: all 0.35s ease;
    text-decoration: none !important;
    color: inherit !important;
}
.hs-solution-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--hs-shadow-lg);
    border-color: rgba(255,110,65,0.12);
    color: inherit !important;
}

.hs-solution-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
    background: rgba(255,110,65,0.08) !important;
    color: var(--hs-primary);
    transition: all 0.3s ease;
}
.hs-solution-card:hover .hs-solution-icon {
    background: var(--hs-primary);
    color: var(--hs-white);
}

.hs-icon-amber {
    background: rgba(246,122,60,0.08) !important;
    color: var(--hs-accent) !important;
}
.hs-solution-card:hover .hs-icon-amber {
    background: var(--hs-accent) !important;
    color: var(--hs-white) !important;
}

.hs-icon-teal {
    background: rgba(14,165,233,0.08) !important;
    color: var(--hs-secondary) !important;
}
.hs-solution-card:hover .hs-icon-teal {
    background: var(--hs-secondary) !important;
    color: var(--hs-white) !important;
}

.hs-solution-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-family: var(--hs-font-heading);
}
.hs-solution-card p {
    color: var(--hs-gray-500);
    font-size: 14px;
    margin-bottom: 16px;
    flex-grow: 1;
}

.hs-solution-cta {
    color: var(--hs-primary);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.25s ease;
}
.hs-solution-card:hover .hs-solution-cta {
    gap: 10px;
    color: var(--hs-primary-dark);
}

/* =================== WHY CHOOSE US / FEATURES =================== */
.hs-features {
    padding: 80px 0;
    background: var(--hs-white) !important;
}

.hs-checklist {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.hs-check-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
    color: var(--hs-gray-700);
}
.hs-check-item i {
    color: #10B981;
    font-size: 18px;
    flex-shrink: 0;
}

.hs-feat-card {
    background: var(--hs-bg) !important;
    border-radius: var(--hs-radius-lg);
    padding: 28px 24px;
    height: 100%;
    border: 1px solid var(--hs-gray-100);
    transition: all 0.3s ease;
}
.hs-feat-card:hover {
    border-color: rgba(255,110,65,0.12);
    box-shadow: var(--hs-shadow);
    transform: translateY(-3px);
}

.hs-feat-icon {
    width: 48px;
    height: 48px;
    background: var(--hs-gradient-accent) !important;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.hs-feat-icon i {
    color: var(--hs-white);
    font-size: 20px;
}

.hs-fi-purple {
    background: var(--hs-gradient) !important;
}
.hs-fi-teal {
    background: linear-gradient(135deg, #0EA5E9, #06B6D4) !important;
}
.hs-fi-amber {
    background: linear-gradient(135deg, #F59E0B, #F67A3C) !important;
}

.hs-feat-card h4 {
    font-size: 1rem;
    font-family: var(--hs-font-heading);
    margin-bottom: 8px;
}
.hs-feat-card p {
    font-size: 14px;
    color: var(--hs-gray-500);
    margin: 0;
    line-height: 1.6;
}

/* =================== TRUST BAR =================== */
.hs-trust {
    padding: 40px 0;
    background: var(--hs-bg) !important;
}

.hs-trust-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.hs-trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--hs-gray-700);
}
.hs-trust-item > i {
    font-size: 28px;
    color: var(--hs-primary);
    opacity: 0.7;
}
.hs-trust-item div strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    font-family: var(--hs-font-heading);
    color: var(--hs-dark);
}
.hs-trust-item div span {
    font-size: 12px;
    color: var(--hs-gray-500);
}

/* =================== ACCOUNT SECTION =================== */
.hs-account {
    padding: 60px 0;
}

.hs-account-grid {
    display: flex;
    flex-wrap: wrap;
}

.hs-acc-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 28px 16px;
    background: var(--hs-white) !important;
    border-radius: var(--hs-radius-lg);
    border: 1px solid var(--hs-gray-100);
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none !important;
}
.hs-acc-card:hover {
    border-color: var(--hs-primary);
    transform: translateY(-4px);
    box-shadow: var(--hs-shadow-lg);
}

.hs-acc-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(255,110,65,0.06) !important;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hs-acc-icon i {
    font-size: 22px;
    color: var(--hs-primary);
}
.hs-acc-card span {
    font-size: 13px;
    font-weight: 600;
    color: var(--hs-gray-700);
}
.hs-acc-card:hover span {
    color: var(--hs-primary);
}

/* =================== CTA SECTION =================== */
.hs-cta {
    padding: 90px 0;
    background: linear-gradient(160deg, #1A252E 0%, #2A363F 50%, #344350 100%) !important;
    position: relative;
    overflow: hidden;
}

.hs-cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(246,122,60,0.15) 0%, rgba(255,110,65,0.08) 40%, transparent 70%) !important;
    filter: blur(60px);
    pointer-events: none;
}

.hs-cta .hs-heading-2 {
    color: var(--hs-white);
}
.hs-cta-sub {
    color: var(--hs-gray-300);
    font-size: 1.1rem;
    margin-bottom: 36px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

/* =================== FOOTER =================== */
footer#footer {
    background: var(--hs-dark) !important;
    padding: 40px 0 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
}
footer#footer .nav-link {
    color: var(--hs-gray-300) !important;
    font-size: 14px;
}
footer#footer .nav-link:hover {
    color: var(--hs-white) !important;
}
footer#footer .copyright {
    color: var(--hs-gray-500);
    font-size: 13px;
}
footer#footer .btn {
    color: var(--hs-gray-300);
}

/* =================== BREADCRUMB =================== */
.master-breadcrumb .breadcrumb {
    padding: 16px 0;
    font-size: 0.9rem;
    background: transparent !important;
}
.master-breadcrumb .breadcrumb li.breadcrumb-item a {
    font-size: 13px;
    color: var(--hs-gray-500);
}
.master-breadcrumb .breadcrumb li.breadcrumb-item.active {
    color: var(--hs-gray-700);
}

/* =================== CARDS & CLIENT AREA =================== */
.card {
    border-radius: var(--hs-radius);
    border: 1px solid var(--hs-gray-100);
    box-shadow: var(--hs-shadow);
}
.card-sidebar .collapsable-card-body .card-body { padding: 3px 25px; }
.sidebar .card.card-sidebar {
    border-radius: 0;
    background-color: var(--hs-white);
    border: 0;
    margin: 0 !important;
    border-bottom: 1px solid var(--hs-gray-100);
    padding-bottom: 20px;
    padding-top: 8px;
}
.card-footer {
    background-color: transparent;
    border-top: none;
    padding-left: 25px;
    padding-right: 25px;
}
.sidebar .card-title i:first-child { display: none; }

.card-sidebar .card-footer a.btn.btn-default.btn-sm.btn-block,
.sidebar .card-footer .btn-success {
    min-width: 110px;
    font-size: 12px;
    line-height: 26px;
    color: var(--hs-primary);
    font-weight: 600;
    border-radius: 8px;
    background-color: rgba(255,110,65,0.08);
    padding: 3px 10px;
    border: 0;
    width: auto;
    display: inline-block;
}
.card-sidebar .card-footer a.btn.btn-default.btn-sm.btn-block i,
.sidebar .card-footer .btn-success i { padding-right: 2px; }
.card-sidebar .collapsable-card-body .card-body,
.card-sidebar .collapsable-card-body .card-body strong {
    color: var(--hs-gray-500);
    font-size: 13px;
    line-height: 23px;
    font-weight: 600;
}
.card-sidebar .collapsable-card-body .card-body em { font-style: inherit; }

/* Dashboard tiles */
.tiles .row .col-6 {
    text-align: center;
    padding: 0 10px;
    margin-bottom: 20px;
}
.tiles .tile {
    border-radius: var(--hs-radius);
    border: 1px solid var(--hs-gray-100);
}
.tiles .tile .stat {
    font-size: 44px;
    line-height: 56px;
    font-weight: 700;
    margin-top: 12px;
    font-family: var(--hs-font-heading);
}
.tiles .tile .title {
    font-size: 13px;
    color: var(--hs-gray-500);
    margin-bottom: 15px;
}
.tiles .tile .highlight { display: none; }
.tiles .tile i { font-size: 20px; left: 19px; right: auto; top: 18px; }
.tiles .tile:hover i { font-size: 20px; }
.tiles .tile::before {
    content: "";
    position: absolute;
    width: 45px;
    height: 45px;
    border-radius: 10px;
    left: 0;
    top: 0;
    margin: 6px;
}
.tiles .row .col-6:nth-of-type(1) a .stat,
.tiles .row .col-6:nth-of-type(1) a i { color: #EF4444; }
.tiles .row .col-6:nth-of-type(1) a::before { background-color: #FEE2E2; }
.tiles .row .col-6:nth-of-type(2) a .stat,
.tiles .row .col-6:nth-of-type(2) a i { color: #FF6E41; }
.tiles .row .col-6:nth-of-type(2) a::before { background-color: #FFF0EB; }
.tiles .row .col-6:nth-of-type(3) a .stat,
.tiles .row .col-6:nth-of-type(3) a i { color: #10B981; }
.tiles .row .col-6:nth-of-type(3) a::before { background-color: #D1FAE5; }
.tiles .row .col-6:nth-of-type(4) a .stat,
.tiles .row .col-6:nth-of-type(4) a i { color: var(--hs-accent); }
.tiles .row .col-6:nth-of-type(4) a::before { background-color: #FEF3C7; }
.tiles { margin-bottom: 0 !important; }

/* Client home cards */
.client-home-cards .card {
    border-top: 0;
    border-radius: var(--hs-radius);
    margin-bottom: 20px;
}
.client-home-cards .card .card-title,
.home-page-slider-panel h3 {
    font-size: 15px;
    color: var(--hs-gray-700);
    background-color: var(--hs-gray-100);
    padding: 13px 15px;
    border-radius: var(--hs-radius) var(--hs-radius) 0 0;
    font-family: var(--hs-font-heading);
}
.client-home-cards .card h3.card-title i {
    font-size: 19px;
    margin-right: 5px;
    color: var(--hs-gray-500);
}
.client-home-cards .card-header { padding: 10px 10px 0; }
.client-home-cards .card-body p,
.client-home-cards .list-group .list-group-item {
    font-size: 14px;
    color: var(--hs-gray-700);
    font-weight: 500;
}
.client-home-cards .card-body { padding: 15px 20px; }
.client-home-cards .list-group .list-group-item {
    padding: 14px 20px;
    border-color: var(--hs-gray-100);
}
.client-home-cards .list-group { border: 0 !important; }

/* =================== BUTTONS GLOBAL =================== */
.btn-primary {
    background-color: var(--hs-primary) !important;
    border-color: var(--hs-primary) !important;
    border-radius: 10px;
}
.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--hs-primary-dark) !important;
    border-color: var(--hs-primary-dark) !important;
}
.btn-success:hover,
.home-page-slider-panel .promo-banner .card-body .btn-success:hover,
.card-body.store-promoted-product .btn-success:hover {
    background-color: var(--hs-primary) !important;
    border-color: var(--hs-primary) !important;
    color: #fff !important;
}
#registration .btn-primary:hover {
    background-color: var(--hs-primary-dark) !important;
    border-color: var(--hs-primary-dark) !important;
}
.tab-content.margin-bottom div#tabOverview .product-details .product-status .product-icon i {
    color: var(--hs-primary);
}

/* DataTables */
.dataTables_wrapper .dataTables_info {
    font-size: 13px;
    color: var(--hs-gray-500);
    letter-spacing: 0.5px;
    font-weight: 600;
}

#main-body .client-home-cards .card-header .bg-color-blue:hover { color: #fff; }
.card.card-accent-emerald h3.card-title i { margin-right: 0; }
.card.card-accent-emerald .card-header .card-title,
.client-home-cards .card h3.card-title .btn-default i { color: #fff; }

#DomainSearchResults .domain-price button.btn.btn-primary.btn-add-to-cart {
    display: block;
    margin: 7px auto;
    background-color: var(--hs-dark) !important;
    border-color: var(--hs-dark) !important;
    border-radius: 10px;
}
#order-standard_cart #DomainSearchResults .domain-price button.btn-add-to-cart:hover {
    background-color: var(--hs-accent) !important;
    border-color: var(--hs-accent) !important;
}
#order-standard_cart #frmConfigureProduct .addon-products .panel-add:hover {
    background-color: var(--hs-accent) !important;
    border-color: var(--hs-accent) !important;
}
#frmCheckout button#btnCompleteOrder {
    border-radius: 10px;
}

/* =================== ANIMATIONS =================== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

.hs-hero-inner {
    animation: fadeInUp 0.8s ease-out;
}

/* =================== RESPONSIVE =================== */
@media (max-width: 991px) {
    .hs-hero-title {
        font-size: 2.4rem;
    }
    .hs-hero {
        padding: 70px 0 80px;
    }
    .hs-heading-2 {
        font-size: 1.8rem;
    }
    .hs-hero-stats {
        max-width: 100%;
        gap: 0;
    }
    .hs-trust-bar {
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .hs-hero-title {
        font-size: 2rem;
    }
    .hs-hero-sub {
        font-size: 1rem;
    }
    .hs-hero-actions {
        flex-direction: column;
        align-items: center;
    }
    .hs-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    .hs-hero-stats {
        flex-wrap: wrap;
        gap: 0;
        padding: 16px;
    }
    .hs-stat-item {
        flex-basis: 50%;
        padding: 10px;
    }
    .hs-stat-divider {
        display: none;
    }
    .hs-trust-bar {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    .hs-heading-2 {
        font-size: 1.6rem;
    }
    .hs-solutions,
    .hs-features {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .hs-hero-title {
        font-size: 1.7rem;
    }
    .hs-hero {
        padding: 50px 0 60px;
    }
    .hs-promo-pill {
        font-size: 12px;
        padding: 6px 16px;
    }
}

/* =================== FULL-WIDTH HEADER =================== */
.hs-header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 30px;
    padding-right: 30px;
}

header.header {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: var(--hs-white) !important;
    box-shadow: 0 1px 10px rgba(15,10,30,0.06);
}

header.header .main-navbar-wrapper {
    border-bottom: none;
}

/* =================== MEGA MENU =================== */
.hs-megamenu-parent {
    position: static !important;
}

.hs-megamenu {
    width: 100% !important;
    max-width: none !important;
    left: 0 !important;
    right: 0 !important;
    top: 100% !important;
    padding: 0 !important;
    border: none !important;
    border-radius: 0 0 var(--hs-radius) var(--hs-radius) !important;
    box-shadow: 0 16px 48px rgba(15,10,30,0.12) !important;
    background: var(--hs-white) !important;
    margin-top: 0 !important;
    border-top: 2px solid var(--hs-primary) !important;
    animation: megaFadeIn 0.2s ease-out;
}

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

.hs-mega-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 40px 24px;
}

.hs-mega-col {
    padding: 0 20px;
    border-right: 1px solid var(--hs-gray-100);
}
.hs-mega-col:last-child {
    border-right: none;
}

.hs-mega-heading {
    font-family: var(--hs-font-heading);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--hs-dark);
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--hs-gray-100);
    display: flex;
    align-items: center;
    gap: 8px;
}
.hs-mega-heading i {
    color: var(--hs-primary);
    font-size: 14px;
    width: 20px;
    text-align: center;
}

.hs-mega-link,
.hs-megamenu .hs-mega-link,
header.header .main-navbar-wrapper .navbar-nav .hs-mega-link {
    display: block !important;
    padding: 7px 8px 7px 36px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: var(--hs-gray-700) !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
    border-radius: 6px !important;
    margin: 0 -8px !important;
    position: relative !important;
    border-bottom: none !important;
}
/* Kill the navbar underline on mega menu links */
.hs-mega-link::before,
.hs-megamenu .hs-mega-link::before,
header.header .main-navbar-wrapper .navbar-nav .hs-mega-link::before {
    content: "" !important;
    position: absolute !important;
    left: 12px !important;
    top: 50% !important;
    bottom: auto !important;
    width: 0 !important;
    height: 0 !important;
    border-radius: 50% !important;
    background: var(--hs-primary) !important;
    transform: translateY(-50%) !important;
    transition: all 0.2s ease !important;
}
.hs-mega-link:hover,
header.header .main-navbar-wrapper .navbar-nav .hs-mega-link:hover {
    background: var(--hs-gray-100) !important;
    color: var(--hs-primary) !important;
    padding-left: 40px !important;
}
.hs-mega-link:hover::before,
header.header .main-navbar-wrapper .navbar-nav .hs-mega-link:hover::before {
    width: 5px !important;
    height: 5px !important;
}

.hs-mega-footer {
    background: var(--hs-gray-100) !important;
    padding: 14px 40px;
    text-align: center;
    border-radius: 0 0 var(--hs-radius) var(--hs-radius);
}

.hs-mega-browse {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--hs-primary) !important;
    text-decoration: none !important;
    transition: all 0.2s ease;
}
.hs-mega-browse:hover {
    color: var(--hs-primary-dark) !important;
    gap: 12px;
}

/* Mega menu mobile fallback */
@media (max-width: 1199px) {
    .hs-megamenu {
        position: relative !important;
        box-shadow: none !important;
        border: none !important;
        border-top: none !important;
        border-radius: 0 !important;
        background: var(--hs-gray-100) !important;
    }
    .hs-mega-inner {
        display: block;
        padding: 16px 20px;
    }
    .hs-mega-col {
        padding: 0;
        border-right: none;
        margin-bottom: 16px;
    }
    .hs-mega-heading {
        font-size: 12px;
        margin-bottom: 8px;
        padding-bottom: 6px;
    }
    .hs-mega-link {
        padding: 5px 0 5px 24px;
        font-size: 13px;
        margin: 0;
        padding-left: 24px;
        padding-right: 0;
    }
    .hs-mega-link:hover {
        background: transparent;
        padding-left: 28px;
    }
    .hs-mega-link::before {
        left: 6px;
    }
    .hs-mega-footer {
        margin: 0 -20px;
        border-radius: 0;
    }
}

/* =================== FULL-WIDTH FOOTER — OVERRIDE PARENT THEME =================== */

/* Reset ALL parent theme footer styles with high specificity */
footer#footer.footer.hs-footer,
footer.footer.hs-footer {
    margin: 0 !important;
    padding: 0 !important;
    background-color: transparent !important;
    background: none !important;
    color: inherit !important;
    font-size: inherit !important;
    width: 100% !important;
    max-width: 100% !important;
}

/* Override parent theme .footer .btn, .nav-link, .copyright etc. */
footer.hs-footer .btn {
    background-color: transparent !important;
    color: inherit !important;
    font-size: inherit !important;
    line-height: inherit !important;
    padding: 0 !important;
}
footer.hs-footer .nav-link {
    color: inherit !important;
}
footer.hs-footer .copyright {
    margin: 0 !important;
    text-align: left !important;
}

/* Full-width container */
.hs-footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 30px;
    padding-right: 30px;
}

/* Footer Main Area */
.hs-footer-main {
    padding: 64px 0 48px !important;
    background: linear-gradient(180deg, #1A252E 0%, #151E26 100%) !important;
    width: 100%;
}

.hs-footer-grid {
    padding-bottom: 0;
    border-bottom: none;
}

.hs-footer-brand {
    padding-right: 32px;
}

.hs-footer-logo {
    height: 32px;
    width: auto;
    max-width: 100%;
    margin-bottom: 18px;
    object-fit: contain;
}

.hs-footer-company {
    color: #FFFFFF !important;
    font-family: var(--hs-font-heading);
    font-size: 1.3rem;
    margin-bottom: 18px;
}

.hs-footer-tagline {
    color: rgba(255,255,255,0.75) !important;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.hs-footer-social {
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    gap: 8px;
    list-style: none !important;
}
.hs-footer-social li {
    display: inline-block !important;
    margin-right: 0 !important;
}
.hs-footer-social li a,
.hs-footer-social li a.btn,
.hs-footer-social li a.btn-icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 38px !important;
    height: 38px !important;
    border-radius: 10px !important;
    background: rgba(255,255,255,0.06) !important;
    color: rgba(255,255,255,0.7) !important;
    font-size: 15px !important;
    transition: all 0.25s ease !important;
    border: 1px solid rgba(255,255,255,0.06) !important;
    padding: 0 !important;
    line-height: 1 !important;
}
.hs-footer-social li a:hover,
.hs-footer-social li a.btn:hover,
.hs-footer-social li a.btn-icon:hover {
    background: var(--hs-primary) !important;
    border-color: var(--hs-primary) !important;
    color: #FFFFFF !important;
    transform: translateY(-2px);
}

.hs-footer-heading {
    color: #FFFFFF !important;
    font-family: var(--hs-font-heading);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}
.hs-footer-heading::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: var(--hs-primary);
    border-radius: 2px;
}

.hs-footer-links {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}
.hs-footer-links li {
    color: rgba(255,255,255,0.7);
    margin-bottom: 10px;
}
.hs-footer-links li a {
    color: rgba(255,255,255,0.7) !important;
    font-size: 14px !important;
    transition: all 0.2s ease;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
}
.hs-footer-links li a:hover {
    color: #FFFFFF !important;
    padding-left: 4px;
}

.hs-footer-locale-btn {
    background: rgba(255,255,255,0.05) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    border-radius: 10px !important;
    padding: 10px 16px !important;
    color: rgba(255,255,255,0.7) !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px;
    width: 100%;
    line-height: 1.5 !important;
}
.hs-footer-locale-btn:hover {
    background: rgba(255,255,255,0.1) !important;
    border-color: rgba(255,255,255,0.2) !important;
    color: #FFFFFF !important;
}

/* Tech Stack column */
.hs-footer-tech-stack {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.hs-footer-tech {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    font-weight: 500;
}
.hs-footer-tech i {
    width: 18px;
    text-align: center;
    color: var(--hs-primary-light);
    font-size: 13px;
    opacity: 0.7;
}

/* Footer Bottom Bar */
footer#footer.footer.hs-footer .hs-footer-bottom,
.hs-footer-bottom {
    background: #141C23 !important;
    padding: 0 !important;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.hs-footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}
footer#footer.footer.hs-footer .hs-footer-bottom .copyright,
footer.footer .hs-footer-bottom .copyright,
.hs-footer-bottom .copyright {
    color: rgba(255,255,255,0.5) !important;
    font-size: 13px !important;
    margin: 0 !important;
    text-align: left !important;
}
.hs-footer-bottom-links {
    display: flex;
    gap: 24px;
}
footer#footer .hs-footer-bottom-links a,
.hs-footer-bottom-links a {
    color: rgba(255,255,255,0.5) !important;
    font-size: 13px;
    text-decoration: none !important;
    transition: color 0.2s ease;
}
footer#footer .hs-footer-bottom-links a:hover,
.hs-footer-bottom-links a:hover {
    color: #FFFFFF !important;
}


/* Hide WHMCS branding */
p[style*="text-align:center"] > a[href*="whmcs.com"] {
    display: none !important;
}
p[style="text-align:center;"]:has(> a[href*="whmcs.com"]) {
    display: none !important;
}
/* Footer responsive */
@media (max-width: 991px) {
    .hs-footer-main {
        padding: 48px 0 32px !important;
    }
    .hs-footer-brand {
        padding-right: 0;
        margin-bottom: 16px;
    }
    .hs-footer-bottom-inner {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    .hs-footer-bottom .copyright {
        text-align: center !important;
    }
    .hs-footer-container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 576px) {
    .hs-footer-heading {
        margin-bottom: 14px;
        padding-bottom: 10px;
    }
    .hs-footer-links li {
    color: rgba(255,255,255,0.7);
        margin-bottom: 8px;
    }
    .hs-footer-main {
        padding: 40px 0 24px !important;
    }
    .hs-header-container,
    .hs-footer-container {
        padding-left: 16px;
        padding-right: 16px;
    }
}

/* =================== HERO GUARANTEES =================== */
.hs-hero-guarantees {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 24px;
    flex-wrap: wrap;
}
.hs-guarantee-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.7) !important;
    font-size: 13px;
    font-weight: 500;
}
.hs-guarantee-item i {
    color: var(--hs-primary-light);
    font-size: 14px;
}

/* =================== DOMAIN TLD CHIPS =================== */
.hs-domain-tlds {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
    flex-wrap: wrap;
}
.hs-tld-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--hs-gray-100) !important;
    padding: 8px 18px;
    border-radius: var(--hs-radius-pill);
    font-size: 14px;
    color: var(--hs-gray-700);
    font-weight: 500;
}
.hs-tld-chip strong {
    color: var(--hs-primary);
    font-weight: 700;
}

/* =================== PRICING SECTION =================== */
.hs-pricing {
    padding: 80px 0;
    background: var(--hs-bg) !important;
}

.hs-pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}
.hs-toggle-label {
    font-size: 15px;
    font-weight: 500;
    color: var(--hs-gray-500);
    cursor: pointer;
    transition: color 0.3s ease;
}
.hs-toggle-label.active {
    color: var(--hs-dark);
    font-weight: 600;
}
.hs-save-badge {
    display: inline-block;
    background: rgba(16,185,129,0.1) !important;
    color: #10B981;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: var(--hs-radius-pill);
    margin-left: 6px;
}
.hs-toggle-switch {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 28px;
    cursor: pointer;
}
.hs-toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.hs-toggle-slider {
    position: absolute;
    inset: 0;
    background: var(--hs-gray-300) !important;
    border-radius: 28px;
    transition: 0.3s ease;
}
.hs-toggle-slider::before {
    content: '';
    position: absolute;
    height: 22px;
    width: 22px;
    left: 3px;
    bottom: 3px;
    background: white;
    border-radius: 50%;
    transition: 0.3s ease;
    box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}
.hs-toggle-switch input:checked + .hs-toggle-slider {
    background: var(--hs-gradient);
}
.hs-toggle-switch input:checked + .hs-toggle-slider::before {
    transform: translateX(24px);
}

.hs-pricing-grid {
    max-width: 1100px;
    margin: 0 auto;
}

.hs-price-card {
    background: var(--hs-white) !important;
    border: 1px solid var(--hs-gray-100);
    border-radius: var(--hs-radius-lg);
    padding: 36px 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
}
.hs-price-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--hs-shadow-lg);
    border-color: var(--hs-gray-300);
}

.hs-price-featured {
    border: 2px solid var(--hs-primary);
    box-shadow: var(--hs-shadow-lg);
    transform: scale(1.03);
}
.hs-price-featured:hover {
    transform: scale(1.03) translateY(-4px);
    box-shadow: var(--hs-shadow-xl);
}

.hs-popular-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--hs-gradient-accent) !important;
    color: white;
    padding: 5px 24px;
    border-radius: var(--hs-radius-pill);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
}

.hs-price-header h3 {
    font-size: 1.35rem;
    margin-bottom: 4px;
}
.hs-price-header p {
    color: var(--hs-gray-500);
    font-size: 14px;
    margin-bottom: 20px;
}

.hs-price-amount {
    display: flex;
    align-items: baseline;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--hs-gray-100);
}
.hs-price-currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--hs-dark);
    font-family: var(--hs-font-heading);
    margin-right: 2px;
}
.hs-price-value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--hs-dark);
    line-height: 1;
    font-family: var(--hs-font-heading);
    transition: all 0.3s ease;
}
.hs-price-period {
    font-size: 15px;
    color: var(--hs-gray-500);
    margin-left: 4px;
    font-weight: 500;
}

.hs-price-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    flex-grow: 1;
}
.hs-price-features li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--hs-gray-700);
    display: flex;
    align-items: center;
    gap: 10px;
}
.hs-price-features li i {
    color: #10B981;
    font-size: 13px;
    flex-shrink: 0;
}

.hs-btn-outline-accent {
    background: transparent;
    border: 2px solid var(--hs-primary);
    color: var(--hs-primary) !important;
}
.hs-btn-outline-accent:hover {
    background: var(--hs-gradient-accent) !important;
    color: var(--hs-white) !important;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px var(--hs-accent-glow);
}

.hs-btn-block {
    width: 100%;
    justify-content: center;
    text-align: center;
}

.hs-pricing-note {
    margin-top: 32px;
    color: var(--hs-gray-500);
    font-size: 14px;
}
.hs-pricing-note i {
    color: #10B981;
    margin-right: 4px;
}
.hs-pricing-note a {
    color: var(--hs-primary);
    font-weight: 600;
}

/* =================== TESTIMONIALS =================== */
.hs-testimonials {
    padding: 80px 0;
    background: var(--hs-white) !important;
}

.hs-testimonial-card {
    background: var(--hs-bg) !important;
    border: 1px solid var(--hs-gray-100);
    border-radius: var(--hs-radius-lg);
    padding: 32px;
    height: 100%;
    transition: all 0.3s ease;
}
.hs-testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--hs-shadow-lg);
}

.hs-testimonial-stars {
    margin-bottom: 16px;
}
.hs-testimonial-stars i {
    color: #F59E0B;
    font-size: 14px;
    margin-right: 2px;
}

.hs-testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--hs-gray-700);
    margin-bottom: 24px;
    font-style: italic;
}

.hs-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.hs-testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--hs-gradient-accent) !important;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    font-family: var(--hs-font-heading);
    flex-shrink: 0;
}
.hs-testimonial-author strong {
    display: block;
    font-size: 14px;
    color: var(--hs-dark);
}
.hs-testimonial-author span {
    font-size: 12px;
    color: var(--hs-gray-500);
}

/* =================== COMPARISON TABLE =================== */
.hs-comparison {
    padding: 80px 0;
    background: var(--hs-bg) !important;
}

.hs-comparison-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--hs-radius-lg);
    box-shadow: var(--hs-shadow);
}

.hs-comparison-table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    background: var(--hs-white) !important;
    border-radius: var(--hs-radius-lg);
    overflow: hidden;
}
.hs-comparison-table th,
.hs-comparison-table td {
    padding: 16px 24px;
    text-align: center;
    font-size: 14px;
    border-bottom: 1px solid var(--hs-gray-100);
}
.hs-comparison-table th {
    background: var(--hs-dark);
    color: var(--hs-white);
    font-family: var(--hs-font-heading);
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
}
.hs-comparison-table th:first-child {
    text-align: left;
}
.hs-comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--hs-dark);
    white-space: nowrap;
}
.hs-comparison-table tbody tr:hover {
    background: rgba(255,110,65,0.02);
}
.hs-comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.hs-highlight-col {
    background: rgba(255,110,65,0.04) !important;
    position: relative;
}
th.hs-highlight-col {
    background: var(--hs-primary) !important;
    color: white !important;
    font-size: 15px !important;
}

.hs-check-yes {
    color: #10B981;
    font-size: 18px;
}
.hs-check-no {
    color: #EF4444;
    font-size: 18px;
}

/* =================== FAQ =================== */
.hs-faq {
    padding: 80px 0;
    background: var(--hs-white);
}

.hs-faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hs-faq-item {
    background: var(--hs-bg) !important;
    border: 1px solid var(--hs-gray-100);
    border-radius: var(--hs-radius);
    overflow: hidden;
    transition: all 0.3s ease;
}
.hs-faq-item:hover {
    border-color: var(--hs-gray-300);
}
.hs-faq-item.active {
    border-color: var(--hs-primary);
    box-shadow: 0 2px 12px rgba(255,110,65,0.08);
}

.hs-faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: none !important;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: var(--hs-dark);
    font-family: var(--hs-font-body);
    text-align: left;
    gap: 16px;
}
.hs-faq-question i {
    color: var(--hs-gray-500);
    font-size: 12px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}
.hs-faq-item.active .hs-faq-question i {
    transform: rotate(180deg);
    color: var(--hs-primary);
}

.hs-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}
.hs-faq-item.active .hs-faq-answer {
    max-height: 300px;
}
.hs-faq-answer p {
    padding: 0 24px 20px;
    color: var(--hs-gray-700);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* =================== CTA TRUST ROW =================== */
.hs-cta-trust-row {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 28px;
    flex-wrap: wrap;
}
.hs-cta-trust-row span {
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    font-weight: 500;
}
.hs-cta-trust-row span i {
    margin-right: 6px;
    color: rgba(255,255,255,0.4);
}

/* =================== WHATSAPP FLOAT =================== */
.hs-whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    width: 60px;
    height: 60px;
    background: #25D366 !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: all 0.3s ease;
    text-decoration: none !important;
}
.hs-whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37,211,102,0.5);
}
.hs-whatsapp-float svg {
    width: 28px;
    height: 28px;
}

.hs-wa-tooltip {
    position: absolute;
    right: 72px;
    background: var(--hs-dark);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    font-family: var(--hs-font-body);
}
.hs-wa-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: var(--hs-dark);
    border-right: none;
}
.hs-whatsapp-float:hover .hs-wa-tooltip {
    opacity: 1;
}

/* =================== FOOTER PAYMENT LOGOS =================== */
.hs-payment-logos {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 16px;
}
.hs-payment-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08) !important;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}
.hs-payment-item i {
    font-size: 22px;
    color: rgba(255,255,255,0.75);
}
.hs-upi-icon {
    height: 22px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.75;
}

/* =================== RESPONSIVE =================== */
@media (max-width: 991px) {
    .hs-pricing-grid .col-lg-4:nth-child(2) .hs-price-featured {
        transform: scale(1);
    }
    .hs-price-featured:hover {
        transform: translateY(-4px);
    }
}
@media (max-width: 767px) {
    .hs-hero-guarantees {
        gap: 16px;
    }
    .hs-guarantee-item {
        font-size: 12px;
    }
    .hs-pricing,
    .hs-testimonials,
    .hs-comparison,
    .hs-faq {
        padding: 56px 0;
    }
    .hs-price-value {
        font-size: 2.4rem;
    }
    .hs-comparison-table th,
    .hs-comparison-table td {
        padding: 12px 16px;
        font-size: 13px;
    }
    .hs-domain-tlds {
        gap: 8px;
    }
    .hs-tld-chip {
        padding: 6px 14px;
        font-size: 13px;
    }
    .hs-cta-trust-row {
        gap: 16px;
    }
    .hs-whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
    }
    .hs-whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
    .hs-wa-tooltip {
        display: none;
    }
}

/* =================== BUNDLES SECTION =================== */
.hs-bundles {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--hs-white) 0%, var(--hs-bg) 100%) !important;
}

.hs-bundle-grid {
    max-width: 1100px;
    margin: 0 auto;
}

.hs-bundle-card {
    background: var(--hs-white);
    border: 1px solid var(--hs-gray-100);
    border-radius: var(--hs-radius-lg);
    padding: 36px 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
}
.hs-bundle-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--hs-shadow-lg);
    border-color: var(--hs-gray-300);
}

.hs-bundle-featured {
    border: 2px solid var(--hs-primary);
    box-shadow: var(--hs-shadow-lg);
}
.hs-bundle-featured:hover {
    box-shadow: var(--hs-shadow-xl);
}

.hs-bundle-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255,110,65,0.08) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.hs-bundle-icon i {
    font-size: 24px;
    color: var(--hs-primary);
}

.hs-bundle-card h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.hs-bundle-desc {
    color: var(--hs-gray-500);
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.hs-bundle-price {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--hs-gray-100);
}
.hs-bundle-amount {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--hs-dark);
    font-family: var(--hs-font-heading);
    line-height: 1.2;
}
.hs-bundle-period {
    display: block;
    font-size: 13px;
    color: var(--hs-gray-500);
    margin-top: 4px;
}

.hs-bundle-includes {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    flex-grow: 1;
    text-align: left;
}
.hs-bundle-includes li {
    padding: 7px 0;
    font-size: 14px;
    color: var(--hs-gray-700);
    display: flex;
    align-items: center;
    gap: 10px;
}
.hs-bundle-includes li i {
    color: #10B981;
    font-size: 13px;
    flex-shrink: 0;
}

/* =================== PRICE SAVINGS BADGE =================== */
.hs-price-save {
    background: rgba(16,185,129,0.08) !important;
    color: #10B981;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 0;
    margin: -12px 0 16px;
    border-radius: 8px;
    text-align: center;
}

/* =================== RESPONSIVE ADDITIONS =================== */
@media (max-width: 767px) {
    .hs-bundles {
        padding: 56px 0;
    }
    .hs-bundle-amount {
        font-size: 1.6rem;
    }
}

/* =================== FULL-WIDTH FOOTER FIX =================== */
.hs-footer-container {
    max-width: 100% !important;
    padding-left: 60px !important;
    padding-right: 60px !important;
}
.hs-footer-bottom .hs-footer-container {
    max-width: 100% !important;
    padding-left: 60px !important;
    padding-right: 60px !important;
}
@media (max-width: 991px) {
    .hs-footer-container {
        padding-left: 32px !important;
        padding-right: 32px !important;
    }
}
@media (max-width: 576px) {
    .hs-footer-container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}

/* =================== BUNDLES SECTION V2 =================== */
.hs-bundles {
    padding: 90px 0;
    background: linear-gradient(180deg, #F0F3F6 0%, var(--hs-white) 100%) !important;
    position: relative;
}

.hs-bundle-grid {
    max-width: 1140px;
    margin: 0 auto;
}

/* --- Card Base --- */
.hs-bundle-card {
    background: var(--hs-white);
    border: 1px solid var(--hs-gray-100);
    border-radius: var(--hs-radius-lg);
    padding: 0 32px 36px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.35s ease;
    position: relative;
    overflow: visible;
}
.hs-bundle-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(42,54,63,0.1);
    border-color: var(--hs-gray-300);
}

/* --- Featured Card --- */
.hs-bundle-featured {
    border: 2px solid var(--hs-primary);
    box-shadow: 0 12px 36px rgba(255,110,65,0.12);
}
.hs-bundle-featured:hover {
    box-shadow: 0 20px 48px rgba(255,110,65,0.18);
    border-color: var(--hs-primary);
}

/* --- Badge --- */
.hs-bundle-badge-wrap {
    text-align: center;
    margin-bottom: 8px;
    padding-top: 28px;
}
.hs-bundle-type {
    display: inline-block;
    background: var(--hs-gray-100) !important;
    color: var(--hs-gray-700);
    padding: 5px 16px;
    border-radius: var(--hs-radius-pill);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}
.hs-bundle-type-featured {
    background: var(--hs-gradient-accent) !important;
    color: var(--hs-white);
}

/* --- Icon --- */
.hs-bundle-icon-wrap {
    display: flex;
    justify-content: center;
    margin: 16px 0 12px;
}
.hs-bundle-icon {
    width: 68px;
    height: 68px;
    border-radius: 20px;
    background: rgba(255,110,65,0.06) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.hs-bundle-icon i {
    font-size: 26px;
    color: var(--hs-primary);
}
.hs-bundle-icon-featured {
    background: var(--hs-gradient-accent) !important;
}
.hs-bundle-icon-featured i {
    color: var(--hs-white) !important;
}
.hs-bundle-card:hover .hs-bundle-icon {
    transform: scale(1.08);
}

/* --- Title & Desc --- */
.hs-bundle-title {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--hs-dark);
}
.hs-bundle-desc {
    text-align: center;
    color: var(--hs-gray-500);
    font-size: 13.5px;
    line-height: 1.65;
    margin-bottom: 24px;
    min-height: 60px;
}

/* --- Price Block --- */
.hs-bundle-price-block {
    text-align: center;
    margin-bottom: 24px;
}
.hs-bundle-price-main {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}
.hs-bundle-currency {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--hs-dark);
    font-family: var(--hs-font-heading);
}
.hs-bundle-amount {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--hs-dark);
    line-height: 1;
    font-family: var(--hs-font-heading);
    letter-spacing: -1px;
}
.hs-bundle-price-sub {
    font-size: 14px;
    color: var(--hs-gray-700);
    font-weight: 600;
    margin-top: 4px;
}
.hs-bundle-price-recurring {
    font-size: 12px;
    color: var(--hs-gray-500);
    margin-top: 4px;
    font-weight: 500;
}

/* --- Divider --- */
.hs-bundle-divider {
    height: 1px;
    background: var(--hs-gray-100) !important;
    margin: 0 -32px 24px;
}

/* --- Feature List --- */
.hs-bundle-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    flex-grow: 1;
}
.hs-bundle-features li {
    padding: 6px 0;
    font-size: 13.5px;
    color: var(--hs-gray-700);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}
.hs-bundle-features li i {
    color: #10B981;
    font-size: 13px;
    flex-shrink: 0;
    margin-top: 3px;
}
.hs-bundle-features li strong {
    color: var(--hs-dark);
}

/* --- Ideal For --- */
.hs-bundle-ideal {
    background: var(--hs-gray-100) !important;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 12.5px;
    color: var(--hs-gray-700);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.hs-bundle-ideal i {
    color: var(--hs-primary);
    font-size: 14px;
    flex-shrink: 0;
}

/* --- CTA Button WhatsApp style --- */
.hs-bundle-card .hs-btn .fa-whatsapp {
    font-size: 16px;
}

/* --- Footer Info Bar --- */
.hs-bundle-footer-info {
    margin-top: 48px;
    background: var(--hs-dark);
    border-radius: var(--hs-radius-lg);
    padding: 28px 36px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.hs-bundle-company {
    display: flex;
    align-items: center;
    gap: 16px;
}
.hs-bundle-codesaint-logo {
    height: 32px;
    width: auto;
    opacity: 0.9;
    flex-shrink: 0;
}
.hs-bundle-company strong {
    display: block;
    color: var(--hs-white);
    font-size: 14px;
    font-family: var(--hs-font-heading);
}
.hs-bundle-company span {
    display: block;
    color: rgba(255,255,255,0.5);
    font-size: 12.5px;
    margin-top: 2px;
}

.hs-bundle-trust-items {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.hs-bundle-trust-items span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.6);
    font-size: 12.5px;
    font-weight: 500;
}
.hs-bundle-trust-items span i {
    color: var(--hs-primary-light);
    font-size: 13px;
}

/* --- Responsive --- */
@media (max-width: 991px) {
    .hs-bundles {
        padding: 60px 0;
    }
    .hs-bundle-footer-info {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }
    .hs-bundle-company {
        flex-direction: column;
        text-align: center;
    }
    .hs-bundle-trust-items {
        justify-content: center;
    }
}
@media (max-width: 767px) {
    .hs-bundle-card {
        padding: 0 24px 28px;
    }
    .hs-bundle-divider {
        margin: 0 -24px 20px;
    }
    .hs-bundle-amount {
        font-size: 2.2rem;
    }
    .hs-bundle-desc {
        min-height: auto;
    }
    .hs-bundle-footer-info {
        padding: 20px;
    }
    .hs-bundle-trust-items {
        gap: 16px;
    }
}

/* ================================================================
   HOSTINGSAINT — INNER PAGES GLOBAL REDESIGN
   Overrides WHMCS twenty-one parent theme (Bootstrap 4)
   Matches homepage design language
   ================================================================ */

/* =================== GLOBAL TYPOGRAPHY =================== */
body {
    font-family: var(--hs-font-body, 'Inter', sans-serif);
    color: var(--hs-gray-700, #4B5563);
    background: var(--hs-bg, #F7F8FA);
    -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6,
.card-title {
    font-family: var(--hs-font-heading, 'Poppins', sans-serif);
    color: var(--hs-dark, #2A363F);
    font-weight: 700;
}
a {
    color: var(--hs-primary, #FF6E41);
    transition: color 0.2s ease;
}
a:hover {
    color: var(--hs-primary-dark, #E85A30);
    text-decoration: none;
}

/* =================== PAGE CONTENT AREA =================== */
.main-content {
    padding-top: 30px;
    padding-bottom: 40px;
}
.main-content > .container {
    max-width: 1140px;
}

/* =================== BREADCRUMBS =================== */
.breadcrumb {
    background: transparent;
    padding: 12px 0;
    margin-bottom: 20px;
    font-size: 13px;
}
.breadcrumb-item a {
    color: var(--hs-gray-500);
}
.breadcrumb-item.active {
    color: var(--hs-dark);
    font-weight: 600;
}
.breadcrumb-item + .breadcrumb-item::before {
    content: "\f105";
    font-family: "Font Awesome 5 Pro", "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--hs-gray-300);
    font-size: 11px;
}

/* =================== CARDS =================== */
.card {
    border: 1px solid var(--hs-gray-100, #E8ECF0);
    border-radius: var(--hs-radius-lg, 16px);
    box-shadow: 0 1px 3px rgba(42,54,63,0.04);
    transition: box-shadow 0.3s ease;
    overflow: hidden;
}
.card:hover {
    box-shadow: 0 4px 12px rgba(42,54,63,0.08);
}
.card-header {
    background: var(--hs-white, #FFFFFF);
    border-bottom: 1px solid var(--hs-gray-100);
    padding: 20px 24px;
    font-weight: 700;
}
.card-header h3,
.card-header .card-title {
    font-size: 1.1rem;
    margin: 0;
}
.card-body {
    padding: 24px;
    background: var(--hs-white);
}
.card-footer {
    background: var(--hs-bg, #F7F8FA);
    border-top: 1px solid var(--hs-gray-100);
    padding: 16px 24px;
}
.card-accent-blue { border-top: 3px solid #3B82F6; }
.card-accent-green { border-top: 3px solid #10B981; }
.card-accent-red { border-top: 3px solid #EF4444; }
.card-accent-gold { border-top: 3px solid #F59E0B; }
.card-accent-orange { border-top: 3px solid var(--hs-primary); }

/* =================== BUTTONS =================== */
.btn {
    font-family: var(--hs-font-heading, 'Poppins', sans-serif);
    font-weight: 600;
    font-size: 14px;
    border-radius: var(--hs-radius-md, 10px);
    padding: 10px 22px;
    transition: all 0.25s ease;
    letter-spacing: 0.2px;
    border: none;
}
.btn-primary,
.btn-primary:focus {
    background: var(--hs-gradient-accent, linear-gradient(135deg, #FF6E41 0%, #FF9068 100%));
    color: #fff;
    box-shadow: 0 4px 14px rgba(255,110,65,0.3);
    border: none;
}
.btn-primary:hover,
.btn-primary:active {
    background: linear-gradient(135deg, #E85A30 0%, #FF6E41 100%);
    box-shadow: 0 6px 20px rgba(255,110,65,0.4);
    transform: translateY(-1px);
    color: #fff;
}
.btn-success {
    background: linear-gradient(135deg, #10B981 0%, #34D399 100%);
    box-shadow: 0 4px 14px rgba(16,185,129,0.3);
    color: #fff;
}
.btn-success:hover {
    background: linear-gradient(135deg, #059669 0%, #10B981 100%);
    box-shadow: 0 6px 20px rgba(16,185,129,0.4);
    transform: translateY(-1px);
    color: #fff;
}
.btn-danger {
    background: linear-gradient(135deg, #EF4444 0%, #F87171 100%);
    box-shadow: 0 4px 14px rgba(239,68,68,0.25);
    color: #fff;
}
.btn-danger:hover {
    background: linear-gradient(135deg, #DC2626 0%, #EF4444 100%);
    transform: translateY(-1px);
    color: #fff;
}
.btn-default,
.btn-secondary,
.btn-outline-secondary {
    background: var(--hs-white);
    color: var(--hs-gray-700);
    border: 1px solid var(--hs-gray-200, #D1D5DB);
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.btn-default:hover,
.btn-secondary:hover,
.btn-outline-secondary:hover {
    background: var(--hs-gray-100);
    color: var(--hs-dark);
    border-color: var(--hs-gray-300);
    transform: translateY(-1px);
}
.btn-info {
    background: linear-gradient(135deg, #3B82F6 0%, #60A5FA 100%);
    color: #fff;
    border: none;
}
.btn-info:hover {
    background: linear-gradient(135deg, #2563EB 0%, #3B82F6 100%);
    color: #fff;
}
.btn-warning {
    background: linear-gradient(135deg, #F59E0B 0%, #FBBF24 100%);
    color: #fff;
    border: none;
}
.btn-sm {
    padding: 6px 14px;
    font-size: 12.5px;
    border-radius: 8px;
}
.btn-lg {
    padding: 14px 32px;
    font-size: 16px;
    border-radius: 12px;
}
.btn-block {
    border-radius: var(--hs-radius-md);
}
.btn-group .btn {
    border-radius: 0;
}
.btn-group .btn:first-child {
    border-radius: var(--hs-radius-md) 0 0 var(--hs-radius-md);
}
.btn-group .btn:last-child {
    border-radius: 0 var(--hs-radius-md) var(--hs-radius-md) 0;
}

/* =================== FORMS =================== */
.form-control,
.field {
    border: 1.5px solid var(--hs-gray-200, #D1D5DB);
    border-radius: var(--hs-radius-md, 10px);
    padding: 10px 16px;
    font-size: 14px;
    color: var(--hs-dark);
    background: var(--hs-white);
    transition: all 0.2s ease;
    height: auto;
}
.form-control:focus,
.field:focus {
    border-color: var(--hs-primary);
    box-shadow: 0 0 0 3px rgba(255,110,65,0.1);
    outline: none;
}
.form-control::placeholder {
    color: var(--hs-gray-400, #9CA3AF);
}
.form-group label,
.form-control-label {
    font-weight: 600;
    font-size: 13px;
    color: var(--hs-dark);
    margin-bottom: 6px;
    letter-spacing: 0.2px;
}
.input-group-text {
    background: var(--hs-gray-100);
    border: 1.5px solid var(--hs-gray-200);
    border-radius: var(--hs-radius-md);
    color: var(--hs-gray-500);
    font-size: 14px;
}
.input-group .form-control {
    border-radius: var(--hs-radius-md);
}
.input-group-prepend .input-group-text {
    border-right: none;
    border-radius: var(--hs-radius-md) 0 0 var(--hs-radius-md);
}
.input-group-append .input-group-text,
.input-group-append .btn {
    border-left: none;
    border-radius: 0 var(--hs-radius-md) var(--hs-radius-md) 0;
}
.input-group > .form-control:not(:first-child) {
    border-radius: 0 var(--hs-radius-md) var(--hs-radius-md) 0;
}
.input-group > .form-control:not(:last-child) {
    border-radius: var(--hs-radius-md) 0 0 var(--hs-radius-md);
}
select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}
.custom-control-input:checked ~ .custom-control-label::before {
    background-color: var(--hs-primary);
    border-color: var(--hs-primary);
}
.form-check-input:checked {
    background-color: var(--hs-primary);
    border-color: var(--hs-primary);
}

/* =================== TABLES =================== */
.table {
    border-collapse: separate;
    border-spacing: 0;
}
.table thead th {
    background: var(--hs-gray-100, #F0F3F6);
    border: none;
    color: var(--hs-dark);
    font-family: var(--hs-font-heading);
    font-weight: 600;
    font-size: 12.5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 14px 16px;
    white-space: nowrap;
}
.table thead th:first-child {
    border-radius: var(--hs-radius-md) 0 0 var(--hs-radius-md);
}
.table thead th:last-child {
    border-radius: 0 var(--hs-radius-md) var(--hs-radius-md) 0;
}
.table td {
    padding: 14px 16px;
    border-top: 1px solid var(--hs-gray-100);
    vertical-align: middle;
    font-size: 14px;
    color: var(--hs-gray-700);
}
.table tbody tr {
    transition: background 0.15s ease;
}
.table tbody tr:hover {
    background: rgba(255,110,65,0.02);
}
.table-striped tbody tr:nth-of-type(odd) {
    background: rgba(247,248,250,0.5);
}
.table-striped tbody tr:nth-of-type(odd):hover {
    background: rgba(255,110,65,0.03);
}
.table-responsive {
    border-radius: var(--hs-radius-lg);
    border: 1px solid var(--hs-gray-100);
}

/* =================== ALERTS =================== */
.alert {
    border-radius: var(--hs-radius-md);
    border: none;
    padding: 16px 20px;
    font-size: 14px;
    font-weight: 500;
}
.alert-success {
    background: rgba(16,185,129,0.08);
    color: #065F46;
    border-left: 4px solid #10B981;
}
.alert-danger, .alert-error {
    background: rgba(239,68,68,0.08);
    color: #991B1B;
    border-left: 4px solid #EF4444;
}
.alert-warning {
    background: rgba(245,158,11,0.08);
    color: #92400E;
    border-left: 4px solid #F59E0B;
}
.alert-info {
    background: rgba(59,130,246,0.08);
    color: #1E40AF;
    border-left: 4px solid #3B82F6;
}

/* =================== BADGES & LABELS =================== */
.badge {
    font-family: var(--hs-font-heading);
    font-weight: 600;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: var(--hs-radius-pill, 50px);
    letter-spacing: 0.3px;
}
.badge-primary, .badge-info {
    background: rgba(255,110,65,0.1);
    color: var(--hs-primary);
}
.badge-success {
    background: rgba(16,185,129,0.1);
    color: #059669;
}
.badge-danger {
    background: rgba(239,68,68,0.1);
    color: #DC2626;
}
.badge-warning {
    background: rgba(245,158,11,0.1);
    color: #D97706;
}
.badge-secondary {
    background: var(--hs-gray-100);
    color: var(--hs-gray-700);
}
.label {
    font-size: 11px;
    padding: 4px 10px;
    border-radius: var(--hs-radius-pill);
    font-weight: 600;
}

/* =================== LOGIN PAGE =================== */
.login-form .card {
    border-radius: var(--hs-radius-lg);
    box-shadow: 0 8px 30px rgba(42,54,63,0.08);
    border: 1px solid var(--hs-gray-100);
    overflow: hidden;
}
.login-form .card-body {
    padding: 40px;
}
.login-form .card-body .h3,
.login-form .card-body h6.h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--hs-dark);
    font-family: var(--hs-font-heading);
}
.login-form .card-body .text-muted {
    color: var(--hs-gray-500) !important;
    font-size: 14px;
}
.login-form .card-footer {
    text-align: center;
    padding: 20px;
    background: var(--hs-bg);
}
.login-form .card-footer a {
    color: var(--hs-primary);
    font-weight: 700;
}
.login-form .btn-primary {
    padding: 12px 32px;
    font-size: 15px;
}
.login-form .btn-reveal-pw {
    background: transparent;
    border: 1.5px solid var(--hs-gray-200);
    border-left: none;
    color: var(--hs-gray-500);
}

/* =================== REGISTRATION PAGE =================== */
#registration .card {
    border-radius: var(--hs-radius-lg);
    margin-bottom: 20px;
}
#registration .card-title {
    font-size: 1.15rem;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--hs-gray-100);
}
#registration .prepend-icon .field-icon {
    color: var(--hs-gray-400);
}
#registration .btn-primary {
    padding: 14px 40px;
    font-size: 16px;
}

/* =================== CLIENT AREA DASHBOARD =================== */
.tiles {
    margin-bottom: 28px;
}
.tiles .row {
    margin: 0;
}
.tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 28px 16px;
    background: var(--hs-white);
    border: 1px solid var(--hs-gray-100);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 140px;
}
.tile:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(42,54,63,0.1);
    text-decoration: none;
    z-index: 2;
}
.tile:first-child {
    border-radius: var(--hs-radius-lg) 0 0 var(--hs-radius-lg);
}
.tile:last-child {
    border-radius: 0 var(--hs-radius-lg) var(--hs-radius-lg) 0;
}
.tile i {
    font-size: 28px;
    color: var(--hs-primary);
    margin-bottom: 10px;
}
.tile .stat {
    font-size: 2rem;
    font-weight: 800;
    color: var(--hs-dark);
    font-family: var(--hs-font-heading);
    line-height: 1.1;
}
.tile .title {
    font-size: 12.5px;
    color: var(--hs-gray-500);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}
.tile .highlight {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    transition: height 0.3s ease;
}
.tile:hover .highlight {
    height: 4px;
}
.bg-color-blue { background: #3B82F6 !important; }
.bg-color-green { background: #10B981 !important; }
.bg-color-red { background: #EF4444 !important; }
.bg-color-gold { background: #F59E0B !important; }
.bg-color-orange { background: var(--hs-primary) !important; }

/* Client home cards */
.client-home-cards .card {
    margin-bottom: 20px;
}
.client-home-cards .list-group-item {
    border: none;
    border-bottom: 1px solid var(--hs-gray-100);
    padding: 14px 24px;
    font-size: 14px;
    color: var(--hs-gray-700);
    transition: all 0.15s ease;
}
.client-home-cards .list-group-item:hover {
    background: rgba(255,110,65,0.03);
    color: var(--hs-primary);
    padding-left: 28px;
}
.client-home-cards .list-group-item i {
    width: 20px;
    text-align: center;
    color: var(--hs-gray-400);
    margin-right: 4px;
}
.client-home-cards .list-group-item:hover i {
    color: var(--hs-primary);
}
.client-home-cards .list-group-item.active {
    background: rgba(255,110,65,0.06);
    color: var(--hs-primary);
    border-color: var(--hs-gray-100);
}

/* =================== TOPBAR (Logged In) =================== */
.topbar {
    background: var(--hs-dark, #2A363F);
    padding: 6px 0;
    font-size: 13px;
}
.topbar .btn {
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    padding: 4px 12px;
}
.topbar .btn:hover {
    color: #fff;
}
.topbar .input-group-text {
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.5);
    font-size: 12px;
}
.btn-active-client {
    color: var(--hs-white) !important;
    font-weight: 600;
}
.btn-return-to-admin {
    color: var(--hs-primary-light, #FFAF8F) !important;
}

/* =================== SIDEBAR NAVIGATION =================== */
.sidebar,
.panel-sidebar {
    background: var(--hs-white);
    border-radius: var(--hs-radius-lg);
    border: 1px solid var(--hs-gray-100);
    overflow: hidden;
}
.sidebar .list-group-item,
.panel-sidebar .list-group-item {
    border: none;
    border-bottom: 1px solid var(--hs-gray-100);
    padding: 13px 20px;
    font-size: 14px;
    color: var(--hs-gray-700);
    transition: all 0.15s ease;
    font-weight: 500;
}
.sidebar .list-group-item:hover,
.panel-sidebar .list-group-item:hover {
    background: rgba(255,110,65,0.04);
    color: var(--hs-primary);
    padding-left: 24px;
}
.sidebar .list-group-item.active,
.panel-sidebar .list-group-item.active {
    background: rgba(255,110,65,0.06);
    color: var(--hs-primary);
    border-left: 3px solid var(--hs-primary);
    font-weight: 600;
}
.sidebar .list-group-item i,
.panel-sidebar .list-group-item i {
    width: 22px;
    text-align: center;
    margin-right: 6px;
    color: var(--hs-gray-400);
}
.sidebar .list-group-item:hover i,
.sidebar .list-group-item.active i,
.panel-sidebar .list-group-item:hover i,
.panel-sidebar .list-group-item.active i {
    color: var(--hs-primary);
}

/* =================== SUPPORT TICKETS =================== */
.view-ticket .card-title {
    font-size: 1.15rem;
}
.ticket-reply {
    border-radius: var(--hs-radius-md);
    padding: 0;
}
.ticket-reply .posted-by {
    font-size: 13px;
    color: var(--hs-gray-500);
    padding: 12px 0;
    border-bottom: 1px solid var(--hs-gray-100);
    margin-bottom: 16px;
}
.ticket-reply .posted-by-name {
    font-weight: 700;
    color: var(--hs-dark);
}
.ticket-reply.staff {
    background: rgba(59,130,246,0.03);
    border-left: 3px solid #3B82F6;
    padding: 16px;
    border-radius: var(--hs-radius-md);
    margin-bottom: 12px;
}
.ticket-reply .message {
    font-size: 14px;
    line-height: 1.7;
    color: var(--hs-gray-700);
}
.requestor-badge {
    font-size: 10px;
    padding: 3px 8px;
    border-radius: var(--hs-radius-pill);
    font-weight: 600;
    text-transform: uppercase;
}
.requestor-type-owner {
    background: rgba(255,110,65,0.1);
    color: var(--hs-primary);
}
.requestor-type-operator {
    background: rgba(59,130,246,0.1);
    color: #3B82F6;
}

/* Ticket list */
.supporttickets-list .badge {
    font-size: 10px;
}

/* =================== INVOICES =================== */
.invoice-container,
.viewinvoice {
    background: var(--hs-white);
    border-radius: var(--hs-radius-lg);
    border: 1px solid var(--hs-gray-100);
    padding: 32px;
}
.invoice-header {
    border-bottom: 2px solid var(--hs-gray-100);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

/* =================== DOMAIN PRICING PAGE =================== */
.domain-pricing-table {
    border-radius: var(--hs-radius-lg);
    overflow: hidden;
}
.domain-pricing-table .table thead th {
    background: var(--hs-dark);
    color: var(--hs-white);
    font-size: 12px;
}
.domain-pricing-table .tld-row:hover {
    background: rgba(255,110,65,0.03);
}
.domain-pricing-table .tld {
    font-weight: 700;
    color: var(--hs-dark);
    font-family: var(--hs-font-heading);
}
.domain-pricing .btn-transfer,
.domain-pricing .btn-register {
    background: var(--hs-primary);
    color: #fff;
    border-radius: var(--hs-radius-pill);
    padding: 6px 18px;
    font-size: 12px;
}
.domain-pricing .btn-transfer:hover,
.domain-pricing .btn-register:hover {
    background: var(--hs-primary-dark, #E85A30);
}

/* Domain search results */
.domain-checker-result-available {
    background: rgba(16,185,129,0.06);
    border: 1px solid rgba(16,185,129,0.2);
    border-radius: var(--hs-radius-md);
    padding: 16px 20px;
}
.domain-checker-result-unavailable {
    background: rgba(239,68,68,0.04);
    border: 1px solid rgba(239,68,68,0.15);
    border-radius: var(--hs-radius-md);
    padding: 16px 20px;
}

/* =================== KNOWLEDGEBASE =================== */
.kb-cat-list .card {
    transition: all 0.25s ease;
}
.kb-cat-list .card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(42,54,63,0.1);
}
.kb-article {
    background: var(--hs-white);
    border-radius: var(--hs-radius-lg);
    padding: 32px;
    border: 1px solid var(--hs-gray-100);
}
.kb-article h1 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--hs-gray-100);
}
.kb-article .article-content {
    font-size: 15px;
    line-height: 1.8;
    color: var(--hs-gray-700);
}
.kb-article .article-content code {
    background: var(--hs-gray-100);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 13px;
    color: var(--hs-primary);
    font-family: 'JetBrains Mono', monospace;
}

/* =================== CART / STORE =================== */
.order-summary,
.cart-body {
    background: var(--hs-white);
    border-radius: var(--hs-radius-lg);
    border: 1px solid var(--hs-gray-100);
    padding: 24px;
}
.store-product-card {
    border-radius: var(--hs-radius-lg);
    transition: all 0.3s ease;
}
.store-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(42,54,63,0.1);
}
/* Product group header */
.product-group .products-list-header {
    font-family: var(--hs-font-heading);
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--hs-dark);
    margin-bottom: 8px;
}
.product-group .products-list-subheadline {
    color: var(--hs-gray-500);
    font-size: 15px;
    margin-bottom: 24px;
}
/* Order form products */
.product {
    border-radius: var(--hs-radius-lg) !important;
    border: 1px solid var(--hs-gray-100) !important;
    transition: all 0.3s ease;
    overflow: hidden;
}
.product:hover {
    box-shadow: 0 8px 24px rgba(42,54,63,0.08);
    border-color: var(--hs-gray-200) !important;
}
.product.featured {
    border: 2px solid var(--hs-primary) !important;
    box-shadow: 0 8px 30px rgba(255,110,65,0.12);
}
.product .product-title {
    font-family: var(--hs-font-heading);
    font-weight: 700;
}
.product .product-pricing {
    font-family: var(--hs-font-heading);
    font-weight: 800;
    color: var(--hs-dark);
}
/* Checkout */
.checkout .card {
    border-radius: var(--hs-radius-lg);
}
.order-summary .total-due-today {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--hs-dark);
    font-family: var(--hs-font-heading);
}

/* =================== CONTACT PAGE =================== */
.contact-form .card {
    border-radius: var(--hs-radius-lg);
    box-shadow: 0 4px 16px rgba(42,54,63,0.06);
}

/* =================== ANNOUNCEMENTS =================== */
.announcement-single .card {
    border-radius: var(--hs-radius-lg);
    overflow: hidden;
}
.announcement-single .card-body {
    font-size: 15px;
    line-height: 1.8;
}
.announcement-single .card-title {
    font-size: 1.4rem;
}

/* =================== SERVER STATUS =================== */
.server-status .table .status-active {
    color: #10B981;
}
.server-status .table .status-offline {
    color: #EF4444;
}

/* =================== PAGINATION =================== */
.pagination {
    gap: 4px;
}
.page-item .page-link {
    border: 1px solid var(--hs-gray-200);
    border-radius: 8px !important;
    color: var(--hs-gray-700);
    font-weight: 600;
    font-size: 13px;
    padding: 8px 14px;
    transition: all 0.2s ease;
}
.page-item .page-link:hover {
    background: rgba(255,110,65,0.06);
    color: var(--hs-primary);
    border-color: var(--hs-primary);
}
.page-item.active .page-link {
    background: var(--hs-primary);
    border-color: var(--hs-primary);
    color: #fff;
    box-shadow: 0 2px 8px rgba(255,110,65,0.3);
}
.page-item.disabled .page-link {
    background: var(--hs-gray-100);
    color: var(--hs-gray-400);
}

/* =================== MODALS =================== */
.modal-content {
    border: none;
    border-radius: var(--hs-radius-lg);
    box-shadow: 0 20px 60px rgba(42,54,63,0.15);
    overflow: hidden;
}
.modal-header {
    background: var(--hs-white);
    border-bottom: 1px solid var(--hs-gray-100);
    padding: 20px 24px;
}
.modal-title {
    font-family: var(--hs-font-heading);
    font-weight: 700;
    font-size: 1.1rem;
}
.modal-body {
    padding: 24px;
}
.modal-footer {
    background: var(--hs-bg);
    border-top: 1px solid var(--hs-gray-100);
    padding: 16px 24px;
}
.modal-backdrop.show {
    opacity: 0.4;
}

/* =================== DROPDOWNS =================== */
.dropdown-menu {
    border: 1px solid var(--hs-gray-100);
    border-radius: var(--hs-radius-md);
    box-shadow: 0 10px 30px rgba(42,54,63,0.12);
    padding: 8px;
}
.dropdown-item {
    padding: 8px 14px;
    font-size: 14px;
    border-radius: 6px;
    color: var(--hs-gray-700);
    transition: all 0.15s ease;
}
.dropdown-item:hover {
    background: rgba(255,110,65,0.05);
    color: var(--hs-primary);
}
.dropdown-item.active,
.dropdown-item:active {
    background: var(--hs-primary);
    color: #fff;
}
.dropdown-divider {
    border-color: var(--hs-gray-100);
    margin: 4px 0;
}

/* =================== TABS / NAV PILLS =================== */
.nav-tabs {
    border-bottom: 2px solid var(--hs-gray-100);
    gap: 4px;
}
.nav-tabs .nav-link {
    border: none;
    border-bottom: 2px solid transparent;
    color: var(--hs-gray-500);
    font-weight: 600;
    font-size: 14px;
    padding: 10px 20px;
    margin-bottom: -2px;
    transition: all 0.2s ease;
    border-radius: 0;
}
.nav-tabs .nav-link:hover {
    color: var(--hs-primary);
    border-bottom-color: rgba(255,110,65,0.3);
    background: transparent;
}
.nav-tabs .nav-link.active {
    color: var(--hs-primary);
    border-bottom-color: var(--hs-primary);
    background: transparent;
    font-weight: 700;
}
.nav-pills .nav-link {
    border-radius: var(--hs-radius-md);
    font-weight: 600;
    font-size: 14px;
    padding: 8px 18px;
    color: var(--hs-gray-700);
    transition: all 0.2s ease;
}
.nav-pills .nav-link.active {
    background: var(--hs-primary);
    color: #fff;
    box-shadow: 0 2px 8px rgba(255,110,65,0.3);
}

/* =================== TOOLTIPS & POPOVERS =================== */
.tooltip-inner {
    background: var(--hs-dark);
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 500;
}
.popover {
    border: 1px solid var(--hs-gray-100);
    border-radius: var(--hs-radius-md);
    box-shadow: 0 8px 24px rgba(42,54,63,0.1);
}
.popover-header {
    background: var(--hs-bg);
    border-bottom: 1px solid var(--hs-gray-100);
    font-family: var(--hs-font-heading);
    font-weight: 600;
}

/* =================== PROGRESS BARS =================== */
.progress {
    height: 8px;
    border-radius: 4px;
    background: var(--hs-gray-100);
    overflow: hidden;
}
.progress-bar {
    background: var(--hs-gradient-accent);
    border-radius: 4px;
}

/* =================== PRODUCT DETAILS PAGE =================== */
.product-details-tab .tab-content {
    padding: 24px 0;
}
.product-icon {
    color: var(--hs-primary);
}
.service-status {
    font-weight: 700;
    font-family: var(--hs-font-heading);
}
.status-active {
    color: #10B981;
}
.status-pending {
    color: #F59E0B;
}
.status-suspended, .status-terminated {
    color: #EF4444;
}

/* =================== INVOICE VIEW =================== */
.invoice-header-bg {
    background: var(--hs-dark);
    color: var(--hs-white);
    border-radius: var(--hs-radius-lg) var(--hs-radius-lg) 0 0;
    padding: 24px;
}
.invoice-mid-section .invoice-details label {
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--hs-gray-500);
}
.invoice-payment-btn .btn {
    padding: 14px 40px;
    font-size: 16px;
}

/* =================== MISC =================== */
hr {
    border-color: var(--hs-gray-100);
}
.text-muted {
    color: var(--hs-gray-500) !important;
}
.bg-light {
    background: var(--hs-bg) !important;
}
.shadow-sm {
    box-shadow: 0 1px 3px rgba(42,54,63,0.06) !important;
}
.shadow {
    box-shadow: 0 4px 12px rgba(42,54,63,0.08) !important;
}
.shadow-lg {
    box-shadow: 0 10px 30px rgba(42,54,63,0.12) !important;
}
.rounded {
    border-radius: var(--hs-radius-md) !important;
}
.rounded-lg {
    border-radius: var(--hs-radius-lg) !important;
}
/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: var(--hs-gray-100);
}
::-webkit-scrollbar-thumb {
    background: var(--hs-gray-300);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--hs-gray-500);
}
/* Selection color */
::selection {
    background: rgba(255,110,65,0.15);
    color: var(--hs-dark);
}

/* =================== RESPONSIVE =================== */
@media (max-width: 991px) {
    .tile {
        min-height: 110px;
        padding: 20px 12px;
    }
    .tile .stat {
        font-size: 1.5rem;
    }
    .tile .title {
        font-size: 11px;
    }
    .card-body {
        padding: 20px;
    }
    .login-form .card-body {
        padding: 28px;
    }
}
@media (max-width: 767px) {
    .tile {
        min-height: 100px;
        border-radius: 0 !important;
    }
    .tile:first-child {
        border-radius: var(--hs-radius-lg) var(--hs-radius-lg) 0 0 !important;
    }
    .tiles .col-6:nth-child(2) .tile {
        border-radius: 0 var(--hs-radius-lg) 0 0 !important;
    }
    .tiles .col-6:first-child .tile {
        border-radius: var(--hs-radius-lg) 0 0 0 !important;
    }
    .tile .stat {
        font-size: 1.3rem;
    }
    .card-body {
        padding: 16px;
    }
    .card-header {
        padding: 16px;
    }
    .table td, .table thead th {
        padding: 10px 12px;
        font-size: 13px;
    }
    .btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    .nav-tabs .nav-link {
        padding: 8px 12px;
        font-size: 13px;
    }
}

/* ================================================================
   HOSTINGSAINT — CART / ORDER FORM REDESIGN
   Targets standard_cart order form template
   ================================================================ */

/* --- Cart Layout --- */
#order-standard_cart {
    max-width: 1140px;
    margin: 0 auto;
    padding: 20px 0 40px;
}
#order-standard_cart .cart-sidebar.sidebar {
    background: var(--hs-white, #fff);
    border-radius: var(--hs-radius-lg, 16px);
    border: 1px solid var(--hs-gray-100, #E8ECF0);
    padding: 0;
    overflow: hidden;
}
#order-standard_cart .cart-body {
    background: transparent;
    padding: 0;
    border: none;
}

/* --- Cart Sidebar Categories --- */
.sidebar .list-group {
    border-radius: var(--hs-radius-lg);
    overflow: hidden;
}
.sidebar .list-group .list-group-item {
    border: none;
    border-bottom: 1px solid var(--hs-gray-100);
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--hs-gray-700, #4B5563);
    transition: all 0.2s ease;
}
.sidebar .list-group .list-group-item:hover {
    background: rgba(255,110,65,0.04);
    color: var(--hs-primary, #FF6E41);
    padding-left: 24px;
}
.sidebar .list-group .list-group-item.active {
    background: rgba(255,110,65,0.06);
    color: var(--hs-primary);
    border-left: 3px solid var(--hs-primary);
    font-weight: 600;
}
.sidebar .list-group .list-group-item i {
    color: var(--hs-gray-400);
    width: 22px;
    margin-right: 6px;
    text-align: center;
}
.sidebar .list-group .list-group-item:hover i,
.sidebar .list-group .list-group-item.active i {
    color: var(--hs-primary);
}

/* --- Product Group Header --- */
.header-lined {
    border-bottom: none;
    margin-bottom: 28px;
    padding-bottom: 0;
}
.header-lined h1 {
    font-family: var(--hs-font-heading, 'Poppins', sans-serif);
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--hs-dark, #2A363F);
    margin-bottom: 8px;
}
.header-lined p {
    color: var(--hs-gray-500, #6B7280);
    font-size: 15px;
    max-width: 600px;
}

/* --- Product Cards --- */
.products .product {
    background: var(--hs-white, #fff);
    border: 1px solid var(--hs-gray-100) !important;
    border-radius: var(--hs-radius-lg, 16px) !important;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    height: calc(100% - 20px);
}
.products .product:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(42,54,63,0.1);
    border-color: var(--hs-gray-200) !important;
}

/* Product Header (Name) */
.products .product header {
    background: var(--hs-bg, #F7F8FA);
    padding: 20px 24px;
    border-bottom: 1px solid var(--hs-gray-100);
    font-family: var(--hs-font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--hs-dark);
}
.products .product header .qty {
    background: rgba(16,185,129,0.1);
    color: #059669;
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 50px;
    font-weight: 600;
}

/* Product Description & Features */
.products .product .product-desc {
    padding: 20px 24px;
    flex-grow: 1;
}
.products .product .product-desc p {
    color: var(--hs-gray-500);
    font-size: 14px;
    margin-bottom: 16px;
    line-height: 1.6;
}
.products .product .product-desc ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.products .product .product-desc ul li {
    padding: 6px 0;
    font-size: 13.5px;
    color: var(--hs-gray-700);
    display: flex;
    align-items: center;
    gap: 8px;
}
.products .product .product-desc ul li::before {
    content: "\f058";
    font-family: "Font Awesome 5 Pro", "Font Awesome 5 Free";
    font-weight: 900;
    color: #10B981;
    font-size: 12px;
    flex-shrink: 0;
}
.products .product .product-desc ul li .feature-value {
    font-weight: 700;
    color: var(--hs-dark);
}

/* Product Footer (Price + CTA) */
.products .product footer {
    padding: 20px 24px;
    border-top: 1px solid var(--hs-gray-100);
    background: var(--hs-bg);
}
.products .product .product-pricing {
    font-family: var(--hs-font-heading);
    color: var(--hs-gray-500);
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 12px;
}
.products .product .product-pricing .price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--hs-dark);
    letter-spacing: -0.5px;
}
.products .product footer .btn {
    width: 100%;
    padding: 12px;
    font-size: 14px;
    font-weight: 700;
    border-radius: var(--hs-radius-md, 10px);
}
.products .product footer .btn-primary {
    background: var(--hs-gradient-accent, linear-gradient(135deg, #FF6E41 0%, #FF9068 100%));
    border: none;
    box-shadow: 0 4px 14px rgba(255,110,65,0.3);
}
.products .product footer .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255,110,65,0.4);
}

/* Featured Product */
.products .product.featured {
    border: 2px solid var(--hs-primary) !important;
    box-shadow: 0 8px 30px rgba(255,110,65,0.12);
}
.products .product.featured header {
    background: var(--hs-primary);
    color: #fff;
    border-bottom: none;
}

/* --- Configure Product Page --- */
.configure-product .card {
    border-radius: var(--hs-radius-lg);
}
.configure-product .billing-cycle {
    border-radius: var(--hs-radius-md);
    border: 1.5px solid var(--hs-gray-200);
    padding: 14px 18px;
    margin-bottom: 8px;
    transition: all 0.2s ease;
    cursor: pointer;
}
.configure-product .billing-cycle:hover {
    border-color: var(--hs-primary);
    background: rgba(255,110,65,0.02);
}
.configure-product .billing-cycle.selected {
    border-color: var(--hs-primary);
    background: rgba(255,110,65,0.04);
    box-shadow: 0 0 0 3px rgba(255,110,65,0.1);
}

/* --- View Cart --- */
.view-cart-items-header {
    background: var(--hs-gray-100);
    border-radius: var(--hs-radius-md);
    padding: 12px 20px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--hs-dark);
    font-family: var(--hs-font-heading);
}
.view-cart-items .item {
    background: var(--hs-white);
    border: 1px solid var(--hs-gray-100);
    border-radius: var(--hs-radius-md);
    padding: 20px;
    margin-bottom: 8px;
    transition: all 0.2s ease;
}
.view-cart-items .item:hover {
    border-color: var(--hs-gray-200);
    box-shadow: 0 2px 8px rgba(42,54,63,0.04);
}

/* --- Checkout --- */
.checkout .order-summary {
    background: var(--hs-white);
    border: 1px solid var(--hs-gray-100);
    border-radius: var(--hs-radius-lg);
    padding: 28px;
}
.checkout .total-due-today {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--hs-dark);
    font-family: var(--hs-font-heading);
}
.checkout .total-due-today .amt {
    color: var(--hs-primary);
}
.checkout #btnCompleteOrder {
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 700;
    border-radius: var(--hs-radius-md);
    width: 100%;
}

/* --- Domain Search in Cart --- */
.domain-checker-container {
    background: var(--hs-white);
    border-radius: var(--hs-radius-lg);
    border: 1px solid var(--hs-gray-100);
    padding: 28px;
    margin-bottom: 24px;
}
.domain-checker-container .input-group {
    max-width: 600px;
    margin: 0 auto;
}
.domain-checker-container .input-group .form-control {
    border-radius: var(--hs-radius-md) 0 0 var(--hs-radius-md);
    padding: 14px 20px;
    font-size: 16px;
    border: 2px solid var(--hs-gray-200);
}
.domain-checker-container .input-group .form-control:focus {
    border-color: var(--hs-primary);
    box-shadow: 0 0 0 3px rgba(255,110,65,0.1);
}
.domain-checker-container .input-group .btn {
    border-radius: 0 var(--hs-radius-md) var(--hs-radius-md) 0;
    padding: 14px 28px;
    font-size: 15px;
}
.domain-checker-available {
    border-left: 4px solid #10B981;
    background: rgba(16,185,129,0.04);
    border-radius: var(--hs-radius-md);
    padding: 16px 20px;
    margin: 12px 0;
}
.domain-checker-unavailable {
    border-left: 4px solid var(--hs-gray-300);
    background: var(--hs-bg);
    border-radius: var(--hs-radius-md);
    padding: 16px 20px;
    margin: 12px 0;
}

/* --- Order Complete Page --- */
.order-complete {
    text-align: center;
    padding: 40px 20px;
}
.order-complete i.fa-check-circle,
.order-complete i.fa-thumbs-up {
    font-size: 64px;
    color: #10B981;
    margin-bottom: 20px;
}

/* --- Store Page (MarketConnect) --- */
.store-product .card {
    border-radius: var(--hs-radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
}
.store-product .card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(42,54,63,0.1);
}

/* --- Collapsed sidebar on mobile --- */
@media (max-width: 991px) {
    #order-standard_cart .cart-sidebar {
        margin-bottom: 20px;
    }
    .products .product header {
        padding: 16px 20px;
    }
    .products .product .product-desc {
        padding: 16px 20px;
    }
    .products .product footer {
        padding: 16px 20px;
    }
}
@media (max-width: 767px) {
    .header-lined h1 {
        font-size: 1.4rem;
    }
    .products .product .product-pricing .price {
        font-size: 1.3rem;
    }
}

/* ================================================================
   HOSTINGSAINT — SPECIFICITY OVERRIDES
   Must override Bootstrap + twenty-one parent theme (theme.min.css)
   Parent uses --primary:#336699, system fonts, .25rem border-radius
   ================================================================ */

/* --- ROOT VARIABLE OVERRIDE --- */
:root {
    --primary: #FF6E41 !important;
    --secondary: #2A363F !important;
    --success: #10B981 !important;
    --info: #3B82F6 !important;
    --warning: #F59E0B !important;
    --danger: #EF4444 !important;
    --light: #F7F8FA !important;
    --dark: #2A363F !important;
    --font-family-sans-serif: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
}

/* --- BODY & TYPOGRAPHY --- */
body.primary-bg-color {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
    color: #4B5563 !important;
    background-color: #F7F8FA !important;
}
body h1, body h2, body h3, body h4, body h5, body h6,
body .h1, body .h2, body .h3, body .h4, body .h5, body .h6 {
    font-family: 'Poppins', sans-serif !important;
    color: #2A363F !important;
}
body a {
    color: #FF6E41 !important;
}
body a:hover {
    color: #E85A30 !important;
    text-decoration: none !important;
}
/* Exclude white links in dark areas */
body .topbar a,
body .hs-footer a,
body footer a,
body .navbar a,
body .hs-mega-link,
body .hs-mega-browse,
body .btn,
body .list-group-item,
body .dropdown-item,
body .nav-link {
    color: inherit !important;
}
body .topbar a:hover,
body .navbar .nav-link:hover {
    color: inherit !important;
}

/* --- CARDS --- */
body .card {
    border: 1px solid #E8ECF0 !important;
    border-radius: 16px !important;
    box-shadow: 0 1px 3px rgba(42,54,63,0.04) !important;
    overflow: hidden !important;
}
body .card:hover {
    box-shadow: 0 4px 12px rgba(42,54,63,0.08) !important;
}
body .card-header {
    background: #fff !important;
    border-bottom: 1px solid #E8ECF0 !important;
    padding: 20px 24px !important;
}
body .card-header h3,
body .card-header .card-title {
    font-size: 1.1rem !important;
    margin: 0 !important;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 700 !important;
    color: #2A363F !important;
}
body .card-body {
    padding: 24px !important;
    background: #fff !important;
}
body .card-footer {
    background: #F7F8FA !important;
    border-top: 1px solid #E8ECF0 !important;
    padding: 16px 24px !important;
}
/* Accent borders */
body .card-accent-blue { border-top: 3px solid #3B82F6 !important; }
body .card-accent-green { border-top: 3px solid #10B981 !important; }
body .card-accent-red { border-top: 3px solid #EF4444 !important; }
body .card-accent-gold { border-top: 3px solid #F59E0B !important; }

/* --- BUTTONS --- */
body .btn {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    border-radius: 10px !important;
    padding: 10px 22px !important;
    transition: all 0.25s ease !important;
    letter-spacing: 0.2px !important;
}
body .btn-primary,
body .btn-primary:focus,
body .btn-primary:not(:disabled):not(.disabled):active {
    background: linear-gradient(135deg, #FF6E41 0%, #FF9068 100%) !important;
    color: #fff !important;
    box-shadow: 0 4px 14px rgba(255,110,65,0.3) !important;
    border: none !important;
}
body .btn-primary:hover {
    background: linear-gradient(135deg, #E85A30 0%, #FF6E41 100%) !important;
    box-shadow: 0 6px 20px rgba(255,110,65,0.4) !important;
    transform: translateY(-1px) !important;
    color: #fff !important;
}
body .btn-success,
body .btn-success:focus {
    background: linear-gradient(135deg, #10B981 0%, #34D399 100%) !important;
    box-shadow: 0 4px 14px rgba(16,185,129,0.3) !important;
    color: #fff !important;
    border: none !important;
}
body .btn-danger,
body .btn-danger:focus {
    background: linear-gradient(135deg, #EF4444 0%, #F87171 100%) !important;
    color: #fff !important;
    border: none !important;
}
body .btn-info,
body .btn-info:focus {
    background: linear-gradient(135deg, #3B82F6 0%, #60A5FA 100%) !important;
    color: #fff !important;
    border: none !important;
}
body .btn-default,
body .btn-secondary,
body .btn-outline-primary,
body .btn-outline-secondary {
    background: #fff !important;
    color: #4B5563 !important;
    border: 1px solid #D1D5DB !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04) !important;
}
body .btn-default:hover,
body .btn-secondary:hover,
body .btn-outline-primary:hover,
body .btn-outline-secondary:hover {
    background: #F0F3F6 !important;
    color: #2A363F !important;
    border-color: #9CA3AF !important;
}
body .btn-sm {
    padding: 6px 14px !important;
    font-size: 12.5px !important;
    border-radius: 8px !important;
}
body .btn-lg {
    padding: 14px 32px !important;
    font-size: 16px !important;
    border-radius: 12px !important;
}

/* --- FORM CONTROLS --- */
body .form-control,
body .field {
    border: 1.5px solid #D1D5DB !important;
    border-radius: 10px !important;
    padding: 10px 16px !important;
    font-size: 14px !important;
    color: #2A363F !important;
    background: #fff !important;
    transition: all 0.2s ease !important;
    font-family: 'Inter', sans-serif !important;
}
body .form-control:focus,
body .field:focus {
    border-color: #FF6E41 !important;
    box-shadow: 0 0 0 3px rgba(255,110,65,0.1) !important;
    outline: none !important;
}
body .form-control::placeholder {
    color: #9CA3AF !important;
}
body .form-group label,
body .form-control-label {
    font-weight: 600 !important;
    font-size: 13px !important;
    color: #2A363F !important;
}
body .input-group-text {
    background: #F0F3F6 !important;
    border: 1.5px solid #D1D5DB !important;
    border-radius: 10px !important;
    color: #6B7280 !important;
}
body .input-group-prepend .input-group-text {
    border-right: none !important;
    border-radius: 10px 0 0 10px !important;
}
body .input-group-append .input-group-text,
body .input-group-append .btn {
    border-radius: 0 10px 10px 0 !important;
}
body .input-group > .form-control:not(:first-child) {
    border-radius: 0 10px 10px 0 !important;
}
body .input-group > .form-control:not(:last-child) {
    border-radius: 10px 0 0 10px !important;
}
body select.form-control {
    appearance: none !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 12px center !important;
    padding-right: 36px !important;
}
body .custom-control-input:checked ~ .custom-control-label::before {
    background-color: #FF6E41 !important;
    border-color: #FF6E41 !important;
}

/* --- TABLES --- */
body .table thead th {
    background: #F0F3F6 !important;
    border: none !important;
    color: #2A363F !important;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 600 !important;
    font-size: 12.5px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    padding: 14px 16px !important;
}
body .table td {
    padding: 14px 16px !important;
    border-top: 1px solid #E8ECF0 !important;
    vertical-align: middle !important;
    font-size: 14px !important;
}
body .table tbody tr:hover {
    background: rgba(255,110,65,0.02) !important;
}
body .table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(247,248,250,0.5) !important;
}

/* --- ALERTS --- */
body .alert {
    border-radius: 10px !important;
    border: none !important;
    padding: 16px 20px !important;
    font-size: 14px !important;
}
body .alert-success {
    background: rgba(16,185,129,0.08) !important;
    color: #065F46 !important;
    border-left: 4px solid #10B981 !important;
}
body .alert-danger {
    background: rgba(239,68,68,0.08) !important;
    color: #991B1B !important;
    border-left: 4px solid #EF4444 !important;
}
body .alert-warning {
    background: rgba(245,158,11,0.08) !important;
    color: #92400E !important;
    border-left: 4px solid #F59E0B !important;
}
body .alert-info {
    background: rgba(59,130,246,0.08) !important;
    color: #1E40AF !important;
    border-left: 4px solid #3B82F6 !important;
}

/* --- BADGES --- */
body .badge {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 600 !important;
    font-size: 11px !important;
    padding: 4px 10px !important;
    border-radius: 50px !important;
}
body .badge-primary,
body .badge-info {
    background: rgba(255,110,65,0.1) !important;
    color: #FF6E41 !important;
}
body .badge-success {
    background: rgba(16,185,129,0.1) !important;
    color: #059669 !important;
}
body .badge-danger {
    background: rgba(239,68,68,0.1) !important;
    color: #DC2626 !important;
}

/* --- LOGIN PAGE --- */
body .login-form .card {
    border-radius: 16px !important;
    box-shadow: 0 8px 30px rgba(42,54,63,0.08) !important;
    max-width: 480px !important;
    margin: 40px auto !important;
}
body .login-form .card-body {
    padding: 40px !important;
}
body .login-form .card-body .h3,
body .login-form .card-body h6 {
    font-size: 1.6rem !important;
    font-weight: 800 !important;
}
body .login-form .card-footer {
    text-align: center !important;
    padding: 20px !important;
}
body .login-form .card-footer a {
    color: #FF6E41 !important;
    font-weight: 700 !important;
}
body .login-form .btn-primary {
    padding: 12px 32px !important;
    font-size: 15px !important;
}

/* --- CLIENT AREA DASHBOARD TILES --- */
body .tiles .tile {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 28px 16px !important;
    background: #fff !important;
    border: 1px solid #E8ECF0 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
    min-height: 140px !important;
}
body .tiles .tile:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 24px rgba(42,54,63,0.1) !important;
    text-decoration: none !important;
    z-index: 2 !important;
}
body .tile i {
    font-size: 28px !important;
    color: #FF6E41 !important;
    margin-bottom: 10px !important;
}
body .tile .stat {
    font-size: 2rem !important;
    font-weight: 800 !important;
    color: #2A363F !important;
    font-family: 'Poppins', sans-serif !important;
    line-height: 1.1 !important;
}
body .tile .title {
    font-size: 12.5px !important;
    color: #6B7280 !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    margin-top: 4px !important;
}
body .tile .highlight {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 3px !important;
}
body .bg-color-blue { background: #3B82F6 !important; }
body .bg-color-green { background: #10B981 !important; }
body .bg-color-red { background: #EF4444 !important; }
body .bg-color-gold { background: #F59E0B !important; }

/* --- CLIENT HOME LIST ITEMS --- */
body .client-home-cards .list-group-item {
    border: none !important;
    border-bottom: 1px solid #E8ECF0 !important;
    padding: 14px 24px !important;
    font-size: 14px !important;
    color: #4B5563 !important;
    transition: all 0.2s ease !important;
}
body .client-home-cards .list-group-item:hover {
    background: rgba(255,110,65,0.03) !important;
    color: #FF6E41 !important;
    padding-left: 28px !important;
}
body .client-home-cards .list-group-item i {
    color: #9CA3AF !important;
}
body .client-home-cards .list-group-item:hover i {
    color: #FF6E41 !important;
}

/* --- SIDEBAR NAV --- */
body .panel-sidebar .list-group-item,
body .sidebar .list-group-item {
    border: none !important;
    border-bottom: 1px solid #E8ECF0 !important;
    padding: 13px 20px !important;
    font-size: 14px !important;
    color: #4B5563 !important;
    font-weight: 500 !important;
    transition: all 0.2s ease !important;
}
body .panel-sidebar .list-group-item:hover,
body .sidebar .list-group-item:hover {
    background: rgba(255,110,65,0.04) !important;
    color: #FF6E41 !important;
    padding-left: 24px !important;
}
body .panel-sidebar .list-group-item.active,
body .sidebar .list-group-item.active {
    background: rgba(255,110,65,0.06) !important;
    color: #FF6E41 !important;
    border-left: 3px solid #FF6E41 !important;
    font-weight: 600 !important;
}

/* --- TABS --- */
body .nav-tabs {
    border-bottom: 2px solid #E8ECF0 !important;
}
body .nav-tabs .nav-link {
    border: none !important;
    border-bottom: 2px solid transparent !important;
    color: #6B7280 !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    padding: 10px 20px !important;
    margin-bottom: -2px !important;
    border-radius: 0 !important;
}
body .nav-tabs .nav-link:hover {
    color: #FF6E41 !important;
    border-bottom-color: rgba(255,110,65,0.3) !important;
    background: transparent !important;
}
body .nav-tabs .nav-link.active,
body .nav-tabs .nav-item.show .nav-link {
    color: #FF6E41 !important;
    border-bottom-color: #FF6E41 !important;
    background: transparent !important;
    font-weight: 700 !important;
}

/* --- PAGINATION --- */
body .page-item .page-link {
    border: 1px solid #D1D5DB !important;
    border-radius: 8px !important;
    color: #4B5563 !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    padding: 8px 14px !important;
    margin: 0 2px !important;
}
body .page-item .page-link:hover {
    background: rgba(255,110,65,0.06) !important;
    color: #FF6E41 !important;
    border-color: #FF6E41 !important;
}
body .page-item.active .page-link {
    background: #FF6E41 !important;
    border-color: #FF6E41 !important;
    color: #fff !important;
}

/* --- DROPDOWNS --- */
body .dropdown-menu {
    border: 1px solid #E8ECF0 !important;
    border-radius: 10px !important;
    box-shadow: 0 10px 30px rgba(42,54,63,0.12) !important;
    padding: 8px !important;
}
body .dropdown-item {
    padding: 8px 14px !important;
    font-size: 14px !important;
    border-radius: 6px !important;
    color: #4B5563 !important;
}
body .dropdown-item:hover {
    background: rgba(255,110,65,0.05) !important;
    color: #FF6E41 !important;
}
body .dropdown-item.active,
body .dropdown-item:active {
    background: #FF6E41 !important;
    color: #fff !important;
}

/* --- MODALS --- */
body .modal-content {
    border: none !important;
    border-radius: 16px !important;
    box-shadow: 0 20px 60px rgba(42,54,63,0.15) !important;
    overflow: hidden !important;
}
body .modal-header {
    background: #fff !important;
    border-bottom: 1px solid #E8ECF0 !important;
    padding: 20px 24px !important;
}
body .modal-title {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 700 !important;
}
body .modal-footer {
    background: #F7F8FA !important;
    border-top: 1px solid #E8ECF0 !important;
}

/* --- TOPBAR --- */
body .topbar {
    background: #2A363F !important;
    padding: 6px 0 !important;
}
body .topbar .btn {
    color: rgba(255,255,255,0.7) !important;
    font-size: 13px !important;
    padding: 4px 12px !important;
}
body .topbar .btn:hover {
    color: #fff !important;
}
body .topbar .input-group-text {
    background: transparent !important;
    border: none !important;
    color: rgba(255,255,255,0.5) !important;
}
body .btn-active-client {
    color: #fff !important;
    font-weight: 600 !important;
}

/* --- SUPPORT TICKETS --- */
body .ticket-reply.staff {
    background: rgba(59,130,246,0.03) !important;
    border-left: 3px solid #3B82F6 !important;
    padding: 16px !important;
    border-radius: 10px !important;
}

/* --- CART / ORDER FORM PRODUCTS --- */
body #order-standard_cart .product {
    background: #fff !important;
    border: 1px solid #E8ECF0 !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
}
body #order-standard_cart .product:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 12px 30px rgba(42,54,63,0.1) !important;
}
body #order-standard_cart .product header {
    background: #F7F8FA !important;
    padding: 20px 24px !important;
    border-bottom: 1px solid #E8ECF0 !important;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 700 !important;
    font-size: 1.15rem !important;
    color: #2A363F !important;
}
body #order-standard_cart .product .product-desc {
    padding: 20px 24px !important;
}
body #order-standard_cart .product .product-desc ul {
    list-style: none !important;
    padding: 0 !important;
}
body #order-standard_cart .product .product-desc ul li {
    padding: 6px 0 !important;
    font-size: 13.5px !important;
    color: #4B5563 !important;
}
body #order-standard_cart .product footer {
    padding: 20px 24px !important;
    border-top: 1px solid #E8ECF0 !important;
    background: #F7F8FA !important;
}
body #order-standard_cart .product .product-pricing .price {
    font-size: 1.5rem !important;
    font-weight: 800 !important;
    color: #2A363F !important;
    font-family: 'Poppins', sans-serif !important;
}
body #order-standard_cart .header-lined {
    border-bottom: none !important;
    margin-bottom: 28px !important;
}
body #order-standard_cart .header-lined h1 {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 800 !important;
    font-size: 1.8rem !important;
    color: #2A363F !important;
}

/* --- PROGRESS BAR --- */
body .progress {
    height: 8px !important;
    border-radius: 4px !important;
    background: #E8ECF0 !important;
}
body .progress-bar {
    background: linear-gradient(135deg, #FF6E41 0%, #FF9068 100%) !important;
    border-radius: 4px !important;
}

/* --- MISC OVERRIDES --- */
body .text-primary {
    color: #FF6E41 !important;
}
body .bg-primary {
    background-color: #FF6E41 !important;
}
body .border-primary {
    border-color: #FF6E41 !important;
}
body .text-muted {
    color: #6B7280 !important;
}
body hr {
    border-color: #E8ECF0 !important;
}

/* Scrollbar */
body ::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
body ::-webkit-scrollbar-track {
    background: #F0F3F6;
}
body ::-webkit-scrollbar-thumb {
    background: #D1D5DB;
    border-radius: 4px;
}
body ::selection {
    background: rgba(255,110,65,0.15);
    color: #2A363F;
}

/* --- RESPONSIVE --- */
@media (max-width: 991px) {
    body .tile {
        min-height: 110px !important;
        padding: 20px 12px !important;
    }
    body .tile .stat {
        font-size: 1.5rem !important;
    }
    body .card-body {
        padding: 20px !important;
    }
    body .login-form .card-body {
        padding: 28px !important;
    }
}
@media (max-width: 767px) {
    body .tile {
        min-height: 100px !important;
    }
    body .tile .stat {
        font-size: 1.3rem !important;
    }
    body .card-body {
        padding: 16px !important;
    }
    body .card-header {
        padding: 16px !important;
    }
    body .table td, body .table thead th {
        padding: 10px 12px !important;
        font-size: 13px !important;
    }
    body .btn {
        padding: 8px 16px !important;
        font-size: 13px !important;
    }
}


/* ================================================================
   MARKETCONNECT / LANDING PAGES OVERRIDE
   Overrides twenty-one/css/store.css (3723 lines)
   store.css loads AFTER custom.css, so we use body prefix + !important
   ================================================================ */

/* --- Global Landing Page Typography --- */
body .landing-page h1,
body .landing-page h2,
body .landing-page h3,
body .landing-page h4,
body .landing-page h5,
body .landing-page h6 {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 700 !important;
    color: #2A363F !important;
}
body .landing-page h2 {
    font-size: 2.2rem !important;
}
body .landing-page h3 {
    font-size: 1.6rem !important;
}
body .landing-page h4 {
    font-size: 1.25rem !important;
}
body .landing-page p,
body .landing-page li,
body .landing-page span,
body .landing-page td {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
}

/* --- Hero Section --- */
body .landing-page .hero {
    padding: 60px 0 !important;
    background: #F7F9FB !important;
    color: #2A363F !important;
}
body .landing-page .hero h2 {
    font-size: 2.4rem !important;
    font-weight: 800 !important;
    color: #2A363F !important;
    margin-bottom: 12px !important;
}
body .landing-page .hero h3 {
    font-size: 1.3rem !important;
    font-weight: 400 !important;
    color: #6B7280 !important;
    line-height: 1.6 !important;
}
body .landing-page .hero .logo-container {
    max-width: 300px !important;
}

/* --- Product Options / Pricing Section --- */
body .landing-page .product-options {
    padding: 48px 0 24px !important;
    background-color: #F7F9FB !important;
}
body .landing-page .product-options h2 {
    color: #2A363F !important;
    font-size: 2rem !important;
    font-weight: 700 !important;
}
body .landing-page .product-options h3 {
    color: #6B7280 !important;
    font-size: 1.2rem !important;
    font-weight: 400 !important;
}
body .landing-page .product-options h4 {
    font-size: 1.15rem !important;
    color: #2A363F !important;
    font-weight: 600 !important;
}
body .landing-page .product-options .item {
    background-color: #fff !important;
    border-radius: 16px !important;
    box-shadow: 0 2px 8px rgba(42,54,63,0.06) !important;
    border: 1px solid #E8ECF0 !important;
    transition: all 0.3s ease !important;
    padding: 28px !important;
}
body .landing-page .product-options .item:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 12px 30px rgba(42,54,63,0.1) !important;
}
body .landing-page .product-options .icon {
    color: #FF6E41 !important;
}
body .landing-page .product-options .price {
    color: #2A363F !important;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 700 !important;
    font-size: 1.6rem !important;
}
body .landing-page .product-options .price small,
body .landing-page .product-options .price .period {
    font-size: 0.85rem !important;
    color: #6B7280 !important;
    font-weight: 400 !important;
}

/* --- Buttons on Landing Pages --- */
body .landing-page .product-options .item .btn,
body .landing-page .btn-order-now,
body .landing-page .btn-buy,
body .landing-page .order-btn,
body .landing-page .btn-primary,
body .landing-page .btn-success {
    background: linear-gradient(135deg, #FF6E41 0%, #FF9068 100%) !important;
    border: none !important;
    color: #fff !important;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    padding: 12px 28px !important;
    border-radius: 10px !important;
    box-shadow: 0 4px 14px rgba(255,110,65,0.3) !important;
    transition: all 0.3s ease !important;
    text-shadow: none !important;
    letter-spacing: 0.3px !important;
}
body .landing-page .product-options .item .btn:hover,
body .landing-page .btn-order-now:hover,
body .landing-page .btn-buy:hover,
body .landing-page .order-btn:hover,
body .landing-page .btn-primary:hover,
body .landing-page .btn-success:hover {
    background: linear-gradient(135deg, #E85A30 0%, #FF6E41 100%) !important;
    box-shadow: 0 6px 20px rgba(255,110,65,0.4) !important;
    transform: translateY(-2px) !important;
}

/* --- Get Started Section --- */
body .landing-page .get-started {
    background: #2A363F !important;
    padding: 48px 0 !important;
}
body .landing-page .get-started h2 {
    color: #fff !important;
}
body .landing-page .get-started h3,
body .landing-page .get-started p {
    color: rgba(255,255,255,0.8) !important;
}
body .landing-page .get-started .btn-order-now {
    background: linear-gradient(135deg, #FF6E41 0%, #FF9068 100%) !important;
    border: none !important;
    font-size: 16px !important;
    padding: 14px 32px !important;
}

/* --- Features Section --- */
body .landing-page .features {
    padding: 48px 0 !important;
    background: #fff !important;
}
body .landing-page .features h2 {
    color: #2A363F !important;
    margin-bottom: 32px !important;
}
body .landing-page .features .item {
    padding: 24px !important;
    text-align: center !important;
}
body .landing-page .features .icon,
body .landing-page .features i,
body .landing-page .features .fa,
body .landing-page .features .fas,
body .landing-page .features .far {
    color: #FF6E41 !important;
}

/* --- Content Blocks --- */
body .landing-page .content-block {
    padding: 48px 0 !important;
}
body .landing-page .content-block h2 {
    font-weight: 700 !important;
    color: #2A363F !important;
}
body .landing-page .content-block p {
    color: #6B7280 !important;
    line-height: 1.7 !important;
}

/* --- Light Grey Background Areas --- */
body .landing-page .light-grey-bg {
    background-color: #F7F9FB !important;
}

/* --- FAQ Section --- */
body .landing-page .faq,
body .landing-page .faqs {
    padding: 48px 0 !important;
    background: #F7F9FB !important;
}
body .landing-page .faq h2,
body .landing-page .faqs h2 {
    color: #2A363F !important;
}
body .landing-page .faq .panel-heading,
body .landing-page .faqs .panel-heading,
body .landing-page .faq .card-header,
body .landing-page .faqs .card-header {
    background: #fff !important;
    border-color: #E8ECF0 !important;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 600 !important;
    color: #2A363F !important;
}
body .landing-page .faq .panel-body,
body .landing-page .faqs .panel-body,
body .landing-page .faq .card-body,
body .landing-page .faqs .card-body {
    background: #fff !important;
    color: #6B7280 !important;
    font-size: 14px !important;
    line-height: 1.7 !important;
}

/* --- Currency Selector --- */
body .landing-page .currency-selector select {
    border-radius: 8px !important;
    border: 1px solid #E8ECF0 !important;
    font-family: 'Inter', sans-serif !important;
    padding: 6px 12px !important;
}

/* ---- SSL-Specific Landing Page ---- */
body .landing-page.ssl .hero {
    background: #F7F9FB !important;
}
body .landing-page.ssl .validation-levels {
    background: #fff !important;
    padding: 48px 0 !important;
}
body .landing-page.ssl .validation-levels .item {
    background: #fff !important;
    border: 1px solid #E8ECF0 !important;
    border-radius: 16px !important;
    padding: 28px !important;
    box-shadow: 0 2px 8px rgba(42,54,63,0.06) !important;
}
body .landing-page.ssl .validation-levels .item .btn {
    background: linear-gradient(135deg, #FF6E41 0%, #FF9068 100%) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 10px !important;
    padding: 10px 24px !important;
}
body .landing-page.ssl ul.ssl-certs-all .padded-cell {
    background: #fff !important;
    border: 1px solid #E8ECF0 !important;
    border-radius: 12px !important;
    padding: 20px !important;
}
body .landing-page.ssl ul.ssl-certs-all .padded-cell .btn {
    background: linear-gradient(135deg, #FF6E41 0%, #FF9068 100%) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 8px !important;
}
body .landing-page.ssl .secure-wildcard {
    background: #F7F9FB !important;
}
body .landing-page.ssl .features-overview {
    background: #fff !important;
}
/* Override the blue header bar in SSL table */
body .landing-page.ssl .ssl-cert-heading,
body .landing-page.ssl th,
body .landing-page.ssl .ssl-table-header {
    background-color: #2A363F !important;
    color: #fff !important;
}

/* ---- CodeGuard-Specific ---- */
body .landing-page.codeguard .features {
    background: #F7F9FB !important;
}
body .landing-page.codeguard .pricing {
    background: #fff !important;
    padding: 48px 0 !important;
}
body .landing-page.codeguard .pricing-container {
    background: #fff !important;
    border: 1px solid #E8ECF0 !important;
    border-radius: 16px !important;
    box-shadow: 0 2px 8px rgba(42,54,63,0.06) !important;
}
body .landing-page.codeguard .order-btn {
    background: linear-gradient(135deg, #FF6E41 0%, #FF9068 100%) !important;
}
body .landing-page.codeguard .overview-features {
    background: #F7F9FB !important;
}
body .landing-page.codeguard .strong-green {
    color: #10B981 !important;
}
/* CodeGuard range slider override */
body .landing-page.codeguard .irs-bar,
body .landing-page.codeguard .irs-bar-edge {
    background: #FF6E41 !important;
}
body .landing-page.codeguard .irs-slider,
body .landing-page.codeguard .irs-slider:hover {
    background: #FF6E41 !important;
}
body .landing-page.codeguard .irs-single,
body .landing-page.codeguard .irs-from,
body .landing-page.codeguard .irs-to {
    background: #FF6E41 !important;
}

/* ---- SiteLock-Specific ---- */
body .landing-page.sitelock .hero {
    background: #F7F9FB !important;
}
body .landing-page.sitelock .product-options {
    background: #fff !important;
}
body .landing-page.sitelock .btn-primary,
body .landing-page.sitelock .btn-buy {
    background: linear-gradient(135deg, #FF6E41 0%, #FF9068 100%) !important;
}

/* ---- NordVPN-Specific ---- */
body .landing-page.nordvpn .hero,
body .landing-page.sitelockvpn .hero {
    background: #2A363F !important;
}
body .landing-page.nordvpn .hero h2,
body .landing-page.sitelockvpn .hero h2 {
    color: #fff !important;
}
body .landing-page.nordvpn .hero h3,
body .landing-page.sitelockvpn .hero h3 {
    color: rgba(255,255,255,0.8) !important;
}
body .landing-page.nordvpn .product-options,
body .landing-page.sitelockvpn .product-options {
    background: #F7F9FB !important;
}

/* ---- Marketgoo-Specific ---- */
body .landing-page.marketgoo .hero {
    background: #F7F9FB !important;
}
body .landing-page.marketgoo .plan {
    background: #fff !important;
    border: 1px solid #E8ECF0 !important;
    border-radius: 16px !important;
    box-shadow: 0 2px 8px rgba(42,54,63,0.06) !important;
}
body .landing-page.marketgoo .plan:hover {
    box-shadow: 0 12px 30px rgba(42,54,63,0.1) !important;
}
body .landing-page.marketgoo .plan.labels {
    background: #2A363F !important;
    color: #fff !important;
    border-color: #2A363F !important;
}
body .landing-page.marketgoo .feature-blocks {
    background: #F7F9FB !important;
}
body .landing-page.marketgoo .embed-responsive {
    border-radius: 12px !important;
    overflow: hidden !important;
}

/* ---- Mail Services (OX App Suite) ---- */
body .landing-page.mail-services .product-options {
    background-color: #2A363F !important;
}
body .landing-page.mail-services .product-options .btn-buy {
    background: linear-gradient(135deg, #FF6E41 0%, #FF9068 100%) !important;
    border: none !important;
}
body .landing-page.mail-services .benefits {
    background: #F7F9FB !important;
}
body .landing-page.mail-services .tabs {
    background: #fff !important;
}
body .landing-page.mail-services .get-started {
    background: #2A363F !important;
}
body .landing-page.mail-services .navbar {
    background: transparent !important;
}

/* ---- SiteBuilder / Weebly ---- */
body .landing-page.sitebuilder .hero,
body .landing-page.weebly .hero {
    background: #F7F9FB !important;
}
body .landing-page.sitebuilder .product-options,
body .landing-page.weebly .product-options {
    background: #fff !important;
}

/* ---- SpamExperts ---- */
body .landing-page.spamexperts .hero {
    background: #F7F9FB !important;
}
body .landing-page.spamexperts .product-options {
    background: #fff !important;
}

/* ---- XOVI NOW ---- */
body .landing-page.xovinow .hero {
    background: #F7F9FB !important;
}

/* --- Tables on Landing Pages --- */
body .landing-page table {
    border-collapse: separate !important;
    border-spacing: 0 !important;
    border-radius: 12px !important;
    overflow: hidden !important;
}
body .landing-page table thead th {
    background: #2A363F !important;
    color: #fff !important;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    padding: 14px 16px !important;
    border: none !important;
}
body .landing-page table tbody td {
    padding: 12px 16px !important;
    border-color: #F0F3F6 !important;
    font-size: 14px !important;
    color: #4B5563 !important;
}
body .landing-page table tbody tr:hover {
    background: #F7F9FB !important;
}
body .landing-page table .text-center .fas.fa-check,
body .landing-page table .text-center .fa-check {
    color: #10B981 !important;
}
body .landing-page table .text-center .fas.fa-times,
body .landing-page table .text-center .fa-times {
    color: #EF4444 !important;
}

/* --- Tabs on Landing Pages --- */
body .landing-page .nav-tabs {
    border-bottom: 2px solid #E8ECF0 !important;
}
body .landing-page .nav-tabs .nav-link {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 600 !important;
    color: #6B7280 !important;
    border: none !important;
    padding: 12px 20px !important;
}
body .landing-page .nav-tabs .nav-link.active {
    color: #FF6E41 !important;
    border-bottom: 2px solid #FF6E41 !important;
    background: transparent !important;
}

/* --- Image Standout --- */
body .landing-page .image-standout {
    border-radius: 12px !important;
    overflow: hidden !important;
    box-shadow: 0 8px 24px rgba(42,54,63,0.08) !important;
}

/* --- 360 Monitoring (uses standard_cart) --- */
body .store-order-container {
    background: #fff !important;
    border-radius: 16px !important;
    box-shadow: 0 2px 8px rgba(42,54,63,0.06) !important;
    border: 1px solid #E8ECF0 !important;
    padding: 28px !important;
}
body .store-order-container h2 {
    font-family: 'Poppins', sans-serif !important;
    color: #2A363F !important;
    font-weight: 700 !important;
}
body .store-order-container .payment-term select {
    border-radius: 8px !important;
    border-color: #E8ECF0 !important;
}
body .store-order-container .btn-primary {
    background: linear-gradient(135deg, #FF6E41 0%, #FF9068 100%) !important;
    border: none !important;
    border-radius: 10px !important;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 600 !important;
}

/* --- Responsive Landing Pages --- */
@media (max-width: 991px) {
    body .landing-page .hero h2 {
        font-size: 1.8rem !important;
    }
    body .landing-page .hero h3 {
        font-size: 1.1rem !important;
    }
    body .landing-page .product-options h2 {
        font-size: 1.6rem !important;
    }
}
@media (max-width: 767px) {
    body .landing-page .hero {
        padding: 32px 0 !important;
    }
    body .landing-page .hero h2 {
        font-size: 1.5rem !important;
    }
    body .landing-page .product-options {
        padding: 28px 0 16px !important;
    }
    body .landing-page .product-options .item {
        padding: 20px !important;
        margin-bottom: 16px !important;
    }
    body .landing-page .features,
    body .landing-page .content-block,
    body .landing-page .faq,
    body .landing-page .faqs {
        padding: 28px 0 !important;
    }
}

/* ================================================================
   LEGACY BOXES ORDER FORM OVERRIDE (Free Trial page)
   ================================================================ */
body #order-boxes {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
}
body #order-boxes .fields-container {
    border-top-color: #FF6E41 !important;
    border-bottom-color: #FF6E41 !important;
    border-radius: 12px !important;
    overflow: hidden !important;
}
body #order-boxes h3,
body #order-boxes h4 {
    font-family: 'Poppins', sans-serif !important;
    color: #2A363F !important;
}
body #order-boxes .btn,
body #order-boxes .btn-primary {
    background: linear-gradient(135deg, #FF6E41 0%, #FF9068 100%) !important;
    border: none !important;
    color: #fff !important;
    border-radius: 10px !important;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 14px rgba(255,110,65,0.3) !important;
}

/* ================================================================
   STANDARD CART OVERRIDE (360 Monitoring, Add to Cart pages)
   ================================================================ */
body .standard_cart #order-standard_cart,
body #order-standard_cart {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
}
body #order-standard_cart .panel,
body #order-standard_cart .card {
    border-radius: 12px !important;
    border-color: #E8ECF0 !important;
    box-shadow: 0 2px 8px rgba(42,54,63,0.06) !important;
}
body #order-standard_cart .panel-heading,
body #order-standard_cart .card-header {
    background: #F7F8FA !important;
    border-color: #E8ECF0 !important;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 600 !important;
    color: #2A363F !important;
}
body #order-standard_cart .btn-primary {
    background: linear-gradient(135deg, #FF6E41 0%, #FF9068 100%) !important;
    border: none !important;
    border-radius: 10px !important;
}

/* ================================================================
   PRODUCT RECOMMENDATIONS (appears on various store pages)
   ================================================================ */
body .product-recommendations-container .product-recommendations {
    background: #fff !important;
    border: 1px solid #E8ECF0 !important;
    border-radius: 12px !important;
    box-shadow: 0 2px 8px rgba(42,54,63,0.06) !important;
}


/* ================================================================
   STORE-SPECIFIC OVERRIDES — Product-by-product
   Targets all specific blue/purple/teal backgrounds from store.css
   ================================================================ */

/* --- SSL Certificate Options (blue header) --- */
body .landing-page.ssl .certificate-options {
    background-color: #2A363F !important;
}
body .landing-page.ssl .certificate-options .btn {
    background: linear-gradient(135deg, #FF6E41 0%, #FF9068 100%) !important;
    border: none !important;
    color: #fff !important;
    border-radius: 8px !important;
}
body .landing-page.ssl .certificate-options.ov {
    background-color: #344350 !important;
}
body .landing-page.ssl .certificate-options.ev {
    background-color: #1E2A33 !important;
}
body .landing-page.ssl .certificate-options .col-md-6.sidebar ul li {
    background-color: rgba(255,255,255,0.1) !important;
}
body .landing-page.ssl .detailed-info .card-header,
body .landing-page.ssl .detailed-info .panel-heading {
    background: #2A363F !important;
    color: #fff !important;
    font-family: 'Poppins', sans-serif !important;
}
body .landing-page.ssl .detailed-info .panel {
    background: #fff !important;
    border-radius: 12px !important;
    border: 1px solid #E8ECF0 !important;
}
body .landing-page.ssl .features {
    background-color: #F7F9FB !important;
}
body .landing-page.ssl .features .feature:hover {
    background-color: #fff !important;
}
body .landing-page.ssl .validation-levels {
    background-color: #fff !important;
}

/* --- SiteLock (blue buttons) --- */
body .landing-page.sitelock .plans .plan .btn {
    background: linear-gradient(135deg, #FF6E41 0%, #FF9068 100%) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 10px !important;
    box-shadow: 0 4px 14px rgba(255,110,65,0.3) !important;
}

/* --- SiteLock VPN (blue/teal sections) --- */
body .landing-page.sitelockvpn .btn-signup.highlight1 {
    background: linear-gradient(135deg, #FF6E41 0%, #FF9068 100%) !important;
    border: none !important;
    color: #fff !important;
    border-radius: 10px !important;
}
body .landing-page.sitelockvpn .btn-signup.highlight2 {
    background: #2A363F !important;
    border: none !important;
    color: #fff !important;
    border-radius: 10px !important;
}
body .landing-page.sitelockvpn .feature.alternate-bg {
    background-color: #F7F9FB !important;
}
body .landing-page.sitelockvpn .feature.countries {
    background-color: #2A363F !important;
}
body .landing-page.sitelockvpn .feature.pricing {
    background-color: #F7F9FB !important;
}

/* --- XOVI NOW (purple/blue elements) --- */
body .landing-page.xovinow .faq .accordion > .card > .card-header {
    background-color: #2A363F !important;
    color: #fff !important;
    font-family: 'Poppins', sans-serif !important;
}
body .landing-page.xovinow .feature-tabs .nav-tabs > li > a.active,
body .landing-page.xovinow .feature-tabs .nav-tabs > li > a.active:hover {
    background-color: #FF6E41 !important;
    color: #fff !important;
    border: none !important;
}
body .landing-page.xovinow .pricing .plan.featured .buy-btn .btn,
body .landing-page.xovinow .pricing .plan.featured .buy-btn .btn:hover {
    background: linear-gradient(135deg, #FF6E41 0%, #FF9068 100%) !important;
    border: none !important;
    color: #fff !important;
}
body .landing-page.xovinow .pricing .plan-feature.row-highlight {
    background-color: #FFF5F2 !important;
}

/* --- 360 Monitoring (dark/blue sections) --- */
body .landing-page.threesixtymonitoring .btn-primary,
body .landing-page.threesixtymonitoring .btn-search {
    background: linear-gradient(135deg, #FF6E41 0%, #FF9068 100%) !important;
    border: none !important;
    color: #fff !important;
    border-radius: 10px !important;
}
body .landing-page.threesixtymonitoring .div-feature-label-starting {
    background-color: #2A363F !important;
    color: #fff !important;
}
body .landing-page.threesixtymonitoring .div-feature-price {
    background-color: #fff !important;
}
body .landing-page.threesixtymonitoring .div-pricing-container .div-feature-labels ul li:nth-child(2n+2),
body .landing-page.threesixtymonitoring .div-pricing-container .div-feature-values ul li:nth-child(2n+2) {
    background-color: #F7F9FB !important;
}
body .landing-page.threesixtymonitoring .nav-primary .nav-link,
body .landing-page.threesixtymonitoring .nav-secondary .nav-link {
    background-color: transparent !important;
    color: #2A363F !important;
    font-family: 'Poppins', sans-serif !important;
}
body .landing-page.threesixtymonitoring .nav-secondary .nav-link.active {
    background-color: #FF6E41 !important;
    color: #fff !important;
}
body .landing-page.threesixtymonitoring .row-revenue > div .row {
    background-color: #F7F9FB !important;
    border-radius: 12px !important;
}
body .landing-page.threesixtymonitoring .section-faq .card-header {
    background-color: #F7F8FA !important;
    color: #2A363F !important;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 600 !important;
    border-color: #E8ECF0 !important;
}
body .landing-page.threesixtymonitoring .tab-website .section-monitoring {
    background-color: #F7F9FB !important;
}

/* --- SiteBuilder (blue/colored sections) --- */
body .landing-page.sitebuilder {
    background-color: #F7F9FB !important;
}
body .landing-page.sitebuilder .bold-line {
    background: #FF6E41 !important;
}
body .landing-page.sitebuilder .carousel-indicators li {
    background-color: #CBD5E0 !important;
}
body .landing-page.sitebuilder .carousel-indicators li.active {
    background-color: #FF6E41 !important;
}
body .landing-page.sitebuilder .pricing-table-row:not(.col-heading):nth-child(even) {
    background-color: #F7F9FB !important;
}
body .landing-page.sitebuilder .tab-content {
    background-color: #fff !important;
}
body .landing-page.sitebuilder .templates .previews .type-ecom .type-label {
    background-color: #FF6E41 !important;
}
body .landing-page.sitebuilder .templates .previews .type-single .type-label {
    background-color: #2A363F !important;
}

/* --- Marketgoo (blue plan labels) --- */
body .landing-page.marketgoo .carousel .carousel-indicators li {
    background-color: #CBD5E0 !important;
}
body .landing-page.marketgoo .carousel .carousel-indicators li.active {
    background-color: #FF6E41 !important;
}
body .landing-page.marketgoo .faqs {
    background: #F7F9FB !important;
}
body .landing-page.marketgoo .plan.marketgoo_pro ul {
    background-color: #FFF5F2 !important;
}
body .landing-page.marketgoo .video-banner {
    background-color: #2A363F !important;
}

/* --- OX App Suite / Mail Services --- */
body .landing-page.ox .pricing th.feature {
    background-color: #2A363F !important;
    color: #fff !important;
}
body .landing-page.ox .pricing table tr:nth-child(even) td:first-child {
    background-color: #F7F9FB !important;
}
body .landing-page.ox .pricing td.no-bg {
    background-color: #fff !important;
}

/* --- CodeGuard features --- */
body .landing-page.codeguard .features {
    background-color: #F7F9FB !important;
}

/* --- WP Toolkit (add-on page) --- */
body .wp-toolkit {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
}
body .wp-toolkit .cart-items .item:nth-child(odd) {
    background-color: #F7F9FB !important;
}
body .wp-toolkit .screenshots .screenshot-thumb:hover .overlay {
    background-color: rgba(255,110,65,0.8) !important;
}
body .wp-toolkit .service-selector .service .btn {
    background: linear-gradient(135deg, #FF6E41 0%, #FF9068 100%) !important;
    border: none !important;
    color: #fff !important;
    border-radius: 10px !important;
}

/* --- Color text overrides for all landing pages --- */
body .landing-page .strong-green,
body .landing-page .text-success {
    color: #10B981 !important;
}
body .landing-page .text-primary {
    color: #FF6E41 !important;
}

/* --- Nav tabs on all landing pages --- */
body .landing-page .nav-tabs > li.active > a,
body .landing-page .nav-tabs > li.active > a:hover,
body .landing-page .nav-tabs > li.active > a:focus,
body .landing-page .nav-tabs > li > a:focus,
body .landing-page .nav-tabs > li > a:hover {
    background-color: transparent !important;
    border-bottom: 2px solid #FF6E41 !important;
    color: #FF6E41 !important;
}

/* --- Get Started section on ALL landing pages --- */
body .landing-page .get-started .btn-order-now {
    background: linear-gradient(135deg, #FF6E41 0%, #FF9068 100%) !important;
    border: none !important;
    border-radius: 10px !important;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 600 !important;
    color: #fff !important;
    box-shadow: 0 4px 14px rgba(255,110,65,0.3) !important;
}

/* --- SpamExperts specific --- */
body .landing-page.spamexperts .product-options {
    background-color: #F7F9FB !important;
}

/* --- Weebly specific --- */
body .landing-page.weebly .product-options {
    background-color: #F7F9FB !important;
}


/* ================================================================
   MISSING COLOR OVERRIDES — Fixes remaining #336699/#369 blue leaks
   ================================================================ */

/* --- .btn-link (blue text) --- */
body .btn-link {
    color: #FF6E41 !important;
    font-weight: 500 !important;
}
body .btn-link:hover,
body .btn-link:focus {
    color: #E85A2F !important;
    text-decoration: underline !important;
}

/* --- custom-range slider thumb --- */
body .custom-range::-webkit-slider-thumb {
    background-color: #FF6E41 !important;
}
body .custom-range::-moz-range-thumb {
    background-color: #FF6E41 !important;
}
body .custom-range::-ms-thumb {
    background-color: #FF6E41 !important;
}

/* --- custom-checkbox/radio checked state --- */
body .custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
    border-color: #FF6E41 !important;
    background-color: #FF6E41 !important;
}

/* --- WHMCS status labels --- */
body .status-onhold {
    background-color: #F59E0B !important;
    color: #fff !important;
    border-radius: 6px !important;
    padding: 3px 10px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
}
body .status-payment-pending {
    background-color: #F97316 !important;
    color: #fff !important;
    border-radius: 6px !important;
    padding: 3px 10px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
}
body .status-delivered {
    background-color: #10B981 !important;
    color: #fff !important;
    border-radius: 6px !important;
    padding: 3px 10px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
}
body .status-active {
    background-color: #10B981 !important;
    color: #fff !important;
    border-radius: 6px !important;
    padding: 3px 10px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
}
body .status-cancelled,
body .status-terminated {
    background-color: #EF4444 !important;
    color: #fff !important;
    border-radius: 6px !important;
    padding: 3px 10px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
}
body .status-suspended {
    background-color: #6B7280 !important;
    color: #fff !important;
    border-radius: 6px !important;
    padding: 3px 10px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
}
body .status-pending {
    background-color: #F59E0B !important;
    color: #fff !important;
    border-radius: 6px !important;
    padding: 3px 10px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
}
body .status-fraud {
    background-color: #DC2626 !important;
    color: #fff !important;
    border-radius: 6px !important;
    padding: 3px 10px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
}
body .status-unpaid {
    background-color: #EF4444 !important;
    color: #fff !important;
    border-radius: 6px !important;
    padding: 3px 10px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
}
body .status-paid {
    background-color: #10B981 !important;
    color: #fff !important;
    border-radius: 6px !important;
    padding: 3px 10px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
}
body .status-refunded {
    background-color: #8B5CF6 !important;
    color: #fff !important;
    border-radius: 6px !important;
    padding: 3px 10px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
}

/* --- Domain Pricing TLD header --- */
body .domain-pricing .tld-pricing-header div:nth-child(odd) {
    border-color: #FF6E41 !important;
    background-color: #FFF5F2 !important;
}
body .domain-pricing .tld-pricing-header div {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 600 !important;
    color: #2A363F !important;
}

/* --- Input group reveal password button --- */
body .input-group .btn-reveal-pw:active,
body .input-group .btn-reveal-pw:hover {
    color: #FF6E41 !important;
    border-color: #E8ECF0 !important;
}

/* --- btn-outline-primary disabled state --- */
body .btn-outline-primary.disabled,
body .btn-outline-primary:disabled {
    color: #FF6E41 !important;
    background-color: transparent !important;
    border-color: #FF6E41 !important;
    opacity: 0.65 !important;
}

/* --- Focus ring color (box-shadow on focused inputs/buttons) --- */
body .btn-primary:focus,
body .btn-primary.focus {
    box-shadow: 0 0 0 0.2rem rgba(255,110,65,0.35) !important;
}
body .btn-outline-primary:focus,
body .btn-outline-primary.focus {
    box-shadow: 0 0 0 0.2rem rgba(255,110,65,0.35) !important;
}
body .form-control:focus {
    border-color: #FF9068 !important;
    box-shadow: 0 0 0 0.2rem rgba(255,110,65,0.15) !important;
}
body .custom-select:focus {
    border-color: #FF9068 !important;
    box-shadow: 0 0 0 0.2rem rgba(255,110,65,0.15) !important;
}
body .custom-control-input:focus ~ .custom-control-label::before {
    border-color: #FF9068 !important;
    box-shadow: 0 0 0 0.2rem rgba(255,110,65,0.15) !important;
}

/* --- Not disabled active states for btn-primary --- */
body .btn-primary:not(:disabled):not(.disabled).active,
body .btn-primary:not(:disabled):not(.disabled):active,
body .show > .btn-primary.dropdown-toggle {
    background-color: #E85A2F !important;
    border-color: #D14D25 !important;
    color: #fff !important;
}
body .btn-primary:not(:disabled):not(.disabled).active:focus,
body .btn-primary:not(:disabled):not(.disabled):active:focus,
body .show > .btn-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(255,110,65,0.35) !important;
}

/* --- btn-outline-primary active/toggle states --- */
body .btn-outline-primary:not(:disabled):not(.disabled).active,
body .btn-outline-primary:not(:disabled):not(.disabled):active,
body .show > .btn-outline-primary.dropdown-toggle {
    background-color: #FF6E41 !important;
    border-color: #FF6E41 !important;
    color: #fff !important;
}

/* --- a.bg-primary hover/focus (utility class) --- */
body a.bg-primary:focus,
body a.bg-primary:hover,
body button.bg-primary:focus,
body button.bg-primary:hover {
    background-color: #E85A2F !important;
}

/* --- a.badge-primary hover/focus --- */
body a.badge-primary:focus,
body a.badge-primary:hover {
    background-color: #E85A2F !important;
    color: #fff !important;
}

/* --- btn-primary disabled state --- */
body .btn-primary.disabled,
body .btn-primary:disabled {
    background-color: #FF9068 !important;
    border-color: #FF9068 !important;
    color: #fff !important;
    opacity: 0.65 !important;
}


/* ================================================================
   CONTRAST FIXES — Text color corrections for light backgrounds
   Where store.css set white/light text on dark bg, and we changed
   bg to light, the text color must also change to dark.
   ================================================================ */

/* --- 1. SSL Validation Levels: h3 was #eee on our #fff bg --- */
body .landing-page.ssl .validation-levels h3 {
    color: #2A363F !important;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 700 !important;
}
body .landing-page.ssl .validation-levels {
    color: #4B5563 !important;
}
body .landing-page.ssl .validation-levels .item {
    background: #fff !important;
    color: #4B5563 !important;
}
body .landing-page.ssl .validation-levels .item h4 {
    color: #2A363F !important;
}
body .landing-page.ssl .validation-levels .item p {
    color: #6B7280 !important;
}
body .landing-page.ssl .validation-levels .item span {
    color: #4B5563 !important;
}

/* --- 2. SSL Features hover: text was #fff on our #fff bg --- */
body .landing-page.ssl .features .feature:hover {
    background-color: #FFF5F2 !important;
    color: #2A363F !important;
}
body .landing-page.ssl .features .feature:hover h4,
body .landing-page.ssl .features .feature:hover p {
    color: #2A363F !important;
}
body .landing-page.ssl .features .feature {
    color: #4B5563 !important;
}
body .landing-page.ssl .features .feature h4 {
    color: #2A363F !important;
}
body .landing-page.ssl .features .feature p {
    color: #6B7280 !important;
}
body .landing-page.ssl .features h2 {
    color: #2A363F !important;
}

/* --- 3. SiteBuilder: root text was #fff on our #F7F9FB bg --- */
body .landing-page.sitebuilder,
body .landing-page.sitebuilder p,
body .landing-page.sitebuilder span,
body .landing-page.sitebuilder li,
body .landing-page.sitebuilder td {
    color: #4B5563 !important;
}
body .landing-page.sitebuilder h1,
body .landing-page.sitebuilder h2,
body .landing-page.sitebuilder h3,
body .landing-page.sitebuilder h4 {
    color: #2A363F !important;
}
body .landing-page.sitebuilder .pricing p {
    color: #6B7280 !important;
}
body .landing-page.sitebuilder .pricing h4 {
    color: #2A363F !important;
}
body .landing-page.sitebuilder .hero h2 {
    color: #2A363F !important;
}
body .landing-page.sitebuilder .hero h3,
body .landing-page.sitebuilder .hero p {
    color: #6B7280 !important;
}
body .landing-page.sitebuilder .tab-content {
    color: #4B5563 !important;
}
body .landing-page.sitebuilder .tab-content h4 {
    color: #2A363F !important;
}

/* --- 4. Trusted By section: text was #eee --- */
body .landing-page .trusted-by {
    color: #6B7280 !important;
}
body .landing-page .trusted-by h3,
body .landing-page .trusted-by h4 {
    color: #2A363F !important;
}

/* --- 5. Tab Content on landing pages: text was #eee --- */
body .landing-page .tab-content {
    color: #4B5563 !important;
}
body .landing-page .tab-content h3,
body .landing-page .tab-content h4 {
    color: #2A363F !important;
}

/* --- 6. Product Options powered-by: text was #eee --- */
body .landing-page .product-options .powered-by {
    color: #9CA3AF !important;
}

/* --- 7. SiteLockVPN feature.pricing h2: text was #fff on #F7F9FB --- */
body .landing-page.sitelockvpn .feature.pricing h2 {
    color: #2A363F !important;
}
body .landing-page.sitelockvpn .feature.pricing p,
body .landing-page.sitelockvpn .feature.pricing span,
body .landing-page.sitelockvpn .feature.pricing li {
    color: #4B5563 !important;
}
body .landing-page.sitelockvpn .feature.pricing .price {
    color: #2A363F !important;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 700 !important;
}

/* --- 8. 360 Monitoring row-revenue: text was #fff on #F7F9FB --- */
body .landing-page.threesixtymonitoring .row-revenue {
    color: #4B5563 !important;
}
body .landing-page.threesixtymonitoring .row-revenue h2,
body .landing-page.threesixtymonitoring .row-revenue h3,
body .landing-page.threesixtymonitoring .row-revenue h4 {
    color: #2A363F !important;
}
body .landing-page.threesixtymonitoring .row-revenue p,
body .landing-page.threesixtymonitoring .row-revenue span {
    color: #6B7280 !important;
}
body .landing-page.threesixtymonitoring .row-revenue > div .row {
    color: #4B5563 !important;
}

/* --- 9. 360 Monitoring div-feature-price: text was #fff on #fff --- */
body .landing-page.threesixtymonitoring .div-feature-price {
    color: #2A363F !important;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 700 !important;
}
body .landing-page.threesixtymonitoring .div-feature-price span {
    color: #6B7280 !important;
}

/* --- 10. CodeGuard pricing: text was #eee on #fff --- */
body .landing-page.codeguard .pricing {
    color: #4B5563 !important;
}
body .landing-page.codeguard .pricing h2,
body .landing-page.codeguard .pricing h3,
body .landing-page.codeguard .pricing h4 {
    color: #2A363F !important;
}
body .landing-page.codeguard .pricing p,
body .landing-page.codeguard .pricing span {
    color: #6B7280 !important;
}
body .landing-page.codeguard .pricing .price {
    color: #2A363F !important;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 700 !important;
}

/* --- Additional: SSL help-me-choose links: text was #fff --- */
body .landing-page.ssl a.help-me-choose {
    color: #FF6E41 !important;
    font-weight: 600 !important;
}
body .landing-page.ssl p.help-me-choose {
    color: #6B7280 !important;
}

/* --- SSL competitive-upgrade-promo link: text was #fff --- */
body .landing-page.ssl .competitive-upgrade-promo a {
    color: #FF6E41 !important;
}

/* --- SSL detailed-info card-header text --- */
body .landing-page.ssl .detailed-info .card-header h4,
body .landing-page.ssl .detailed-info .card-header a,
body .landing-page.ssl .detailed-info .panel-heading a {
    color: #fff !important;
}

/* --- Marketgoo plan.marketgoo_pro text: was #fff on #FFF5F2 --- */
body .landing-page.marketgoo .plan.marketgoo_pro ul {
    color: #4B5563 !important;
}
body .landing-page.marketgoo .plan.marketgoo_pro ul li {
    color: #4B5563 !important;
}
body .landing-page.marketgoo .plan h4 {
    color: #2A363F !important;
}
body .landing-page.marketgoo .plan p {
    color: #6B7280 !important;
}

/* --- SiteLockVPN hero text (kept dark bg, white text is OK) --- */
/* No change needed - hero stays dark */

/* --- SiteLockVPN highlights list: text was #fff --- */
body .landing-page.sitelockvpn ul.highlights li {
    color: #4B5563 !important;
}
body .landing-page.sitelockvpn ul.highlights li::before {
    color: #10B981 !important;
}

/* --- Nav tabs active on landing pages: text was #fff --- */
body .landing-page .nav-tabs > li.active > a,
body .landing-page .nav-tabs > li.active > a:hover {
    color: #FF6E41 !important;
    background-color: transparent !important;
}

/* --- CodeGuard IRS grid text: was #fff --- */
body .landing-page.codeguard .irs-grid-text {
    color: #6B7280 !important;
}

/* --- SiteLock emergency section h3: was #fff --- */
body .landing-page.sitelock .emergency h3 {
    color: #2A363F !important;
}

/* --- XOVI NOW faq card-header button text: was #fff on dark bg --- */
/* We kept dark bg, so white text is OK */

/* --- XOVI NOW btn-xovinow: was #fff --- */
body .landing-page.xovinow .btn-xovinow {
    background: linear-gradient(135deg, #FF6E41 0%, #FF9068 100%) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 10px !important;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 600 !important;
}

/* --- 360 Monitoring nav-primary active: was #fff on dark bg --- */
body .landing-page.threesixtymonitoring .nav-primary .nav-link.active {
    background-color: #FF6E41 !important;
    color: #fff !important;
}

/* --- 360 Monitoring modal header: was dark bg, white text --- */
body .landing-page.threesixtymonitoring .modal-results .modal-header {
    background-color: #2A363F !important;
    color: #fff !important;
}

/* --- General: ensure all landing page p, li, span on light bg are dark text --- */
body .landing-page .product-options .item p {
    color: #6B7280 !important;
}
body .landing-page .product-options .item h4 {
    color: #2A363F !important;
}
body .landing-page .product-options .item span {
    color: #6B7280 !important;
}
body .landing-page .product-options .item li {
    color: #4B5563 !important;
}

/* --- Global safety net: ensure text readability on all landing page sections --- */
body .landing-page .content-block p,
body .landing-page .content-block li,
body .landing-page .content-block span {
    color: #4B5563 !important;
}
body .landing-page .content-block h2,
body .landing-page .content-block h3,
body .landing-page .content-block h4 {
    color: #2A363F !important;
}
body .landing-page .features .feature p {
    color: #6B7280 !important;
}
body .landing-page .features .feature h4 {
    color: #2A363F !important;
}

/* --- Ensure white text STAYS white on sections we kept dark --- */
body .landing-page .get-started h2,
body .landing-page .get-started h3,
body .landing-page .get-started p,
body .landing-page .get-started span {
    color: #fff !important;
}
body .landing-page .get-started p {
    color: rgba(255,255,255,0.8) !important;
}
body .landing-page.ssl .certificate-options h2,
body .landing-page.ssl .certificate-options h3,
body .landing-page.ssl .certificate-options p,
body .landing-page.ssl .certificate-options span,
body .landing-page.ssl .certificate-options li {
    color: #fff !important;
}
body .landing-page.ssl .certificate-options p {
    color: rgba(255,255,255,0.85) !important;
}
body .landing-page.nordvpn .hero h2,
body .landing-page.nordvpn .hero h3,
body .landing-page.nordvpn .hero p,
body .landing-page.sitelockvpn .hero h1,
body .landing-page.sitelockvpn .hero h2,
body .landing-page.sitelockvpn .hero p {
    color: #fff !important;
}
body .landing-page.sitelockvpn .feature.countries h2,
body .landing-page.sitelockvpn .feature.countries p {
    color: #fff !important;
}
body .landing-page.marketgoo .video-banner h2,
body .landing-page.marketgoo .video-banner p {
    color: #fff !important;
}
body .landing-page.mail-services .product-options h2,
body .landing-page.mail-services .product-options h3,
body .landing-page.mail-services .product-options p {
    color: #fff !important;
}
body .landing-page.xovinow .faq .accordion > .card > .card-header .btn {
    color: #fff !important;
}
body .landing-page.threesixtymonitoring .div-feature-label-starting {
    color: #fff !important;
}

/* --- Hide money-back guarantee on MarketConnect pages (we offer 2-day trial instead) --- */
body .landing-page .money-back {
    display: none !important;
}

/* ================================================================
   DOMAIN CHECKER PAGE — Override yellow/gold with brand colors
   ================================================================ */

/* Yellow gradient banner -> Dark brand gradient */
body .domain-checker-container,
#order-standard_cart .domain-checker-container {
    background: linear-gradient(135deg, #2A363F 0%, #344350 100%) !important;
    border-radius: 16px !important;
}

/* Globe bg image - keep it but darken */
body .domain-checker-bg,
#order-standard_cart .domain-checker-bg {
    background-image: none !important;
}

/* Domain checker heading & text */
body .domain-checker-container h2,
body .domain-checker-container .domain-checker-result-headline {
    color: #FFFFFF !important;
    font-family: Poppins, sans-serif !important;
}
body .domain-checker-container p,
body .domain-checker-container label {
    color: rgba(255,255,255,0.85) !important;
}

/* Search button inside domain checker */
body .domain-checker-container .btn-primary,
body .domain-checker-container .btn-check-availability,
body .domain-checker-container .domain-check-availability {
    background: linear-gradient(135deg, #FF6E41 0%, #FF9068 100%) !important;
    border: none !important;
    color: #fff !important;
    border-radius: 10px !important;
    font-family: Poppins, sans-serif !important;
    font-weight: 600 !important;
}

/* Featured TLD price boxes - override per-TLD colors with uniform brand color */
body .featured-tld .price {
    background: linear-gradient(135deg, #FF6E41 0%, #FF9068 100%) !important;
    color: #fff !important;
    border-radius: 0 0 8px 8px !important;
    font-family: Poppins, sans-serif !important;
    font-weight: 600 !important;
}

/* Featured TLD card styling */
body .featured-tld {
    border-radius: 12px !important;
    overflow: hidden !important;
    border: 1px solid #E8ECF0 !important;
    box-shadow: 0 2px 8px rgba(42,54,63,0.06) !important;
}

/* Domain search results styling */
body .domain-available .btn,
body .domain-checker-available .btn {
    background: linear-gradient(135deg, #FF6E41 0%, #FF9068 100%) !important;
    border: none !important;
    color: #fff !important;
    border-radius: 10px !important;
}

/* Domain suggestion items */
body .domain-suggestion .btn {
    background: linear-gradient(135deg, #FF6E41 0%, #FF9068 100%) !important;
    border: none !important;
    color: #fff !important;
    border-radius: 8px !important;
}

/* Domain pricing table on domainchecker/domain-pricing pages */
body .domain-pricing .tld-pricing-header {
    background: #2A363F !important;
    color: #fff !important;
    font-family: Poppins, sans-serif !important;
}
body .domain-pricing .tld-pricing-header div {
    color: #fff !important;
}

/* ================================================================
   STICKY HEADER — sticks to top on scroll
   ================================================================ */
body {
    overflow-y: visible !important;
}
header.header,
header#header.header,
body > header.header,
body header#header {
    position: sticky !important;
    top: 0 !important;
    z-index: 1030 !important;
    transition: box-shadow 0.3s ease !important;
    background-color: #fff !important;
}
header.header.scrolled,
header#header.header.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.12) !important;
}

/* ================================================================
   FOOTER — Full width edge-to-edge + copyright padding
   ================================================================ */

/* Footer wrapper: full viewport width */
footer#footer.footer.hs-footer,
footer.footer.hs-footer,
footer#footer {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    box-sizing: border-box !important;
}

/* Footer main dark section */
footer#footer .hs-footer-main,
footer#footer.footer.hs-footer .hs-footer-main,
.hs-footer .hs-footer-main {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

/* Footer main inner container — constrained content with padding */
footer#footer .hs-footer-main .hs-footer-container,
.hs-footer .hs-footer-main .hs-footer-container {
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding-left: 40px !important;
    padding-right: 40px !important;
}

/* Copyright bar — full width with padding */
footer#footer .hs-footer-bottom,
.hs-footer .hs-footer-bottom {
    width: 100% !important;
    padding: 16px 0 !important;
    box-sizing: border-box !important;
}

footer#footer .hs-footer-bottom .hs-footer-container,
.hs-footer .hs-footer-bottom .hs-footer-container {
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding-left: 40px !important;
    padding-right: 40px !important;
}

/* Copyright bar inner flex layout */
footer#footer .hs-footer-bottom .hs-footer-bottom-inner,
.hs-footer-bottom .hs-footer-bottom-inner {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}

footer#footer .hs-footer-bottom .copyright,
.hs-footer-bottom .copyright {
    margin: 0 !important;
    padding: 0 !important;
}

/* ================================================================
   FLOATING BUTTONS — Vertical stack (bottom to top):
   Google reCAPTCHA badge → Back to Top → WhatsApp
   ================================================================ */

/* 1. Google reCAPTCHA badge — bottom-most, bring visible */
.grecaptcha-badge {
    bottom: 14px !important;
    right: 14px !important;
    z-index: 9990 !important;
    width: 70px !important;
    height: 60px !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
    border-radius: 8px !important;
}
.grecaptcha-badge:hover {
    width: 256px !important;
}

/* 2. Back to Top — above reCAPTCHA */
button.hs-back-to-top,
.hs-back-to-top,
#backToTop {
    position: fixed !important;
    bottom: 88px !important;
    right: 24px !important;
    width: 48px !important;
    height: 48px !important;
    background: linear-gradient(135deg, #FF6E41 0%, #FF9068 100%) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 12px !important;
    font-size: 18px !important;
    cursor: pointer !important;
    z-index: 9995 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 14px rgba(255,110,65,0.3) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}
button.hs-back-to-top.visible,
.hs-back-to-top.visible,
#backToTop.visible {
    opacity: 1 !important;
    visibility: visible !important;
}
button.hs-back-to-top:hover,
.hs-back-to-top:hover,
#backToTop:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 20px rgba(255,110,65,0.4) !important;
}

/* 3. WhatsApp — top of the stack */
.hs-whatsapp-float {
    bottom: 148px !important;
    right: 22px !important;
    z-index: 9998 !important;
}

/* ================================================================
   DOMAIN SECTION V2 — Complete Redesign
   ================================================================ */
.hs-domain-section-v2 {
    margin-top: -50px;
    position: relative;
    z-index: 10;
    padding-bottom: 60px;
}

.hs-domain-v2-inner {
    background: linear-gradient(135deg, #FFFFFF 0%, #F7F9FB 100%);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(42,54,63,0.08), 0 1px 3px rgba(42,54,63,0.06);
    padding: 48px 40px 40px;
    text-align: center;
    border: 1px solid rgba(232,236,240,0.7);
    position: relative;
    overflow: hidden;
}

.hs-domain-v2-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF6E41, #FF9068, #FF6E41);
}

.hs-domain-v2-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #FFF5F2;
    color: #FF6E41;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}

.hs-domain-v2-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 2.2rem;
    color: #2A363F;
    margin-bottom: 10px;
    line-height: 1.2;
}

.hs-domain-v2-sub {
    color: #6B7280;
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

/* Search Bar */
.hs-domain-v2-form {
    max-width: 720px;
    margin: 0 auto;
}

.hs-domain-v2-search {
    display: flex;
    gap: 0;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(42,54,63,0.08), 0 0 0 1px rgba(232,236,240,0.8);
    padding: 6px;
    transition: box-shadow 0.3s ease;
}

.hs-domain-v2-search:focus-within {
    box-shadow: 0 4px 24px rgba(255,110,65,0.15), 0 0 0 2px rgba(255,110,65,0.3);
}

.hs-domain-v2-input-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 16px;
    gap: 12px;
}

.hs-domain-v2-icon {
    color: #9CA3AF;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.hs-domain-v2-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #2A363F;
    padding: 14px 0;
}

.hs-domain-v2-input::placeholder {
    color: #9CA3AF;
}

.hs-domain-v2-btn {
    flex-shrink: 0;
    background: linear-gradient(135deg, #FF6E41 0%, #FF9068 100%);
    color: #fff !important;
    border: none;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.hs-domain-v2-btn:hover {
    background: linear-gradient(135deg, #E85A2F 0%, #FF6E41 100%);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255,110,65,0.35);
}

.hs-domain-v2-transfer {
    margin-top: 12px;
    font-size: 0.88rem;
    color: #6B7280;
}

.hs-domain-v2-transfer a {
    color: #FF6E41;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}

.hs-domain-v2-transfer a:hover {
    color: #E85A2F;
}

/* TLD Cards */
.hs-domain-v2-tlds {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 36px;
    flex-wrap: wrap;
}

.hs-domain-v2-tld {
    background: #fff;
    border: 1px solid #E8ECF0;
    border-radius: 14px;
    padding: 16px 20px;
    min-width: 120px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: default;
}

.hs-domain-v2-tld:hover {
    border-color: #FF6E41;
    box-shadow: 0 4px 16px rgba(255,110,65,0.12);
    transform: translateY(-2px);
}

.hs-tld-ext {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: #2A363F;
    margin-bottom: 4px;
}

.hs-tld-price {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: #FF6E41;
}

.hs-tld-price small {
    font-weight: 400;
    font-size: 0.75rem;
    color: #9CA3AF;
}

.hs-tld-label {
    display: block;
    font-size: 0.72rem;
    color: #9CA3AF;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 500;
}

/* Feature row below TLDs */
.hs-domain-v2-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid #E8ECF0;
}

.hs-domain-v2-features span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: #6B7280;
    font-weight: 500;
}

.hs-domain-v2-features span i {
    color: #10B981;
    font-size: 0.9rem;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .hs-domain-v2-inner {
        padding: 32px 20px 28px;
    }

    .hs-domain-v2-title {
        font-size: 1.6rem;
    }

    .hs-domain-v2-search {
        flex-direction: column;
        border-radius: 14px;
    }

    .hs-domain-v2-btn {
        width: 100%;
        justify-content: center;
        border-radius: 10px;
        padding: 14px;
    }

    .hs-domain-v2-tlds {
        gap: 10px;
    }

    .hs-domain-v2-tld {
        min-width: 100px;
        padding: 12px 14px;
    }

    .hs-tld-ext {
        font-size: 1.1rem;
    }

    .hs-domain-v2-features {
        gap: 14px;
    }

    .hs-domain-v2-features span {
        font-size: 0.78rem;
    }
}

@media (max-width: 480px) {
    .hs-domain-v2-tlds {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .hs-domain-v2-tld {
        min-width: unset;
    }

    .hs-domain-v2-features {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}
