        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            background: #fff;
            color: #333;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        
        /* Page Header */
        .page-header {
             background:
            linear-gradient(135deg, rgba(26,26,46,0.9), rgba(26,26,46,0.7)),
            url("../assets/banner1.webp");
            background-size: cover;
            background-position: center;
            padding: 120px 0 80px;
            text-align: center;
            color: white;
        }
        
        .page-header h1 {
            font-size: 3rem;
            font-family: 'Playfair Display', serif;
            margin: 20px 0;
        }
        
        .section-label {
            color: #c9a961;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
        }
        
        /* Filter Section */
        .filter-section {
            background: #f9f9f9;
            padding: 30px 0;
            border-bottom: 1px solid #e5e5e5;
        }
        
        .filter-buttons {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            justify-content: center;
        }
        
        .filter-btn {
            padding: 12px 30px;
            background: white;
            color: #1a1a2e;
            border: 2px solid #e5e5e5;
            border-radius: 8px;
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            font-size: 0.9375rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        
        .filter-btn:hover,
        .filter-btn.active {
            background: linear-gradient(135deg, #c9a961, #d4af37);
            color: white;
            border-color: #c9a961;
            transform: translateY(-2px);
        }
        
        /* Products Grid */
        .products-section {
            padding: 80px 0;
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .product-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 40px rgba(0,0,0,0.15);
        }
        
        .product-image {
            position: relative;
            overflow: hidden;
            padding-top: 100%;
        }
        
        .product-image img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .product-card:hover .product-image img {
            transform: scale(1.1);
        }
        
        .product-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(201, 169, 97, 0.9);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .product-card:hover .product-overlay {
            opacity: 1;
        }
        
        .view-btn {
            padding: 12px 25px;
            background: white;
            color: #c9a961;
            text-decoration: none;
            border-radius: 6px;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
        }
        
        .view-btn:hover {
            background: #1a1a2e;
            color: white;
        }
        
        .product-info {
            padding: 20px;
        }
        
        .product-category {
            display: inline-block;
            padding: 5px 12px;
            background: rgba(201, 169, 97, 0.1);
            color: #c9a961;
            border-radius: 4px;
            font-size: 0.8125rem;
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        .product-info h3 {
            font-size: 1.125rem;
            margin-bottom: 8px;
            color: #1a1a2e;
        }
        
        .product-info p {
            color: #666;
            font-size: 0.875rem;
            line-height: 1.6;
        }
        
        /* Empty State */
        .empty-state {
            text-align: center;
            padding: 80px 20px;
        }
        
        .empty-state i {
            font-size: 5rem;
            color: #ddd;
            margin-bottom: 20px;
        }
        
        .empty-state h3 {
            color: #666;
            margin-bottom: 10px;
        }
        
        .empty-state p {
            color: #999;
        }
        
