body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #111; 
  color: #eee;
}

h1 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #e60023; 
  text-shadow: 0 0 10px rgba(230,0,35,0.7);
}

.product-container {
  max-width: 900px;
  margin: 2rem auto;
  background: #1a1a1a;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(230,0,35,0.4);
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.product-container img {
  flex: 1 1 300px;
  max-width: 400px;
  height: auto;
  object-fit: contain; 
  background-color: #000;
  border-radius: 8px;
  border: 2px solid #e60023;
  box-shadow: 0 0 12px rgba(230,0,35,0.5);
}

.product-details {
  flex: 1 1 300px;
  color: #ddd;
}

.product-details h2 {
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 1rem;
}

.product-details .price {
  font-size: 1.4rem;
  color: #e60023;
  font-weight: bold;
  margin-bottom: 1rem;
}

.product-details p {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}


.btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 12px 24px;
  background: #e60023;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  box-shadow: 0 0 12px rgba(230,0,35,0.6);
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn:hover {
  background: #b71c29;
  transform: translateY(-3px);
}

.btn-secondary {
  background: #333;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn-secondary:hover {
  background: #555;
  transform: translateY(-3px);
}
