/* products.css */
.product-page {
  padding-bottom: 80px;
  background-color: #fcfcfc;
}

.product-hero {
  /* background: #1a1a1a; */
  background:
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("https://images.pexels.com/photos/6764925/pexels-photo-6764925.jpeg");
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 80px 20px;
  margin-bottom: 50px;
}

.product-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: white; /* Tailor Red */
}

.product-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Grid Layout */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

/* Product Card Styling */
.product-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border: 1px solid #eee;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.product-img-wrapper {
  position: relative;
  height: 350px;
  overflow: hidden;
}

.product-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-img-wrapper img {
  transform: scale(1.1);
}

.product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #c0392b;
  color: white;
  padding: 5px 12px;
  font-size: 0.8rem;
  font-weight: bold;
  border-radius: 4px;
}

.product-info {
  padding: 25px;
}

.product-info h3 {
  margin-bottom: 10px;
  color: #1a1a1a;
}

.formal-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.formal-list li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  color: #666;
}

.formal-list li::before {
  content: "•";
  color: #c0392b;
  margin-right: 10px;
}

.inquiry-btn {
  display: inline-block;
  margin-top: 10px;
  color: #c0392b;
  text-decoration: none;
  font-weight: bold;
  border: 1px solid #c0392b;
  padding: 10px 20px;
  border-radius: 4px;
  transition: 0.3s;
}

.inquiry-btn:hover {
  background: #c0392b;
  color: white;
}
