/* ═══════════════════════════════════════════════════════════════
   ccpro-layout.css  —  CreditCardPro Unified Layout System v3.0
   Place at:  wwwroot/assets/css/ccpro-layout.css
   Linked by both _Common.cshtml and _Layout.cshtml
   No Razor @-escaping needed in this plain .css file
═══════════════════════════════════════════════════════════════ */

/* ── CSS VARIABLES ─────────────────────────────────────────── */
:root {
    --nav-h: 74px;
    --tab-h: 58px;
    --drawer-w: 300px;
    /*  --primary:   #0d1f3c;*/
    --accent: #1a9e6e;
    --accent-h: #158a5e;
    --purple-hover: #edf7f3;
    --border: #e4eaf2;
    --text: #1e293b;
    --muted: #64748b;
    --surface: #f8fafc;
    --white: #ffffff;
    /*  --fn-ui:     'Outfit', sans-serif;
  --fn-body:   'DM Sans', sans-serif;*/
    --ease: 0.22s cubic-bezier(.4,0,.2,1);
    --sh-header: 0 1px 0 rgba(0,0,0,.06);
    --sh-scroll: 0 2px 20px rgba(13,31,60,.10);
    --sh-drop: 0 8px 32px rgba(13,31,60,.13);
    --r-sm: 6px;
    --r-md: 10px;
    --r-lg: 14px;
}

*, *::before, *::after {
    box-sizing: border-box
}
/*body { font-family: var(--fn-body); color: var(--text); margin: 0 }*/
.dashboard-body {
    background: #f5f5f5
}

/* ── HEADER SHELL ───────────────────────────────────────────── */
.ccpro-header {
    position: sticky;
    top: 0;
    z-index: 900;
    background: var(--white);
    box-shadow: var(--sh-header);
    transition: box-shadow var(--ease);
}

    .ccpro-header.scrolled {
        box-shadow: var(--sh-scroll)
    }

/* Shared container */
.ccpro-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 28px;
}

/* ── DESKTOP NAV ────────────────────────────────────────────── */
.ccpro-desktop-nav {
    display: flex;
    height: var(--nav-h);
    align-items: center;
}

    .ccpro-desktop-nav .ccpro-container {
        display: flex;
        align-items: center;
        width: 100%;
        gap: 0;
        padding-left:0px !important;
        padding-right:0px !important;
      
    }

/* Logo */
.ccpro-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-right: 24px;
}

    .ccpro-logo img {
        max-width: 148px;
        height: auto;
        display: block
    }

/* Nav list */
.ccpro-nav {
    flex: 1;
    display: flex;
    justify-content: center
}

    .ccpro-nav ul {
        display: flex;
        align-items: center;
        gap: 2px;
        list-style: none;
        margin: 0;
        padding: 0;
    }

        .ccpro-nav ul li {
            position: relative
        }

            .ccpro-nav ul li a,
            .ccpro-nav ul li .mega-trigger {
                font-family: navfonts;
                font-size: 14px;
                font-weight: 500;
                color: var(--text);
                text-decoration: none;
                padding: 8px 13px;
                border-radius: var(--r-sm);
                display: inline-flex;
                align-items: center;
                gap: 4px;
                position: relative;
                white-space: nowrap;
                cursor: pointer;
                background: none;
                border: none;
                transition: color var(--ease), background var(--ease);
            }

                .ccpro-nav ul li a::after,
                .ccpro-nav ul li .mega-trigger::after {
                    content: '';
                    position: absolute;
                    bottom: 3px;
                    left: 13px;
                    right: 13px;
                    height: 2px;
                    background: var(--bg);
                    border-radius: 2px;
                    transform: scaleX(0);
                    transform-origin: center;
                    transition: transform var(--ease);
                }

                .ccpro-nav ul li a:hover,
                .ccpro-nav ul li .mega-trigger:hover {
                    color: var(--primary);
                    background: var(--purple-hover);
                }

                    .ccpro-nav ul li a:hover::after,
                    .ccpro-nav ul li .mega-trigger:hover::after,
                    .ccpro-nav ul li a.active_nav::after {
                        transform: scaleX(1);
                    }

                .ccpro-nav ul li a.active_nav {
                    color: var(--btn-bg) !important;
                    font-weight: 600
                }

            .ccpro-nav ul li.has-mega:hover .mega-trigger {
                color: var(--primary);
                background: var(--purple-hover)
            }

