/* .product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 12px;
    gap: 8px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}

.product-content {
    flex: 1;
}

.product-card .btn {
    margin-top: auto;
}

.product-img {
    height: 180px;
    margin-bottom: 24px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
} */

.product-card {
    box-shadow: 0 1px 4px 0px rgba(0, 0, 0, 0.25);
    padding: 12px;
    border-radius: 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 8px;
    background-color: white;
}

.product-card .product-img {
    margin-bottom: 24px;
    min-height: 180px;
    background-image: url("../images/template_product.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.product-card .product-content {
    margin-bottom: 10px;
}

.product-card .btn {
    width: 100%;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.pagination-container {
    margin-bottom: 0;
}
