* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #e5e7eb;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 16px;
}

/* ===== HEADER ===== */
/* MAIN HEADER */
#main-header {
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
#header-wrapper {
  background-color: #ffffff !important;
}

.topbar {
  background: #ffffff;
  font-size: 14px;
}

.topbar-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}

.topbar-info {
  display: flex;
  gap: 24px;
}

.navbar {
  background: #bfdbfe;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.nav-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand img {
  height: 48px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 24px;
}

.nav-menu a {
  text-decoration: none;
  color: #000;
  font-weight: 600;
}

.nav-menu a.active {
  color: #2563eb;
}

.nav-toggle {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
}

/* ===== PRODUCTS ===== */
.content {
  padding-top: 10px;
}

.products {
  padding: 60px 0;
}

.section-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
}

.section-title span {
  color: #2563eb;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.product-card {
  background: #fff;
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.product-card img {
  width: 100%;
  border-radius: 8px;
}

/* ===== FOOTER ===== */
.footer {
  background: #111827;
  color: #9ca3af;
  padding: 20px 0;
  text-align: center;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .topbar-flex {
    flex-direction: column;
    gap: 10px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    background: #bfdbfe;
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    padding: 16px;
  }

  .nav-menu.show {
    display: flex;
  }
}
