/* Basic product page styles - extend style.css */
.product-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  max-width: 1200px;
  margin: 20px auto;
  padding: 20px;
}

.product-left {
  display: flex;
  flex-direction: column;
}

.thumbnails {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.thumbnails img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  cursor: pointer;
  border-radius: 4px;
}

.main-image img {
  width: 400px;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
}

.product-center {
  padding: 20px;
}

.rating {
  color: #ffa500;
  font-weight: bold;
}

.price {
  font-size: 24px;
  font-weight: bold;
  color: #b12704;
}

.product-right {
  background: #f7f7f7;
  padding: 20px;
  border-radius: 8px;
  height: 400px;
}

#addCartBtn {
  width: 100%;
  height: 40px;
  background: #ffd814;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  margin-bottom: 10px;
  cursor: pointer;
}

.buy-now {
  width: 100%;
  height: 40px;
  background: #ff9900;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .product-container {
    grid-template-columns: 1fr;
  }
}
