/*your custom css goes here*/

/* ========== Modern Color Scheme Override ========== */
:root {
    --primary: #D4AF37 !important;
    --hov-primary: #B8960F !important;
    --soft-primary: rgba(212, 175, 55, 0.15) !important;
    --success: #2DD4A8 !important;
    --soft-success: rgba(45, 212, 168, 0.15) !important;
    --secondary: #8f97ab !important;
}

body {
    background: #f0f0f0 !important;
}
body.dark {
    background: #111 !important;
}

/* Primary Button Styling */
.btn-primary {
    background: linear-gradient(135deg, #D4AF37 0%, #B8960F 100%) !important;
    border: none !important;
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3) !important;
    transition: all 0.3s ease !important;
}
.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4) !important;
    background: linear-gradient(135deg, #B8960F 0%, #8B6914 100%) !important;
}
.btn-primary:active {
    transform: translateY(0);
}

/* Secondary Button */
.btn-secondary {
    background: linear-gradient(135deg, #8f97ab 0%, #a0a8bc 100%) !important;
    border: none !important;
    color: #fff !important;
}

/* Soft Primary Button */
.btn-soft-primary {
    color: #D4AF37 !important;
    background-color: rgba(212, 175, 55, 0.12) !important;
    border: 1px solid rgba(212, 175, 55, 0.2) !important;
}
.btn-soft-primary:hover {
    background-color: rgba(212, 175, 55, 0.2) !important;
}

/* Links */
a, .link, .text-primary {
    color: #D4AF37 !important;
}

/* Badge Primary */
.badge-primary {
    background: linear-gradient(135deg, #D4AF37, #B8960F) !important;
}

/* Checkout Steps Progress Bar */
.aiz-steps .col.active .text-primary {
    color: #D4AF37 !important;
}
.aiz-steps .col.done .text-success {
    color: #2DD4A8 !important;
}
.aiz-steps .col.active .icon-circle {
    background: linear-gradient(135deg, #D4AF37, #B8960F) !important;
    border-color: #D4AF37 !important;
}
.aiz-steps.arrow-divider:after {
    background: linear-gradient(90deg, #D4AF37, #B8960F) !important;
}

/* Card Hover Effects */
.card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05) !important;
}
.card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.08) !important;
}

/* Form Focus */
.form-control:focus {
    border-color: #D4AF37 !important;
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.2) !important;
}

/* MegaBox (Payment options) */
.aiz-megabox .aiz-megabox-elem {
    border-radius: 12px !important;
    transition: all 0.3s ease;
    border: 2px solid #e2e5ec !important;
}
.aiz-megabox input:checked + .aiz-megabox-elem {
    border-color: #D4AF37 !important;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(184, 150, 15, 0.08)) !important;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15) !important;
    transform: translateY(-2px);
}
.aiz-megabox:hover .aiz-megabox-elem {
    border-color: #b0b4e0 !important;
}

/* Modal Beautification */
.modal-content {
    border: none !important;
    border-radius: 16px !important;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15) !important;
}
.modal-header {
    border-bottom: 1px solid rgba(0,0,0,0.06) !important;
    padding: 1.25rem 1.5rem !important;
}
.modal-header .modal-title {
    font-weight: 600;
    color: #1a1a2e;
}
.modal-body {
    padding: 1.5rem !important;
}

