body{
    font-family:'Inter',sans-serif;
}

footer {
    background: #08142f;
}

.footer-link {
    color: rgba(255,255,255,.65);
    text-decoration: none;
    transition: .2s;
}

.footer-link:hover {
    color: #4f8cff;
}

.text-light-emphasis {
    color: rgba(255,255,255,.65) !important;
}

.marketplace-navbar{
    background:#0f172a;
    padding:18px 0;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.marketplace-logo{
    height:46px;
    width:auto;
}

.brand-text{
    font-size:2rem;
    font-weight:800;
    line-height:1;
}

.brand-soft{
    color:#ffffff;
}

.brand-reliance{
    color:#2563eb;
}

.marketplace-navbar .nav-link{
    color:#d4d8e3;
    font-weight:600;
    padding:.8rem 1.25rem;
    transition:.25s;
}

.marketplace-navbar .nav-link:hover{
    color:#ffffff;
}

.marketplace-navbar .nav-link.active{
    color:#ffffff;
    position:relative;
}

.marketplace-navbar .nav-link.active::after{
    content:'';
    position:absolute;
    left:20%;
    right:20%;
    bottom:-8px;
    height:3px;
    border-radius:30px;
    background:#2563eb;
}

.btn-launch{
    background:#22c55e;
    border:none;
    border-radius:50px;
    padding:12px 28px;
    font-weight:700;
}

.btn-launch:hover{
    background:#16a34a;
}

.btn-login{
    color:#ffffff;
    font-weight:600;
    text-decoration:none;
}

.btn-login:hover{
    color:#ffffff;
}

.btn-signup{
    border-radius:50px;
    padding:12px 28px;
    font-weight:700;
}

/* ========================================
   HERO
======================================== */

.marketplace-hero{

    position:relative;

    overflow:hidden;

    background:
    linear-gradient(90deg,#f7f9ff 0%,#eef4ff 100%);

    padding:50px 0 12px;

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:

    url("../images/marketplace/bg-wave.png?v=1")
    center center no-repeat;

    background-size:cover;

    opacity:.75;

}

.hero-badge{

    display:inline-block;

    background:#dbeafe;

    color:#2563eb;

    font-size:.9rem;

    font-weight:700;

    padding:10px 20px;

    border-radius:999px;

}

.hero-title{

    font-size:3rem;

    line-height:1.08;

    font-weight:800;

    color:#0f172a;

}

.hero-title span{

    color:#2563eb;

}

.hero-description{

    margin-top:25px;

    font-size:1.25rem;

    color:#64748b;

    line-height:1.9;

    max-width:560px;

}

.hero-image{

    max-width:520px;

    animation:heroFloat 5s ease-in-out infinite;

}

@keyframes heroFloat{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-12px);

    }

    100%{

        transform:translateY(0);

    }

}


/* ========================================
   SEARCH
======================================== */

.marketplace-search{

    position:relative;

    z-index:50;

}

.search-box{

    background:#fff;

    border-radius:18px;

    padding:20px;

}

.search-input{

    position:relative;

}

.search-input i{

    position:absolute;

    left:22px;

    top:50%;

    transform:translateY(-50%);

    color:#94a3b8;

    font-size:20px;

}

.search-input input{

    height:64px;

    border-radius:14px;

    border:1px solid #e2e8f0;

    padding-left:60px;

    font-size:17px;

}

.search-input input:focus{

    box-shadow:none;

    border-color:#2563eb;

}

.btn-search{

    height:64px;

    border-radius:14px;

    font-weight:700;

    font-size:18px;

}

.marketplace-products{

    background:#f8fafc;

}

.marketplace-sidebar{

    background:#fff;

    border-radius:18px;

    padding:28px;

    box-shadow:0 10px 30px rgba(15,23,42,.05);

}

.marketplace-sidebar h5{

    font-weight:700;

    margin-bottom:25px;

}

.marketplace-sidebar ul{

    margin:0;

    padding:0;

    list-style:none;

}

.marketplace-sidebar li{

    margin-bottom:10px;

}

