.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;

  background: rgba(8, 8, 8, 0.88);
  backdrop-filter: blur(18px);

  border-bottom: 1px solid var(--border);
}

.header-inner {
  min-height: 72px;

  display: flex;
  align-items: center;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;

  font-size: 22px;
  font-weight: 900;
  white-space: nowrap;
}

.logo-mark {
  width: 34px;
  height: 34px;

  display: grid;
  place-items: center;

  border-radius: 9px;
  background: var(--primary);
  color: white;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;

  margin-left: auto;
}

.main-nav a {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 600;

  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: #fff;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-icon {
  width: 42px;
  height: 42px;

  display: grid;
  place-items: center;

  background: #151515;
  border: 1px solid var(--border);
  border-radius: 10px;

  position: relative;
}

.cart-count {
  position: absolute;

  top: -6px;
  right: -6px;

  min-width: 19px;
  height: 19px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: var(--primary);
  color: white;

  font-size: 11px;
  font-weight: 800;
}

.menu-button {
  display: none;
}

/* Live logo uploaded from Admin > Settings */
.logo-mark.has-site-logo {
  padding: 0;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.logo-mark.has-site-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  min-width: 100%;
  min-height: 100%;
}