/* Alert / Notification */
.alert-success {
    background: linear-gradient(135deg, #2DD4A8, #34dba4) !important;
    color: #fff !important;
    border: none !important;
}
.alert-danger {
    background: linear-gradient(135deg, #ef486a, #f05a78) !important;
    color: #fff !important;
    border: none !important;
}

/* Select Dropdown */
.aiz-selectpicker .dropdown-menu {
    border: none !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12) !important;
}
.bootstrap-select .dropdown-menu li a {
    border-radius: 8px !important;
    padding: 8px 16px !important;
    transition: all 0.2s;
}
.bootstrap-select .dropdown-menu li a:hover {
    background-color: rgba(212, 175, 55, 0.1) !important;
}
.bootstrap-select .dropdown-menu li a:active,
.bootstrap-select .dropdown-menu li a.selected {
    background: linear-gradient(135deg, #D4AF37, #B8960F) !important;
    color: #fff !important;
}

/* Checkbox Styling */
.aiz-checkbox .aiz-square-check {
    border-radius: 4px !important;
    border: 2px solid #d0d4e0 !important;
    transition: all 0.2s;
}
.aiz-checkbox input:checked + .aiz-square-check {
    background: linear-gradient(135deg, #D4AF37, #B8960F) !important;
    border-color: #D4AF37 !important;
}

/* Pagination */
.pagination .page-item.active .page-link {
    background: linear-gradient(135deg, #D4AF37, #B8960F) !important;
    border-color: #D4AF37 !important;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3) !important;
}

/* Tab Styling */
.nav-tabs .nav-link.active {
    color: #D4AF37 !important;
    border-bottom-color: #D4AF37 !important;
}

/* Input Group */
.input-group .input-group-append .btn {
    background: linear-gradient(135deg, #D4AF37, #B8960F) !important;
    color: #fff !important;
    border: none !important;
}

/* Product Card */
.product-card {
    border-radius: 12px !important;
    overflow: hidden;
}

/* Flash Deal Countdown */
.countdown {
    background: linear-gradient(135deg, #D4AF37, #B8960F) !important;
    color: #fff !important;
    border-radius: 8px !important;
}

/* Scrollbar */
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #D4AF37, #B8960F) !important;
    border-radius: 4px !important;
}

/* Navigation enhancement */
.navbar .nav-link {
    font-weight: 500 !important;
    transition: color 0.2s;
}
.navbar .nav-link:hover {
    color: #D4AF37 !important;
}

/* Section headers */
.section-title {
    position: relative;
    display: inline-block;
}
.section-title:after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #D4AF37, #B8960F);
    border-radius: 2px;
}

/* Cart Summary */
.cart-summary {
    border-radius: 12px !important;
    background: linear-gradient(135deg, #f8f9ff, #f0f1ff) !important;
}

/* Price highlight */
.price-highlight {
    color: #ef486a;
    font-weight: 700;
}

/* Category Banners */
.category-banner {
    border-radius: 12px !important;
    overflow: hidden;
    transition: all 0.3s ease;
}
.category-banner:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1) !important;
}

/* Step Nav */
.aiz-steps .col .icon-circle {
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50% !important;
    font-size: 22px;
    margin: 0 auto 8px;
}
.aiz-steps .col.active .icon-circle {
    background: linear-gradient(135deg, #D4AF37, #B8960F) !important;
    color: #fff !important;
}


/* ========== FOOTER — 奢华深色主题 ========== */

/* --- 策略卡片 --- */
/* --- 策略卡片 — 黑金底色 --- */
section.bg-white.border-top:first-of-type {
    background: linear-gradient(135deg, #fafafc 0%, #f5f5f8 100%) !important;
    border-top: 1px solid rgba(212, 175, 55, 0.06) !important;
    border-bottom: 1px solid rgba(212, 175, 55, 0.04) !important;
}
.footer-policy-card {
    border-radius: 16px !important;
    padding: 20px 16px !important;
    margin: 8px !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    background: #fff;
    border: 1px solid rgba(99, 102, 241, 0.06);
    box-shadow: 0 2px 12px rgba(0,0,0,0.03);
    overflow: hidden;
}
.footer-policy-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 20%;
    right: 20%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
    opacity: 0;
    transition: all 0.4s ease;
    border-radius: 2px;
}
.footer-policy-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.10);
    border-color: rgba(212, 175, 55, 0.15);
}
.footer-policy-card:hover::before {
    left: 10%;
    right: 10%;
    opacity: 1;
}
.footer-policy-card i {
    transition: all 0.4s ease;
    color: #D4AF37 !important;
    font-size: 2.5rem !important;
}
.footer-policy-card:hover i {
    transform: scale(1.15) rotate(-5deg);
    filter: drop-shadow(0 4px 12px rgba(212, 175, 55, 0.3));
}
.footer-policy-card h4 {
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    color: #1e1e3a !important;
    margin-top: 8px !important;
    transition: color 0.3s ease;
}
.footer-policy-card:hover h4 {
    color: #D4AF37 !important;
}

/* --- 主页脚区域 — 极简黑金 --- */
.footer-main {
    background: linear-gradient(180deg, #0a0a0a 0%, #111111 40%, #0d0d0d 100%) !important;
    position: relative;
    padding-top: 52px !important;
    padding-bottom: 36px !important;
    overflow: hidden;
}
/* 顶部渐变发光装饰线 */
.footer-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.4), transparent);
    background-size: 200% 100%;
    animation: footerGlowLine 8s ease infinite;
}
@keyframes footerGlowLine {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
/* 装饰性径向光晕 */
.footer-main::after {
    content: '';
    position: absolute;
    top: -150px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

/* 小组件标题 */
.footer-main h4 {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: rgba(255, 255, 255, 0.95) !important;
    letter-spacing: 0.5px;
    margin-bottom: 22px !important;
    padding-bottom: 10px;
    position: relative;
    display: inline-block;
}
.footer-main h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: linear-gradient(90deg, #D4AF37, #B8960F);
    border-radius: 2px;
    transition: width 0.3s ease;
}
.footer-main h4:hover::after {
    width: 48px;
}

/* 关于文本 */
.footer-about-text {
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
    line-height: 1.8;
    max-width: 360px;
}

/* 订阅表单 — 毛玻璃风格 */
.footer-subscribe-form .form-control {
    border-radius: 50px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-right: none !important;
    padding: 12px 20px !important;
    height: auto !important;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.06) !important;
    color: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}
.footer-subscribe-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.3);
}
.footer-subscribe-form .form-control:focus {
    border-color: rgba(212, 175, 55, 0.4) !important;
    background: rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1) !important;
}
.footer-subscribe-form .btn {
    border-radius: 50px !important;
    padding: 12px 24px !important;
    font-size: 14px;
    margin-left: -45px;
    position: relative;
    z-index: 2;
}

