
body { font-family: Arial, sans-serif; margin: 0; padding: 0; line-height: 1.6; }
header { background: #f8b400; color: white; padding: 20px 0; text-align: center; }
nav ul { list-style: none; margin: 0; padding: 0; display: flex; justify-content: center; gap: 20px; }
nav a { color: white; text-decoration: none; font-weight: bold; }
section { padding: 40px; max-width: 1100px; margin: auto; }
footer { background: #333; color: white; text-align: center; padding: 10px 0; }
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; margin-bottom: 40px; }
.product-card { border: 1px solid #ddd; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 6px rgba(0,0,0,0.1); }
.product-card img { width: 100%; height: 200px; object-fit: cover; }
.product-card h4 { margin: 12px; font-size: 1.1rem; }
img.section-img { width: 100%; border-radius: 10px; margin: 20px 0; }

/* --- New Navigation Layout --- */
.navbar {display: flex; justify-content: space-between; align-items: center; padding: 12px 40px; background: #f8b400;}
.logo {font-size: 1.5rem; font-weight: 700; color: #fff;}
.nav-links {display: flex; gap: 28px; list-style: none; margin: 0;}
.nav-links a {color: #fff; text-decoration: none; font-weight: 600;}
.hamburger {display: none; font-size: 1.8rem; color: #fff; cursor: pointer;}
@media (max-width: 768px) {
  .nav-links {display: none; position: absolute; top: 64px; right: 0; background: #f8b400; flex-direction: column; width: 200px; padding: 20px;}
  .nav-links.show {display: flex;}
  .hamburger {display: block;}
}
