.product-hero-container{
    background: #FAE0A6;
box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25) inset;
padding-top:2rem;
height: fit-content;
flex-shrink: 0;
text-align: center;
display: flex;
justify-content: space-between;
align-items: center;
text-align: center;

}

.hero-content-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.hero-text-container{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    align-self: stretch;
    
}
.hero-heading{
    display: flex;
align-items: flex-end;
gap: 0.5rem;
}
.stylish-heading{
    display: flex;
    padding: 0.5rem 1rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.625rem;
    height: 4.75rem;
align-self: stretch;
color: #FF391B;
font-family: Roboto;
font-size: 4.76875rem;
font-style: normal;
font-weight: 900;
line-height: normal;
}
.head-text{
    color: #000;
font-family: Roboto;
font-size: 1.953rem;
font-style: normal;
font-weight: 300;
line-height: normal;
text-transform: uppercase;
text-align: left;
}
.hero-body{
    align-self: stretch;
    color: #000;
font-family: Nunito;
font-size: 1rem;
font-style: normal;
font-weight: 400;
line-height: 1.5rem;
text-align: left;

}
.gradient-container {
    position: relative;
    
}

.gradient-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 25.5rem;
    height: 16.80713rem;
    flex-shrink: 0;
    /* background: linear-gradient(to bottom, #FFB03B, #FF635E); */
    background: linear-gradient(53deg, rgba(55, 174, 160, 0.70) 51.74%, rgba(55, 174, 160, 0.00) 100%);
    filter: blur(82.66331481933594px);
    background-repeat: no-repeat;
    opacity: 0.8;
}

.hero-image {
    position: relative;
    z-index: 1;
    display: block;
    max-width: 100%;
    height: auto;
    width: 25.5rem;
height: 16.80713rem;
flex-shrink: 0;
}
.product-list{
    /* display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 4rem;
    padding-bottom: 4rem;
    gap: 28px; */
    margin: 40px auto;
    max-width: 1200px;
    padding: 0 20px;
}
.section-header{
    /* color: #000;
font-family: Roboto;
font-size: 1.618rem;
font-style: normal;
font-weight: 400;
line-height: normal;
text-transform: uppercase; */
font-size: 24px;
margin-bottom: 20px;
}
.product-grid-container{
    /* display: inline-flex;
padding-bottom: 0px;
flex-direction: column;
align-items: flex-start;
gap: 1rem; */
display: flex;
flex-wrap: wrap;
justify-content: space-between;
margin: 0 -5px;
}
/*.product-row-container{
display: flex;
width:100%;
height: 21.01431rem;
align-items: flex-start;
gap: 1.125rem;
justify-content: space-between;
margin-bottom: 20px;
}*/
.product-row-container{
    display: flex;
    width: fit-content;
    height: 21.01431rem;
    align-items: flex-start;
    gap:1.125rem;
    align-content: stretch;
    /*justify-content: space-evenly;*/
    justify-content: space-between;
    margin: 0 -5px;

    flex-direction: row;
    flex-wrap: wrap;
}

.product{
    display: flex;
padding: 0.45181rem 0.90363rem;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 0.5rem;
/*width: fit-content;*/
width: calc(25% - 10px); 
margin: 0 5px; 
/*flex: 1 0 0;
/* align-self: stretch; */
flex: 0 0 calc(25% - 10px); /* Adjust the width for four products in a row */
margin: 0 5px;
border-radius: 0.5rem;
border: 1px solid #A08C89;
background: #FFF;
box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
.product-price{
    color: #998E8C;
text-align: center;
font-family: Roboto;
font-size: 0.90363rem;
font-style: normal;
font-weight: 500;
line-height: normal;
text-decoration: line-through;
margin-right: 8px;

}
.dicount-price{
    color: #090;
font-family: Roboto;
font-size: 1.25rem;
font-style: normal;
font-weight: 500;
line-height: normal;

}
.p-icons{
    display: flex;
justify-content: center;
align-items: center;
gap: 1rem;
align-self: stretch;
}
.product-name{
    color: #000;
text-align: center;
font-family: Nunito;
font-size: 0.75rem;
font-style: normal;
font-weight: 400;
line-height: normal;
align-self: stretch;
}
.buy-now-cta{
    display: flex;
width: fit-content;
padding: 0.5rem 1rem;
justify-content: center;
align-items: center;
border-radius: 3.125rem;
background: #009000;
box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
color: #FFF;
font-family: Roboto;
font-size: 0.875rem;
font-style: normal;
font-weight: 600;
line-height: normal;
}

/* Style for the "Add to Cart" button */    /* Style the add-to-cart button */
    .add-to-cart {
        background-color: transparent; /* Make the button background transparent */
        border: none; /* Remove button border */
        cursor: pointer;
        padding: 0; /* Remove any padding */
    }

    /* Style the Font Awesome icon within the button */
    .add-to-cart i {
        font-size: 24px; /* Adjust the icon size */
        color: #000; /* Set the icon color to black (you can change this to any color you prefer) */
    }
    @media (max-width: 768px) {
        .product {
            width: calc(50% - 10px); /* Adjust for smaller screens to fit 2 products */
        }
    }
    