.product-item{
  width: 100%;
  padding: 10% 5%;
}

.product-item-display{
  display: flex;
  justify-content: space-between;
  width: 100%;
  overflow: hidden;
  margin: auto;
  padding: 0 5%;
}

/* IMAGE */
.product-item-img{
  width: 600px;
  border: 1px solid rgba(0, 0, 0, 0.115);
  border-radius: 35px;
  overflow: hidden;
}
.product-item-img img{
  width:100%;
  margin-bottom: -5px;
}

/* DESCRIPTION */
.product-item-description{
  width: 450px;
}

.product-item-description h1{
  font-family: "Oswald", sans-serif;
  font-size: 55px;
  margin: 0;
  color: #ff4d88;
}

.product-item-description p{
  font-family: "Oswald", sans-serif;
  font-size: 17px;
  color: #555;
  padding-right: 55px;
  line-height: 1.7;
  margin-bottom: 50px;
}

.product-item-description span{
  font-family: "Oswald", sans-serif;
  margin: 0;
  color: #ff4d8878;
  border-bottom: 1px solid #ff4d8882;
}

.product-item-description h2{
  font-family: "Oswald", sans-serif;
  font-size: 35px;
  margin: 0;
  color: #555555a3;
}

.product-item-description a{
  padding: 8px 30px;
  background-color: #ff4d88;
  margin-top: 20px;
  text-decoration: none;
  font-family: "Oswald", sans-serif;
  border-radius: 20px;
  color: white;
}

/* ========================= */
/* 📱 MOBILE RESPONSIVE */
/* ========================= */

@media (max-width: 768px){

  .product-item{
    margin-top: 80px;
  }
  
  .product-item-display{
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .product-item-img{
    width: 100%;
  }

  .product-item-description{
    width: 100%;
    text-align: center;
  }

  .product-item-description h1{
    font-size: 32px;
  }

  .product-item-description h2{
    font-size: 24px;
  }

  .product-item-description p{
    font-size: 14px;
    padding-right: 0;
    margin-bottom: 10px;
  }

  .product-item-description a{
    display: inline-block;
  }
}
@media (min-width: 769px) and (max-width: 1024px){
  .product-item{
    margin-top: 80px;
    
  }
  .product-item-display{
    gap: 30px;
  }
}