.fixed-img{
    height: 310px;
    overflow: hidden;
    border-radius: 10px;
}
.fixed-img img{
    width: 100%;
    object-fit: cover;
    padding: 8px;
}



/* css for products  */

.category-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2px;
        }

        .category-item {
            text-align: center;
            flex: 1 1 300px;
        }

        .category-item img {
            width: 100%;
            height: auto;
            max-width: 300px;
            cursor: pointer;
            transition: transform 0.3s ease;
            padding: 10px 0;
        }

        .category-item img:hover {
            transform: scale(1.05);
        }

        .category-item h5 {
            margin-top: 10px;
            cursor: pointer;
            padding: 5px;
            color:#717275 ;
            border-radius: 5px;
            transition: background-color 0.3s ease;

        }

        .category-item h5:hover {
            background-color: #36363e;
            color: #ffffff;
        }
        /* New active state styling */
        .active-category {
            background-color: #36363e; /* A prominent blue */
            color: #ffffff !important; /* White text for contrast */
            border-radius: 5px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }


        