/* ============================================================
   ELITE PRINT HUB — Global Theme Override
   ============================================================ */

:root {
    --ep-primary:       #231876;
    --ep-primary-dark:  #430a9f;
    --ep-primary-light: #4409ce;
    --ep-accent:        #0f172a;
    --ep-surface:       #ffffff;
    --ep-bg:            #f8fafc;
    --ep-border:        #e2e8f0;
    --ep-text:          #0f172a;
    --ep-text-muted:    #64748b;
    --ep-success:       #059669;
    --ep-danger:        #dc2626;
    --ep-nav-h:         92px;
    --ep-radius:        12px;
    --ep-shadow:        0 4px 24px rgba(15,23,42,.08);
    --ep-shadow-lg:     0 16px 48px rgba(15,23,42,.14);
    --ep-grad-primary:  linear-gradient(135deg, #560bd8 0%, #351c70 50%, #4712e5 100%);
    --ep-grad-hero:     linear-gradient(135deg, #2024d3 0%, #440ec1 50%, #1647b0 100%);
    --ep-font:          'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ── Base ────────────────────────────────────────────────── */
*,*::before,*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--ep-font);
    background: var(--ep-bg);
    color: var(--ep-text);
    line-height: 1.6;
}

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

a { color: var(--ep-primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--ep-primary-dark); }

img { max-width: 100%; }

/* ── Header height spacer ────────────────────────────────── */
.headderHeight {
    height: var(--ep-nav-h) !important;
    display: block;
}

/* ── EP Header ───────────────────────────────────────────── */
.ep-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1200;
    height: var(--ep-nav-h);
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--ep-border);
    box-shadow: 0 2px 16px rgba(15,23,42,.06);
    transition: box-shadow .3s, background .3s;
}

.ep-header.scrolled {
    box-shadow: 0 4px 28px rgba(15,23,42,.12);
}

.ep-nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    height: 90px;
    display: flex;
    align-items: center;
    gap: 24px;
}

/* Logo */
.ep-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}
.ep-logo img {
    height: 48px;
    max-width: 160px;
    object-fit: contain;
}

/* Desktop Nav */
.ep-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
}

.ep-menu > li {
    position: relative;
}

.ep-menu > li > a,
.ep-menu > li > .ep-nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 12px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--ep-text);
    border-radius: 8px;
    transition: background .2s, color .2s;
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
    border: none;
    background: none;
    font-family: var(--ep-font);
}

.ep-menu > li > a:hover,
.ep-menu > li > .ep-nav-link:hover {
    background: rgba(124,58,237,.08);
    color: var(--ep-primary);
}

.ep-menu > li.active > a,
.ep-menu > li.active > .ep-nav-link {
    color: var(--ep-primary);
    background: rgba(124,58,237,.1);
}

/* Dropdown */
.ep-has-dropdown { position: relative; }

.ep-dropdown-menu {
    list-style: none;
    margin: 0;
    padding: 6px;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 200px;
    background: #fff;
    border: 1px solid var(--ep-border);
    border-radius: var(--ep-radius);
    box-shadow: var(--ep-shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity .22s, transform .22s, visibility .22s;
    z-index: 200;
}

.ep-has-dropdown:hover .ep-dropdown-menu,
.ep-has-dropdown:focus-within .ep-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.ep-dropdown-menu li a {
    display: block;
    padding: 9px 14px;
    font-size: 13px;
    font-weight: 500;
    color: var(--ep-text);
    border-radius: 8px;
    transition: background .18s, color .18s;
    text-decoration: none;
}
.ep-dropdown-menu li a:hover {
    background: rgba(124,58,237,.08);
    color: var(--ep-primary);
}

/* Nav right */
.ep-nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    margin-left: auto;
}

