
      * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #0052CC;
            --primary-dark: #003B99;
            --accent: #F8F9FA;
            --accent-light: #FFB347;
            --bg-dark: #0F1419;
            --bg-light: #1A1F2E;
            --surface: #262E3F;
            --text-primary: #F8F9FA;
            --text-secondary: #B8C1CC;
            --border: #404854;
            --success: #2EA043;
            --coming-soon: #6B7280;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
            background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-light) 100%);
            color: var(--text-primary);
            line-height: 1.6;
            min-height: 100vh;
        }

        .containers {
            max-width: 1400px;
            margin: 0 auto;
            margin-top: 50px;
            padding: 0 20px;
        }



/* Container jahan image rahegi */
.product-image {
    width: 100%;
    height: 350px; /* Height aapne badhane ko kaha tha */
    /* background: #ffffff; Safed background taaki 'contain' mode mein sides buri na lagein */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid var(--border);
}

/* Image rules */
.product-image img {
    width: 100%;
    height: 100%;
    /* 'contain' se poori image box ke andar dikhegi, kategi nahi */
    object-fit: contain; 
    /* Agar image ke piche koi purana text ya background hai toh white background use karein */
    /* background-color: #ffffff;  */
    transition: transform 0.4s ease;
    display: block;
}

        /* ==================== HEADER ==================== */
        /* header {
            background: linear-gradient(135deg, rgba(0, 52, 204, 0.1), rgba(255, 107, 53, 0.1));
            border-bottom: 1px solid var(--border);
            padding: 60px 0 40px;
            margin-bottom: 60px;
            position: relative;
            overflow: hidden;
        } */

        header::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
            pointer-events: none;
        }

        header h1 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 15px;
            background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            z-index: 1;
        }

        header p {
            font-size: 1.2rem;
            color: var(--text-secondary);
            position: relative;
            z-index: 1;
        }

        /* ==================== FILTER SECTION ==================== */
        .filter-section {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 30px;
            margin-bottom: 50px;
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            align-items: flex-end;
        }

        .filter-group {
            flex: 1;
            min-width: 200px;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .filter-group label {
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: var(--text-secondary);
        }

        .filter-group select {
            padding: 12px 16px;
            border: 1px solid var(--border);
            border-radius: 8px;
            background: var(--bg-light);
            color: var(--text-primary);
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23B8C1CC' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 12px center;
            padding-right: 36px;
        }

        .filter-group select:hover,
        .filter-group select:focus {
            border-color: var(--primary);
            outline: none;
            box-shadow: 0 0 0 3px rgba(0, 52, 204, 0.1);
        }

        .btn-reset {
            padding: 12px 24px;
            background: var(--coming-soon);
            color: white;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }

        .btn-reset:hover {
            background: #5a6370;
            transform: translateY(-2px);
        }

        /* ==================== PRODUCTS SECTION ==================== */
        .products-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 40px;
            flex-wrap: wrap;
            gap: 20px;
        }

        .products-count {
            font-size: 1.1rem;
            color: var(--text-secondary);
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }


        

        /* ==================== PRODUCT CARD ==================== */
        /* .product-card {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            display: flex;
            flex-direction: column;
            height: 100%;
            cursor: pointer;
        }

        .product-card:hover {
            transform: translateY(-8px);
            border-color: var(--primary);
            box-shadow: 0 20px 40px rgba(0, 52, 204, 0.2);
        }

        .product-image {
            width: 100%;
            height: 250px;
            background: linear-gradient(135deg, rgba(0, 52, 204, 0.1), rgba(255, 107, 53, 0.1));
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            position: relative;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        } */





/* Product Card ka main container */
.product-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Sab kuch left se shuru hoga */
    text-align: left;        /* Text left aligned rahega */
    padding: 20px;
    background: var(--surface);
    border-radius: 12px;
    height: 100%;
}

/* Product Title */
.product-card h2 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--text-primary);
    line-height: 1.3;
    font-weight: 600;
}

/* Product Description (Readability ke liye sabse zaruri) */
.product-card p, .product-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;        /* Lines ke beech mein space */
    text-align: left;     /* Dono taraf se barabar dikhega */
    margin-top: auto;        /* Description ko niche set karega */
}


        .product-card:hover .product-image img {
            transform: scale(1.05);
        }

        .product-info {
            padding: 24px;
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .product-category {
            /* margin-top: 50px; */
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--accent);
        }



        .product-name {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--text-primary);
            line-height: 1.3;
        }

         .product-subcategory {
            font-size: 0.9rem;
            color: var(--text-secondary);
            margin-bottom: 8px;
        } 

 

 

        .product-description {
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.5;
            flex: 1;
            overflow: hidden;
            display: -webkit-box;
            /* -webkit-line-clamp: 3; */
            -webkit-box-orient: vertical;
            margin-bottom: 12px;
            text-align: justify;

        }



        .product-actions {
            display: flex;
            gap: 10px;
            margin-top: auto;
        }

        .btn-primary {
            flex: 1;
            padding: 12px 16px;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            text-align: center;
            font-size: 0.95rem;
        }

        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(0, 52, 204, 0.3);
        }

        .badge-coming-soon {
            flex: 1;
            padding: 12px 16px;
            background: var(--coming-soon);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            text-align: center;
            cursor: not-allowed;
            font-size: 0.95rem;
            opacity: 0.7;
        }

        /* ==================== NO PRODUCTS ==================== */
        .no-products {
            grid-column: 1 / -1;
            text-align: center;
            padding: 60px 20px;
        }

        .no-products h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: var(--text-secondary);
        }

        /* ==================== LOADING STATE ==================== */
        .loading {
            text-align: center;
            padding: 40px;
            color: var(--text-secondary);
        }

        .spinner {
            display: inline-block;
            width: 40px;
            height: 40px;
            border: 4px solid var(--border);
            border-top-color: var(--primary);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        

        /* ==================== RESPONSIVE ==================== */
        @media (max-width: 768px) {
           

            .filter-section {
                flex-direction: column;
            }

            .filter-group {
                width: 100%;
            }

            .products-grid {
                grid-template-columns: 1fr;
            }

            .products-header {
                flex-direction: column;
                align-items: flex-start;
            }
        }