body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: #f4f4f4;
}

.header {
  width: 100%;
  background: #ffffff;
  position: fixed;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  padding: 5px 0px;
}

.header-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 40px;
}

.logo img {
  height: 50px;
  vertical-align: middle;
}

.nav {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-link,
.mobile-menu a {
  font-size: 14px;
  color: #333;
  text-decoration: none;
  font-weight: 600;
}

.nav-link:hover,
.mobile-menu a:hover {
  color:#F0841A;
  text-decoration: none;
}

.nav-button {
  padding: 6px 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  border-radius: 20px;
  color: #000000;
  background-color: #ffffff;
  border-color: #000000;
  border-width: 1px;
  text-decoration: none;
  cursor: pointer;
}

.nav-button i {
  margin-right: 5px;
}

.nav-button:hover {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  border-color: #ffffff;
  border-width: 0px;
  color: #ffffff;
  background-color:#F0841A;
}

.hamburger {
  display: none;
  font-size: 35px;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: white;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  padding: 10px 20px;
  position: fixed;
  align-items: center;
  top: 70px;
  right: 0;
  left: 0;
  z-index: 1001;
  transition: all 0.3s ease;
}

/* Responsive */
@media (min-width: 1600px) {
  .header-container {
    max-width: 1440px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 0px;
  }

  .nav {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .mobile-menu.show {
    display: flex;
  }

  .mobile-menu a,
  .mobile-menu .nav-button {
    margin: 10px 0;
  }
}


#map {
  height: calc(100vh - 70px);
  margin-top: 70px;
}

#coordinates {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.95);
  padding: 8px 14px;
  border-radius: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: #333;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: all 0.2s ease-in-out;
}

/* marketpalce */
.hero {
  text-align: center;
  padding: 80px 24px 50px;
  background: linear-gradient(to right, #02517A, #009B4C);
}

.hero h1 {
  font-size: 2.5rem; 
  font-weight: 600;
  margin-bottom: 10px;
  color: #FFA726;
}
.hero p {
  color: #ffffff;
  font-weight: 300;
  font-size: 14px;
  margin: 0 auto;
  max-width: 1000px;  
  line-height: 1.5; 
}


/* Product Section */
.product-section h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.filter-bar {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
  text-align: center;
}

.filter-bar label {
  font-weight: 400;
  font-size: 1.0rem;
}

.filter-bar select {
  padding: 6px 15px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-family: 'Montserrat', sans-serif;
}

.product-section {
  padding: 15px 15px;
  border-radius: 0px;
  background-color: #dadada;
  margin-top: 30px;
}

.product-section h2 {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  margin-bottom: 40px;
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* default: 4 kolom di desktop */
  gap: 24px;
  padding: 24px;
  max-width: 1200px;
  margin: 30px auto 40px auto;
}

.product-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.2s ease-in-out;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  border-radius: 8px;
  margin-bottom: 2px;
}

.product-card h3 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #333;
}

.product-card p {
  font-size: 12px;
  color: #666;
  margin-bottom: 10px;
}

.product-button {
  background-color: #F0841A;
  font-family: 'Montserrat', sans-serif;
  color: white;
  padding: 8px 16px;
  border: none;
  border-radius: 20px;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  font-size: 12px;
}

.product-button:hover {
  background-color: #d67212;
}

@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr); /* 3 kolom di layar laptop */
  }
}

@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 kolom di tablet */
  }
}

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr; /* 1 kolom di mobile kecil */
  }
}
