.product-showcase {
  padding: 50px 20px;
  background: #f8f9fa;
  font-family: "Poppins", sans-serif;
  color: #333;
}
.product-showcase-header {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.product-showcase-image img {
  max-width: 450px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  background: #fff;
  padding: 15px;
}

.product-showcase-info {
  max-width: 500px;
}

.product-showcase-info h1 {
  font-size: 28px;
  font-weight: 700;
  color: #222;
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-showcase-info h1 i {
  color: #d4af37;
}

.product-showcase-description {
  font-size: 16px;
  line-height: 1.6;
  margin: 15px 0 25px;
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(45deg, #d4af37, #c19b2e);
  color: #fff;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(212, 175, 55, 0.4);
}

.product-showcase-specs {
  margin-top: 50px;
}

.product-showcase-specs h2 {
  font-size: 22px;
  margin-bottom: 20px;
  color: #222;
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.product-showcase-specs table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
}

.product-showcase-specs td {
  padding: 12px 15px;
  border-bottom: 1px solid #eee;
}

.product-showcase-specs tr:last-child td {
  border-bottom: none;
}

.product-showcase-specs td:first-child {
  font-weight: 600;
  color: #555;
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-showcase-specs td i {
  color: #d4af37;
}

.product-showcase-features {
  margin-top: 50px;
}

.product-showcase-features h2 {
  font-size: 22px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #222;
}

.product-showcase-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
}

.product-showcase-feature-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-showcase-feature-card i {
  font-size: 28px;
  color: #d4af37;
  margin-bottom: 10px;
}

.product-showcase-feature-card p {
  font-weight: 500;
  font-size: 14px;
}

.product-showcase-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .product-showcase-header {
    flex-direction: column;
    text-align: center;
  }

  .product-showcase-info h1 {
    justify-content: center;
  }

  .btn-primary {
    margin-top: 10px;
  }
}
