/* ===== YOUR CSS (UNCHANGED) ===== */
        :root {
            --primary-beige: #F5F0E8;
            --accent-rose: #D4A5A5;
            --deep-plum: #6B4E71;
            --soft-cream: #FDFBF7;
            --charcoal: #2C2C2C;
            --gold-accent: #C9A86A;
            --light-gray: #F8F9FA;
            --border-color: #E8E8E8;
            --success: #4CAF50;
            --warning: #FFA726;
            --danger: #EF5350;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--light-gray);
            color: var(--charcoal);
        }

        /* Top Navigation Bar */
        .top-navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: white;
            height: 70px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 30px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            z-index: 100;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            color: var(--deep-plum);
            font-family: 'Cormorant Garamond', serif;
            font-size: 26px;
            font-weight: 600;
            letter-spacing: 1px;
        }

        .logo img {
            height: 45px;
            object-fit: contain;
        }

        .top-nav-right {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .search-bar a {
            text-decoration: none;
            padding-left: 20px;
            color: #6B4E71;
            font-size: 18px;
            font-weight: 600;
        }


        .notification-icon {
            position: relative;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .notification-icon:hover {
            background: var(--primary-beige);
        }

        .notification-badge {
            position: absolute;
            top: 5px;
            right: 5px;
            background: var(--danger);
            color: white;
            font-size: 10px;
            font-weight: 600;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .user-profile {
            display: flex;
            align-items: center;
            gap: 12px;
            cursor: pointer;
            padding: 8px 15px;
            border-radius: 25px;
            transition: all 0.3s ease;
        }

        .user-profile:hover {
            background: var(--primary-beige);
        }

        .user-avatar {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--accent-rose), var(--deep-plum));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 600;
            font-size: 14px;
        }

        .user-info {
            display: flex;
            flex-direction: column;
        }

        .user-name {
            font-size: 14px;
            font-weight: 600;
            color: var(--charcoal);
        }

        .user-role {
            font-size: 11px;
            color: #999;
        }

        /* Sidebar Navigation */
        .sidebar {
            position: fixed;
            top: 70px;
            left: 0;
            width: 260px;
            height: calc(100vh - 70px);
            background: white;
            border-right: 1px solid var(--border-color);
            padding: 30px 0;
            overflow-y: auto;
            z-index: 90;
        }

        .sidebar-menu {
            list-style: none;
        }

        .sidebar-menu li {
            margin-bottom: 5px;
        }

        .sidebar-menu a {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 12px 30px;
            text-decoration: none;
            color: var(--charcoal);
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

        .sidebar-menu a::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 4px;
            height: 100%;
            background: var(--deep-plum);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .sidebar-menu a:hover,
        .sidebar-menu a.active {
            background: var(--primary-beige);
            color: var(--deep-plum);
        }

        .sidebar-menu a.active::before {
            opacity: 1;
        }

        .sidebar-menu i {
            font-size: 18px;
            width: 20px;
            text-align: center;
        }

        .menu-section-title {
            padding: 20px 30px 10px;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #999;
        }

        .submenu {
            list-style: none;
            padding-left: 65px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .submenu.active {
            max-height: 500px;
        }

        .submenu li {
            margin-bottom: 3px;
        }

        .submenu a {
            padding: 8px 30px 8px 0;
            font-size: 13px;
            font-weight: 400;
        }

        .has-submenu>a {
            justify-content: space-between;
        }

        .has-submenu>a .fa-chevron-down {
            font-size: 12px;
            transition: transform 0.3s ease;
        }

        .has-submenu.active>a .fa-chevron-down {
            transform: rotate(180deg);
        }


        .card {
            background: white;
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        }

        .card-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid var(--border-color);
        }

        .card-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 22px;
            font-weight: 600;
            color: var(--deep-plum);
        }

        .card-action {
            font-size: 13px;
            color: var(--accent-rose);
            text-decoration: none;
            font-weight: 500;
        }

        /* Recent Orders Table */
        .orders-table {
            width: 100%;
            border-collapse: collapse;
        }

        .orders-table th {
            text-align: left;
            padding: 12px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: #999;
            border-bottom: 1px solid var(--border-color);
        }

        .orders-table td {
            padding: 15px 12px;
            font-size: 14px;
            border-bottom: 1px solid var(--border-color);
        }

        .orders-table tr:last-child td {
            border-bottom: none;
        }

        .order-id {
            font-weight: 600;
            color: var(--deep-plum);
        }

        .order-customer {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .customer-avatar {
            width: 35px;
            height: 35px;
            border-radius: 50%;
            background: var(--primary-beige);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            font-size: 12px;
            color: var(--deep-plum);
        }

        .status-badge {
            padding: 5px 12px;
            border-radius: 15px;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
        }

        .status-badge.completed {
            background: rgba(76, 175, 80, 0.1);
            color: var(--success);
        }

        .status-badge.pending {
            background: rgba(255, 167, 38, 0.1);
            color: var(--warning);
        }

        .status-badge.processing {
            background: rgba(33, 150, 243, 0.1);
            color: #2196F3;
        }

        /* Top Products */
        .product-list {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .product-item {
            display: flex;
            gap: 15px;
            padding: 15px;
            background: var(--light-gray);
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .product-item:hover {
            background: var(--primary-beige);
        }

        .product-image {
            width: 60px;
            height: 60px;
            border-radius: 10px;
            object-fit: cover;
        }

        .product-info {
            flex: 1;
        }

        .product-name {
            font-size: 14px;
            font-weight: 600;
            color: var(--charcoal);
            margin-bottom: 5px;
        }

        .product-category {
            font-size: 12px;
            color: #999;
        }

        .product-sales {
            text-align: right;
        }

        .product-count {
            font-size: 16px;
            font-weight: 600;
            color: var(--deep-plum);
        }

        .product-revenue {
            font-size: 12px;
            color: #999;
        }

        /* Full Width Section */
        .full-width-card {
            grid-column: 1 / -1;
        }

        /* Chart Placeholder */
        .chart-container {
            height: 300px;
            background: var(--light-gray);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #999;
            font-size: 14px;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 968px) {
            .sidebar {
                transform: translateX(-100%);
                transition: transform 0.3s ease;
            }

            .sidebar.active {
                transform: translateX(0);
            }

        }

        @media (max-width: 768px) {
            .top-navbar {
                padding: 0 15px;
            }

            .search-bar {
                display: inline-flex;
            }

            .search-bar a {
                padding-left: 10px;
                font-size: 10px;
            }

            .user-info {
                display: none;
            }

            .orders-table {
                font-size: 12px;
            }

            .orders-table th,
            .orders-table td {
                padding: 10px 8px;
            }
        }

        .mobile-menu-toggle {
            display: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--primary-beige);
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: var(--deep-plum);
            font-size: 18px;
        }

        @media (max-width: 968px) {
            .mobile-menu-toggle {
                display: flex;
            }
        }

        main.admin-main {
            margin-left: 260px;
            margin-top: 70px;
            padding: 30px;
        }

        @media (max-width: 968px) {
            main.admin-main {
                margin-left: 0;
            }
        }