/* 链接列表 */
.footer-main .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-main .footer-links li {
    margin-bottom: 10px !important;
}
.footer-main .footer-link {
    color: rgba(255, 255, 255, 0.55) !important;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    position: relative;
}
.footer-main .footer-link:hover {
    color: #D4AF37 !important;
    transform: translateX(6px);
}
.footer-main .footer-link::before {
    content: '→';
    margin-right: 6px;
    opacity: 0;
    transform: translateX(-6px);
    transition: all 0.3s ease;
    font-size: 12px;
}
.footer-main .footer-link:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* 联系信息 */
.footer-main .list-unstyled li {
    margin-bottom: 12px !important;
}
.footer-main .list-unstyled li i {
    width: 32px;
    height: 32px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(212, 175, 55, 0.1);
    color: #D4AF37 !important;
    font-size: 16px !important;
    margin-right: 10px !important;
    transition: all 0.3s ease;
}
.footer-main .list-unstyled li:hover i {
    background: rgba(212, 175, 55, 0.2);
    transform: scale(1.1);
}
.footer-main .list-unstyled li span,
.footer-main .list-unstyled li a {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 14px;
    line-height: 1.6;
    transition: color 0.3s ease;
}
.footer-main .list-unstyled li a:hover {
    color: #D4AF37 !important;
}

/* App Store / Play 商店徽章 */
.footer-main .mr-2 img,
.footer-main .mb-2 img {
    transition: all 0.3s ease;
    border-radius: 8px;
    filter: grayscale(0.2) brightness(0.9);
}
.footer-main .mr-2 img:hover,
.footer-main .mb-2 img:hover {
    filter: grayscale(0) brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* --- 版权栏 --- */
.footer-copyright {
    background: linear-gradient(180deg, #0d0d0d 0%, #080808 100%) !important;
    position: relative;
    padding-top: 20px !important;
    padding-bottom: 20px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.footer-copyright::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 5%;
    right: 5%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
}
.copyright-text {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.7;
}
.copyright-text a {
    color: #D4AF37 !important;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}
.copyright-text a:hover {
    color: #F59E0B !important;
}
.copyright-text strong,
.copyright-text b {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

/* 社交图标 */
.footer-social-icons li a {
    width: 38px;
    height: 38px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.06) !important;
    transition: all 0.3s ease;
    font-size: 16px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}
.footer-social-icons li a:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}
.footer-social-icons li a i {
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s;
}
.footer-social-icons li a:hover i {
    color: #fff !important;
}
.footer-social-icons li a.facebook:hover { background: #1877F2 !important; box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3) !important; }
.footer-social-icons li a.twitter:hover { background: #1DA1F2 !important; box-shadow: 0 4px 15px rgba(29, 161, 242, 0.3) !important; }
/* Apple Sign In Button */
.social.colored li a.apple:hover { background: #000 !important; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important; }
.footer-social-icons li a.apple:hover { background: #000 !important; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important; }
.footer-social-icons li a.instagram:hover { background: linear-gradient(135deg, #833AB4, #FD1D1D, #FCAF45) !important; box-shadow: 0 4px 15px rgba(131, 58, 180, 0.3) !important; }
.footer-social-icons li a.youtube:hover { background: #FF0000 !important; box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3) !important; }
.footer-social-icons li a.linkedin:hover { background: #0A66C2 !important; box-shadow: 0 4px 15px rgba(10, 102, 194, 0.3) !important; }

/* 支付方式 */
.footer-copyright .list-inline-item img {
    transition: all 0.3s ease;
    filter: grayscale(0.3) brightness(0.8);
    opacity: 0.6;
    border-radius: 4px;
}
.footer-copyright .list-inline-item img:hover {
    filter: grayscale(0) brightness(1.2);
    opacity: 1;
    transform: translateY(-2px);
}

/* 移动端适配：居中显示 */
@media (max-width: 767px) {
    .footer-copyright .row {
        text-align: center;
    }
    .footer-copyright .row > div:first-child {
        margin-bottom: 12px;
    }
    .footer-social-icons {
        justify-content: center !important;
    }
    .footer-main h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-main h4 {
        text-align: center;
        display: block;
    }
    .footer-main .text-md-left {
        text-align: center !important;
    }
    .footer-main .footer-about-text {
        max-width: 100%;
        margin: 0 auto;
    }
    .footer-subscribe-form {
        max-width: 360px;
        margin: 0 auto;
    }
    /* My Account - 移动端居中 */
    .col-md-4.col-lg-2 .text-center.text-md-left .footer-links {
        padding-left: 0;
        text-align: center !important;
    }
    .col-md-4.col-lg-2 .text-center.text-md-left .footer-links li {
        text-align: center !important;
        display: block;
    }
    .col-md-4.col-lg-2 .text-center.text-md-left .footer-links li a {
        justify-content: center;
        display: inline-flex;
    }
    .col-md-4.col-lg-2 .text-center.text-md-left .border-top {
        text-align: center !important;
    }
    .col-md-4.col-lg-2 .text-center.text-md-left .border-top .btn {
        display: inline-block;
        margin: 0 auto;
    }
    .copyright-text {
        text-align: center !important;
    }
}

/* ========== MOBILE SIDE NAV BEAUTIFICATION ========== */

/* Sidebar slide-in animation */
.collapse-sidebar.collapsing {
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* Sidebar panel - glass dark style */
.aiz-mobile-side-nav .collapse-sidebar {
    background: linear-gradient(180deg, #0f0f1a 0%, #1a1a2e 100%) !important;
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.4) !important;
    border: none !important;
    border-radius: 0 !important;
    max-width: 310px;
    animation: slideInRight 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* Overlay */
.aiz-mobile-side-nav .overlay.dark {
    background: rgba(0, 0, 0, 0.6) !important;
    backdrop-filter: blur(4px);
}

/* Decorative gradient strip on left edge */
.aiz-mobile-side-nav .collapse-sidebar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #D4AF37, #B8960F, #2DD4A8, #D4AF37);
    background-size: 100% 300%;
    animation: sideEdgeGlow 4s ease infinite;
}
@keyframes sideEdgeGlow {
    0% { background-position: 0% 0%; }
    50% { background-position: 0% 100%; }
    100% { background-position: 0% 0%; }
}
/* Subtle decorative corner accent */
.aiz-mobile-side-nav .collapse-sidebar::after {
    content: '';
    position: absolute;
    bottom: 80px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.03), transparent);
    pointer-events: none;
}

/* Side nav wrap */
.aiz-user-sidenav-wrap {
    background: transparent !important;
    border: none !important;
}

/* Scrollbar styling */
.aiz-user-sidenav {
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.1) transparent;
}
.aiz-user-sidenav::-webkit-scrollbar {
    width: 3px;
}
.aiz-user-sidenav::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.15);
    border-radius: 10px;
}

/* ===== Header Profile Section ===== */
.side-nav-header {
    background: linear-gradient(145deg, #1a1a3e 0%, #2E1A0A 40%, #1a1a2e 100%);
    min-height: 80px;
    overflow: hidden;
}

/* Decorative background circles */
.header-bg-deco {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.25) 0%, transparent 70%);
    top: -80px;
    right: -60px;
    animation: decoPulse 6s ease-in-out infinite;
}
.header-bg-deco.deco-2 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(184, 150, 15, 0.2) 0%, transparent 70%);
    top: auto;
    bottom: -40px;
    left: -40px;
    right: auto;
    animation-delay: 3s;
}
@keyframes decoPulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.15); opacity: 1; }
}

