/* ===== RESET ntoya ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

/* ===== HEADER ===== */
.main-header {
  width: 100%;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-wrap {
  max-width: 1100px;
  margin: auto;
  padding: 8px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ===== LOGO ===== */
.logo img {
  height: 35px;
  width: auto;
}

/* ===== NAVIGATION ===== */
.nav {
  display: flex;
  gap: 20px;
}

.nav a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s ease;
}

.nav a:hover,
.nav a.active {
  color: #0d6efd;
}

/* ===== ICONS ===== */
.header-icons {
  display: flex;
  align-items: center;
  gap: 15px;
}

.icon-btn {
  position: relative;
  color: #333;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s ease;
}

.icon-btn:hover {
  color: #0d6efd;
}

/* ===== CART BADGE ===== */
.badge {
  position: absolute;
  top: -6px;
  right: -8px;
  background: #ff3b3b;
  color: #fff;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 50px;
  font-weight: bold;
}

/* ===== RESPONSIVE (Mobile) ===== */
@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .header-wrap {
    padding: 8px 10px;
  }

  .logo img {
    height: 30px;
  }
}