body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background: linear-gradient(to bottom right, #0d0d0d, #2b2b2b);
  color: #f5f5f5;
}

header {
  background: rgba(255, 215, 0, 0.1);
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid gold;
  backdrop-filter: blur(8px);
}

header h1 {
  color: gold;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.7);
}

nav a {
  margin: 0 12px;
  text-decoration: none;
  color: #f5f5f5;
  font-weight: bold;
  transition: color 0.3s;
}

nav a:hover {
  color: gold;
}

main {
  padding: 40px;
  text-align: center;
}

h2 {
  color: gold;
  font-size: 2em;
  margin-bottom: 20px;
  text-shadow: 0 0 6px rgba(255, 215, 0, 0.6);
}

/* Product Cards */
.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.5);
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(255,215,0,0.3);
}

.img-box {
  overflow: hidden;
}

.card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.5s;
  cursor: zoom-in;
}

.card img:hover {
  transform: scale(1.2);
}

.price {
  color: gold;
  font-weight: bold;
  font-size: 1.2em;
}

/* Forms */
.form {
  max-width: 400px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form input, .form textarea {
  padding: 12px;
  border: 1px solid #444;
  border-radius: 10px;
  background: rgba(255,255,255,0.1);
  color: #fff;
}

.form button {
  background: linear-gradient(to right, gold, orange);
  color: black;
  padding: 12px;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.2s;
}

.form button:hover {
  transform: scale(1.05);
}

.contact-info {
  margin-top: 30px;
  font-size: 1.1em;
  color: #ddd;
}
