@font-face {
    font-family: 'Google Sans';
    src: url('/fonts/GoogleSans-VariableFont_GRAD,opsz,wght.ttf') format('truetype-supports-variations'),
         url('/fonts/GoogleSans-VariableFont_GRAD,opsz,wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}
.vouchermate-header-wrapper {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 9999;
  background-color: #ffffff;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  box-sizing: border-box;
}

.vouchermate-header-body {
  max-width: 1600px;
  margin: 0 auto;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
}
.vouchermate-header-logo { max-height: 60px;}
.vouchermate-header-brand-portal {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.vouchermate-header-brand-label {
  font-size: 1.5rem;
  font-weight: 900;
  color: #000000;
  margin: 0;
  letter-spacing: -0.5px;
}

.vouchermate-header-navigation-panel {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.vouchermate-header-navigation-list {
  display: flex;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.vouchermate-header-navigation-item {
  display: flex;
  align-items: center;
}


.vouchermate-header-navigation-anchor {
  background-color: #f4f4f5;
  color: #18181b;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 999px;
  transition: background-color 0.2s ease, color 0.2s ease;
  display: inline-block;
  letter-spacing: 0.1px;
}


.vouchermate-header-navigation-anchor:hover {
  background-color: #e4e4e7;
}


@media (max-width: 768px) {
  .vouchermate-header-body {
    height: 70px;
    padding: 0 16px;
  }
  .vouchermate-header-brand-label {
    display: none;
  }
  .vouchermate-header-navigation-anchor {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
  .vouchermate-header-navigation-list {
    gap: 8px;
  }
}