.products-section {
  background-color: #111;
  color: #f0f0f0;
  padding: 100px 20px;
}

.products-section .container {
  max-width: 1100px;
  margin: auto;
}

.products-section h1 {
  font-size: 2.5rem;
  color: #f1c40f;
  text-align: center;
  margin-bottom: 50px;
}

.product-card {
  background-color: #1c1c1c;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

.product-image {
  flex: 1 1 300px;
  max-width: 400px;
  border-radius: 8px;
  object-fit: cover;
}

.product-content {
  flex: 2 1 400px;
  padding: 20px;
}

.product-content h2 {
  color: #f1c40f;
  margin-bottom: 15px;
}

.product-content ul {
  list-style: none;
  padding: 0;
  margin-top: 10px;
}

.product-content ul li {
  margin-bottom: 8px;
}

.btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #f1c40f;
  color: #111;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #d4ac0d;
}

/* Responsive */
@media (max-width: 768px) {
  .product-card {
    flex-direction: column;
    align-items: center;
  }

  .product-image, .product-content {
    width: 100%;
    text-align: center;
  }
}
