body {
  margin: 0;
  font-family: Poppins, sans-serif;
}

/* HEADER */
.site-header {
  background: #f59725;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  position: relative;
  z-index: 1000;
}

/* LOGO */
.logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
}

.logo img {
  border-radius: 50%;
}

/* HAMBURGER */
.menu-toggle {
  font-size: 26px;
  cursor: pointer;
}

nav {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 65px;
  right: 10px;
  background: #f59725;
  width: 220px;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);

  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.25s ease;
}

nav.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}


nav a {
  padding: 12px 15px;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.3);
}

nav a:last-child {
  border-bottom: none;
}

/* CART BADGE */
#cart_count {
  background: red;
  color: #fff;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 50%;
  margin-left: 5px;
}

/* MOBILE */
@media (max-width: 768px) {
  nav {
    width: 190px;
    top: 60px;
  }
}


