
:root {
  --bggradient: linear-gradient(to bottom, #9FBFAA,#08845B);
  --mainheading : 45px;
  --para : 14px;
  --subheading : 18px;
  --maincolor : #08845B;
  --maincolor2 :#9FBFAA;
  --color8 : rgba(0,0,0,0.8);
  --color6 : rgba(0,0,0,0.6);
  --color5 : rgba(0,0,0,0.5);
  --color2 : rgba(0,0,0,0.2);
  --color1 : rgba(0,0,0,0.1);
  --lightbg :#F7F7F7;
  --offwhitebg:#F8F5F0;
  --maincolor3:#ddf3e5;
  --boxs1 : 0 0 10px rgba(0,0,0,0.1);
  --boxs2 : 0 0 10px rgba(0,0,0,0.2);
}
.product-card{
    margin: 20px auto;
    background: #fff;
    border-radius: 10px;
    transition: .5s;
    position:relative;
}
.product-card:hover{
    transform: translate3d(0,-5px,0);
    box-shadow: 0 0 15px rgba(0,0,0,0.15);
}
.product-card a{
    text-decoration: none;
}
.product-image{
    width: 100%;
    height:250px;
}
.product-image img{
    width: 100%;
    height:100%;
    object-fit: cover;
}
.card-deets{
    padding: 10px 0;
/*    border: 1px solid var(--maincolor2);
    border-width: 0 1px 0 1px;
    width: calc(100% - 2px);*/
}
.prodname p{
    font-size: 18px;
    color: var(--color8);
    font-weight: 500;
}
.ingshead p{
    font-size: 14px;
    color: var(--maincolor);
    font-weight: 500;
}
.indeets p{
    font-size: 14px;
    color: var(--color8);
    font-weight: 400;
}
.ingscard{
    margin: 10px auto;
}
.pcprice {
    display: flex;
    align-items: flex-end;
}
.mp{
    font-size: 16px;
    color: var(--color8);
    font-weight: 600;
    margin-right: 10px;
}
.oldp{
    font-size: 14px;
    color: var(--color6);
    font-weight: 500;
    margin-right: 10px;
    text-decoration: line-through;
}
.disc{
    display: block;
    width: max-content;
    padding: 3px 10px;
    font-size: 12px;
    color: #fff;
    background: var(--maincolor);
    border-radius: 3px;
}
.addbuttons{
    margin-top: 10px;
}
.buttns{
    padding: 10px 0;
}
.buttns{
    font-size: 14px;
    font-weight: 500;
}
.buynow{
    background: var(--maincolor);
}
.buynow p{
    color: #fff;
}

.tocart{
    background: var(--maincolor2);
}
.tocart p{
    color: #fff;
}

.product-card .prodname p{
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    overflow: hidden;
}
.longCard .prodimg{
    width: 30%;
    float: left;
}
.longCard .cboxm{
    width: 70%;
    float: left;
    display: flex;
    flex-wrap: wrap;
}
.longCard a{
    display: flex;
    flex-wrap: wrap;
}
.longCard .addbuttons{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
}
@media only screen and (max-width: 900px){
    .prodname p{
        font-size:14px;
    }
    .product-card .disc{
        position:absolute;
        top:0;
        right:0;
    }
    .product-card .addbuttons .w50{
        width:50%;
    }
}