
        :root {
            --primary-color: #0F4793;
            --primary-dark: #0f045e;
            --primary-light: #b0d0ff;
            --secondary-color: #FF9800;
            --light-bg: #F5F5F5;
            --dark-color: #333333;
            --white: #FFFFFF;
            --danger-color: #dc3545;
            --danger-dark: #bd2130;
        }

        body {
            font-family: 'Cairo', sans-serif;
            background-color: #f8f9fa;
        }

        .bg-success {
            background-color: var(--primary-color) !important;
        }

        .text-success {
            color: var(--primary-color) !important;
        }

        .btn-success {
            background-color: var(--primary-color) !important;
            border-color: var(--primary-color) !important;
        }

        .btn-outline-success {
            color: var(--primary-color) !important;
            border-color: var(--primary-color) !important;
        }

        .btn-outline-success:hover {
            background-color: var(--primary-color) !important;
            color: white !important;
        }

        /* Wishlist Page Styles */
        .wishlist-header {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
            color: white;
            padding: 3rem 0;
            margin-bottom: 2rem;
            position: relative;
            overflow: hidden;
        }

        .wishlist-header::before {
            content: "";
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path fill="rgba(255,255,255,0.1)" d="M30,30 Q50,10 70,30 T90,30 T70,30 T50,10 T30,30 Z"/></svg>');
            background-size: 200px;
            opacity: 0.1;
        }

        .wishlist-card {
            background: white;
            border-radius: 15px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .wishlist-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        }

        .wishlist-card::before {
            content: "";
            position: absolute;
            top: 0;
            right: 0;
            width: 4px;
            height: 100%;
            background: var(--primary-color);
            border-radius: 0 15px 15px 0;
        }

        .product-image {
            width: 120px;
            height: 120px;
            object-fit: cover;
            border-radius: 10px;
            border: 2px solid #f0f0f0;
            transition: transform 0.3s ease;
        }

        .wishlist-card:hover .product-image {
            transform: scale(1.05);
        }

        .wishlist-badge {
            position: absolute;
            top: 3px;
            left: 1px;
            z-index: 2;
        }

        .product-title {
            color: var(--dark-color);
            font-weight: 600;
            margin-bottom: 0.5rem;
            transition: color 0.3s ease;
            height: 50px;
        }

        .product-title:hover {
            color: var(--primary-color);
        }

        .product-category {
            color: #6c757d;
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
        }

        .product-rating {
            color: #ffc107;
            font-size: 0.9rem;
        }

        .stock-status {
            font-size: 0.85rem;
            padding: 0.2rem 0.8rem;
            border-radius: 20px;
            display: inline-block;
        }

        .in-stock {
            background: #d4edda;
            color: #155724;
        }

        .low-stock {
            background: #fff3cd;
            color: #856404;
        }

        .out-of-stock {
            background: #f8d7da;
            color: #721c24;
        }

        .price-section {
            border-top: 1px solid #e9ecef;
            padding-top: 1rem;
            margin-top: 1rem;
        }

        .current-price {
            font-size: 1.3rem;
            font-weight: bold;
            color: var(--primary-color);
        }

        .old-price {
            font-size: 0.9rem;
            color: #6c757d;
            text-decoration: line-through;
            margin-right: 0.5rem;
        }

        .discount-badge {
            background: var(--danger-color);
            color: white;
            padding: 0.1rem 0.3rem;
            border-radius: 15px;
            font-size: 0.8rem;
            margin-right: 0.5rem;
        }

        .action-buttons {
            display: flex;
            gap: 0.5rem;
            margin-top: 1rem;
        }

        .btn-action {
            flex: 1;
            padding: 0.5rem;
            font-size: 0.9rem;
        }

        .btn-move-to-cart {
            background: var(--primary-color);
            color: white;
            border: none;
        }

        .btn-move-to-cart:hover {
            background: var(--primary-dark);
            color: white;
        }

        .btn-remove {
            background: transparent;
            color: var(--danger-color);
            border: 1px solid var(--danger-color);
        }

        .btn-remove:hover {
            background: var(--danger-color);
            color: white;
        }

        .empty-wishlist {
            text-align: center;
            padding: 4rem 0;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        .empty-icon {
            font-size: 5rem;
            color: #6c757d;
            margin-bottom: 1.5rem;
            opacity: 0.5;
        }

        /* Filter & Sort */
        .filter-section {
            background: white;
            border-radius: 15px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        .filter-title {
            color: var(--primary-color);
            font-weight: 600;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--primary-light);
        }

        .filter-group {
            margin-bottom: 1.5rem;
        }

        .filter-group:last-child {
            margin-bottom: 0;
        }

        .filter-options {
            max-height: 200px;
            overflow-y: auto;
            padding-right: 0.5rem;
        }

        .filter-options::-webkit-scrollbar {
            width: 5px;
        }

        .filter-options::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }

        .filter-options::-webkit-scrollbar-thumb {
            background: var(--primary-color);
            border-radius: 10px;
        }

        .sort-dropdown {
            width: 200px;
        }

        /* Share Wishlist */
        .share-wishlist {
            background: white;
            border-radius: 15px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        .share-buttons {
            display: flex;
            gap: 0.5rem;
            margin-top: 1rem;
        }

        .share-btn {
            flex: 1;
            padding: 0.5rem;
            border: none;
            border-radius: 8px;
            color: white;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .share-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .share-facebook {
            background: #1877f2;
        }

        .share-twitter {
            background: #1da1f2;
        }

        .share-whatsapp {
            background: #25d366;
        }

        .share-link {
            background: var(--primary-color);
        }

        /* Stats Card */
        .stats-card {
            background: white;
            border-radius: 15px;
            padding: 1.5rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            text-align: center;
            
        }

        .stats-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

        .stats-number {
            font-size: 2rem;
            font-weight: bold;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }

        .stats-label {
            color: #6c757d;
            font-size: 0.9rem;
        }

        /* Notification Toast */
        .wishlist-toast {
            position: fixed;
            bottom: 20px;
            left: 20px;
            z-index: 1050;
            min-width: 300px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
            border-right: 4px solid var(--primary-color);
            transform: translateX(-100%);
            transition: transform 0.3s ease;
        }

        .wishlist-toast.show {
            transform: translateX(0);
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .wishlist-card {
                padding: 1rem;
            }

            .product-image {
                width: 100px;
                height: 100px;
            }

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

            .btn-action {
                width: 100%;
            }

            .filter-section, .share-wishlist, .stats-card {
                padding: 1rem;
            }

            .share-buttons {
                flex-wrap: wrap;
            }

            .share-btn {
                flex: 0 0 calc(50% - 0.5rem);
            }
        }

        @media (max-width: 576px) {
            .wishlist-header {
                padding: 2rem 0;
            }

            .wishlist-header h1 {
                font-size: 1.8rem;
            }

            .product-image {
                width: 80px;
                height: 80px;
            }

            .sort-dropdown {
                width: 100%;
            }
        }

        /* Animation */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .wishlist-card {
            animation: fadeIn 0.5s ease-out;
        }

        @keyframes heartBeat {
            0% {
                transform: scale(1);
            }
            14% {
                transform: scale(1.3);
            }
            28% {
                transform: scale(1);
            }
            42% {
                transform: scale(1.3);
            }
            70% {
                transform: scale(1);
            }
        }

        .heart-animate {
            animation: heartBeat 1.2s ease-in-out;
        }

        /* Loading Animation */
        .loading-spinner {
            width: 50px;
            height: 50px;
            border: 3px solid #f3f3f3;
            border-top: 3px solid var(--primary-color);
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin: 2rem auto;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Quick Actions */
        .quick-actions {
            background: white;
            border-radius: 15px;
            padding: 1rem;
            margin-bottom: 1.5rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        .action-btn {
            padding: 0.5rem 1rem;
            border-radius: 8px;
            border: 1px solid #dee2e6;
            background: white;
            color: var(--dark-color);
            transition: all 0.3s ease;
        }

        .action-btn:hover {
            border-color: var(--primary-color);
            color: var(--primary-color);
            background: rgba(15, 71, 147, 0.05);
        }

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