body {
  margin: 0;
  font-family: "Cormorant Upright", serif;
  background: #fff;
}

/* LOGO */
.logo {
  font-family: "Italianno";
  font-size: 40px;
  color: white;
}

/* MAIN PRODUCT */
.product-page {
  display: flex;
  gap: 40px;
  padding: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

/* IMAGES */
.product-images {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
}

.main-img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
}

.thumbs {
  margin-top: 10px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.thumbs img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  cursor: pointer;
  border: 1px solid #ccc;
}

/* INFO */
.product-info {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
}

.price {
  font-size: 22px;
}

.original {
  text-decoration: line-through;
  color: gray;
  margin-right: 10px;
}

.discount {
  color: #e60000;
  font-weight: bold;
}

/* SIZES */
.size-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.size-buttons button {
  border: 1px solid #999;
  background: white;
  padding: 8px 14px;
  cursor: pointer;
}

.size-buttons button.active {
  background: black;
  color: white;
  border-color: black;
}

/* DELIVERY */
.delivery p {
  margin: 6px 0;
}

/* BUTTONS */
.actions {
  margin-top: 15px;
}

.actions button {
  padding: 12px 25px;
  border: none;
  background: black;
  color: white;
  cursor: pointer;
}

/* DESCRIPTION */
.description {
  padding: 30px;
}

/* REVIEWS */
.reviews {
  padding: 30px;
  background: #fff0f5;
}

.review-box {
  background: white;
  padding: 15px;
  margin-bottom: 10px;
}

.review-form input,
.review-form textarea {
  width: 100%;
  margin-bottom: 10px;
  padding: 10px;
}

#button-common {
  color: black;
  background-color: transparent;
  border: 1px solid black;
  padding: 10px 15px;
  display: inline-block;
  border-radius: 10px;
  width: fit-content;
}

/* STARS */
.star {
  font-size: 20px;
  cursor: pointer;
  opacity: 0.4;
}

.star.active {
  opacity: 1;
}

/* DELETE BUTTON */
.delete-btn {
  margin-top: 8px;
  background: #ff4d4d;
  border: none;
  color: white;
  padding: 5px 10px;
  cursor: pointer;
  border-radius: 4px;
}

/* ------------------ */
/* MOBILE RESPONSIVE  */
/* ------------------ */

@media (max-width: 768px) {

  .product-page {
    flex-direction: column;
    padding: 20px;
  }

  .product-images,
  .product-info {
    max-width: 100%;
  }

  .thumbs img {
    width: 60px;
    height: 60px;
  }

  .logo {
    font-size: 32px;
  }

  .price {
    font-size: 20px;
  }

}

/* EXTRA SMALL DEVICES */

@media (max-width: 480px) {

  .product-page {
    gap: 20px;
  }

  .thumbs img {
    width: 50px;
    height: 50px;
  }

  .actions button {
    width: 100%;
  }

}