.products-sec{
    width: 100%;
    padding-top: 2rem;
    padding-bottom: 1rem;
}

.products-inner{
    width: 90%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
    gap: 2rem;
    padding-top: 2rem;
}

.product{
    width: 95%;
    background-color: rgb(206, 145, 154, 0.2);
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    padding: 10px;
    border-radius: 5px;
    border-bottom-right-radius: 3rem;
    position: relative;
    z-index: 0;

}
.product-img-con{
    width: 100%;
    height: 13rem;
    border-radius: 5px;
    background-color: red;
    overflow: hidden;
}
.salts{
    height: 15rem;
}
.product-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-content{
    width: 100%;

}
.product-name{
    font-size: bold;
    font-size: 19px;
    text-align: center;
    padding-top: 5px;
    margin-top: 0;
}
.product-desc{
    text-align: center;
}
.product-desc span{
    font-weight: bold;
}
.price-title{
    padding-bottom: 0;
    margin-bottom: 0;
}
.price-con{
    display: flex;
    flex-direction: row;
    gap: 1rem;
    justify-content: center;
    margin-top: 0;
    padding-top: 0;
}
.price-con p{
    padding-top: 0;
    margin-top: 0;
    font-size: 18px;
    color: rgb(190, 110, 122);
    font-weight: bold;
}
.price-con span{
    color: black;
    font-size: 14px;
}
.main-button{
    width: 100%;
    padding-top: 8px;
    padding-bottom: 8px;
    border: none;
    background-color: rgb(206, 145, 154);
    border-top-left-radius: 2rem;
    border-bottom-right-radius: 2rem;
}

.button-size{
    margin: 0 auto;
    border: none;
    background-color: rgb(206, 145, 154);
    display: flex;
    width: 90%;
    border-bottom: solid 1px white;
    text-align: center;
    margin-top: 2px;
}