.global-header {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  color: #fff;
  background: #000000;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
}

.logo-title a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-title img {
  height: 40px;
  margin-right: 10px;
}

.logo-title span {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
}

.product-nav {
  flex-grow: 1;
  margin: 0 40px;
  height: 100%;
}

.nav-list {
  height: 100%;
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0 16px;
  cursor: pointer;
}

.nav-item > a {
  text-decoration: none;
  color: #fff;
}

.nav-item:hover > a {
  color: #000;
}

.nav-item > a::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-left: 5px;

  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 8 L6 4 L10 8' fill='none' stroke='white' stroke-width='1.5'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.3s ease, background-image 0.3s ease;
  vertical-align: middle;
}

.nav-item:hover > a::after {
  transform: rotate(180deg);
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 8 L6 4 L10 8' fill='none' stroke='black' stroke-width='1.5'/%3E%3C/svg%3E");
}

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border-bottom: 6px;
  padding: 10px;
  min-width: 160px;
  z-index: 100;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.3);
}

.dropdown li a {
  display: block;
  padding: 5px 10px;
  color: #333;
  text-decoration: none;
  text-wrap: nowrap;
}

.nav-item:hover {
  color: #000000;
  background-color: #fff;
}

.nav-item:hover .dropdown {
  display: block;
}

.actions {
  display: flex;
  gap: 15px;
}

.btn {
  padding: 0 18px;
  border-radius: 8px;
  text-decoration: none;
  color: white;
  font-size: 12px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-btn {
  height: 34px;
  border: 2px solid #0061ff;
  text-align: center;
  line-height: 34px;
  color: #0061ff;
}

.cart-btn {
  height: 34px;
  border-radius: 8px;
  background: #0061ff;
  color: #fff;
}