.ri-arrow-down-s-line {
    font-size: 16px;
    transition: transform var(--ease)
}

.ccpro-nav ul li.has-mega:hover .ri-arrow-down-s-line {
    transform: rotate(180deg)
}

/* ── MEGA DROPDOWN ──────────────────────────────────────────── */
.mega-drop {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    /*width: 620px;*/
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    box-shadow: var(--sh-drop);
    padding: 20px;
    z-index: 1100;
    gap: 0;
    flex-wrap: nowrap;
}

.ccpro-nav ul li.has-mega:hover .mega-drop {
    display: flex;
    animation: megaIn .18s ease both;
}

.mega-col {
    flex: 1;
    padding: 0 12px;
}

    .mega-col:not(:last-child) {
        border-right: 1px solid var(--border)
    }

.mega-label {
    display: block;
    font-family: navfonts;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
    padding: 0 8px 8px;
}

.mega-item {
    display: block;
    padding: 8px;
    border-radius: var(--r-sm);
    text-decoration: none;
    margin-bottom: 2px;
    transition: background var(--ease);
}

    .mega-item:hover {
        background: var(--purple-hover)
    }

    .mega-item strong {
        display: block;
        font-family: navfonts;
        font-size: 13px;
        font-weight: 500;
        color: var(--text);
        line-height: 1.3;
    }

    .mega-item em {
        display: block;
        font-style: normal;
        font-size: 11px;
        color: var(--muted);
        margin-top: 1px;
    }

/* ── USER AREA (desktop right) ──────────────────────────────── */
.ccpro-user-area {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 20px;
    position: relative;
}

.ccpro-bell {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 18px;
    transition: background var(--ease), color var(--ease);
}

    .ccpro-bell:hover {
        background: var(--surface);
        color: var(--primary)
    }

.ccpro-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    background:var(--bg);
    color: var(--white);
    font-family: navfonts;
    font-size: 13px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(26,158,110,.30);
    transition: box-shadow var(--ease), transform var(--ease);
}

    .ccpro-avatar:hover {
        transform: scale(1.06);
        box-shadow: 0 4px 14px rgba(26,158,110,.40)
    }

.ccpro-guest-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: 1.5px solid var(--border);
    border-radius: var(--r-sm);
    padding: 7px 14px;
    font-family: navfonts;
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    cursor: pointer;
    transition: border-color var(--ease), color var(--ease), background var(--ease);
}

    .ccpro-guest-btn:hover {
        border-color: var(--bg);
        color: var(--bg);
        background: var(--purple-hover)
    }

    .ccpro-guest-btn i {
        font-size: 16px
    }

.btn-signin {
    display: inline-flex;
    align-items: center;
    padding: 7px 15px;
    border: 1.5px solid var(--border);
    border-radius: var(--r-sm);
    font-family: navfonts;
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    transition: border-color var(--ease), color var(--ease), background var(--ease);
}

    .btn-signin:hover {
        border-color: var(--bg);
        color: var(--bg);
        background: var(--purple-hover)
    }

.btn-signup {
    display: inline-flex;
    align-items: center;
    padding: 7px 15px;
    background: var(--accent);
    border: 1.5px solid var(--accent);
    border-radius: var(--r-sm);
    font-family: navfonts;
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
    transition: background var(--ease), border-color var(--ease);
}

    .btn-signup:hover {
        background: var(--accent-h);
        border-color: var(--accent-h)
    }

/* User dropdown panel */
.ccpro-user-drop,
.ccpro-guest-drop {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 230px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    box-shadow: var(--sh-drop);
    z-index: 1100;
    margin-right: -120px;
    overflow: hidden;
}

    .ccpro-user-drop.open,
    .ccpro-guest-drop.open {
        display: block;
        animation: megaIn .18s ease both;
    }

.udrop-head {
    background: linear-gradient(135deg, var(--primary) 0%, #1a3d6b 100%);
    background:var(--bg);
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.udrop-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--accent) 0%, #0d8f5e 100%);
    color: var(--white);
    font-family: navfonts;
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255,255,255,.22);
}

.udrop-info strong {
    display: block;
    font-family: navfonts;
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.3;
}

.udrop-info span {
    font-size: 11px;
    color: rgba(255,255,255,.6)
}