/* User card */
.ep-user-card {
    display: flex;
    align-items: center;
    gap: 10px;
    /* background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
    border: 1px solid rgba(124,58,237,.2); */
    border-radius: var(--ep-radius);
    padding: 4px 15px !important
}
.ep-user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ep-primary), var(--ep-primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    flex-shrink: 0;
}
.ep-user-info { line-height: 1.3; }
.ep-user-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--ep-text);
}
.ep-user-meta {
    font-size: 14px;
    color: #fb2c00;
}
.ep-user-balance {
    font-size: 14px;
    font-weight: 700;
    color: var(--ep-primary);
}
.ep-signout-btn:hover{
    background: black!important;
}
.ep-signout-btn {
    font-size: 11px;
    font-weight: 600;
    color: var(--ep-text-muted);
    padding: 4px 8px;
    border-radius: 6px;
    transition: background .2s, color .2s;
    text-decoration: none;
    white-space: nowrap;
}
.ep-signout-btn:hover {
    background: rgba(220,38,38,.08);
    color: var(--ep-danger);
}

/* Auth buttons */
.ep-btn-login {
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 700;
    color: var(--ep-text);
    border: 1.5px solid var(--ep-border);
    border-radius: 8px;
    transition: border-color .2s, color .2s, background .2s;
    text-decoration: none;
    white-space: nowrap;
}
.ep-btn-login:hover {
    border-color: var(--ep-primary);
    color: var(--ep-primary);
}
.ep-btn-register {
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--ep-primary), var(--ep-primary-light));
    border-radius: 8px;
    transition: opacity .2s, transform .18s;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(124,58,237,.3);
}
.ep-btn-register:hover {
    opacity: .9;
    transform: translateY(-1px);
    color: #fff;
}

/* Hamburger button */
.ep-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    transition: background .2s;
    flex-shrink: 0;
    margin-left: auto;
}
.ep-hamburger:hover { background: rgba(124,58,237,.08); }
.ep-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ep-text);
    border-radius: 2px;
    transition: transform .3s, opacity .3s;
    transform-origin: center;
}
.ep-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ep-hamburger.open span:nth-child(2) { opacity: 0; }
.ep-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Drawer overlay */
.ep-drawer-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15,23,42,.5);
    z-index: 1300;
    opacity: 0;
    transition: opacity .3s;
}
.ep-drawer-overlay.show { opacity: 1; }

/* Drawer */
.ep-drawer {
    position: fixed;
    top: 0; right: -100%;
    width: 300px;
    max-width: 90vw;
    height: 100vh;
    background: #fff;
    z-index: 1400;
    overflow-y: auto;
    transition: right .35s cubic-bezier(.4,0,.2,1);
    box-shadow: -4px 0 32px rgba(15,23,42,.16);
    display: flex;
    flex-direction: column;
}
.ep-drawer.open { right: 0; }