.marketplace-sidebar a{

    display:block;

    padding:12px 18px;

    border-radius:12px;

    color:#475569;

    text-decoration:none;

    transition:.25s;

}

.marketplace-sidebar a:hover{

    background:#eff6ff;

}

.marketplace-sidebar a.active{

    background:#2563eb;

    color:#fff;

}

.products-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:35px;

}

.products-header p{

    color:#64748b;

}

.plugin-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 12px 35px rgba(15,23,42,.06);

    transition:.3s;

    height:100%;

}

.plugin-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(37,99,235,.15);

}

.plugin-image{

    width:100%;

    aspect-ratio:16/10;

    object-fit:cover;

    background:#eef2ff;

}

.plugin-body{

    padding:25px;

}

.plugin-author{

    color:#2563eb;

    font-size:.9rem;

    font-weight:600;

}

.plugin-body h4{

    margin:10px 0;

    font-size:1.2rem;

    font-weight:700;

}

.plugin-body h4 a{

    color:#0f172a;

    text-decoration:none;

}

.plugin-body p{

    color:#64748b;

    font-size:.95rem;

    line-height:1.7;

}

.plugin-meta{

    display:flex;

    justify-content:space-between;

    margin-top:14px;

    font-size:.85rem;

    color:#94a3b8;

}

.plugin-footer{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:20px 25px;

    border-top:1px solid #f1f5f9;

}

.plugin-footer strong{

    font-size:1.3rem;

    color:#2563eb;

}

.empty-products{

    background:#fff;

    border-radius:20px;

    padding:80px;

    text-align:center;

}

.empty-products i{

    font-size:4rem;

    color:#cbd5e1;

}

/* ======================================================
   FOOTER
====================================================== */

.marketplace-footer{

    background:#0f172a;

    color:#cbd5e1;

    padding:70px 0 25px;

}

.marketplace-footer hr{

    border-color:rgba(255,255,255,.08);

    margin:45px 0 25px;

}

.footer-brand{

    display:flex;

    align-items:center;

    text-decoration:none;

    color:#fff;

    font-size:28px;

    font-weight:800;

    margin-bottom:25px;

}

.footer-logo{

    height:48px;

    width:auto;

    margin-right:12px;

}

.footer-description{

    color:#94a3b8;

    line-height:1.9;

    max-width:320px;

}

.marketplace-footer h6{

    color:#fff;

    font-weight:700;

    margin-bottom:22px;

    font-size:15px;

    text-transform:uppercase;

    letter-spacing:.04em;

}

.marketplace-footer ul{

    list-style:none;

    padding:0;

    margin:0;

}

.marketplace-footer li{

    margin-bottom:14px;

}

.marketplace-footer a{

    color:#94a3b8;

    text-decoration:none;

    transition:.25s;

}

.marketplace-footer span{

    color:#94a3b8;

}

.marketplace-footer a:hover{

    color:#fff;

}

.footer-bottom{

    display:flex;

    justify-content:space-between;

    align-items:center;

    color:#64748b;

    font-size:14px;

}

@media(max-width:768px){

    .footer-bottom{

        flex-direction:column;

        gap:12px;

        text-align:center;

    }

}

.marketplace-hero{
    position: relative;
    overflow: hidden;

    background-color:#f5f9ff;
}

.marketplace-hero::before{

    content:"";

    position:absolute;

    inset:0;

    background:url("../images/marketplace/bg-wave.png?v=1") no-repeat center bottom;

    background-size:cover;

    opacity:1;

    z-index:0;
}

.hero-content{
    position:relative;
    z-index:2;
}

.marketplace-hero::after{

    content:"";

    position:absolute;

    right:13%;
    top:-16px;

    width:520px;
    height:420px;

    background:url("../images/marketplace/hero-plugin.png") no-repeat center;

    background-size:contain;

    z-index:1;
}

.hero-title span{

    color:#2563eb;

    font-weight:800;

}

