
        
        * {
            font-family: 'Vazir', sans-serif;
        }
        
        /* Mobile Bottom Navigation Styles */
        .mobile-nav {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95));
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
            z-index: 1000;
            padding: 8px 0 max(8px, env(safe-area-inset-bottom));
            border-top: 1px solid rgba(233, 30, 99, 0.1);
        }
        
        .mobile-nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 4px;
            padding: 8px 12px;
            border-radius: 16px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            cursor: pointer;
        }
        
        .mobile-nav-item:active {
            transform: scale(0.95);
        }
        
        .mobile-nav-item.active {
            background: linear-gradient(135deg, #E91E63 0%, #F06292 100%);
        }
        
        .mobile-nav-item.active .nav-icon {
            color: white;
            transform: translateY(-2px);
        }
        
        .mobile-nav-item.active .nav-label {
            color: white;
            font-weight: 600;
        }
        
        .nav-icon {
            font-size: 22px;
            color: #666;
            transition: all 0.3s ease;
        }
        
        .mobile-nav-item:hover .nav-icon {
            color: #E91E63;
            transform: translateY(-2px);
        }
        
        .nav-label {
            font-size: 11px;
            color: #666;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .mobile-nav-item:hover .nav-label {
            color: #E91E63;
        }
        
        .nav-badge {
            position: absolute;
            top: 4px;
            right: 8px;
            background: linear-gradient(135deg, #FF4081 0%, #E91E63 100%);
            color: white;
            font-size: 10px;
            font-weight: 700;
            padding: 2px 6px;
            border-radius: 10px;
            min-width: 18px;
            text-align: center;
            box-shadow: 0 2px 8px rgba(233, 30, 99, 0.4);
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.1);
            }
        }
        
        /* Sidebar Styles */
        .sidebar {
            position: fixed;
            top: 0;
            right: -100%;
            width: 85%;
            max-width: 400px;
            height: 100vh;
            background: white;
            box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
            transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 2000;
            overflow-y: auto;
        }
        
        .sidebar.active {
            right: 0;
        }
        
        .sidebar-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1999;
        }
        
        .sidebar-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        /* Modal Styles */
        .modal {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 3000;
            padding: 20px;
        }
        
        .modal.active {
            opacity: 1;
            visibility: visible;
        }
        
        .modal-content {
            background: white;
            border-radius: 24px;
            width: 100%;
            max-width: 450px;
            max-height: 90vh;
            overflow-y: auto;
            transform: scale(0.9);
            transition: transform 0.3s ease;
        }
        
        .modal.active .modal-content {
            transform: scale(1);
        }
        
        /* Mega Menu Styles */
        .mega-menu {
            position: absolute;
            top: 100%;
            right: 0;
            left: 0;
            background: white;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            z-index: 100;
        }
        
        .mega-menu.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        /* Hide mobile nav on desktop */
        @media (min-width: 768px) {
            .mobile-nav {
                display: none;
            }
        }
        
        /* Add padding to body for mobile nav */
        @media (max-width: 767px) {
            body {
                padding-bottom: 70px;
            }
        }
        
        /* Smooth scrolling */
        html {
            scroll-behavior: smooth;
        }
        
        /* Custom scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }
        
        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }
        
        ::-webkit-scrollbar-thumb {
            background: #E91E63;
            border-radius: 4px;
        }
        
        ::-webkit-scrollbar-thumb:hover {
            background: #C2185B;
        }

                
        .cart-container {
            padding: 20px 0;
        }
        
        .cart-item {
            background: white;
            border-radius: 12px;
            padding: 15px;
            margin-bottom: 15px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }
        
        .cart-item-image {
            width: 100px;
            height: 100px;
            object-fit: contain;
            border-radius: 8px;
            background: #f8f8f8;
        }
        
        .cart-item-title {
            font-size: 14px;
            font-weight: 600;
            color: #333;
            margin-bottom: 8px;
        }
        
        .cart-item-color {
            font-size: 12px;
            color: #666;
            margin-bottom: 5px;
        }
        
        .cart-item-price {
            font-size: 16px;
            font-weight: 700;
            color: #e91e63;
        }
        
        .cart-item-original-price {
            font-size: 13px;
            color: #999;
            text-decoration: line-through;
            margin-right: 8px;
        }
        
        .quantity-control {
            display: flex;
            align-items: center;
            gap: 10px;
            background: #f5f5f5;
            border-radius: 8px;
            padding: 5px;
            width: fit-content;
        }
        
        .quantity-btn {
            width: 30px;
            height: 30px;
            border: none;
            background: white;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .quantity-btn:hover {
            background: #e91e63;
            color: white;
        }
        
        .quantity-value {
            min-width: 30px;
            text-align: center;
            font-weight: 600;
        }
        
        .remove-btn {
            color: #f44336;
            background: none;
            border: none;
            cursor: pointer;
            font-size: 20px;
        }
        
        .cart-summary {
            background: white;
            border-radius: 12px;
            padding: 20px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            position: sticky;
            top: 100px;
        }
        
        .summary-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
            font-size: 14px;
        }
        
        .summary-row.total {
            font-size: 18px;
            font-weight: 700;
            color: #e91e63;
            padding-top: 15px;
            border-top: 2px dashed #ddd;
        }
        
        .btn-checkout {
            background: linear-gradient(135deg, #e91e63 0%, #f44336 100%);
            color: white;
            padding: 12px;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 16px;
            width: 100%;
            transition: all 0.3s;
        }
        
        .btn-checkout:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
        }
        
        .discount-code {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
        }
        
        .discount-code input {
            flex: 1;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 14px;
        }
        
        .discount-code button {
            padding: 10px 20px;
            background: #4caf50;
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
        }
        
        .empty-cart {
            text-align: center;
            padding: 60px 20px;
            background: white;
            border-radius: 12px;
        }
        
        .empty-cart i {
            font-size: 80px;
            color: #ddd;
            margin-bottom: 20px;
        }
        
        .empty-cart h3 {
            font-size: 20px;
            color: #333;
            margin-bottom: 10px;
        }
        
        .empty-cart p {
            color: #666;
            margin-bottom: 20px;
        }
        
        .mobile-bottom-nav {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: white;
            box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
            z-index: 1000;
        }
        
        .mobile-bottom-nav .nav-item {
            flex: 1;
            text-align: center;
            padding: 10px 5px;
            color: #666;
            text-decoration: none;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            font-size: 11px;
        }
        
        .mobile-bottom-nav .nav-item i {
            font-size: 20px;
        }
        
        .mobile-bottom-nav .nav-item.active {
            color: #e91e63;
        }
        
        @media (max-width: 768px) {
            .cart-item-image {
                width: 80px;
                height: 80px;
            }
            
            .cart-summary {
                position: fixed;
                bottom: 70px;
                left: 0;
                right: 0;
                border-radius: 16px 16px 0 0;
                z-index: 99;
            }
            
            .mobile-bottom-nav {
                display: flex;
            }
            
            body {
                padding-bottom: 70px;
            }
        }
        .categories-container {
            padding: 30px 0;
        }
        
        .category-section {
            margin-bottom: 40px;
        }
        
        .section-title {
            font-size: 22px;
            font-weight: 700;
            color: #333;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid #e91e63;
            display: inline-block;
        }
        
        .category-card {
            background: white;
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            transition: all 0.3s;
            text-decoration: none;
            display: block;
            height: 100%;
        }
        
        .category-card:hover {
            box-shadow: 0 4px 16px rgba(0,0,0,0.15);
            transform: translateY(-4px);
        }
        
        .category-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 15px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 36px;
        }
        
        .category-name {
            font-size: 16px;
            font-weight: 600;
            color: #333;
            margin-bottom: 5px;
        }
        
        .category-count {
            font-size: 13px;
            color: #999;
        }
        
        .mobile-bottom-nav {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: white;
            box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
            z-index: 1000;
        }
        
        .mobile-bottom-nav .nav-item {
            flex: 1;
            text-align: center;
            padding: 10px 5px;
            color: #666;
            text-decoration: none;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            font-size: 11px;
        }
        
        .mobile-bottom-nav .nav-item i {
            font-size: 20px;
        }
        
        .mobile-bottom-nav .nav-item.active {
            color: #e91e63;
        }
        
        @media (max-width: 768px) {
            .mobile-bottom-nav {
                display: flex;
            }
            
            body {
                padding-bottom: 70px;
            }
            
            .search-bar {
                margin: 10px 0;
            }
        }
        .checkout-steps {
            background: white;
            padding: 30px 0;
            margin-bottom: 30px;
        }

        .steps-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 600px;
            margin: 0 auto;
        }

        .step {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            flex: 1;
            position: relative;
        }

        .step-number {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--light-gray);
            color: #999;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 18px;
            z-index: 2;
        }

        .step.active .step-number {
            background: var(--primary-color);
            color: white;
        }

        .step.completed .step-number {
            background: var(--success-color);
            color: white;
        }

        .step-label {
            font-size: 14px;
            color: #666;
        }

        .step.active .step-label {
            color: var(--primary-color);
            font-weight: bold;
        }

        .step-line {
            position: absolute;
            top: 25px;
            right: 50%;
            width: 100%;
            height: 2px;
            background: var(--border-color);
            z-index: 1;
        }

        .step.completed .step-line {
            background: var(--success-color);
        }

        .step:last-child .step-line {
            display: none;
        }

        .checkout-section {
            background: white;
            border-radius: 12px;
            padding: 30px;
            margin-bottom: 20px;
        }

        .section-title {
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 20px;
            color: var(--dark-color);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .form-label {
            font-weight: bold;
            margin-bottom: 8px;
        }

        .form-control, .form-select {
            padding: 12px;
            border: 2px solid var(--border-color);
            border-radius: 8px;
        }

        .form-control:focus, .form-select:focus {
            border-color: var(--primary-color);
            box-shadow: none;
        }

        .address-card {
            border: 2px solid var(--border-color);
            border-radius: 12px;
            padding: 20px;
            cursor: pointer;
            transition: all 0.3s;
            margin-bottom: 15px;
        }

        .address-card:hover {
            border-color: var(--primary-color);
        }

        .address-card.selected {
            border-color: var(--primary-color);
            background: #fce4ec;
        }

        .address-card h6 {
            font-weight: bold;
            margin-bottom: 10px;
        }

        .payment-method {
            border: 2px solid var(--border-color);
            border-radius: 12px;
            padding: 20px;
            cursor: pointer;
            transition: all 0.3s;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .payment-method:hover {
            border-color: var(--primary-color);
        }

        .payment-method.selected {
            border-color: var(--primary-color);
            background: #fce4ec;
        }

        .payment-icon {
            font-size: 32px;
            color: var(--primary-color);
        }

        .order-summary {
            background: white;
            border-radius: 12px;
            padding: 30px;
            position: sticky;
            top: 100px;
        }

        .summary-item {
            display: flex;
            justify-content: space-between;
            padding: 15px 0;
            border-bottom: 1px solid var(--border-color);
        }

        .summary-item:last-child {
            border-bottom: none;
        }

        .summary-total {
            font-size: 20px;
            font-weight: bold;
            color: var(--primary-color);
        }

        .btn-checkout {
            width: 100%;
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 15px;
            border-radius: 8px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            margin-top: 20px;
        }

        .btn-checkout:hover {
            background: #c2185b;
            transform: translateY(-2px);
        }

        .product-item {
            display: flex;
            gap: 15px;
            padding: 15px 0;
            border-bottom: 1px solid var(--border-color);
        }

        .product-item img {
            width: 80px;
            height: 80px;
            object-fit: contain;
            border-radius: 8px;
        }

        .product-info {
            flex: 1;
        }

        .product-info h6 {
            font-size: 14px;
            margin-bottom: 5px;
        }

        .product-price {
            font-weight: bold;
            color: var(--primary-color);
        }

        @media (max-width: 768px) {
            .checkout-section {
                padding: 15px;
            }

            .order-summary {
                position: static;
            }

            .steps-container {
                flex-direction: column;
                gap: 20px;
            }

            .step-line {
                display: none;
            }
        }

        .compare-section {
            background: white;
            border-radius: 12px;
            padding: 30px;
            overflow-x: auto;
        }

        .compare-table {
            width: 100%;
            min-width: 800px;
        }

        .product-header {
            text-align: center;
            padding: 20px;
            border-bottom: 2px solid var(--border-color);
        }

        .product-header img {
            width: 150px;
            height: 150px;
            object-fit: contain;
            margin-bottom: 15px;
        }

        .product-header h5 {
            font-size: 14px;
            margin-bottom: 10px;
            height: 40px;
            overflow: hidden;
        }

        .product-header .price {
            font-size: 18px;
            font-weight: bold;
            color: var(--primary-color);
            margin-bottom: 10px;
        }

        .remove-btn {
            background: #f44336;
            color: white;
            border: none;
            padding: 5px 15px;
            border-radius: 6px;
            cursor: pointer;
            font-size: 12px;
        }

        .compare-row {
            display: flex;
            border-bottom: 1px solid var(--border-color);
        }

        .compare-label {
            width: 200px;
            padding: 15px;
            font-weight: bold;
            background: var(--light-gray);
            border-left: 1px solid var(--border-color);
        }

        .compare-value {
            flex: 1;
            padding: 15px;
            text-align: center;
        }

        .highlight-better {
            background: #e8f5e9;
            color: var(--success-color);
            font-weight: bold;
        }

        .add-product-card {
            border: 2px dashed var(--border-color);
            border-radius: 12px;
            padding: 40px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s;
        }

        .add-product-card:hover {
            border-color: var(--primary-color);
            background: var(--light-gray);
        }

        .add-product-card i {
            font-size: 48px;
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        .mobile-bottom-nav {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: white;
            box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
            display: none;
            z-index: 1000;
        }

        .mobile-nav-items {
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
        }

        .mobile-nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 5px;
            color: #666;
            text-decoration: none;
            font-size: 11px;
            cursor: pointer;
        }

        .mobile-nav-item i {
            font-size: 22px;
        }

        @media (max-width: 768px) {
            .mobile-bottom-nav {
                display: block;
            }

            .compare-section {
                padding: 15px;
            }

            .page-title h1 {
                font-size: 20px;
            }
        }


        .invoice-container {
            max-width: 900px;
            margin: 0 auto;
            background: white;
            border-radius: 12px;
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
            overflow: hidden;
        }

        .invoice-header {
            background: linear-gradient(135deg, var(--primary-color), #c2185b);
            color: white;
            padding: 40px;
        }

        .invoice-header h1 {
            font-size: 32px;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .invoice-number {
            font-size: 18px;
            opacity: 0.9;
        }

        .invoice-body {
            padding: 40px;
        }

        .invoice-info {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-bottom: 40px;
        }

        .info-section h5 {
            font-weight: bold;
            margin-bottom: 15px;
            color: var(--dark-color);
            border-bottom: 2px solid var(--primary-color);
            padding-bottom: 10px;
        }

        .info-item {
            display: flex;
            padding: 8px 0;
        }

        .info-label {
            font-weight: bold;
            width: 120px;
            color: #666;
        }

        .info-value {
            flex: 1;
            color: var(--dark-color);
        }

        .invoice-table {
            width: 100%;
            margin-bottom: 30px;
            border-collapse: collapse;
        }

        .invoice-table thead {
            background: var(--light-gray);
        }

        .invoice-table th {
            padding: 15px;
            text-align: right;
            font-weight: bold;
            border-bottom: 2px solid var(--border-color);
        }

        .invoice-table td {
            padding: 15px;
            border-bottom: 1px solid var(--border-color);
        }

        .product-cell {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .product-cell img {
            width: 60px;
            height: 60px;
            object-fit: contain;
            border-radius: 8px;
            border: 1px solid var(--border-color);
        }

        .invoice-summary {
            background: var(--light-gray);
            padding: 25px;
            border-radius: 8px;
            margin-top: 30px;
        }

        .summary-row {
            display: flex;
            justify-content: space-between;
            padding: 10px 0;
            font-size: 16px;
        }

        .summary-row.total {
            border-top: 2px solid var(--border-color);
            margin-top: 10px;
            padding-top: 15px;
            font-size: 20px;
            font-weight: bold;
            color: var(--primary-color);
        }

        .invoice-footer {
            background: var(--light-gray);
            padding: 30px 40px;
            text-align: center;
        }

        .action-buttons {
            display: flex;
            gap: 15px;
            justify-content: center;
            margin-bottom: 20px;
        }

        .btn-action {
            padding: 12px 30px;
            border-radius: 8px;
            border: none;
            cursor: pointer;
            font-size: 15px;
            font-weight: bold;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .btn-print {
            background: var(--primary-color);
            color: white;
        }

        .btn-print:hover {
            background: #c2185b;
        }

        .btn-download {
            background: white;
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
        }

        .btn-download:hover {
            background: var(--primary-color);
            color: white;
        }

        .invoice-notes {
            background: #fff3cd;
            border-right: 4px solid #ffc107;
            padding: 15px;
            border-radius: 8px;
            margin-top: 30px;
        }

        .invoice-notes h6 {
            font-weight: bold;
            margin-bottom: 10px;
        }

        .status-badge {
            display: inline-block;
            padding: 8px 20px;
            border-radius: 20px;
            font-weight: bold;
            font-size: 14px;
        }

        .status-paid {
            background: #e8f5e9;
            color: var(--success-color);
        }

        @media print {
            body {
                background: white;
                padding: 0;
            }

            .invoice-container {
                box-shadow: none;
            }

            .action-buttons {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .invoice-header {
                padding: 25px;
            }

            .invoice-header h1 {
                font-size: 24px;
            }

            .invoice-body {
                padding: 20px;
            }

            .invoice-info {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .invoice-table {
                font-size: 14px;
            }

            .invoice-table th,
            .invoice-table td {
                padding: 10px;
            }

            .product-cell {
                flex-direction: column;
                align-items: flex-start;
            }

            .action-buttons {
                flex-direction: column;
            }

            .btn-action {
                width: 100%;
                justify-content: center;
            }
        }
        .gradient-bg {
            background: linear-gradient(135deg, #e91e63 0%, #f50057 100%);
        }
        
        .hover-scale {
            transition: transform 0.3s ease;
        }
        
        .hover-scale:hover {
            transform: scale(1.05);
        }

        .order-card {
            background: white;
            border-radius: 12px;
            padding: 25px;
            margin-bottom: 20px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }

        .order-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-bottom: 15px;
            border-bottom: 2px solid var(--border-color);
            margin-bottom: 20px;
        }

        .order-number {
            font-weight: bold;
            font-size: 16px;
        }

        .order-date {
            color: #666;
            font-size: 14px;
        }

        .order-status {
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: bold;
        }

        .status-delivered {
            background: #e8f5e9;
            color: var(--success-color);
        }

        .status-processing {
            background: #fff3e0;
            color: var(--warning-color);
        }

        .status-shipped {
            background: #e3f2fd;
            color: #2196f3;
        }

        .status-cancelled {
            background: #ffebee;
            color: #f44336;
        }

        .order-items {
            margin: 20px 0;
        }

        .order-item {
            display: flex;
            gap: 15px;
            padding: 15px 0;
            border-bottom: 1px solid var(--border-color);
        }

        .order-item:last-child {
            border-bottom: none;
        }

        .order-item img {
            width: 80px;
            height: 80px;
            object-fit: contain;
            border-radius: 8px;
            border: 1px solid var(--border-color);
        }

        .item-info {
            flex: 1;
        }

        .item-info h6 {
            font-size: 14px;
            margin-bottom: 5px;
        }

        .item-price {
            font-weight: bold;
            color: var(--primary-color);
            margin-top: 5px;
        }

        .order-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 15px;
            border-top: 2px solid var(--border-color);
            margin-top: 20px;
        }

        .order-total {
            font-size: 18px;
            font-weight: bold;
            color: var(--dark-color);
        }

        .order-actions {
            display: flex;
            gap: 10px;
        }

        .btn-action {
            padding: 8px 20px;
            border-radius: 8px;
            border: none;
            cursor: pointer;
            font-size: 14px;
            transition: all 0.3s;
        }

        .btn-primary-action {
            background: var(--primary-color);
            color: white;
        }

        .btn-primary-action:hover {
            background: #c2185b;
        }

        .btn-secondary-action {
            background: white;
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
        }

        .btn-secondary-action:hover {
            background: var(--primary-color);
            color: white;
        }

        .filter-tabs {
            background: white;
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 20px;
        }

        .filter-tabs .nav-link {
            color: #666;
            border: none;
            padding: 10px 20px;
            border-radius: 8px;
            margin-left: 10px;
        }

        .filter-tabs .nav-link.active {
            background: var(--primary-color);
            color: white;
        }

        .empty-state {
            background: white;
            border-radius: 12px;
            padding: 60px 20px;
            text-align: center;
        }

        .empty-state i {
            font-size: 80px;
            color: #ddd;
            margin-bottom: 20px;
        }

        .empty-state h4 {
            color: #666;
            margin-bottom: 10px;
        }

        @media (max-width: 768px) {
            .order-card {
                padding: 15px;
            }

            .order-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }

            .order-footer {
                flex-direction: column;
                gap: 15px;
                align-items: flex-start;
            }

            .order-actions {
                width: 100%;
                flex-direction: column;
            }

            .btn-action {
                width: 100%;
            }
        }

        
        .search-bar {
            flex: 1;
            max-width: 600px;
            margin: 0 20px;
        }
        
        .search-bar input {
            width: 100%;
            padding: 10px 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 14px;
        }
        
        .breadcrumb {
            background: white;
            padding: 15px 0;
            margin-bottom: 0;
        }
        
        .breadcrumb-item a {
            color: #666;
            text-decoration: none;
        }
        
        .breadcrumb-item.active {
            color: #e91e63;
        }
        
        .filters-sidebar {
            background: white;
            border-radius: 12px;
            padding: 20px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            position: sticky;
            top: 100px;
        }
        
        .filter-section {
            margin-bottom: 25px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
        }
        
        .filter-section:last-child {
            border-bottom: none;
        }
        
        .filter-title {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 15px;
            color: #333;
        }
        
        .filter-option {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 10px;
            font-size: 14px;
            color: #666;
        }
        
        .filter-option input[type="checkbox"] {
            width: 18px;
            height: 18px;
            cursor: pointer;
        }
        
        .price-range {
            display: flex;
            gap: 10px;
            align-items: center;
        }
        
        .price-range input {
            flex: 1;
            padding: 8px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 13px;
        }
        
        .products-header {
            background: white;
            border-radius: 12px;
            padding: 15px 20px;
            margin-bottom: 20px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .sort-options {
            display: flex;
            gap: 10px;
            align-items: center;
        }
        
        .sort-options select {
            padding: 8px 15px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 14px;
        }
        
        .view-toggle {
            display: flex;
            gap: 5px;
        }
        
        .view-toggle button {
            padding: 8px 12px;
            border: 1px solid #ddd;
            background: white;
            border-radius: 6px;
            cursor: pointer;
        }
        
        .view-toggle button.active {
            background: #e91e63;
            color: white;
            border-color: #e91e63;
        }
        
        .product-card {
            background: white;
            border-radius: 12px;
            padding: 15px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            transition: all 0.3s;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .product-card:hover {
            box-shadow: 0 4px 16px rgba(0,0,0,0.15);
            transform: translateY(-4px);
        }
        
        .product-image {
            width: 100%;
            aspect-ratio: 1;
            object-fit: contain;
            border-radius: 8px;
            background: #f8f8f8;
            margin-bottom: 12px;
        }
        
        .product-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background: #f44336;
            color: white;
            padding: 4px 10px;
            border-radius: 6px;
            font-size: 12px;
            font-weight: 600;
        }
        
        .product-title {
            font-size: 14px;
            color: #333;
            margin-bottom: 8px;
            height: 40px;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }
        
        .product-rating {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 12px;
            color: #ffa726;
            margin-bottom: 8px;
        }
        
        .product-colors {
            display: flex;
            gap: 5px;
            margin-bottom: 10px;
        }
        
        .color-dot {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            border: 2px solid #ddd;
            cursor: pointer;
        }
        
        .product-price {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-top: auto;
        }
        
        .current-price {
            font-size: 16px;
            font-weight: 700;
            color: #e91e63;
        }
        
        .original-price {
            font-size: 13px;
            color: #999;
            text-decoration: line-through;
        }
        
        .product-actions {
            display: flex;
            gap: 8px;
            margin-top: 12px;
        }
        
        .btn-add-cart {
            flex: 1;
            padding: 10px;
            background: linear-gradient(135deg, #e91e63 0%, #f44336 100%);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .btn-add-cart:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
        }
        
        .btn-wishlist {
            width: 40px;
            height: 40px;
            border: 1px solid #ddd;
            background: white;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .btn-wishlist:hover {
            border-color: #e91e63;
            color: #e91e63;
        }
        
        .pagination {
            margin-top: 30px;
            justify-content: center;
        }
        
        .mobile-filter-btn {
            display: none;
            position: fixed;
            bottom: 80px;
            left: 20px;
            right: 20px;
            background: linear-gradient(135deg, #e91e63 0%, #f44336 100%);
            color: white;
            padding: 12px;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            z-index: 99;
        }
        
        .mobile-bottom-nav {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: white;
            box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
            z-index: 1000;
        }
        
        .mobile-bottom-nav .nav-item {
            flex: 1;
            text-align: center;
            padding: 10px 5px;
            color: #666;
            text-decoration: none;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            font-size: 11px;
        }
        
        .mobile-bottom-nav .nav-item i {
            font-size: 20px;
        }
        
        .mobile-bottom-nav .nav-item.active {
            color: #e91e63;
        }
        
        @media (max-width: 768px) {
            .filters-sidebar {
                display: none;
            }
            
            .mobile-filter-btn {
                display: block;
            }
            
            .mobile-bottom-nav {
                display: flex;
            }
            
            body {
                padding-bottom: 70px;
            }
            
            .search-bar {
                margin: 10px 0;
            }
        }
        