.udrop-links {
    padding: 8px
}

    .udrop-links a {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 9px 10px;
        border-radius: var(--r-sm);
        font-family: navfonts;
        font-size: 13px;
        color: var(--text);
        text-decoration: none;
        transition: background var(--ease), color var(--ease);
    }

        .udrop-links a:hover {
            background: var(--purple-hover);
            color: var(--bg);
        }

        .udrop-links a i {
            font-size: 15px;
            color: var(--muted);
            transition: color var(--ease)
        }

        .udrop-links a:hover i {
            color: var(--bg);
        }

.udrop-logout {
    padding: 8px;
    border-top: 1px solid var(--border)
}

    .udrop-logout button {
        width: 100%;
        padding: 9px 10px;
        background: none;
        border: 1.5px solid #fecaca;
        border-radius: var(--r-sm);
        color: #dc2626;
        font-family: navfonts;
        font-size: 13px;
        font-weight: 500;
        cursor: pointer;
        text-align: left;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: background var(--ease), border-color var(--ease);
    }

        .udrop-logout button:hover {
            background: #fef2f2;
            border-color: #dc2626
        }

.ccpro-guest-drop a {
    display: block;
    padding: 10px 14px;
    font-family: navfonts;
    font-size: 13px;
    color: var(--text);
    text-decoration: none;
    transition: background var(--ease), color var(--ease);
}

    .ccpro-guest-drop a:hover {
        background: var(--purple-hover);
        color: var(--bg)
    }

    .ccpro-guest-drop a + a {
        border-top: 1px solid var(--border)
    }

/* ── MOBILE TOPBAR ──────────────────────────────────────────── */
.ccpro-mobile-bar {
    display: none;
    height: var(--nav-h);
    align-items: center;
    justify-content: space-between;
    padding: 0 14px;
}

.ccpro-hamburger {
    width: 42px;
    height: 42px;
    border-radius: var(--r-sm);
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    font-size: 24px;
    transition: background var(--ease);
}

    .ccpro-hamburger:hover {
        background: var(--surface)
    }

.ccpro-mobile-logo {
    display: flex;
    align-items: center;
    text-decoration: none
}

    .ccpro-mobile-logo img {
        max-width: 120px;
        height: auto;
        display: block
    }

.ccpro-mobile-user {
    display: flex;
    align-items: center
}

/* ── BREADCRUMB STRIP ───────────────────────────────────────── */
.ccpro-breadcrumb {
    display: none;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 8px 16px;
}

    .ccpro-breadcrumb ol {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 4px;
        list-style: none;
        margin: 0;
        padding: 0;
    }

        .ccpro-breadcrumb ol li {
            display: flex;
            align-items: center;
            gap: 4px;
            font-family: navfonts;
            font-size: 12px;
            color: var(--muted);
        }

            .ccpro-breadcrumb ol li a {
                color: var(--muted);
                text-decoration: none;
                transition: color var(--ease)
            }

                .ccpro-breadcrumb ol li a:hover {
                    color: var(--accent)
                }

            .ccpro-breadcrumb ol li.active {
                color: var(--text);
                font-weight: 500
            }

            .ccpro-breadcrumb ol li + li::before {
                content: '/';
                color: var(--border)
            }

/* ── OVERLAY ────────────────────────────────────────────────── */
.ccpro-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1100;
    background: rgba(13,31,60,.45);
    backdrop-filter: blur(3px);
    cursor: pointer;
}

    .ccpro-overlay.open {
        display: block;
        animation: fadeIn .25s ease
    }

/* ── SIDE DRAWER ────────────────────────────────────────────── */
.ccpro-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--drawer-w);
    height: 100vh;
    background: var(--white);
    z-index: 1200;
    display: flex;
    flex-direction: column;
    box-shadow: 4px 0 28px rgba(13,31,60,.18);
    transform: translateX(-140%);
    transition: transform .3s cubic-bezier(.4,0,.2,1);
}

    .ccpro-drawer.open {
        transform: translateX(0)
    }

.drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
    position: sticky;
    top: 0;
    background: var(--white);
    z-index: 1;
}

    .drawer-head img {
        max-width: 110px;
        height: auto;
        display: block
    }

.drawer-close {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: none;
    border: 1.5px solid var(--border);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 18px;
    transition: background var(--ease), border-color var(--ease), color var(--ease);
}

    .drawer-close:hover {
        background: #fef2f2;
        border-color: #dc2626;
        color: #dc2626
    }

.drawer-body {
    flex: 1;
    overflow-y: auto;
    padding-bottom: 80px
}