/* Avatar wrapper */
.avatar-wrapper {
    position: relative;
    display: inline-block;
}

/* Avatar with glow ring */
.avatar-border-glow {
    display: inline-block;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(135deg, #D4AF37, #B8960F, #2DD4A8);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4), 0 0 60px rgba(212, 175, 55, 0.15);
    animation: glowRotate 4s linear infinite;
}
@keyframes glowRotate {
    0% { filter: hue-rotate(0deg); }
    50% { filter: hue-rotate(20deg); }
    100% { filter: hue-rotate(0deg); }
}
.avatar-border-glow img,
.avatar-border-glow .image {
    border-radius: 50%;
    width: 72px;
    height: 72px;
    object-fit: cover;
    border: 3px solid #0f0f1a;
    display: block;
}

/* User name in header */
.side-nav-header h4 {
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    letter-spacing: 0.5px;
}

/* ===== Menu Items ===== */
.sidemnenu {
    padding: 8px 4px;
}

/* ===== MOBILE sidebar: dark bg, bright text ===== */
.aiz-mobile-side-nav .aiz-side-nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative;
    overflow: hidden;
    padding: 14px 18px !important;
    margin: 2px 8px;
    border-radius: 14px !important;
}
/* Subtle ripple effect on hover */
.aiz-mobile-side-nav .aiz-side-nav-link::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
.aiz-mobile-side-nav .aiz-side-nav-link:hover::after {
    opacity: 1;
}
.aiz-mobile-side-nav .aiz-side-nav-icon,
.aiz-mobile-side-nav .aiz-side-nav-link i {
    width: 36px !important;
    height: 36px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 10px !important;
    background: rgba(212, 175, 55, 0.12) !important;
    color: #FFD699 !important;
    font-size: 17px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    flex-shrink: 0;
    margin-right: 14px !important;
}
.aiz-mobile-side-nav .aiz-side-nav-link:hover {
    background: rgba(212, 175, 55, 0.12) !important;
    color: #fff !important;
    transform: translateX(6px);
}
.aiz-mobile-side-nav .aiz-side-nav-link:hover .aiz-side-nav-icon,
.aiz-mobile-side-nav .aiz-side-nav-link:hover i {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(184, 150, 15, 0.15)) !important;
    color: #fff !important;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
    transform: scale(1.08);
}
/* Active state - on dark bg */
.aiz-mobile-side-nav .aiz-side-nav-link.active,
.aiz-mobile-side-nav .aiz-side-nav-item.active .aiz-side-nav-link {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(184, 150, 15, 0.1)) !important;
    color: #fff !important;
    border-left: 3px solid #B8960F;
    font-weight: 600;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}
.aiz-mobile-side-nav .aiz-side-nav-link.active .aiz-side-nav-icon,
.aiz-mobile-side-nav .aiz-side-nav-item.active .aiz-side-nav-link i {
    background: linear-gradient(135deg, #D4AF37, #B8960F) !important;
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    transform: scale(1.05);
}
.aiz-mobile-side-nav .aiz-side-nav-link .badge {
    background: linear-gradient(135deg, #2DD4A8, #22c99d) !important;
    color: #fff !important;
    font-size: 10px !important;
    padding: 2px 8px !important;
    border-radius: 20px !important;
    margin-left: auto;
}
/* Notification dot in sidebar - mobile */
.aiz-mobile-side-nav .badge-dot {
    background: #ef4444 !important;
}

/* Remove default list style */
.aiz-side-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Each nav item */
.aiz-side-nav-item {
    margin-bottom: 2px;
}

/* Nav link styling */
.aiz-side-nav-link {
    display: flex !important;
    align-items: center;
    padding: 12px 16px !important;
    border-radius: 12px !important;
    color: rgba(255, 255, 255, 0.75) !important;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative;
    text-decoration: none !important;
}

/* Hover state */
.aiz-side-nav-link:hover {
    background: rgba(212, 175, 55, 0.15) !important;
    color: #fff !important;
    transform: translateX(4px);
}

/* Active / current state */
.aiz-side-nav-link.active,
.aiz-side-nav-item.active .aiz-side-nav-link,
.aiz-side-nav-link.checked {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.25), rgba(184, 150, 15, 0.15)) !important;
    color: #fff !important;
    border-left: 3px solid #D4AF37;
    font-weight: 600;
}

