/* ===== RESET ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #f2f3f5;
  color: #1a1a1a;
  font-family: system-ui, -apple-system, BlinkMacSystemFont,
               "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;

  height: 74px;
  background: #ffffff;
  border-bottom: 1px solid #e4e6eb;
}

.header-inner {
  height: 100%;
  max-width: 1599px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 16px;
}

/* ===== LOGO ===== */
.logo-link img {
  display: block;
  height: auto;
}

/* ===== AKCJE ===== */
.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  text-decoration: none;
  color: #1a1a1a;
  font-size: 16px;
  line-height: 1;
  white-space: nowrap;
}

/* IKONY – NATURALNY ROZMIAR */
.header-action img {
  display: block;
  width: auto;
  height: auto;
}

/* ===== MOBILE FIRST ===== */
.action-text {
  display: none;
}

/* ≥ 1024px – ikony + tekst */
@media (min-width: 1024px) {
  .action-text {
    display: inline;
  }
}

/* ≥ 1280px – więcej powietrza */
@media (min-width: 1280px) {
  .header-inner {
    padding: 0 24px;
  }

  .header-right {
    gap: 28px;
  }
}

/* ≥ 1600px – marginesy boczne */
@media (min-width: 1600px) {
  .header-inner {
    padding: 0 32px;
  }
}