.drawer-list {
    list-style: none;
    padding: 8px 0;
    margin: 0
}

    .drawer-list li > a {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 11px 18px;
        font-family: navfonts;
        font-size: 14px;
        font-weight: 500;
        color: var(--text);
        text-decoration: none;
        border-left: 3px solid transparent;
        transition: background var(--ease), color var(--ease), border-color var(--ease);
    }

        .drawer-list li > a i {
            font-size: 17px;
            color: var(--muted);
            flex-shrink: 0;
            transition: color var(--ease)
        }

        .drawer-list li > a:hover,
        .drawer-list li > a.active_nav {
            background: var(--purple-hover);
            color: var(--accent);
            border-left-color: var(--accent);
        }

            .drawer-list li > a:hover i,
            .drawer-list li > a.active_nav i {
                color: var(--accent)
            }

.drawer-sep {
    height: 1px;
    background: var(--border);
    margin: 8px 18px
}

.drawer-cat {
    font-family: navfonts;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
    padding: 12px 18px 4px;
    margin: 0;
}

/* Drawer accordion */
.drawer-acc {
    width: 100%;
    background: none;
    border: none;
    padding: 11px 18px;
    font-family: navfonts;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-left: 3px solid transparent;
    transition: background var(--ease), color var(--ease), border-color var(--ease);
}

.da-left {
    display: flex;
    align-items: center;
    gap: 10px
}

    .da-left i {
        font-size: 17px;
        color: var(--muted);
        transition: color var(--ease)
    }

.da-chevron {
    font-size: 16px;
    color: var(--muted);
    transition: transform var(--ease), color var(--ease)
}

.drawer-acc:hover,
.drawer-acc.open {
    background: var(--purple-hover);
    color: var(--accent);
    border-left-color: var(--accent);
}

    .drawer-acc:hover .da-left i,
    .drawer-acc.open .da-left i,
    .drawer-acc:hover .da-chevron,
    .drawer-acc.open .da-chevron {
        color: var(--accent)
    }

    .drawer-acc.open .da-chevron {
        transform: rotate(180deg)
    }

.da-panel {
    max-height: 0;
    overflow: hidden;
    background: var(--surface);
    transition: max-height .3s ease
}

.da-link {
    display: block;
    padding: 9px 18px 9px 46px;
    text-decoration: none;
    transition: background var(--ease);
}

    .da-link:hover {
        background: var(--purple-hover)
    }

    .da-link strong {
        display: block;
        font-family: navfonts;
        font-size: 13px;
        font-weight: 500;
        color: var(--text);
        line-height: 1.3;
    }

    .da-link em {
        display: block;
        font-style: normal;
        font-size: 11px;
        color: var(--muted);
        margin-top: 1px
    }

.drawer-logout {
    width: 100%;
    padding: 9px 12px;
    background: none;
    border: 1.5px solid #fecaca;
    border-radius: var(--r-sm);
    color: #dc2626;
    font-family: navfonts;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 4px 18px;
    width: calc(100% - 36px);
    transition: background var(--ease), border-color var(--ease);
}

    .drawer-logout:hover {
        background: #fef2f2;
        border-color: #dc2626
    }

/* ── BOTTOM TAB BAR ─────────────────────────────────────────── */
.ccpro-tab-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: var(--tab-h);
    z-index: 950;
    background: var(--white);
    border-top: 1px solid var(--border);
    box-shadow: 0 -4px 20px rgba(13,31,60,.09);
}

.tab-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: none;
    color: var(--muted);
    font-family: navfonts;
    font-size: 10px;
    font-weight: 500;
    padding: 6px 2px;
    position: relative;
    transition: color var(--ease);
}

    .tab-item i {
        font-size: 21px;
        line-height: 1;
        transition: color var(--ease)
    }

    .tab-item span {
        line-height: 1
    }

    .tab-item:hover, .tab-item.active {
        color: var(--accent)
    }

        .tab-item:hover i, .tab-item.active i {
            color: var(--accent)
        }

        .tab-item.active::before {
            content: '';
            position: absolute;
            top: 0;
            left: 25%;
            right: 25%;
            height: 2.5px;
            background: var(--accent);
            border-radius: 0 0 3px 3px;
        }

/* ── PAGE BODY ──────────────────────────────────────────────── */
.ccpro-page-body {
    min-height: 60vh
}

/* ── FOOTER ─────────────────────────────────────────────────── */
.ccpro-footer {
    background: #0d1f3c !important;
    padding: 48px 0 20px;
}