/* Active indicator glow dot */
.aiz-side-nav-link.active::after,
.aiz-side-nav-item.active .aiz-side-nav-link::after {
    content: '';
    position: absolute;
    right: 12px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #D4AF37;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
}

/* Icon styling */
.aiz-side-nav-icon,
.aiz-side-nav-link i {
    width: 32px;
    height: 32px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-right: 12px !important;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

/* Hover icon background */
.aiz-side-nav-link:hover .aiz-side-nav-icon,
.aiz-side-nav-link:hover i {
    background: rgba(212, 175, 55, 0.25);
    color: #fff;
    transform: scale(1.05);
}

/* Active icon */
.aiz-side-nav-link.active .aiz-side-nav-icon,
.aiz-side-nav-item.active .aiz-side-nav-link i {
    background: linear-gradient(135deg, #D4AF37, #B8960F);
    color: #fff;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* Nav text */
.aiz-side-nav-text {
    flex: 1;
}

/* Arrow indicator for submenus */
.aiz-side-nav-arrow {
    margin-left: auto;
    font-size: 12px;
    opacity: 0.4;
    transition: transform 0.3s ease;
}
.aiz-side-nav-link[aria-expanded="true"] .aiz-side-nav-arrow {
    transform: rotate(90deg);
}

/* Badge in nav (New / count) */
.aiz-side-nav-link .badge {
    background: linear-gradient(135deg, #2DD4A8, #22c99d) !important;
    font-size: 10px;
    padding: 2px 8px !important;
    border-radius: 20px !important;
    font-weight: 600;
    margin-left: 6px;
    box-shadow: 0 2px 8px rgba(45, 212, 168, 0.3);
}

/* Submenu level 2 */
.aiz-side-nav-list.level-2 {
    padding-left: 20px !important;
    margin: 4px 0 8px 0 !important;
}
.aiz-side-nav-list.level-2 .aiz-side-nav-link {
    padding: 10px 16px !important;
    font-size: 13px;
    border-radius: 10px !important;
}

/* ===== Sidebar Menu Dividers ===== */
.sidemnenu .aiz-side-nav-list > .aiz-side-nav-item:not(:first-child) {
    border-top: 1px solid rgba(255,255,255,0.05);
    margin-top: 4px;
    padding-top: 4px;
}

/* ===== Bottom Footer (Logout + Close) ===== */
.side-nav-footer {
    background: linear-gradient(135deg, #1a1a2e, #0f0f1a) !important;
    border-top: none !important;
    backdrop-filter: blur(10px);
    gap: 8px;
    padding: 12px 16px !important;
}

.side-nav-footer .btn-logout {
    background: rgba(255, 255, 255, 0.06) !important;
    color: rgba(255, 255, 255, 0.85) !important;
    border-radius: 12px !important;
    font-weight: 500;
    transition: all 0.3s ease;
    flex: 1;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
}
.side-nav-footer .btn-logout::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.12), rgba(239, 68, 68, 0.03));
    opacity: 0;
    transition: opacity 0.3s ease;
}
.side-nav-footer .btn-logout:hover::before {
    opacity: 1;
}
.side-nav-footer .btn-logout:hover {
    background: rgba(239, 68, 68, 0.15) !important;
    color: #ef4444 !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.15);
}
.side-nav-footer .btn-logout i {
    font-size: 18px !important;
    position: relative;
    z-index: 1;
}

.side-nav-footer .btn-close-side {
    background: rgba(255, 255, 255, 0.06) !important;
    color: rgba(255, 255, 255, 0.6) !important;
    border-radius: 12px !important;
    width: 42px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.side-nav-footer .btn-close-side:hover {
    background: rgba(212, 175, 55, 0.2) !important;
    color: #B8960F !important;
    transform: rotate(90deg);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

/* ========== DESKTOP USER PANEL ========== */

/* Desktop sidebar - left panel */
@media (min-width: 1200px) {
    .aiz-user-sidenav-wrap {
        width: 270px;
        min-width: 270px;
        background: #fff;
        border-radius: 16px;
        box-shadow: 0 2px 20px rgba(0,0,0,0.04) !important;
        border: 1px solid rgba(0,0,0,0.04);
        overflow: hidden;
        position: sticky !important;
        top: 100px;
    }
    .aiz-user-sidenav {
        border-radius: 16px !important;
        max-height: calc(100vh - 150px);
        overflow-y: auto;
        padding-bottom: 20px !important;
    }
    /* Hide mobile-side elements on desktop */
    .side-nav-header {
        min-height: 80px;
    }
    .side-nav-footer.fixed-bottom {
        display: none !important;
    }

    /* Desktop: menu items use dark text on white bg */
    .aiz-side-nav-link {
        color: #333 !important;
    }
    .aiz-side-nav-link:hover {
        background: rgba(212, 175, 55, 0.08) !important;
        color: #D4AF37 !important;
    }
    .aiz-side-nav-link.active,
    .aiz-side-nav-item.active .aiz-side-nav-link {
        color: #D4AF37 !important;
        background: rgba(212, 175, 55, 0.1) !important;
        border-left: 3px solid #D4AF37;
    }
    .aiz-side-nav-link i {
        background: rgba(0, 0, 0, 0.05);
        color: #666;
    }
    .aiz-side-nav-link:hover i {
        background: rgba(212, 175, 55, 0.15);
        color: #D4AF37;
    }
    .aiz-side-nav-link.active i,
    .aiz-side-nav-item.active .aiz-side-nav-link i {
        background: linear-gradient(135deg, #D4AF37, #B8960F);
        color: #fff;
        box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    }
    .aiz-side-nav-link .badge {
        background: linear-gradient(135deg, #2DD4A8, #22c99d) !important;
        color: #fff !important;
    }
}

/* User panel layout wrapper */
.aiz-user-panel {
    flex: 1;
    min-width: 0;
    padding-left: 30px;
    padding-top: 4px;
}

/* Page title area */
.aiz-titlebar h1 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a2e;
    position: relative;
    display: inline-block;
    padding-bottom: 4px;
}
.aiz-titlebar h1:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #D4AF37, #B8960F);
    border-radius: 3px;
}

/* User panel card styling */
.aiz-user-panel .card {
    border-radius: 16px !important;
    border: 1px solid rgba(0,0,0,0.04) !important;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04) !important;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}
.aiz-user-panel .card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.08) !important;
    transform: translateY(-2px);
}

/* Card headers */
.aiz-user-panel .card-header {
    background: transparent !important;
    border-bottom: 1px solid rgba(0,0,0,0.04) !important;
    padding: 18px 24px !important;
}
.aiz-user-panel .card-header h6 {
    font-weight: 700;
    color: #1a1a2e;
    font-size: 15px;
}
.aiz-user-panel .card-body {
    padding: 24px !important;
}

/* Dashboard gradient stat cards */
.bg-grad-1 { background: linear-gradient(135deg, #D4AF37 0%, #B8960F 100%) !important; }
.bg-grad-2 { background: linear-gradient(135deg, #2DD4A8 0%, #22c99d 100%) !important; }
.bg-grad-3 { background: linear-gradient(135deg, #F59E0B 0%, #F97316 100%) !important; }

.bg-grad-1,
.bg-grad-2,
.bg-grad-3 {
    border-radius: 16px !important;
    box-shadow: 0 6px 24px rgba(0,0,0,0.08) !important;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
    position: relative;
}
.bg-grad-1:hover,
.bg-grad-2:hover,
.bg-grad-3:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12) !important;
}
.bg-grad-1 .h3,
.bg-grad-2 .h3,
.bg-grad-3 .h3 {
    font-weight: 800 !important;
    font-size: 28px !important;
    letter-spacing: -0.5px;
}
.bg-grad-1 .opacity-50,
.bg-grad-2 .opacity-50,
.bg-grad-3 .opacity-50 {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.75 !important;
}

/* Remove SVG overflow area effect on gradient cards */
.bg-grad-1 svg,
.bg-grad-2 svg,
.bg-grad-3 svg {
    opacity: 0.5;
    margin-bottom: -10px;
}

/* Dashboard default address / package cards */
.aiz-user-panel .list-unstyled li {
    padding: 10px 0 !important;
    border-bottom: 1px solid rgba(0,0,0,0.03);
}
.aiz-user-panel .list-unstyled li:last-child {
    border-bottom: none;
}
.aiz-user-panel .list-unstyled li span {
    color: #555;
    font-size: 14px;
}

/* Apply seller button */
.aiz-user-panel .btn-success {
    background: linear-gradient(135deg, #2DD4A8, #22c99d) !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 10px 24px !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 15px rgba(45, 212, 168, 0.3) !important;
    transition: all 0.3s ease !important;
}
.aiz-user-panel .btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(45, 212, 168, 0.4) !important;
}

/* ========== RESPONSIVE ADJUSTMENTS ========== */
@media (max-width: 991px) {
    header.z-1020 {
        box-shadow: 0 2px 15px rgba(0,0,0,0.04) !important;
    }
    #search {
        height: 40px;
        font-size: 14px;
    }
    .front-header-search {
        margin: 0;
    }
}
@media (max-width: 767px) {
    header .border-top.border-gray-200 .list-inline-item a {
        font-size: 12px !important;
    }
    .top-navbar .list-inline-item a {
        font-size: 11px;
    }
    .top-navbar {
        padding: 4px 0;
    }
    header.z-1020 {
        box-shadow: 0 2px 10px rgba(0,0,0,0.03) !important;
    }
}

/* ========== ALL CATEGORIES PAGE BEAUTIFICATION ========== */

/* -- Hero Section -- */
.all-cat-hero {
    position: relative;
    padding: 50px 0 40px;
    background: linear-gradient(135deg, #0f0c29 0%, #1a1a4e 40%, #24243e 100%);
    overflow: hidden;
    min-height: 200px;
    display: flex;
    align-items: center;
}
.all-cat-hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}
.all-cat-hero-particle {
    position: absolute;
    border-radius: 50%;
}
.all-cat-hero-particle.p1 {
    width: 500px; height: 500px; top: -200px; right: -100px;
    background: radial-gradient(circle, rgba(99,102,241,0.18) 0%, transparent 70%);
}
.all-cat-hero-particle.p2 {
    width: 300px; height: 300px; bottom: -100px; left: 5%;
    background: radial-gradient(circle, rgba(236,72,153,0.12) 0%, transparent 70%);
}
.all-cat-hero-particle.p3 {
    width: 200px; height: 200px; top: 30px; left: 35%;
    background: radial-gradient(circle, rgba(52,211,153,0.08) 0%, transparent 70%);
}
.all-cat-breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 12px;
}
.all-cat-breadcrumb .breadcrumb-item {
    font-size: 13px;
}
.all-cat-breadcrumb .breadcrumb-item a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color 0.2s;
}
.all-cat-breadcrumb .breadcrumb-item a:hover {
    color: #fff;
}
.all-cat-breadcrumb .breadcrumb-item.active {
    color: rgba(255,255,255,0.9);
}
.all-cat-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.35);
}
.all-cat-breadcrumb .breadcrumb-item i {
    margin-right: 4px;
    font-size: 14px;
}
.all-cat-hero-title {
    font-size: 38px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 6px;
    letter-spacing: -0.5px;
}
.all-cat-hero-sub {
    font-size: 16px;
    color: rgba(255,255,255,0.55);
    margin-bottom: 0;
    max-width: 480px;
}
.all-cat-hero-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    border-radius: 30px;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.08);
}
.all-cat-hero-icon {
    font-size: 56px;
    color: rgba(255,255,255,0.2);
}

