.brand-mark {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  overflow: hidden;
  background: transparent;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-name {
  display: inline;
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", ui-rounded, system-ui, sans-serif;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.045em;
}

@media (max-width: 720px) {
  .header-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 6px;
  }

  .brand {
    min-width: 0;
    gap: 7px;
  }

  .brand span.brand-name {
    display: inline;
    font-size: 13.5px;
    font-weight: 900;
    line-height: 1;
    -webkit-text-stroke: 0.18px currentColor;
    transform: scaleY(1.2);
    transform-origin: left center;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
    border-radius: 9px;
  }

  .header-actions {
    display: grid;
    grid-template-columns: 34px 80px 34px 34px;
    gap: 4px;
    margin-left: 0;
  }

  .currency-select {
    position: relative;
    display: block;
    width: 80px;
  }

  .currency-select::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 11px;
    width: 7px;
    height: 7px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    pointer-events: none;
    transform: translateY(-70%) rotate(45deg);
  }

  .currency-select select {
    width: 80px;
    max-width: 80px;
    padding: 0 30px 0 11px;
    appearance: none;
    -webkit-appearance: none;
    background-image: none;
    line-height: 38px;
    text-overflow: clip;
  }

  .currency-select select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px color-mix(in srgb, var(--primary) 18%, transparent);
  }

  .market-hero {
    padding-bottom: 12px;
  }

  .market-hero + .section {
    padding-top: 14px;
  }

  .language-select,
  .theme-toggle,
  .search-trigger {
    width: 34px;
    min-width: 34px;
    padding-inline: 0;
  }
}

@media (max-width: 380px) {
  .brand {
    gap: 6px;
  }

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

  .brand-mark {
    width: 28px;
    height: 28px;
  }

  .currency-select select {
    width: 80px;
    max-width: 80px;
    padding-left: 10px;
    padding-right: 29px;
  }

  .header-actions {
    grid-template-columns: 32px 80px 32px 32px;
  }

  .language-select,
  .theme-toggle,
  .search-trigger {
    width: 32px;
    min-width: 32px;
  }
}
