body {
    font-family: "Montserrat", "Roboto", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f9f9f9;
}
.product-items-container {
    width: 100%;
    overflow: hidden;
    /* margin-top: 3rem; */
    position: relative;
    text-align: center;
}

.product-item-title{
    color: black;
}
.product-items-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background-color: #ededed;
    padding: 20px;
}
.product-item-card {
    flex: 1 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    box-sizing: border-box;
    border-right: 1px solid gainsboro;
}


.item-card {
    width: 100%;
    height: 242px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    border-radius: 8px;
}

.item-title-wrapper {
    display: flex;
    align-items: flex-start;  /* Yeh ensure karega ke sab titles top se align hon */
    justify-content: center;
   
    width: 100%;
    text-align: center;
}

.product-item-title {
    font-size: 0.9rem;
    color: #333;
    text-align: center;
    word-wrap: break-word;
}

.product-item-card img {
    width: 100%;
    max-width: 200px;
    height: 150px;
    object-fit: contain;
}


/* Responsive Styles */
@media (min-width: 1024px) {
    .product-item-card {
        flex: 0 0 20%;
    }
}
@media (min-width: 768px) and (max-width: 1023px) {
    .product-item-card {
        flex: 0 0 50%;
    }
}
@media (max-width: 767px) {
    .product-item-card {
        flex: 0 0 100%;
    }
}

/* Style for initially hidden cards */
.product-item-card.hidden {
    display: none;
}

/* Style for the "See More" button */
.see-more-button {
    background-color: #003b4d;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 1.5rem;
}