/* ========== Global Styles ========== */
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: #f4f4f4;
  font-size: 16px;
}

.container {
  padding: 0;
}

/* ========== Header ========== */
.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-size: 12px;
  font-weight: 600;
  border-radius: 20px;
  color: #000000;
  background-color: #ffffff;
  border: 1px solid #000000;
  cursor: pointer;
}

.nav-button i {
  margin-right: 5px;
}

.nav-button:hover {
  color: #ffffff;
  background-color: #F0841A;
  border: none;
}

.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;
}

.mobile-menu.show {
  display: flex;
}

.mobile-menu a,
.mobile-menu .nav-button {
  margin: 10px 0;
}

/* ========== Map ========== */
#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-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;
}

/* ========== Hero Section ========== */
.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: 400;
  font-size: 14px;
  margin: 0 auto;
  max-width: 900px;
  line-height: 1.5;
}

/* ========== Product Section ========== */
.product-section {
  padding: 15px;
  background-color: #dadada;
  margin-top: 30px;
}

.product-section h2 {
  text-align: center;
  font-size: 2rem;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 40px;
}

.filter-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
}

.filter-bar label {
  font-size: 1rem;
  font-weight: 400;
}

.filter-bar select {
  padding: 6px 15px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-family: 'Montserrat', sans-serif;
}

/* ========== Product Grid ========== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  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;
  color: white;
  padding: 8px 16px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-size: 12px;
  font-family: 'Montserrat', sans-serif;
  text-decoration: none !important;
}

.product-button:hover {
  background-color: #d67212;
}

/* ========== Footer ========== */
.simple-footer {
  font-size: 11px;
  font-weight: 400;
  position: fixed;
  bottom: 10px;
  left: 0;
  width: 100%;
  background-color: #02517A;
  color: white;
  text-align: center;
  padding: 2px 0;
  z-index: 1000;
}

/* ========== Responsive ========== */
@media (min-width: 1600px) {
  .header-container {
    max-width: 1440px;
  }
}

@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  body {
    font-size: 14px;
  }

  .nav {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .nav-link,
  .mobile-menu a {
    font-size: 13px;
  }

  .nav-button {
    font-size: 11px;
    padding: 5px 16px;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-card h3 {
    font-size: 0.9rem;
  }

  .product-card p {
    font-size: 11px;
  }

  .product-button {
    font-size: 11px;
    padding: 6px 14px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 13px;
  }

  .filter-bar label {
    font-size: 0.9rem;
  }

  .filter-bar select {
    font-size: 13px;
    padding: 5px 12px;
  }

  #coordinates {
    font-size: 10px;
    padding: 6px 12px;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 13px;
  }

  .nav-link,
  .mobile-menu a {
    font-size: 12px;
  }

  .nav-button {
    font-size: 10px;
    padding: 4px 14px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card h3 {
    font-size: 0.85rem;
  }

  .product-card p {
    font-size: 10px;
  }

  .product-button {
    font-size: 10px;
    padding: 5px 12px;
  }

  .hero h1 {
    font-size: 1.7rem;
  }

  .hero p {
    font-size: 12px;
  }

  .filter-bar label {
    font-size: 0.85rem;
  }

  .filter-bar select {
    font-size: 12px;
    padding: 5px 10px;
  }

  #coordinates {
    font-size: 9px;
    padding: 5px 10px;
  }
}
