/* GRID LAYOUT */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

/* PRODUCT CARD */
.product-card {
    background: #fff;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    /*box-shadow: 0 2px 8px rgba(0,0,0,0.08);*/
}

/* IMAGE WRAPPER � UNIFORM HEIGHT */
.productImgWrapper {
    width: 100%;
    height: 260px; /* adjust if needed */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /*background: #fafafa;*/
    border-radius: 6px;
}

/* IMAGE � FULLY VISIBLE, NO CROPPING */
.productImg {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.productImgWrapper:hover .productImg {
    transform: scale(1.1); /* 10% zoom */
}

/* PRODUCT INFO */
.product-title {
    font-size: large;
    line-height: 1.2em;
    height: 4.5em;
    margin: 15px 0 0px;
}

.product-price {
    /*font-size: 20px;
    font-weight: bold;
    margin-bottom: 8px;*/
    font-weight: bold;
    font-size: x-large;
    margin-top: auto !important;
    margin-top: auto !important;
}

/* BUTTON */
.addToCartBtn {
    border: none;
    padding: 10px 18px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: 0.2s;
    background-color: antiquewhite;
    padding: 10px;
    margin: 20px;
    font-weight: bold;
    width: 80%;
}


.addToCartBtn:hover {
    background: #e73370;
    color: white;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}