/* Main Header */
.main-header {
  background-color: #ffffff;
  padding: 20px 60px;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  border-bottom: 1px solid #000000;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
}

/* Brand Name (Left) */
.brand-name {
  flex: 0 0 auto;
  margin-right: 40px;
}

.brand-name a {
  color: #000000;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.5px;
  transition: opacity 0.3s ease;
  white-space: nowrap;
}

.brand-name a:hover {
  opacity: 0.6;
}

/* Center Navigation */
.center-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.center-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 60px;
  align-items: center;
}

.center-nav ul li {
  margin: 0;
}

.center-nav ul li a {
  color: #000000;
  text-decoration: none;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1.5px;
  transition: opacity 0.3s ease;
  white-space: nowrap;
}

.center-nav ul li a:hover {
  opacity: 0.6;
}

/* Right Navigation */
.right-nav {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.right-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 20px;
  align-items: center;
}

.right-nav ul li {
  margin: 0;
  display: flex;
  align-items: center;
}

/* Login Link */
.login-link {
  color: #000000;
  text-decoration: none;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1.5px;
  transition: opacity 0.3s ease;
  white-space: nowrap;
  text-decoration: underline;
}

.login-link:hover {
  opacity: 0.6;
}

/* Icon Links */
.icon-link {
  color: #000000;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: opacity 0.3s ease;
}

.icon-link:hover {
  opacity: 0.6;
}

.icon-link svg {
  width: 16px;
  height: 16px;
  stroke-width: 1.5;
}

/* Icon Counter */
.icon-counter {
  color: #000000;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.5px;
}

/* Cart Counter */
.cart-counter {
  color: #000000;
  font-size: 11px;
  font-weight: 400;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .main-header {
    padding: 18px 40px;
  }

  .center-nav ul {
    gap: 40px;
  }

  .center-nav ul li a,
  .login-link {
    font-size: 11px;
    letter-spacing: 1.2px;
  }

  .brand-name {
    margin-right: 30px;
  }

  .brand-name a {
    font-size: 13px;
  }

  .right-nav ul {
    gap: 16px;
  }
}

@media (max-width: 992px) {
  .main-header {
    padding: 15px 30px;
  }

  .header-container {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .brand-name {
    order: 1;
    margin-right: 0;
    width: 100%;
    text-align: center;
  }

  .center-nav {
    order: 2;
    width: 100%;
    margin-top: 10px;
  }

  .center-nav ul {
    gap: 30px;
    justify-content: center;
  }

  .right-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    margin-top: 10px;
  }

  .right-nav ul {
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .main-header {
    padding: 12px 20px;
  }

  .center-nav ul {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .center-nav ul li a,
  .login-link {
    font-size: 10px;
    letter-spacing: 1px;
  }

  .brand-name a {
    font-size: 12px;
  }

  .icon-link svg {
    width: 14px;
    height: 14px;
  }

  .icon-counter,
  .cart-counter {
    font-size: 10px;
  }

  .right-nav ul {
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .main-header {
    padding: 10px 15px;
  }

  .center-nav ul {
    gap: 15px;
  }

  .center-nav ul li a,
  .login-link {
    font-size: 9px;
    letter-spacing: 0.8px;
  }

  .brand-name a {
    font-size: 11px;
  }

  .icon-link svg {
    width: 12px;
    height: 12px;
  }

  .icon-counter,
  .cart-counter {
    font-size: 9px;
  }

  .right-nav ul {
    gap: 10px;
  }
}
