body {
  background-color: rgb(253, 245, 234);
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.container {
  display: flex;
  max-width: 600px;
  border-radius: 10px;
  overflow: hidden;
  background-color: white;
}

.left-section {
  flex: 1;
}
.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.right-section {
  flex: 1;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.perfume {
  font-size: 10px;
  color: rgb(153, 153, 153);
  letter-spacing: 2px;
}
h1 {
  font-size: 24px;
  line-height: 28px;
  margin-bottom: 20px;
}
.info {
  font-size: 13px;
  line-height: 18px;
  color: rgb(146, 146, 146);
  margin-bottom: 20px;
}
.new-price {
  font-size: 35px;
  color: green;
  font-weight: bold;
}
.old-price {
  text-decoration: line-through;
  font-size: 14px;
  color: grey;
}



.add-to-cart-button {
  background-color: rgb(35, 122, 35);
  border: none;
  color: white;
  border-radius: 5px;
  padding: 10px 0;
  cursor: pointer;
  width: 100%;
  font-weight: bold;
}

.prices {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 15px;
}


@media (max-width: 600px) {
  body {
    height: auto;
    padding: 20px 0;
  }
  .container {
    flex-direction: column;
    max-width: 90%;
  }

  .left-section {
    width: 100%;
    height: auto;
  }

  .product-image {
    width: 100%;
    height: auto;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }

  .right-section {
    width: 90%;
    padding: 20px;
    border-radius: 0 0 10px 10px;
  }
}
