body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

h1 {
  margin-bottom: 24px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.product-card {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 16px;
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
}

.product-card h3 {
  font-size: 18px;
  margin: 12px 0 8px;
}

.product-card p {
  font-size: 14px;
  color: #555;
}


/* ===== HEADER ===== */
header {
  background: #111;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}



.navbar {
  max-width: 1200px;
  margin: auto;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar .logo {
  font-size: 20px;
  font-weight: bold;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.navbar ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.navbar ul li a:hover {
  text-decoration: underline;
}


/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  background: url("../images/hero/hero.jpg") center/cover no-repeat;
  height: 400px;
  display: flex;
  align-items: center;
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero-content {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

}

.hero h1 {
  font-size: 36px;
  margin-bottom: 12px;
}

.hero p {
  font-size: 16px;
  max-width: 500px;
}

.btn {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 20px;
  background: #007bff;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
}



/* ===== FOOTER ===== */
footer {
  background: #111;
  color: #ccc;
  margin-top: 60px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.footer h3 {
  color: #fff;
  margin-bottom: 12px;
  font-size: 16px;
}

.footer p,
.footer a {
  font-size: 14px;
  color: #ccc;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid #333;
  text-align: center;
  padding: 15px 20px;
  font-size: 13px;
  color: #777;
}


/* ===== MOBILE POLISH ===== */
@media (max-width: 768px) {

  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .navbar ul {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }

  .hero {
    height: 300px;
  }

  .hero h1 {
    font-size: 26px;
  }

  .hero p {
    font-size: 14px;
  }

  .container {
    padding: 30px 16px;
  }

}


/* ===== FLOATING WHATSAPP ===== */
.floating-wa {
  position: fixed;
  right: 20px;
  bottom: 120px;
  z-index: 9999;
}

.floating-wa a {
  width: 56px;
  height: 56px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}




.floating-wa a:hover {
  background: #1ebe5d;
}


