/* ======================================
   PRODUCT PAGE — GameBoard Store
   Theme: White + Orange
   ====================================== */

body {
  font-family: "Poppins", sans-serif;
  background: #f5f6fa;
  margin: 0;
  color: #333;
}

.breadcrumb {
  padding: 20px;
  font-size: 14px;
}
.breadcrumb a {
  color: #ff7b00;
  text-decoration: none;
}
.breadcrumb span {
  color: #777;
}

.product-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 20px 40px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  margin: 20px auto;
  max-width: 1100px;
}

.product-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 12px;
}

.product-details h1 {
  font-size: 26px;
  margin-bottom: 10px;
}

.category span {
  color: #ff7b00;
  font-weight: 500;
}

.price-box {
  margin: 15px 0;
  font-size: 22px;
}
.new-price {
  color: #ff7b00;
  font-weight: 700;
  margin-right: 10px;
}
.old-price {
  text-decoration: line-through;
  color: #888;
  margin-right: 10px;
}
.save {
  background: #ffefcc;
  color: #ff7b00;
  font-size: 14px;
  padding: 4px 8px;
  border-radius: 6px;
}

.short-desc {
  margin: 15px 0;
  line-height: 1.6;
  font-size: 15px;
}

.action-buttons {
  display: flex;
  gap: 10px;
}
.add-cart-btn,
.buy-now-btn {
  border: none;
  padding: 12px 16px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}
.add-cart-btn {
  background: #fff;
  color: #ff7b00;
  border: 2px solid #ff7b00;
}
.add-cart-btn:hover {
  background: #ff7b00;
  color: #fff;
}
.buy-now-btn {
  background: #ff7b00;
  color: #fff;
}
.buy-now-btn:hover {
  background: #ff9500;
}

/* Related Section */
.related {
  margin: 40px auto;
  max-width: 1100px;
  padding: 0 40px;
}
.related h2 {
  color: #333;
  margin-bottom: 20px;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}
.related-card {
  background: #fff;
  text-decoration: none;
  color: #333;
  border-radius: 12px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.08);
  transition: 0.3s;
}
.related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.12);
}
.related-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
}

/* Responsive */
@media (max-width: 850px) {
  .product-main {
    grid-template-columns: 1fr;
  }
}
