body {
    font-family: 'Roboto', sans-serif;
    background-color: #fff;
    color: #333;
}

h1 {
    font-weight: 700;
    color: #000;
}

/* Customize Bootstrap's Components */
.btn-outline-secondary {
    border-color: #000;
    color: #000;
}

.btn-outline-secondary:hover {
    background-color: #000;
    color: #fff;
}

.form-control {
    border-color: #000;
    color: #333;
}

.form-control:focus {
    border-color: #000;
    box-shadow: none;
}


/* Product Grid Layout */
.product-grid {
    padding: 15px;
    border: 1px solid #e1e1e1;
    border-radius: 5px;
    background-color: #fff;
    margin: 10px; /* Spacing between items */
}

.product-grid .product-image {
    position: relative;
    overflow: hidden;
    height: 200px; /* Fixed height for uniformity */
    text-align: center; /* Center the image */
}

.product-grid .product-image img {
    width: auto;
    height: 100%;
    max-width: 100%;
    transition: all .3s ease 0s;
}

.product-grid:hover .product-image img {
    transform: scale(1.1);
}

.product-grid .product-new-label {
    background-color: #333;
    color: #fff;
    font-size: .9em;
    padding: 2px 10px;
    position: absolute;
    top: 10px;
    right: 10px;
    text-transform: uppercase;
}

.product-grid .product-content {
    padding: 12px 10px;
}

.product-grid .title {
    font-size: 1.1em;
    color: #333;
    margin-bottom: 5px;
}

.product-grid .price {
    color: #333;
    font-size: 1.5em;
    font-weight: 700;
    margin-bottom: 0;
}

.product-grid .add-to-cart {
    color: #333;
    font-size: 0.9em;
    font-weight: 700;
    text-align: center;
    display: block;
    margin-top: 8px;
}

/* Responsive Grid breakpoints */
@media only screen and (max-width: 600px) {
    .product-grid .product-image {
        height: auto;
    }
}

@media only screen and (min-width: 600px) {
    .product-grid .product-image {
        height: 250px;
    }
}


.suggest {
    border: solid 1px #000;
}