/*top*/
.home-section {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 15vw;
}
/* Featured Products */
.featured {
    padding: 60px;
    border-bottom: 2px solid #d98b8f;

}
.product-grid {
    display: flex;
    justify-content: center;
}
.featuredName {
    display: flex;
    justify-content: center;
    position: relative;
    /* left:17vw; */
}

.product-grid {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

/* About */
.about {
    display: flex;
    justify-content: space-between;
    padding: 60px;
}

.about-left {
    width: 60%;
}

/* .product-image{
    width: 250px;
    height: 250px;
    border-radius: 4px;
} */

.product-image {
    width: 100%;
    max-width: 250px;
    height: auto;
    display: block; /*May get cut off*/
    margin: 0 auto; /*May get cut off*/
    aspect-ratio: 1 / 1; /*May get cut off*/
    border: 2px solid #d98b8f;
    border-radius: 4px;
}

@media (max-width: 920px) { 
    .about-left {
        gap: 20px;
    }
}