/* -- Stats Bar -- */
.all-cat-stats {
    position: relative;
    z-index: 2;
    margin-top: -24px;
}
.all-cat-stats-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    background: #fff;
    border-radius: 16px;
    padding: 20px 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    max-width: 400px;
    margin: 0 auto;
}
.all-cat-stat-item {
    text-align: center;
}
.all-cat-stat-num {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: var(--primary, #6366f1);
    line-height: 1.2;
}
.all-cat-stat-label {
    display: block;
    font-size: 12px;
    color: #888;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.all-cat-stat-divider {
    width: 1px;
    height: 40px;
    background: #e8e8e8;
}

/* -- Section -- */
.all-cat-section {
    padding-top: 40px;
}

/* -- Grid Card -- */
.all-cat-col {
    margin-bottom: 24px;
}
.all-cat-grid-card {
    position: relative;
    display: block;
    border-radius: 16px;
    overflow: hidden;
    min-height: 240px;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.all-cat-grid-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.12);
    text-decoration: none;
}

/* Banner Image */
.all-cat-grid-banner {
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.all-cat-grid-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.all-cat-grid-card:hover .all-cat-grid-banner img {
    transform: scale(1.08);
}

/* Overlay Gradient */
.all-cat-grid-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.65) 80%, rgba(0,0,0,0.85) 100%);
    z-index: 1;
    transition: opacity 0.3s;
}

