.product-container {
  padding: 2rem;
}

.product-page {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
  margin-bottom: 3rem;
}

.product-left {
  flex: 1;
  text-align: center;
}

.product-left img.main-image {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
}

.product-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.qty-selector {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.action-buttons {
  gap: 1rem;
}

.related-products {
  margin-top: 3rem;
}

.related-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.related-card {
  background: #fff;
  padding: 1rem;
  border-radius: 10px;
  width: 180px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.related-card img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}
