
        /* Page Header */
        .page-header {
            background: linear-gradient(135deg, rgba(128, 0, 0, 0.9), rgba(92, 0, 0, 0.85)),
                        url('https://images.unsplash.com/photo-1610701596007-11502861dcfa?w=1920&q=80');
            background-size: cover;
            background-position: center;
            padding: 80px 0;
            color: var(--white);
            text-align: center;
        }

        .page-header h1 {
            font-size: 48px;
            margin-bottom: 15px;
        }

        .breadcrumb {
            display: flex;
            justify-content: center;
            gap: 10px;
            font-size: 16px;
        }

        .breadcrumb a {
            color: var(--accent-gold);
            text-decoration: none;
        }

        /* Filters */
        .filters-section {
            padding: 40px 0;
            background: var(--white);
            border-bottom: 1px solid var(--border-color);
        }

        .filters-container {
            display: flex;
            gap: 20px;
            align-items: center;
            flex-wrap: wrap;
            justify-content: space-between;
        }

        .filter-group {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .filter-btn {
            padding: 10px 20px;
            border: 2px solid var(--border-color);
            background: var(--white);
            color: var(--text-dark);
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 600;
            font-size: 14px;
            text-decoration: none;
        }

        .filter-btn:hover,
        .filter-btn.active {
            background: var(--primary-maroon);
            color: var(--accent-gold);
            border-color: var(--primary-maroon);
        }

        .sort-select {
            padding: 10px 20px;
            border: 2px solid var(--border-color);
            border-radius: 25px;
            background: var(--white);
            color: var(--text-dark);
            font-weight: 600;
            cursor: pointer;
        }

        /* Products Grid */
        .products-section {
            padding: 80px 0;
            background: var(--light-bg);
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }

        .product-card {
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px var(--shadow);
            border-color: var(--accent-gold);
        }

        .product-image {
            width: 100%;
            aspect-ratio: 1 / 1;
            position: relative;
            overflow: hidden;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
        }

        .product-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: var(--primary-maroon);
            color: var(--accent-gold);
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 700;
        }

        .product-wishlist {
            position: absolute;
            top: 15px;
            right: 15px;
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .product-wishlist:hover {
            background: var(--primary-maroon);
            color: var(--accent-gold);
        }

        .product-content {
            padding: 25px;
        }

        .product-category {
            color: var(--primary-maroon);
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            margin-bottom: 8px;
        }

        .product-card h3 {
            font-size: 20px;
            color: var(--text-dark);
            margin-bottom: 10px;
        }

        .product-card h3 a {
            color: var(--text-dark);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .product-card h3 a:hover {
            color: var(--primary-maroon);
        }

        .product-description {
            color: var(--text-light);
            margin-bottom: 15px;
            font-size: 14px;
            line-height: 1.6;
        }

        .product-rating {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 15px;
            font-size: 14px;
        }

        .product-stars {
            color: var(--accent-gold);
        }

        .product-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 20px;
            border-top: 2px solid var(--border-color);
        }

        .product-price {
            font-size: 28px;
            color: var(--primary-maroon);
            font-weight: 700;
        }

        .product-old-price {
            font-size: 16px;
            color: var(--text-light);
            text-decoration: line-through;
            margin-left: 10px;
        }

        .product-actions {
            display: flex;
            gap: 10px;
        }

        .product-btn {
            padding: 10px 20px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            font-size: 13px;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border: none;
            cursor: pointer;
        }

        .product-btn-primary {
            background: linear-gradient(135deg, var(--primary-maroon), var(--dark-maroon));
            color: var(--accent-gold);
        }

        .product-btn-primary:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 20px rgba(128, 0, 0, 0.3);
        }

        .product-btn-secondary {
            background: var(--success-green);
            color: var(--white);
        }

        .product-btn-secondary:hover {
            background: #20BA5A;
            transform: scale(1.05);
        }