@import url("stylesheet.css");
body{
    background-color: #EAEAEA;
    font-family : 'Axiforma', sans-serif;
    font-size : 14px;
    color: #2D2D2D;
    }
.form-control{
    width: 350px ;
}
.image-category{
    width: 50px;
}
.image-category:hover{
    transform: scale(1,2);
}
.row-container{
    background-color: #FFF;
    margin: 0px;
}
.card:hover{
    border: 2px solid #2D2D2D;
}
section{
    padding-top: 5rem;
}
/* Add your existing CSS styles for the product cards */
.product-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.product-card {
    background-color: #FFF;
    margin: 0px;
}

.product-card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; 
    gap: 25px;
}

.product-card {
    width: 220px;
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.product-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.product-image-container {
    position: relative;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 150;
}

.hover-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 8px;
    display: flex;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.product-image-container:hover .hover-overlay {
    opacity: 1;
}

.ar-button,
.buy-button {
    color: #fff;
    background-color: #007bff;
    border: none;
    border-radius: 4px;
    padding: 6px 10px;
    cursor: pointer;
    margin: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.ar-button:hover,
.buy-button:hover {
    background-color: #0056b3;
}
.product-card:hover{
    border: 2px solid #2D2D2D;
}
.container{
    padding-top: 5 rem;
}
.row-product{
    background-color: #fff;
    margin: 0;
    padding: 5px;
    padding-top: 16px;
}
.garis-product{
    border-bottom: 2px solid #2D2D2D;
    margin-top: 10px;
    margin-bottom: 25px;
}
.deskripsi{
    height: 250px;
    overflow: scroll;
    overflow-x: hidden;
}