/* Product.css */

/*.product-tab {
  font-family: "Poppins", sans-serif;
  padding: 1rem;
  background: #fff8f0; /* Light warm background for menu feel 
  border-radius: 12px;
  margin: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
}
*/
.product-tab {
  font-family: "Poppins", sans-serif;
  padding: 1rem;
  border-radius: 12px;
  color: #fff;
  background-color: #000;
  text-align: center;
}
/* === Banner === */
.product-banner {
  position: relative;
  overflow: hidden;
  filter: brightness(1.4);
}

.product-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.productHead-title {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: #d4a14a;
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
}

.product-title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ff5722;
  margin-bottom: 1rem;
  font-family: "Segoe UI", sans-serif;
  letter-spacing: 1px;
}

.product-menu {
  display: flex;
  overflow-x: auto;
  gap: 1rem;
  padding-bottom: 0.5rem;
  justify-content: flex-start;
}
/* Center content only when there's enough space (on wider screens) */
@media (min-width: 768px) {
  .product-menu {
    justify-content: center;
  }
}

.product-card {
  min-width: 200px;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 10px #fff(0, 0, 0, 0.1);
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px #d4a14a(0, 0, 0, 0.15);
}

.product-img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.product-info {
  padding: 0.8rem;
  text-align: center;
}

.product-info h3 {
  font-size: 1rem;
  color: #333;
  margin-bottom: 0.3rem;
}

.product-info p {
  font-size: 0.85rem;
  color: #d4a14a;
}