.hero-description{

    font-size:18px;

    line-height:1.8;

    color:#667085;

    max-width:620px;

    font-weight:400;

}

.navbar .nav-link{

    font-size:16px;

    font-weight:600;

    color:#ffffff;

}

.section-title{

    font-size:42px;

    font-weight:800;

    color:#101828;

}

.plugin-title{

    font-size:26px;

    font-weight:700;

    line-height:1.3;

}

.plugin-description{

    font-size:15px;

    line-height:1.75;

    color:#667085;

}

.category-item{

    font-size:15px;

    font-weight:500;

}

.btn-primary{

    font-size:17px;

    font-weight:700;

}

.market-sidebar{
    display:flex;
    flex-direction:column;
    gap:24px;
}

.sidebar-card{

    background:#fff;

    border:1px solid #edf2ff;

    border-radius:18px;

    padding:24px;

    box-shadow:0 12px 40px rgba(30,64,175,.05);

}

.sidebar-title{

    font-size:20px;

    font-weight:700;

    margin-bottom:22px;

    color:#0f172a;

}

.sidebar-menu{

    list-style:none;

    padding:0;

    margin:0;

}

.sidebar-menu li{

    margin-bottom:10px;

}

.sidebar-menu a{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:12px 14px;

    border-radius:12px;

    color:#475569;

    text-decoration:none;

    transition:.25s;

    font-weight:500;

}

.sidebar-menu a span:first-child{

    display:flex;

    align-items:center;

    gap:12px;

}

.sidebar-menu a i{

    width:18px;

    text-align:center;

    color:#64748b;

}

.sidebar-menu a:hover{

    background:#f8fbff;

    color:#2563eb;

}

.sidebar-menu a.active{

    background:#eef4ff;

    color:#2563eb;

    font-weight:700;

}

.sidebar-menu a.active i{

    color:#2563eb;

}

.count{

    min-width:28px;

    height:28px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:999px;

    background:#f1f5f9;

    font-size:13px;

    font-weight:700;

    color:#64748b;

}

.sidebar-menu a.active .count{

    background:#2563eb;

    color:#fff;

}

