/* RESET */
* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #fff;
  overflow-x: hidden;
  width: 100%;
}

/* HEADER */
.header {
  background-color: #e5c9c9;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  position: relative; /* penting untuk navbar absolute */
  z-index: 1;
}

.logo {
  display: flex;
  align-items: center;
}
.logo img {
  height: 50px;
  margin-right: 10px;
}
.logo h2 {
  color: white;
  margin: 0;
  font-weight: 600;
}

/* MENU TOGGLE */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}
.menu-toggle span {
  height: 3px;
  width: 25px;
  background: #fff;
  margin: 4px 0;
  transition: 0.4s;
}

/* NAVBAR */
.navbar {
  display: flex;
  align-items: center;
  gap: 20px;
}
.navbar a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 6px 12px;
  border-radius: 8px;
}
.navbar a.active {
  background-color: #b48b95;
}

/* PRODUK */
.flash-sale {
  background-color: #d4b0c1;
  padding: 40px 15px;
}
.flash-sale h2 {
  text-align: center;
  color: white;
  margin-bottom: 25px;
  font-size: 24px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* 5 produk di desktop */
  gap: 20px;
}
.product-card {
  background-color: white;
  padding: 10px;
  text-align: center;
  border-radius: 20px;
  transition: 0.3s;
}
.product-card img {
  width: 100%;
  height: auto;
  max-height: 220px;
  object-fit: cover;
  border-radius: 10px;
}
.product-name {
  font-size: 16px;
  font-weight: 600;
  margin: 10px 0 5px;
}
.product-card p {
  margin: 5px 0;
  font-weight: bold;
}
.btn-pesan {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 16px;
  background-color: #7966a8;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}
.btn-pesan:hover {
  background-color: #5f4b91;
}
.product-card:hover {
  transform: translateY(-4px);
}

/* FOOTER */
.footer {
  background-color: #f6dddd;
  padding: 30px 20px;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}
.footer-section {
  flex: 1;
  min-width: 250px;
}
.footer-section h4,
.footer-section h3 {
  color: #333;
  font-size: 16px;
  margin-bottom: 10px;
}
.footer-section p {
  font-size: 14px;
  color: #555;
  margin: 5px 0;
}
.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}
.social-icons img {
  width: 24px;
  height: 24px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .navbar {
    display: none;
    flex-direction: column;
    background-color: #e5c9c9;
    position: absolute;
    top: 100%; /* muncul tepat di bawah header */
    left: 0;
    width: 100%;
    padding: 10px 20px;
    z-index: 10;
  }

  .navbar.active {
    display: flex;
  }

  .navbar a {
    background-color: #d6b0b7;
    width: 100%;
    padding: 10px;
    margin-bottom: 5px;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 produk per baris di HP */
  }

  .header {
    flex-wrap: wrap;
  }

  .footer-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .footer-section {
    width: 100%;
  }
}
