@charset "UTF-8";
.product-grid {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #e0e0e0;
    padding: 15px;
    box-sizing: border-box;
    background: #fff;
    border-radius: 10px;
    transition: box-shadow 0.3s;
}

.product-grid:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.product-img {
    height: 200px; /* Fixed height for uniformity */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 15px;
    background-color:white !important;
}

.product-img img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

/*.product-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex-grow: 1;
}

.product-title {
    font-size: 16px;
    font-weight: 600;
    min-height: 48px;*/ /* Space for up to 2 lines of text */
    /*overflow: hidden;
    margin: 10px 0;
}*/

/*.price {
    font-size: 14px;
    color: #444;
}

.actions {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.icon-btn {
    background: #f5f5f5;
    border: none;
    border-radius: 50%;*/
    /*padding: 8px;*/
    /*cursor: pointer;
    transition: background 0.3s;
}

.icon-btn:hover {
    background: #e0e0e0;
}*/