.sidebar-banner{

    position:relative;

    overflow:hidden;

    border-radius:18px;

    padding:26px;

    background:linear-gradient(180deg,#eef5ff,#dbeafe);

}

.sidebar-banner h4{

    font-size:28px;

    font-weight:800;

    color:#1d4ed8;

    margin-bottom:10px;

}

.sidebar-banner p{

    color:#475569;

    line-height:1.8;

    margin-bottom:22px;

}

.sidebar-banner .btn{

    border-radius: 10px;
    font-weight: 100;
    font-size: 12px;

}

.sidebar-banner img{

    position:absolute;

    right:16px;

    bottom:10px;

    width:90px;

}

.marketplace-promo {
    position: relative;
    border-radius: 18px;
    background: linear-gradient(180deg,#edf4ff 0%,#f8fbff 100%);
    padding: 24px;
    min-height: 180px;
    overflow: hidden;
}

.marketplace-promo .rocket{
    position:absolute;
    right:18px;
    bottom:14px;
    width:70px;
}

.plugin-card-image{
    width:92px;
    height:92px;
    border-radius:14px;
    object-fit:cover;
    flex-shrink:0;
}

.plugin-description{

    display:-webkit-box;
    -webkit-line-clamp:3;
    -webkit-box-orient:vertical;
    overflow:hidden;

}

/*==================================================
PLUGIN GRID
==================================================*/

.products-header{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    margin-bottom:30px;
}

.products-header h2{
    font-size:28px;
    font-weight:800;
    color:#101828;
    margin-bottom:8px;
}

.products-header p{
    color:#667085;
    margin:0;
    font-size:16px;
}

.products-sort{
    display:flex;
    align-items:center;
    gap:10px;
}

.products-sort label{
    color:#667085;
    font-weight:500;
    margin:0;
}

.products-sort .form-select{
    width:170px;
    border-radius:10px;
}


/*==================================================
CARD
==================================================*/

.plugin-card{

    display:flex;
    flex-direction:column;

    height:100%;

    background:#fff;

    border:1px solid #E7ECF3;

    border-radius:18px;

    padding:18px;

    text-decoration:none;

    color:#101828;

    transition:.25s;

    box-shadow:0 6px 18px rgba(16,24,40,.05);

}

.plugin-card:hover{

    transform:translateY(-6px);

    border-color:#2E6BFF;

    box-shadow:0 16px 35px rgba(46,107,255,.15);

    color:inherit;

}


/*==================================================
TOP
==================================================*/

.plugin-card-top{

    display:flex;

    gap:18px;

    align-items:flex-start;

}

.plugin-image{

    width:92px;

    height:92px;

    border-radius:16px;

    object-fit:cover;

    flex-shrink:0;

    background:#F4F7FC;

}

.plugin-content{

    flex:1;

}

.plugin-content h4{

    font-size:14px;

    font-weight:700;

    line-height:1.25;

    margin-bottom:12px;

    color:#101828;

}

.plugin-content p{

    color:#667085;

    font-size:13px;

    line-height:1.75;

    margin-bottom:14px;

}


/*==================================================
TAGS
==================================================*/

.plugin-tags{

    display:flex;

    flex-wrap:wrap;

    gap:8px;

}

.plugin-tags span{

    padding:4px 10px;

    background:#EDF4FF;

    color:#2E6BFF;

    border-radius:50px;

    font-size:12px;

    font-weight:600;

}


/*==================================================
BOTTOM
==================================================*/

.plugin-card-bottom{

    margin-top:auto;

    border-top:1px solid #EEF2F6;

    display:flex;

    justify-content:space-between;

    align-items:flex-end;

}

.plugin-meta{

    display:flex;

    gap:16px;

    color:#667085;

    font-size:13px;

}

.plugin-meta span{

    display:flex;

    align-items:center;

    gap:5px;

}


/*==================================================
PRICE
==================================================*/

.plugin-price{

    text-align:right;

}

.plugin-price small{

    display:block;

    color:#98A2B3;

    text-decoration:line-through;

    font-size:14px;

    margin-bottom:2px;

}

.plugin-price strong{

    font-size:14px;

    color:#2563EB;

    font-weight:800;

}


/*==================================================
EMPTY
==================================================*/

.empty-products{

    background:#fff;

    border-radius:18px;

    border:1px solid #E5E7EB;

    padding:80px;

}

.empty-products i{

    font-size:60px;

    color:#D0D5DD;

}


/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:991px){

    .products-header{

    flex-direction:column;

    align-items:flex-start;

    gap:20px;

    }

    .products-sort{

    width:100%;

    }

    .products-sort .form-select{

    width:100%;

    }

    .plugin-card-top{

    flex-direction:column;

    }

    .plugin-image{

    width:100%;

    height:180px;

    }

}

#products-loader{

    display:grid;

    grid-template-columns:repeat(auto-fill,minmax(360px,1fr));

    gap:24px;

}

.plugin-skeleton{

    display:flex;

    gap:18px;

    background:#fff;

    border:1px solid #EEF2F6;

    border-radius:18px;

    padding:20px;

    box-shadow:0 8px 25px rgba(15,23,42,.05);

}

.sk-image{

    width:90px;

    height:90px;

    border-radius:16px;

    flex-shrink:0;

    background:#ECEFF4;

}

.sk-content{

    flex:1;

}

.sk-title{

    height:24px;

    width:65%;

    border-radius:8px;

    margin-bottom:18px;

}

.sk-line{

    height:14px;

    border-radius:8px;

    margin-bottom:12px;

}

.sk-line.short{

    width:75%;

}

.sk-tags{

    display:flex;

    gap:8px;

    margin:18px 0;

}

.sk-tags span{

    width:70px;

    height:24px;

    border-radius:30px;

    display:block;

}

.sk-footer{

    display:flex;

    justify-content:space-between;

    margin-top:22px;

}

.sk-meta{

    width:120px;

    height:16px;

    border-radius:8px;

}

