.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
}

.site-promo-banner {
  background: #b08d57;
  text-align: center;
  padding: 9px 16px;
  line-height: 1.35;
  font-weight: 500;
}

.site-promo-banner-text {
  margin: 0;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 400;
}

.site-navbar {
  background: rgba(245, 245, 247, 0.72);
  border-bottom: 1px solid rgba(210, 210, 215, 0.55);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
}

.site-navbar-inner {
  width: var(--flexcase-content-width, 60vw);
  margin: 0 auto;
  padding: 12px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #1d1d1f;
  font-weight: 700;
  letter-spacing: -0.01em;
  min-width: 0;
}

.site-brand-logo {
  width: 35px;
  height: 35px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
  pointer-events: none;
}

.site-brand-text {
  font-size: 1.02rem;
  white-space: nowrap;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.icon-btn {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;
  color: #6e6e73;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
}

@media (hover: hover) and (pointer: fine) {
  .icon-btn:hover {
    color: #1d1d1f;
    border-color: #e6e6eb;
    background: #ffffff;
  }
}

.icon-btn svg {
  width: 22px;
  height: 22px;
}

.cart-badge {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(45%, -35%);
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: #b08d57;
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
}

@media (max-width: 980px) {
  .site-header {
    transition: transform 0.22s ease;
    will-change: transform;
  }

  .site-header.is-hidden {
    transform: translateY(-100%);
    pointer-events: none;
  }
}
