
        /* Main content */
        .products-page {
            max-width: 1400px;
            margin: 100px auto 50px;
            padding: 0 20px;
            display: flex;
            flex-wrap: wrap;
        }
        
        .close-filters,.filter-toggle-btn{
            display: none;
        }
        /* Sidebar filters */
        .filters-sidebar {
            width: 280px;
            padding: 20px;
            background: white;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            margin-right: 30px;
            height: fit-content;
        }
        
        .filters-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
        }
        
        .filters-header h2 {
            font-size: 1.5rem;
        }
        
        .reset-filters {
            color: var(--accent-purple);
            background: none;
            border: none;
            cursor: pointer;
            font-size: 0.9rem;
        }
        
        .filter-section {
            margin-bottom: 25px;
            padding-bottom: 25px;
            border-bottom: 1px solid #eee;
        }
        
        .filter-section:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        
        .filter-title {
            font-weight: 600;
            margin-bottom: 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .filter-options {
            max-height: 300px;
            overflow-y: auto;
        }
        
        .filter-option {
            margin-bottom: 12px;
            display: flex;
            align-items: center;
        }
        
        .filter-option input {
            margin-right: 10px;
        }
        
        .filter-option label {
            cursor: pointer;
        }
        
        .price-slider {
            width: 100%;
            height: 5px;
            background: #ddd;
            border-radius: 5px;
            margin: 25px 0;
            position: relative;
        }
        
        .price-slider .progress {
            height: 100%;
            left: 25%;
            right: 25%;
            position: absolute;
            background: var(--accent-purple);
            border-radius: 5px;
        }
        
        .range-input {
            position: relative;
        }
        
        .range-input input {
            position: absolute;
            width: 100%;
            height: 5px;
            top: -5px;
            background: none;
            pointer-events: none;
            -webkit-appearance: none;
        }
        
        input[type="range"]::-webkit-slider-thumb {
            height: 17px;
            width: 17px;
            border-radius: 50%;
            background: var(--accent-purple);
            pointer-events: auto;
            -webkit-appearance: none;
            box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
        }
        
        .price-input {
            display: flex;
            justify-content: space-between;
            margin-top: 30px;
        }
        
        .price-input div {
            width: 45%;
        }
        
        .price-input input {
            width: 100%;
            padding: 8px 15px;
            border: 1px solid #ddd;
            border-radius: var(--border-radius);
            font-size: 1rem;
        }
        
        .price-input span {
            font-size: 0.9rem;
            margin-top: 5px;
            display: block;
        }
        
        /* Products grid */
        .products-grid-container {
            flex: 1;
            min-width: 300px;
        }
        
        .products-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            background: white;
            padding: 15px 20px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        
        .sorting-options select {
            padding: 8px 15px;
            border: 1px solid #ddd;
            border-radius: var(--border-radius);
            font-size: 1rem;
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
        }
        
        .product-card {
            background: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: transform var(--transition-speed);
            position: relative;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
        }
        
        .product-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--accent-pink);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 500;
            z-index: 2;
        }
        
        .product-image {
            height: 200px;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
            background: linear-gradient(to bottom, #f8f4f4, #ffffff);
        }
        
        .product-image img {
            max-height: 100%;
            transition: transform var(--transition-speed);
        }
        
        .product-card:hover .product-image img {
            transform: scale(1.05);
        }
        
        .product-info {
            padding: 20px;
            border-top: 1px solid #eee;
        }
        
        
        .product-rating {
            color: #ffc107;
            margin-bottom: 10px;
        }
        
        .product-price {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .current-price {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--accent-purple);
            margin-right: 10px;
        }
        
        .old-price {
            font-size: 1rem;
            color: #999;
            text-decoration: line-through;
        }
        
        .add-to-cart {
            width: 100%;
            padding: 12px;
            background: var(--primary-gradient);
            color: white;
            border: none;
            border-radius: 10px;
            font-weight: 500;
            cursor: pointer;
            transition: all var(--transition-speed);
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .add-to-cart i {
            margin-right: 8px;
        }
        
        .add-to-cart:hover {
            opacity: 0.9;
            transform: translateY(-3px);
        }
        
            /* Pagination */
    .pagination {
        display: flex;
        justify-content: center;
        margin-top: 50px;
        gap: 10px;
        flex-wrap: wrap;
    }
            
        .pagination button {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: none;
            background: white;
            color: var(--text-dark);
            font-weight: 500;
            box-shadow: var(--shadow);
            cursor: pointer;
            transition: all var(--transition-speed);
        }
        
        .pagination button.active, .pagination button:hover {
            background: var(--accent-purple);
            color: white;
        }
        
        .pagination button:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }
        
        /* Loading placeholders */
        .loading-placeholder {
            background: #f0f0f0;
            background-image: linear-gradient(
                90deg,
                rgba(255, 255, 255, 0) 0,
                rgba(255, 255, 255, 0.2) 20%,
                rgba(255, 255, 255, 0.5) 60%,
                rgba(255, 255, 255, 0)
            );
            background-size: 200% 100%;
            animation: loadingShimmer 3.5s infinite;
            border-radius: 8px;
        }
        
        @keyframes loadingShimmer {
            0% {
                background-position: -1000px 0;
            }
            100% {
                background-position: 1000px 0;
            }
        }
        
        .product-card.loading {
            min-height: 350px;
        }
        
        .product-image.loading {
            height: 200px;
            width: 100%;
            background: #f0f0f0;
        }
        
        .product-info .loading {
            height: 20px;
            margin-bottom: 15px;
        }
        
        .product-info .loading:nth-child(1) {
            width: 80%;
        }
        
        .product-info .loading:nth-child(2) {
            width: 60%;
        }
        
        .product-info .loading:nth-child(3) {
            width: 40%;
            margin-bottom: 25px;
        }
        
        .product-info .loading:nth-child(4) {
            width: 100%;
            height: 40px;
            border-radius: 10px;
        }
        
        /* Footer */
        footer {
            background: #2a2a2a;
            color: white;
            padding: 70px 5% 30px;
            margin-top: 50px;
        }
        
        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }
        
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: white;
        }
        
        .footer-about p {
            margin-bottom: 20px;
            color: #bbb;
        }
        
        .social-icons {
            display: flex;
            gap: 15px;
        }
        
        .social-icon {
            width: 40px;
            height: 40px;
            color: #ffffff;
            border-radius: 50%;
            background: #444;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: background var(--transition-speed);
        }
        
        .social-icon:hover {
            background: var(--accent-pink);
        }
        
        .footer-links h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            position: relative;
        }
        
        .footer-links h3::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--accent-pink);
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links ul li {
            margin-bottom: 12px;
        }
        
        .footer-links ul li a {
            color: #bbb;
            text-decoration: none;
            transition: color var(--transition-speed);
        }
        
        .footer-links ul li a:hover {
            color: var(--accent-pink);
        }
        
        .footer-contact p {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            color: #bbb;
        }
        
        .footer-contact i {
            margin-right: 10px;
            color: var(--accent-pink);
            min-width: 20px;
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 50px;
            border-top: 1px solid #444;
            color: #bbb;
            font-size: 0.9rem;
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .products-page {
                flex-direction: column;
            }
            
            .filters-sidebar {
                width: 100%;
                margin-right: 0;
                margin-bottom: 30px;
            }
        }
        
        @media (max-width: 768px) {
            .products-header {
                flex-direction: column;
                gap: 15px;
                align-items: flex-start;
            }
            
            .products-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }
        }