/* ==================================== */
/* 🌟 RESET & FONT */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #f8f9fa;
  color: #333;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ==================================== */
/* 💙 CONTAINER */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ==================================== */
/* 🏠 HEADER */
.main-header {
  background: linear-gradient(90deg, #1e88e5, #00b4d8);
  color: #fff;
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}

.main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  font-size: 2rem;
  font-weight: 900;
  text-decoration: none;
  color: #fff;
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav a:hover {
  color: #ffeb3b;
}

/* ==================================== */
/* 🏷 CONTENT */
main.content {
  flex-grow: 1;
  width: 100%;
  text-align: center;
  margin-top: 40px;
  padding-bottom: 40px;
}

main.content h1, main.content h2 {
  color: #1e88e5;
  margin-bottom: 25px;
}

main.content p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 20px;
}

/* ==================================== */
/* 👟 PRODUK GRID */
.produk {
  padding: 40px 0;
}

.produk-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.produk-item {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  width: 280px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.produk-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.produk-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.produk-item h3 {
  margin: 15px 0;
  color: #1e88e5;
  font-size: 1.2rem;
  padding: 0 10px;
}

.produk-item p {
  font-size: 0.9rem;
  color: #6c757d;
  padding: 0 10px;
  margin-bottom: 10px;
}

.harga {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #000;
}

/* ==================================== */
/* 🔘 TOMBOL */
button, .button-link {
  background: linear-gradient(90deg, #1e88e5, #00b4d8);
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

button:hover, .button-link:hover {
  background: linear-gradient(90deg, #0d6efd, #00a2c2);
  transform: scale(1.02);
}

/* ==================================== */
/* ⚓ FOOTER */
footer {
  background: #1e88e5;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  margin-top: auto;
  font-size: 0.9rem;
}
