/* ===== HEADER ===== */

.header{
  background:linear-gradient(135deg,#2e9b5e,#1f7a3f);
  padding:14px 24px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
}

.brand{
  display:flex;
  align-items:center;
}

.logo{
  height:70px;
  width:auto;
}

.nav{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
}

.nav a{
  color:#fff;
  margin-left:16px;
  text-decoration:none;
  font-weight:500;
}

.hello{
  color:#e9f6ef;
  margin-left:10px;
}

/* ===== CART BADGE ===== */

.cart-link{
  position:relative;
}

.cart-badge{
  position:absolute;
  top:-6px;
  right:-10px;
  background:red;
  color:#fff;
  font-size:12px;
  padding:2px 6px;
  border-radius:50%;
}

/* ================= MOBILE ================= */

@media (max-width:768px){

.header{
  flex-direction:column;
  align-items:center;
  padding:12px;
  gap:10px;
}

/* logo nhỏ lại */
.logo{
  height:50px;
}

/* menu xuống dòng */
.nav{
  width:100%;
  justify-content:center;
  gap:10px;
}

/* menu chữ nhỏ lại */
.nav a{
  margin:0;
  font-size:14px;
}

/* hello user */
.hello{
  font-size:14px;
}

}
/* ===== MENU LINK ===== */
.nav a{
  color:#ffffff;
  margin-left:22px;
  text-decoration:none;
  font-weight:600;
  font-size:16px;
  padding:6px 10px;
  border-radius:6px;
  transition:all .2s;
}

/* hover */
.nav a:hover{
  background:rgba(255,255,255,0.15);
}

/* user name */
.hello{
  color:#e9f6ef;
  margin-left:18px;
  font-weight:600;
}