*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.product-menu{
    padding: 0;
    display: grid;
    grid-template-columns: repeat( auto-fit, minmax(400px,1fr));
    grid-gap: 20px 40px;

}
.product-heading{
    background-color: var(--hover);
    color: #ffffff;
    margin-bottom: 30px;
    padding: 120px 0 30px 0;
    grid-column: 1/-1;
    text-align: center;
}
.product-heading>h1{
    font-weight: 400;
    font-size: 30px;
    letter-spacing: 10px;
    margin-bottom: 10px;
}
.product-heading>h3{
    font-weight: 600;
    font-size: 22px;
    letter-spacing: 5px;
}
.food-items{
    display: grid;
    position: relative;
    grid-template-rows: auto 1fr;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    margin: 0 20px;
    margin-bottom: 30px;

}
.food-items img{
    position: relative;
    width: 100%;
    border-radius: 15px 15px 0 0;
}

.cocktail-details{
    padding: 20px 10px;
    display: grid;
    grid-template-rows: auto 1fr 50px;
    grid-row-gap: 15px;
}
.cocktail-details-sub{
    display: grid;
    grid-template-columns: auto auto;
}
.cocktail-details-sub>h5{
    font-weight: 600;
    font-size: 18px;
}
.price{
    text-align: right;
}
.cocktail-details>p{
    color: #6f6f6f;
    font-size: 15px;
    line-height: 28px;
    font-weight: 400;
    align-self: stretch;
    overflow: hidden;
}
.details-button{
    background-color: var(--primary);
    border: none;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    width: 180px;
    height: 70px;
}

.product-link {
  background-color: var(--primary);
  border: none;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 5px;
  width: 180px;
  float: right;
  height: 70px;
  text-align:center;
  padding-top: 27px;
}

.product-link:hover {
  color: #fff;
}

.product-checkbox {
  width: 120px;

}

.product-form:nth-child(2){
  float: right;
}
