/* /css/components/header.css */
.hd-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 400;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.8) 100%);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--brd);
  padding: 12px 0;
}

.hd-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hd-logo {
  font-family: "Oswald", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hd-logo span {
  color: var(--gold);
}

.hd-menu {
  display: flex;
  gap: 20px;
  align-items: center;
}

.hd-btn {
  background: transparent;
  border: 1px solid var(--brd);
  color: var(--txt2);
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--t);
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Roboto", sans-serif;
}

.hd-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
}

.hd-btn.hd-cart {
  background: linear-gradient(135deg, var(--gold), var(--gold-d));
  border: none;
  color: #0a0e17;
  font-weight: 600;
}

.hd-btn.hd-cart:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
}

.hd-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}