/* Content */
.all-cat-grid-content {
    position: relative;
    z-index: 2;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    height: 240px;
    justify-content: flex-end;
}
/* Icon removed per user request - hidden */
.all-cat-grid-icon-wrap {
    display: none !important;
}
.all-cat-grid-name {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 4px 0;
    line-height: 1.3;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.all-cat-grid-count {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}

/* Hover Arrow */
.all-cat-grid-arrow {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 3;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.35s ease;
    border: 1px solid rgba(255,255,255,0.1);
}
.all-cat-grid-arrow i {
    font-size: 16px;
    color: #fff;
}
.all-cat-grid-card:hover .all-cat-grid-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* -- Responsive -- */
@media (max-width: 991px) {
    .all-cat-hero { padding: 36px 0 28px; min-height: 160px; }
    .all-cat-hero-title { font-size: 28px; }
    .all-cat-hero-sub { font-size: 14px; }
    .all-cat-hero-icon-wrap { width: 90px; height: 90px; border-radius: 24px; }
    .all-cat-hero-icon { font-size: 40px; }
    .all-cat-grid-content { padding: 20px 16px; height: 200px; }
}
@media (max-width: 767px) {
    .all-cat-hero { padding: 28px 0 20px; min-height: 130px; }
    .all-cat-hero-title { font-size: 22px; }
    .all-cat-hero-sub { font-size: 13px; }
    .all-cat-stats-inner { padding: 14px 20px; gap: 20px; }
    .all-cat-stat-num { font-size: 20px; }
    .all-cat-section { padding-top: 28px; }
    .all-cat-col { margin-bottom: 14px; }
    .all-cat-grid-content { padding: 16px 14px; height: 180px; }
    .all-cat-grid-name { font-size: 14px; }
    .all-cat-grid-count { font-size: 12px; }
}
@media (max-width: 575px) {
    .all-cat-col { padding-left: 6px; padding-right: 6px; }
    .all-cat-grid-content { height: 160px; }
    .all-cat-grid-name { font-size: 13px; }
    .all-cat-grid-card { border-radius: 12px; }
}

/* ========== MOBILE BOTTOM NAV — DARK LUXURY THEME ========== */
/* Complete makeover: dark glass mobile bottom nav */

.aiz-mobile-bottom-nav {
    background: rgba(15, 15, 26, 0.92) !important;
    backdrop-filter: blur(20px) saturate(1.2) !important;
    -webkit-backdrop-filter: blur(20px) saturate(1.2) !important;
    border-top: 1px solid rgba(212, 175, 55, 0.2) !important;
    box-shadow: 0 -4px 30px rgba(0,0,0,0.5), 0 -1px 0 rgba(212, 175, 55, 0.15) inset !important;
}

/* Bottom nav items - default state */
.aiz-mobile-bottom-nav .col a,
.aiz-mobile-bottom-nav .col-auto a {
    color: rgba(255,255,255,0.5) !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.aiz-mobile-bottom-nav .col a:hover,
.aiz-mobile-bottom-nav .col-auto a:hover {
    transform: translateY(-2px);
    color: rgba(255,255,255,0.8) !important;
}
.aiz-mobile-bottom-nav .col a:active,
.aiz-mobile-bottom-nav .col-auto a:active {
    transform: scale(0.93);
}

/* Icons & text default */
.aiz-mobile-bottom-nav .col a i,
.aiz-mobile-bottom-nav .col-auto a i {
    color: rgba(255,255,255,0.5) !important;
    transition: all 0.25s ease;
}
.aiz-mobile-bottom-nav .col a:hover i {
    color: rgba(255,255,255,0.85) !important;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}
.aiz-mobile-bottom-nav .col a span {
    color: rgba(255,255,255,0.45) !important;
    transition: all 0.25s ease;
}
.aiz-mobile-bottom-nav .col a:hover span {
    color: rgba(255,255,255,0.75) !important;
}

/* Active route highlight — glow effect */
.aiz-mobile-bottom-nav .col a .text-primary {
    color: #B8960F !important;
}
.aiz-mobile-bottom-nav .col a .text-primary + span {
    color: #B8960F !important;
}
.aiz-mobile-bottom-nav .col a i.opacity-100 {
    color: #B8960F !important;
    text-shadow: 0 0 25px rgba(184, 150, 15, 0.4);
}
.aiz-mobile-bottom-nav .col a i.opacity-100 + span {
    color: #B8960F !important;
}

/* ========== CART BUTTON — GLOWING FLOATING ORB ========== */
.aiz-mobile-bottom-nav .col-auto a .rounded-circle {
    background: linear-gradient(135deg, #D4AF37 0%, #B8960F 50%, #B8960F 100%) !important;
    border-color: rgba(255,255,255,0.2) !important;
    border-width: 2px !important;
    box-shadow:
        0 4px 25px rgba(212, 175, 55, 0.5),
        0 0 60px rgba(184, 150, 15, 0.2),
        0 0 0 1px rgba(255,255,255,0.05) inset !important;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
    margin-top: -28px !important;
}
.aiz-mobile-bottom-nav .col-auto a:hover .rounded-circle {
    transform: translateY(-4px) scale(1.08);
    box-shadow:
        0 8px 40px rgba(212, 175, 55, 0.6),
        0 0 80px rgba(184, 150, 15, 0.3),
        0 0 0 1px rgba(255,255,255,0.08) inset !important;
}
.aiz-mobile-bottom-nav .col-auto a:active .rounded-circle {
    transform: scale(0.90);
}
/* Cart icon color */
.aiz-mobile-bottom-nav .col-auto a i.la-shopping-bag {
    color: #fff !important;
    filter: drop-shadow(0 0 6px rgba(255,255,255,0.2));
}
/* Cart count text */
.aiz-mobile-bottom-nav .col-auto .cart-count {
    color: #FFE0B2 !important;
    font-weight: 700;
}
.aiz-mobile-bottom-nav .col-auto a:hover .cart-count {
    color: #FFE8D6 !important;
}

/* Account avatar ring glow */
.aiz-mobile-bottom-nav .nav-avatar-ring {
    box-shadow: 0 0 0 2px rgba(184, 150, 15, 0.3) !important;
}
.aiz-mobile-bottom-nav .nav-account-btn:hover .nav-avatar-ring {
    box-shadow: 0 0 0 2px rgba(184, 150, 15, 0.6), 0 0 15px rgba(212, 175, 55, 0.2) !important;
}

/* Notification badge */
.aiz-mobile-bottom-nav .badge-dot.badge-primary {
    background: #FF6B6B !important;
    box-shadow: 0 0 10px rgba(255, 107, 107, 0.5) !important;
}


/* ========== AUTO-HIDE BOTTOM NAV (MOBILE) ========== */
.aiz-mobile-bottom-nav {
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease !important;
    will-change: transform, opacity;
}
.aiz-mobile-bottom-nav.nav-hidden {
    transform: translateY(100%) !important;
    opacity: 0;
}

/* Footer bottom spacing on mobile — nav is ~62px tall */
body.has-mobile-nav footer:last-child {
    margin-bottom: 90px !important;
}
body.has-mobile-nav.nav-spacing-inactive footer:last-child {
    margin-bottom: 0 !important;
}
@media (min-width: 992px) {
    body.has-mobile-nav footer:last-child {
        margin-bottom: 0 !important;
    }
}

/* ========== COPYRIGHT SECTION (MOBILE) ========== */
@media (max-width: 767px) {
    .footer-copyright .copyright-text {
        font-size: 14px !important;
        text-align: center !important;
    }
    .footer-copyright .copyright-text span,
    .footer-copyright .copyright-text a {
        display: inline-block;
        margin: 2px 0;
    }
}