.sk-price{

    width:80px;

    height:22px;

    border-radius:8px;

}

.shimmer{

    background:linear-gradient(
        90deg,
        #F1F4F9 25%,
        #FFFFFF 50%,
        #F1F4F9 75%
    );

    background-size:400% 100%;

    animation:shimmer 1.4s infinite;

}

@keyframes shimmer{

0%{
background-position:100% 0;
}

100%{
background-position:-100% 0;
}

}

/*==================================================
    Navbar
==================================================*/

.marketplace-navbar{
    position:fixed;
    top:0;
    left:0;
    right:0;
    z-index:1050;

    height:86px;

    transition:all .35s ease;

    background:#0f172a;

    border-bottom:1px solid rgba(255,255,255,.05);
}

.navbar-spacer{
    height:86px;
}

/* Scrolled */

.marketplace-navbar.scrolled{

    height:74px;

    background:rgba(15,23,42,.88);

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    box-shadow:
        0 10px 35px rgba(15,23,42,.12);

    border-bottom:1px solid rgba(255,255,255,.08);

}

.marketplace-navbar .nav-link{

    color:#d4d9e5;

    font-weight:600;

    padding:.9rem 1rem;

    transition:.25s;

    position:relative;

}

.marketplace-navbar .nav-link:hover{

    color:#fff;

}

.marketplace-navbar .nav-link.active{

    color:#fff;

}

.marketplace-navbar .nav-link.active:after{

    content:"";

    position:absolute;

    left:14px;
    right:14px;
    bottom:6px;

    height:3px;

    border-radius:20px;

    background:#2563eb;

}

.marketplace-navbar .navbar-brand{

    transition:.25s;

}

.marketplace-navbar.scrolled .navbar-brand{

    transform:scale(.96);

}

@media (max-width:991.98px){

    .navbar-collapse{

        margin-top:20px;

        padding:20px;

        border-radius:18px;

        background:#111827;

        box-shadow:0 20px 60px rgba(0,0,0,.35);

    }

    .navbar-nav{

        gap:8px;

    }

    .navbar-nav .nav-link{

        padding:12px 0;

        font-size:16px;

    }

    .navbar-buttons{

        margin-top:20px;

        display:flex;

        flex-direction:column;

        gap:12px;

    }

    .navbar-buttons .btn{

        width:100%;

    }

}

@media (max-width:991.98px){

    .hero-image{

        display:none;

    }

    .hero{

        text-align:center;

        padding:70px 0 50px;

    }

    .hero-title{

        font-size:52px;

        line-height:1.05;

    }

}

/*=========================================
    Auth Modal
=========================================*/

.auth-modal{

    border:none;

    border-radius:22px;

    overflow:hidden;

    box-shadow:0 25px 60px rgba(15,23,42,.18);

}

.auth-modal .modal-header{

    padding:24px 30px 0;

}

.auth-modal .modal-body{

    padding:30px;

}

.auth-modal .btn-close{

    opacity:.6;

    transition:.2s;

}

.auth-modal .btn-close:hover{

    opacity:1;

    transform:rotate(90deg);

}

.auth-modal .spinner-border{

    width:3rem;

    height:3rem;

}

.auth-left{

    background:linear-gradient(135deg,#2563eb,#1d4ed8);

    color:#fff;

    min-height:560px;

    padding:60px;

    align-items:center;

}

.auth-left h2{

    font-size:36px;

    font-weight:800;

    margin-bottom:18px;

}

.auth-left p{

    opacity:.9;

    line-height:1.8;

}

.auth-logo{

    width:180px;

}

#frm-login,
#frm-register,
#frm-forgot-password{

    padding:40px;

}

#frm-login .form-control,
#frm-register .form-control{

    border-radius:12px;

    height:56px;

    border:1px solid #dbe3ef;

}

#frm-login .btn,
#frm-register .btn{

    height:56px;

    border-radius:12px;

    font-weight:700;

}

/*==================================================
    Authentication Modal
==================================================*/

