.product-view {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      padding: 3rem 1rem;
      justify-content: center;
    }

    .product-image {
      flex: 1;
      min-width: 280px;
      max-width: 500px;
    }

    .product-image img {
      width: 100%;
      border-radius: 8px;
    }

    .product-details {
      flex: 1;
      min-width: 280px;
      max-width: 500px;
    }

    .product-details h2 {
      font-size: 2rem;
      margin-bottom: 0.5rem;
    }

    .product-details .price {
      font-weight: bold;
      font-size: 1.3rem;
      margin: 0.5rem 0;
    }

    .size-options select {
      padding: 0.5rem;
      font-size: 1rem;
      margin-top: 1rem;
    }

    .add-cart-buttons {
      margin: 1rem 0;
    }

    .add-cart-buttons button {
      background: black;
      color: white;
      padding: 0.75rem 1.5rem;
      margin-right: 0.5rem;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      font-weight: bold;
    }

    .love-button {
      background: transparent;
      border: 1px solid #ccc;
      color: #333;
    }

    .info-block {
      margin-top: 1.5rem;
      line-height: 1.6;
    }

    .info-block strong {
      display: block;
      margin-top: 1rem;
    }

    .recommendations {
      padding: 2rem 1rem;
      background: #fafafa;
    }

    .recommendations h3 {
      text-align: center;
      margin-bottom: 1.5rem;
    }

    .recommend-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
      gap: 1rem;
      max-width: 1000px;
      margin: 0 auto;
    }

    .recommend-grid div {
      background: white;
      padding: 0.5rem;
      border-radius: 6px;
      text-align: center;
    }

    .recommend-grid img {
      width: 100%;
      border-radius: 6px;
    }

    .reviews-section {
  padding: 2rem 1rem;
  max-width: 800px;
  margin: 0 auto;
  box-sizing: border-box;
  width: 100%;
}

.review {
  background: #fafafa;
  border-left: 4px solid black;
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 4px;
  box-sizing: border-box;
  width: 100%;
  word-wrap: break-word;
}

.review p {
  margin-top: 0.5rem;
  font-style: italic;
}

.stars {
  color: gold;
  font-size: 1.2rem;
}

.review-form {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  box-sizing: border-box;
}

.review-form input,
.review-form textarea,
.review-form select {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  appearance: none;
  background-color: white;
  
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 0.6em;
}

.review-form select:focus {
  outline: none;
  border-color: black;
}

.review-form button {
  width: fit-content;
  background: black;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
}