.ep-drawer-header {
    padding: 18px 20px 16px;
    border-bottom: 1px solid var(--ep-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.ep-drawer-close {
    width: 32px;
    height: 32px;
    background: var(--ep-bg);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--ep-text-muted);
    transition: background .2s, color .2s;
}
.ep-drawer-close:hover { background: var(--ep-border); color: var(--ep-text); }

.ep-drawer-user {
    padding: 16px 20px;
    background: linear-gradient(135deg, #f5f3ff, #ede9fe);
    border-bottom: 1px solid rgba(124,58,237,.15);
}
.ep-drawer-user-name { font-size: 14px; font-weight: 700; color: var(--ep-text); }
.ep-drawer-user-meta { font-size: 12px; color: var(--ep-text-muted); margin-top: 2px; }
.ep-drawer-user-balance { font-size: 13px; font-weight: 700; color: var(--ep-primary); margin-top: 4px; }

.ep-drawer-nav {
    list-style: none;
    margin: 0;
    padding: 12px 12px;
    flex: 1;
}
.ep-drawer-nav li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    font-size: 14px;
    font-weight: 600;
    color: var(--ep-text);
    border-radius: 10px;
    text-decoration: none;
    transition: background .2s, color .2s;
}
.ep-drawer-nav li a:hover,
.ep-drawer-nav li.active a {
    background: rgba(124,58,237,.08);
    color: var(--ep-primary);
}
.ep-drawer-nav li a .ep-nav-icon { font-size: 16px; width: 20px; text-align: center; }

.ep-drawer-sub {
    list-style: none;
    margin: 0;
    padding: 4px 0 4px 30px;
}
.ep-drawer-sub a {
    font-size: 13px !important;
    font-weight: 500 !important;
    padding: 8px 14px !important;
}

.ep-drawer-sub-toggle {
    cursor: pointer;
    user-select: none;
}
.ep-drawer-sub-toggle .ep-chevron {
    margin-left: auto;
    transition: transform .3s;
    font-size: 12px;
}
.ep-drawer-sub-toggle.open .ep-chevron { transform: rotate(180deg); }

.ep-drawer-footer {
    padding: 16px 20px;
    border-top: 1px solid var(--ep-border);
}
.ep-drawer-signout {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: rgba(220,38,38,.06);
    color: var(--ep-danger);
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s;
}
.ep-drawer-signout:hover { background: rgba(220,38,38,.12); color: var(--ep-danger); }

.ep-drawer-auth {
    padding: 16px 20px;
    display: flex;
    gap: 10px;
}
.ep-drawer-auth a {
    flex: 1;
    text-align: center;
    padding: 10px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}
.ep-drawer-auth .ep-d-login {
    border: 1.5px solid var(--ep-border);
    color: var(--ep-text);
}
.ep-drawer-auth .ep-d-register {
    background: linear-gradient(135deg, var(--ep-primary), var(--ep-primary-light));
    color: #fff;
    box-shadow: 0 3px 10px rgba(124,58,237,.25);
}

/* Mobile breakpoint */
@media (max-width: 991px) {
    .ep-menu,
    .ep-nav-right { display: none !important; }
    .ep-hamburger { display: flex; }
    .ep-logo img { height: 40px; }
    .ep-nav-inner { gap: 12px; }
}

@media (min-width: 992px) {
    .ep-hamburger { display: none; }
    .ep-drawer, .ep-drawer-overlay { display: none !important; }
}


/* ── Buttons ─────────────────────────────────────────────── */
.btn-primary,
.btn-ep-primary {
    background: linear-gradient(135deg, var(--ep-primary) 0%, var(--ep-primary-light) 100%) !important;
    border: none !important;
    color: #fff !important;
    font-weight: 700 !important;
    border-radius: 10px !important;
    padding: 10px 24px !important;
    font-size: 14px !important;
    box-shadow: 0 4px 14px rgba(124,58,237,.3) !important;
    transition: transform .2s, box-shadow .2s, opacity .2s !important;
    text-decoration: none;
}
.btn-primary:hover,
.btn-ep-primary:hover {
    opacity: .92 !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 6px 20px rgba(124,58,237,.38) !important;
    color: #fff !important;
}
.btn-secondary {
    background: var(--ep-accent) !important;
    border: none !important;
    color: #fff !important;
    font-weight: 700 !important;
    border-radius: 10px !important;
}
.btn-outline-primary {
    border: 2px solid var(--ep-primary) !important;
    color: var(--ep-primary) !important;
    background: transparent !important;
    font-weight: 700 !important;
    border-radius: 10px !important;
}
.btn-outline-primary:hover {
    background: var(--ep-primary) !important;
    color: #fff !important;
}

/* ── Cards ───────────────────────────────────────────────── */
.card {
    border: 1px solid var(--ep-border) !important;
    border-radius: var(--ep-radius) !important;
    box-shadow: var(--ep-shadow) !important;
    background: #fff !important;
    overflow: hidden;
}
.card-header {
    background: linear-gradient(135deg, var(--ep-primary) 0%, var(--ep-primary-light) 100%) !important;
    border: none !important;
    color: #fff !important;
    font-weight: 700 !important;
    padding: 14px 20px !important;
}
.card-header * { color: #fff !important; }

/* ── Forms ───────────────────────────────────────────────── */
.form-control, .form-select {
    border: 1.5px solid var(--ep-border) !important;
    border-radius: 10px !important;
    padding: 10px 14px !important;
    font-size: 14px !important;
    color: var(--ep-text) !important;
    transition: border-color .2s, box-shadow .2s !important;
}
.form-control:focus, .form-select:focus {
    border-color: var(--ep-primary) !important;
    box-shadow: 0 0 0 3px rgba(124,58,237,.12) !important;
    outline: none !important;
}

/* ── Tables ──────────────────────────────────────────────── */
.table > thead > tr > th {
    background: var(--ep-accent) !important;
    color: #fff !important;
    font-weight: 700 !important;
    font-size: 12px !important;
    text-transform: uppercase !important;
    letter-spacing: .04em !important;
    border: none !important;
    padding: 12px 10px !important;
}
.table-striped > tbody > tr:nth-of-type(odd) > * {
    background: #fafbfc !important;
}
.table > tbody > tr > td {
    border-color: var(--ep-border) !important;
    vertical-align: middle !important;
    font-size: 13px !important;
}

/* ── Badges ──────────────────────────────────────────────── */
.badge {
    font-weight: 700 !important;
    letter-spacing: .03em !important;
    border-radius: 6px !important;
    padding: 4px 8px !important;
}
.badge.bg-success { background: rgba(5,150,105,.12) !important; color: #059669 !important; }
.badge.bg-warning { background: rgba(245,158,11,.12) !important; color: #b45309 !important; }
.badge.bg-danger  { background: rgba(220,38,38,.12)  !important; color: #dc2626 !important; }
.badge.bg-info    { background: rgba(6,182,212,.12)  !important; color: #0891b2 !important; }
.badge.bg-primary { background: rgba(124,58,237,.12)  !important; color: var(--ep-primary) !important; }
.badge.bg-secondary { background: rgba(100,116,139,.12) !important; color: #475569 !important; }

/* ── Section styles ──────────────────────────────────────── */
.ep-section {
    padding: 72px 0;
}
.ep-section-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--ep-text);
    position: relative;
    display: inline-block;
    margin-bottom: 40px;
}
.ep-section-title::after {
    content: '';
    position: absolute;
    left: 0; bottom: -10px;
    width: 60px; height: 4px;
    background: linear-gradient(90deg, var(--ep-primary), var(--ep-primary-light));
    border-radius: 4px;
}
.section-title {
    font-weight: 700;
    font-size: 28px;
    letter-spacing: .5px;
    position: relative;
    display: inline-block;
    color: var(--ep-text);
    margin-bottom: 32px;
}
.section-title::after {
    content: "";
    width: 60%;
    height: 4px;
    background: linear-gradient(90deg, var(--ep-primary), var(--ep-primary-light));
    position: absolute;
    left: 0; bottom: -10px;
    border-radius: 10px;
}

/* ── Back to top ─────────────────────────────────────────── */
.btn-back-to-top {
    background: linear-gradient(135deg, var(--ep-primary), var(--ep-primary-light)) !important;
    border-radius: 50% !important;
    width: 44px !important;
    height: 44px !important;
    opacity: .85 !important;
    bottom: 24px !important;
    right: 24px !important;
    box-shadow: 0 4px 16px rgba(124,58,237,.35) !important;
}
.btn-back-to-top:hover { opacity: 1 !important; }

/* ── Login / Register page ───────────────────────────────── */
.ep-auth-wrap {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    padding: 40px 16px;
}
.ep-auth-card {
    width: 100%;
    max-width: 440px;
    background: #fff;
    border-radius: 20px;
    padding: 40px 36px;
    box-shadow: 0 24px 64px rgba(0,0,0,.3);
}
.ep-auth-logo { text-align: center; margin-bottom: 28px; }
.ep-auth-logo img { max-height: 54px; }
.ep-auth-title {
    text-align: center;
    font-size: 22px;
    font-weight: 800;
    color: var(--ep-text);
    margin-bottom: 6px;
}
.ep-auth-sub {
    text-align: center;
    font-size: 13px;
    color: var(--ep-text-muted);
    margin-bottom: 28px;
}

/* ── Loader ──────────────────────────────────────────────── */
.loader05 {
    border-color: var(--ep-primary) !important;
}

/* ── Toastr tweak ────────────────────────────────────────── */
#toast-container > div { border-radius: 10px !important; }

/* ── Product / service cards ─────────────────────────────── */
.block1 {
    border-radius: 16px !important;
    border: 1px solid var(--ep-border) !important;
    box-shadow: 0 4px 20px rgba(15,23,42,.07) !important;
    transition: transform .3s, box-shadow .3s !important;
    overflow: hidden;
    background: #fff;
}
.block1:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 16px 40px rgba(15,23,42,.13) !important;
}
.block1 img {
    border-radius: 0 !important;
}

/* ── Nav active color override ───────────────────────────── */
.main-menu > li.active-menu > a,
.main-menu > li > a:hover {
    color: var(--ep-primary) !important;
}

/* ── Responsive helpers ──────────────────────────────────── */
@media (max-width: 767px) {
    .ep-section { padding: 48px 0; }
    .ep-section-title { font-size: 24px; }
    .section-title { font-size: 20px; }
}

/* ── Page Hero Banner ────────────────────────────────────── */
.ep-page-hero {
    background: linear-gradient(135deg, #2529d2 0%, #391c79 50%, #4b197c 100%);
    padding: 56px 0 48px;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.ep-page-hero::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 320px; height: 320px;
    background: radial-gradient(circle, rgba(139,92,246,.18), transparent 70%);
    border-radius: 50%;
}
.ep-page-hero::after {
    content: '';
    position: absolute;
    bottom: -60px; left: -60px;
    width: 260px; height: 260px;
    background: radial-gradient(circle, rgba(168,85,247,.12), transparent 70%);
    border-radius: 50%;
}
.ep-page-hero .ep-hero-inner {
    position: relative;
    z-index: 2;
}
.ep-page-hero .ep-hero-chip {
    display: inline-block;
    background: rgba(255,255,255,.22);
    border: 1px solid rgba(255,255,255,.45);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 999px;
    margin-bottom: 14px;
}
.ep-page-hero h1 {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 800;
    color: #fff;
    margin: 0 0 12px;
    letter-spacing: -.5px;
}
.ep-page-hero p {
    font-size: 16px;
    color: rgba(255,255,255,.88);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}
.ep-page-hero .ep-hero-divider {
    width: 56px; height: 4px;
    background: linear-gradient(90deg, var(--ep-primary), var(--ep-primary-light));
    border-radius: 4px;
    margin: 16px auto 0;
}

/* ── Policy / Content pages ──────────────────────────────── */
.ep-content-wrap {
    max-width: 860px;
    margin: 0 auto;
    padding: 48px 16px 64px;
}
.ep-content-card {
    background: #fff;
    border: 1px solid var(--ep-border);
    border-radius: 18px;
    padding: 40px 36px;
    box-shadow: var(--ep-shadow);
    line-height: 1.85;
    font-size: 15px;
    color: var(--ep-text);
}
.ep-content-card h1,
.ep-content-card h2,
.ep-content-card h3 {
    color: var(--ep-primary);
    font-weight: 700;
    margin-top: 28px;
    margin-bottom: 10px;
}
.ep-content-card h2 { font-size: 18px; }
.ep-content-card h3 { font-size: 16px; }
.ep-content-card p { margin-bottom: 14px; }
.ep-content-card ul { padding-left: 20px; }
.ep-content-card ul li { margin-bottom: 8px; }
.ep-lang-switch {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    margin-bottom: 20px;
}
.ep-lang-btn {
    padding: 6px 18px;
    border: 1.5px solid var(--ep-border);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: var(--ep-text-muted);
    text-decoration: none;
    transition: all .2s;
}
.ep-lang-btn:hover { border-color: var(--ep-primary); color: var(--ep-primary); }
.ep-lang-btn.active {
    background: var(--ep-primary);
    border-color: var(--ep-primary);
    color: #fff;
}

/* ── Settings pages ──────────────────────────────────────── */
.ep-settings-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 16px 64px;
}
.ep-settings-card {
    background: #fff;
    border: 1px solid var(--ep-border);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--ep-shadow);
}
.ep-settings-head {
    background: linear-gradient(135deg, var(--ep-primary) 0%, var(--ep-primary-light) 100%);
    padding: 20px 28px;
    color: #fff;
}
.ep-settings-head h2 { color: #fff; margin: 0; font-size: 20px; }
.ep-settings-head p { color: rgba(255,255,255,.8); margin: 4px 0 0; font-size: 13px; }
.ep-settings-body { padding: 28px; }
.ep-form-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--ep-text);
    margin-bottom: 6px;
    display: block;
}
.ep-form-label span { color: var(--ep-danger); margin-left: 2px; }
.ep-field-locked {
    background: var(--ep-bg) !important;
    color: var(--ep-text-muted) !important;
    cursor: not-allowed !important;
}
.ep-save-btn {
    background: linear-gradient(135deg, var(--ep-primary), var(--ep-primary-light)) !important;
    color: #fff !important;
    border: none !important;
    padding: 12px 32px !important;
    border-radius: 10px !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    box-shadow: 0 4px 14px rgba(124,58,237,.3) !important;
    transition: transform .2s, box-shadow .2s !important;
}
.ep-save-btn:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 6px 20px rgba(124,58,237,.4) !important;
}

/* ── Password page ───────────────────────────────────────── */
.password-card {
    max-width: 460px !important;
    margin: 48px auto 64px !important;
    padding: 36px 32px !important;
    background: #fff !important;
    border-radius: 18px !important;
    box-shadow: var(--ep-shadow-lg) !important;
    border: 1px solid var(--ep-border) !important;
}
.password-card h3 {
    font-size: 20px !important;
    font-weight: 800 !important;
    color: var(--ep-text) !important;
    margin-bottom: 24px !important;
}
.password-card .form-control {
    border: 1.5px solid var(--ep-border) !important;
    border-radius: 10px !important;
}
.password-card .form-control:focus {
    border-color: var(--ep-primary) !important;
    box-shadow: 0 0 0 3px rgba(124,58,237,.12) !important;
}
.password-card .btn-primary {
    background: linear-gradient(135deg, var(--ep-primary), var(--ep-primary-light)) !important;
    border: none !important;
    border-radius: 10px !important;
    font-weight: 700 !important;
    padding: 12px !important;
    box-shadow: 0 4px 14px rgba(124,58,237,.3) !important;
}

/* ── Global old-color overrides ──────────────────────────── */
.aboutmindset,
.elite-header h2,
.heading-main,
.what-we-do-title,
.service-title { color: var(--ep-accent) !important; }

.elite-section { background: var(--ep-accent) !important; }

.elite-why-box {
    background: linear-gradient(135deg, var(--ep-accent) 0%, #1e293b 100%) !important;
}

/* ── Invoice Report & Account Statement ──────────────────── */
.invoice-report-head,
.account-statement-head {
    background: linear-gradient(135deg, var(--ep-primary), var(--ep-primary-light)) !important;
}

/* ── Wallet pages ────────────────────────────────────────── */
.wallet-balance-card,
.auto-card {
       background: linear-gradient(135deg, #560bd8 0%, #6432dc 50%, #4712e5 100%) !important;
}
.btn-phonepe,
.wm-btn {
    background: linear-gradient(135deg, var(--ep-primary), var(--ep-primary-light)) !important;
    border: none !important;
    color: #fff !important;
}
.quick-amt.active {
    background: var(--ep-primary) !important;
    border-color: var(--ep-primary) !important;
    color: #fff !important;
}
.quick-amt {
    border: 2px solid var(--ep-border);
    border-radius: 10px;
    padding: 10px 20px;
    font-weight: 700;
    cursor: pointer;
    transition: all .2s;
}
.quick-amt:hover {
    border-color: var(--ep-primary);
    color: var(--ep-primary);
}

/* ── My Orders page tweaks ───────────────────────────────── */
.card-header.bg-primary {
    background: linear-gradient(135deg, var(--ep-primary), var(--ep-primary-light)) !important;
}

/* ── Contact page ────────────────────────────────────────── */
.contact-tag { background: linear-gradient(135deg, var(--ep-primary), var(--ep-primary-light)) !important; }
.contact-link { background: linear-gradient(135deg, var(--ep-primary), var(--ep-primary-light)) !important; }

@media (max-width: 575px) {
    .ep-content-card { padding: 22px 16px; }
    .ep-settings-body { padding: 18px 14px; }
}
