body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #f8f9fa;
  color: #333;
}

.site-header {
  background: #003366;
  color: white;
  padding: 1rem 0;
}

.site-header .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1rem;
}

nav {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.category-button, .nav-link {
  background: white;
  color: #003366;
  padding: 0.5rem 0.8rem;
  border-radius: 6px;
  font-weight: bold;
  border: none;
  text-decoration: none;
  cursor: pointer;
}

.category-button:hover, .nav-link:hover {
  background: #cce4ff;
}

.search-bar {
  text-align: center;
  margin: 1rem;
}

.search-bar input {
  padding: 0.6rem;
  font-size: 1rem;
  width: 90%;
  max-width: 400px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

#product-list {
  max-width: 960px;
  margin: 2rem auto;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.product-card {
  background: white;
  border-radius: 10px;
  padding: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  text-align: center;
}

.product-card img {
  width: 100%;
  height: auto;
  margin-bottom: 0.5rem;
  border-radius: 6px;
}

.product-card h4 {
  margin: 0.5rem 0;
  color: #003366;
}

.price {
  color: #28a745;
  font-weight: bold;
}

.order-button, .whatsapp-button {
  margin: 0.3rem;
  padding: 0.45rem 1rem;
  border: none;
  border-radius: 20px;
  font-weight: bold;
  cursor: pointer;
}

.order-button {
  background: #007bff;
  color: white;
}

.whatsapp-button {
  background: #25d366;
  color: white;
}

.form-section {
  background: white;
  padding: 2rem;
  margin: 2rem auto;
  max-width: 600px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.form-section h2 {
  color: #003366;
}

.form-section input, .form-section textarea {
  width: 100%;
  margin: 0.5rem 0;
  padding: 0.6rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.form-section button {
  padding: 0.6rem 1.2rem;
  margin-top: 1rem;
  border: none;
  background: #003366;
  color: white;
  border-radius: 6px;
  cursor: pointer;
}

.form-section button#cancelOrder {
  background: #ccc;
  margin-left: 1rem;
}

.hidden {
  display: none;
}

.site-footer {
  background: #003366;
  color: white;
  padding: 1rem 0;
  text-align: center;
}