/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Poppins', sans-serif; background: #fafafa; color: #333; }

/* Header */
header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 15px 50px; background: #111; color: #fff;
  position: sticky; top: 0; z-index: 1000;
}
header .logo { font-size: 1.5em; font-weight: bold; color: #f39c12; }
header ul { display: flex; list-style: none; }
header ul li { margin: 0 15px; }
header ul li a { color: #fff; text-decoration: none; transition: 0.3s; }
header ul li a:hover { color: #f39c12; }

/* Hero */
.hero {
  height: 80vh; display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  background: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),
              url('https://via.placeholder.com/1200x600') center/cover no-repeat;
  color: #fff; text-align: center;
  animation: fadeIn 2s ease-in-out;
}
.hero h1 { font-size: 3em; animation: slideUp 1.5s ease; }
.hero p { margin: 15px 0; font-size: 1.2em; }
.shop-btn {
  background: #f39c12; border: none; padding: 12px 25px;
  color: #fff; font-size: 1em; cursor: pointer; border-radius: 30px;
  transition: 0.3s;
}
.shop-btn:hover { background: #e67e22; transform: scale(1.1); }

/* Products */
#products { padding: 50px; text-align: center; }
#products h2 { margin-bottom: 30px; font-size: 2.2em; }
.product-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.product-card {
  background: #fff; padding: 20px; border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  animation: fadeInUp 1s ease;
}
.product-card img { width: 100%; border-radius: 10px; }
.product-card h3 { margin: 10px 0; }
.product-card .price { color: #e67e22; font-weight: bold; }
.product-card button {
  background: #f39c12; border: none; padding: 8px 15px;
  color: #fff; border-radius: 5px; cursor: pointer; transition: 0.3s;
}
.product-card:hover { transform: translateY(-10px); box-shadow: 0 6px 15px rgba(0,0,0,0.2); }
.product-card button:hover { background: #e67e22; }

/* Offers */
#offers { background: #f39c12; padding: 30px; color: #fff; text-align: center; }
.offer-banner { font-size: 1.5em; animation: pulse 2s infinite; }

/* Contact */
#contact { padding: 50px; text-align: center; }
form { display: flex; flex-direction: column; max-width: 400px; margin: auto; }
form input, form textarea {
  margin: 10px 0; padding: 10px; border-radius: 5px; border: 1px solid #ccc;
}
form button {
  background: #111; color: #fff; padding: 10px;
  border: none; border-radius: 5px; cursor: pointer;
  transition: background 0.3s;
}
form button:hover { background: #f39c12; }

/* Footer */
footer { background: #111; color: #fff; text-align: center; padding: 15px; }

/* Animations */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { transform: translateY(50px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0% { transform: scale(1); } 50% { transform: scale(1.1); } 100% { transform: scale(1); } }