.auth-modal{

    position:relative;

    border:0;

    border-radius:24px;

    overflow:hidden;

    background:#fff;

    box-shadow:0 30px 80px rgba(15,23,42,.18);

}

.auth-modal-close{

    position:absolute;

    top:18px;

    right:18px;

    width:42px;

    height:42px;

    border:0;

    border-radius:50%;

    background:#fff;

    color:#64748b;

    display:flex;

    align-items:center;

    justify-content:center;

    cursor:pointer;

    transition:.25s;

    z-index:100;

    box-shadow:0 10px 25px rgba(15,23,42,.08);

}

.auth-modal-close:hover{

    background:#2563eb;

    color:#fff;

    transform:rotate(90deg);

}

.auth-loading{

    min-height:520px;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    text-align:center;

    padding:40px;

}

.auth-loading .spinner-border{

    width:3rem;

    height:3rem;

    margin-bottom:20px;

}

.auth-loading h5{

    font-weight:700;

    margin-bottom:8px;

}

.auth-loading p{

    color:#64748b;

    margin:0;

}

.user-avatar{

    width:38px;

    height:38px;

    border-radius:50%;

    background:linear-gradient(135deg,#2563eb,#4f46e5);

    color:#fff;

    font-weight:700;

    display:flex;

    align-items:center;

    justify-content:center;

    flex-shrink:0;

}

.user-dropdown{

    display:flex;

    align-items:center;

    gap:12px;

    min-height:48px;

    padding:8px 16px !important;

    border-radius:999px;

    transition:.25s;

}

.user-dropdown:hover{

    background:rgba(255,255,255,.08);

}

.dropdown-menu{

    min-width:270px;

    border-radius:16px;

    border:none;

    overflow:hidden;

    box-shadow:0 20px 50px rgba(15,23,42,.18);

}

.dropdown-header{

    padding:18px 20px;

}

.dropdown-header strong{

    font-size:15px;

    display:block;

}

.dropdown-header small{

    font-size:13px;

    color:#64748b;

}

.dropdown-item{

    display:flex;

    align-items:center;

    gap:12px;

    padding:12px 20px;

    font-size:15px;

    border-radius:8px;

}

.dropdown-item i{

    width:20px;

    text-align:center;

}

.dropdown-item:hover{

    background:#f4f7fb;

}

.nav-item.dropdown{

    position:relative;

    padding:10px 0;

}

.dropdown-menu{

    margin-top:10px !important;

}

.dropdown-user{

    display:flex;

    align-items:center;

    gap:14px;

}

.dropdown-avatar{

    width:52px;

    height:52px;

    border-radius:50%;

    background:linear-gradient(135deg,#2563eb,#4f46e5);

    color:#fff;

    font-size:20px;

    font-weight:700;

    display:flex;

    align-items:center;

    justify-content:center;

    flex-shrink:0;

    overflow:hidden;

    box-shadow:0 8px 20px rgba(37,99,235,.25);

}

.dropdown-avatar img,
img.dropdown-avatar{

    width:52px;

    height:52px;

    object-fit:cover;

    border-radius:50%;

}

.dropdown-user strong{

    display:block;

    font-size:15px;

    font-weight:700;

    color:#111827;

}

.dropdown-user small{

    display:block;

    color:#6b7280;

    font-size:13px;

    margin-top:2px;

}

.nav-cart{

    position:relative;

    width:42px;

    height:42px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:20px;

    text-decoration:none;

    transition:.25s;

}

.nav-cart:hover{

    background:rgba(255,255,255,.08);

    color:#fff;

}

.cart-badge{

    position:absolute;

    top:-4px;

    right:-4px;

    min-width:20px;

    height:20px;

    padding:0 5px;

    border-radius:999px;

    background:#ef4444;

    color:#fff;

    font-size:11px;

    font-weight:700;

    display:flex;

    align-items:center;

    justify-content:center;

    border:2px solid #111827;

}

.nav-cart:hover i{

    transform:translateY(-2px);

}

.nav-cart i{

    transition:.25s;

}


.cart-page{
    background:#f8fafc;
}

.cart-title{
    font-size:2.3rem;
    font-weight:700;
    color:#0f172a;
    margin-bottom:6px;
}

.cart-subtitle{
    color:#64748b;
    margin:0;
}

.cart-item{

    display:flex;

    align-items:center;

    gap:24px;

    padding:22px;

    margin-bottom:18px;

    background:#fff;

    border-radius:18px;

    box-shadow:0 8px 25px rgba(15,23,42,.05);

    transition:.25s;
}

.cart-item:hover{

    transform:translateY(-4px);

    box-shadow:0 20px 40px rgba(15,23,42,.10);

}

.cart-thumb{

    width:95px;

    height:95px;

    flex-shrink:0;

    border-radius:16px;

    background:#f8fafc;

    display:flex;

    align-items:center;

    justify-content:center;

    overflow:hidden;
}

.cart-thumb img{

    width:100%;

    height:100%;

    object-fit:cover;

}

.cart-thumb i{

    font-size:40px;

    color:#94a3b8;

}

.cart-details{

    flex:1;

}

.cart-details h5{

    margin-bottom:8px;

    font-weight:700;

}

.cart-details h5 a{

    color:#2563eb;

    text-decoration:none;

}

.cart-details h5 a:hover{

    text-decoration:underline;

}

.meta{

    color:#64748b;

    display:flex;

    gap:10px;

    font-size:.92rem;

}

.cart-price{

    font-size:1.4rem;

    font-weight:700;

    color:#111827;

    white-space:nowrap;

}

.btn-remove-cart{

    border:1px solid #fecaca;

    background:#fff;

    color:#dc2626;

    border-radius:999px;

    padding:8px 18px;

    transition:.25s;

}

.btn-remove-cart:hover{

    background:#dc2626;

    color:#fff;

}

.summary-card{

    background:#fff;

    border-radius:20px;

    padding:30px;

    position:sticky;

    top:30px;

    box-shadow:0 15px 35px rgba(15,23,42,.08);

}

.summary-card h3{

    font-weight:700;

    margin-bottom:25px;

}

.summary-row{

    display:flex;

    justify-content:space-between;

    margin-bottom:14px;

    color:#475569;

}

.summary-total{

    display:flex;

    justify-content:space-between;

    align-items:center;

    font-size:1.35rem;

    font-weight:700;

    color:#0f172a;

}

.secure-checkout{

    margin-top:18px;

    text-align:center;

    color:#16a34a;

    font-size:.9rem;

}

.cart-empty{

    background:#fff;

    border-radius:20px;

    padding:70px 40px;

    text-align:center;

    box-shadow:0 15px 35px rgba(15,23,42,.08);

}

.cart-empty i{

    font-size:80px;

    color:#cbd5e1;

    margin-bottom:20px;

}

.cart-empty h3{

    font-weight:700;

}

.cart-empty p{

    color:#64748b;

    max-width:450px;

    margin:15px auto 30px;

}

@media(max-width:991px){

    .cart-item{

        flex-direction:column;

        text-align:center;

    }

    .cart-price{

        font-size:1.8rem;

    }

}

.account-sidebar{

    background:#fff;

    border-radius:22px;

    padding:28px;

    border:1px solid #edf2f7;

    box-shadow:
        0 15px 45px rgba(15,23,42,.06);

}

.account-link{

    display:flex;

    align-items:center;

    gap:14px;

    padding:14px 18px;

    margin-bottom:10px;

    border-radius:14px;

    color:#475569;

    font-weight:600;

    transition:.25s;
    
    text-decoration: none;

}

.account-link:hover{

    background:#f8fafc;

    color:#2563eb;

    transform:translateX(3px);

}

.account-link.active{

    background:linear-gradient(
        135deg,
        #2563eb,
        #3b82f6
    );

    color:#fff;

    box-shadow:

        0 10px 25px rgba(37,99,235,.30);

}

.account-card{

    background:#fff;

    border-radius:24px;

    padding:40px;

    border:1px solid #eef2f7;

    box-shadow:

        0 20px 50px rgba(15,23,42,.06);

}

.account-card-header h3{

    font-size:2rem;

    font-weight:700;

}

.account-card-header p{

    color:#64748b;

    font-size:15px;

}

.account-card-header h3{

    font-weight:700;

    margin-bottom:8px;

}

.account-card-header p{

    color:#64748b;

    margin:0;

}

.account-card .form-control{

    height:48px;

    border-radius:12px;

}

.form-control{

    height:56px;

    border-radius:14px;

    border:1px solid #dbe3ef;

    background:#fbfdff;

    transition:.25s;

}

.form-control:focus{

    border-color:#2563eb;

    box-shadow:

        0 0 0 .20rem rgba(37,99,235,.15);

    background:#fff;

}

.form-label{

    font-weight:600;

    color:#334155;

    margin-bottom:8px;

}


.btn-primary:hover{

    transform:translateY(-2px);

}

.account-page{

    background:linear-gradient(
        180deg,
        #f8fafc 0%,
        #eef4ff 100%
    );

    min-height:700px;

}

.profile-avatar-section{

    display:flex;

    align-items:center;

    gap:30px;

    margin-bottom:40px;

    padding-bottom:30px;

    border-bottom:1px solid #edf2f7;

}

.profile-avatar{

    width:120px;

    height:120px;

    border-radius:50%;

    overflow:hidden;

    border:5px solid #fff;

    box-shadow:

        0 15px 35px rgba(15,23,42,.12);

}

.profile-avatar img{

    width:100%;

    height:100%;

    object-fit:cover;

}

.upload-note{

    margin-top:10px;

    color:#64748b;

    font-size:.9rem;

}

.purchase-card{

    display:flex;

    align-items:center;

    gap:24px;

    padding:24px;

    border:1px solid #edf2f7;

    border-radius:18px;

    margin-bottom:20px;

    transition:.25s;

    background:#fff;

}

.purchase-card:hover{

    transform:translateY(-3px);

    box-shadow:0 15px 35px rgba(15,23,42,.08);

}

.purchase-icon{

    width:90px;

    height:90px;

    flex-shrink:0;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:16px;

    background:#f8fafc;

    overflow:hidden;

}

.purchase-icon img{

    width:100%;

    height:100%;

    object-fit:cover;

}

.purchase-icon i{

    font-size:40px;

    color:#94a3b8;

}

.purchase-details{

    flex:1;

}

.purchase-details h5{

    margin-bottom:8px;

    font-weight:700;

}

.purchase-details h5 a{

    color:#0f172a;

    text-decoration:none;

}

.purchase-details h5 a:hover{

    color:#2563eb;

}

.purchase-meta{

    display:flex;

    gap:10px;

    color:#64748b;

    font-size:.9rem;

}

.purchase-price{

    text-align:right;

    min-width:170px;

}

.purchase-price .price{

    font-size:28px;

    font-weight:700;

    color:#0f172a;

}

.purchase-actions{

    display:flex;

    gap:8px;

    justify-content:flex-end;

}

@media(max-width:991px){

    .purchase-card{

        flex-direction:column;

        text-align:center;

    }

    .purchase-price{

        text-align:center;

    }

    .purchase-actions{

        justify-content:center;

    }

}

.account-avatar{

    width:90px;

    height:90px;

    object-fit:cover;

    border-radius:50%;

    border:4px solid #fff;

    box-shadow:0 10px 30px rgba(15,23,42,.12);

}

.dashboard-stat{

    display:flex;

    align-items:center;

    gap:18px;

    padding:24px;

    border-radius:18px;

    background:#fff;

    border:1px solid #eef2f7;

    box-shadow:0 10px 30px rgba(15,23,42,.05);

}

.dashboard-stat i{

    font-size:34px;

    color:#2563eb;

}

.dashboard-stat h3{

    margin:0;

    font-size:30px;

    font-weight:700;

}

.dashboard-stat span{

    color:#64748b;

}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}