.footer-inner {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    margin-bottom: 16px;
}

.footer-logo {
    flex-shrink: 0
}

    .footer-logo img {
        max-width: 130px;
/*        filter: brightness(0) invert(1);*/
        opacity:1;
    }

.footer-links {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 20px;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: center;
}

    .footer-links li a {
        font-family: navfonts;
        font-size: 13px;
        color: rgba(255,255,255,.55);
        text-decoration: none;
        white-space: nowrap;
        transition: color var(--ease);
    }

        .footer-links li a:hover {
            color: var(--white)
        }

.footer-social {
    display: flex;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
}

    .footer-social li a {
        display: block;
        color: rgba(255,255,255,.45);
        transition: color var(--ease)
    }

        .footer-social li a:hover {
            color: var(--accent)
        }

        .footer-social li a i {
            font-size: 20px
        }

.footer-copy {
    text-align: center;
    font-family: navfonts;
    font-size: 11px;
    color: rgba(255,255,255,.3);
    margin: 0;
    padding-bottom: 16px;
}

/* ── ANIMATIONS ─────────────────────────────────────────────── */
@keyframes megaIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-6px)
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0)
    }
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET  (≤ 991px)
═══════════════════════════════════════════════════════════════ */
@media (max-width: 991px) {
    .mega-drop {
        width: 480px
    }

    .ccpro-container {
        padding: 0 20px
    }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE  (≤ 767px)
═══════════════════════════════════════════════════════════════ */
@media (max-width: 767px) {

    /* Swap desktop / mobile nav */
    .ccpro-desktop-nav {
        display: none
    }

    .ccpro-mobile-bar {
        display: flex
    }

    /* Show breadcrumb */
    .ccpro-breadcrumb {
        display: block
    }

    /* Show bottom tab bar */
    .ccpro-tab-bar {
        display: flex;
    }

    /* Push content above tab bar */
    body {
        padding-bottom: var(--tab-h)
    }

    /* Footer adjustments */
    .ccpro-footer {
        margin-top: 24px
    }

    .footer-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-links {
        justify-content: center
    }

    /* Container padding */
    .ccpro-container {
        padding: 0 14px
    }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — SMALL PHONE  (≤ 380px)
═══════════════════════════════════════════════════════════════ */
@media (max-width: 380px) {
    :root {
        --nav-h: 56px;
        --tab-h: 54px
    }

    .ccpro-mobile-logo img {
        max-width: 100px
    }

    .tab-item i {
        font-size: 19px
    }

    .tab-item span {
        font-size: 9px
    }
}

/* ═══════════════════════════════════════════════════════════════
   LEGACY CLASS ALIASES
   (for any existing views still using old class names)
═══════════════════════════════════════════════════════════════ */
.account_header {
    position: sticky;
    top: 0;
    z-index: 900
}

/* Old dropdown item styles */
.dropdown-item {
    display: block;
    padding: 9px 12px;
    font-family: navfonts;
    font-size: 13px;
    color: var(--text);
    text-decoration: none;
    border-radius: var(--r-sm);
    background: none;
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: left;
    transition: background var(--ease), color var(--ease);
}

    .dropdown-item:hover {
        background: var(--purple-hover);
        color: var(--accent)
    }

/* Old accordion styles */
.accordion {
    width: 100%;
    background: none;
    border: none;
    padding-left:0px !important;
    padding-right:0px !important;
    font-family: navfonts;
    font-size: 14px;
    font-weight: 500;
    color: var(--muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: color var(--ease);
}

    .accordion.acc_active {
        background:var(--btn-bg);
        color: #fff !important;
       
    }

.panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease
}

/* Old calc_href */
.calc_href {
    display: block;
    padding: 8px 18px 8px 32px;
    text-decoration: none;
    transition: background var(--ease);
}

    .calc_href:hover {
        background: var(--purple-hover)
    }

    .calc_href .item-title {
        font-family: navfonts;
        font-size: 13px;
        font-weight: 500;
        color: var(--text);
    }

    .calc_href .item-subtitle {
        font-size: 11px;
        color: var(--muted);
        margin-top: 1px
    }

/* Old footer */
.footer_bg {
    background: var(--primary);
    padding: 48px 0 20px;
    margin-top: 60px
}

.ccpro-desktop-nav .dropdown-menu.show {
    display: flex !important;
    top: 18px !important;
    left: calc(100% - 420px) !important;
}