.sm-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  background: rgba(248, 249, 246, 0.2);
  border-bottom: 1px solid rgba(66, 119, 132, 0.3);
}

.sm-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
}

.sm-logo img,
.sm-logo .custom-logo {
  height: 40px;
  width: auto;
}

.sm-header__actions {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}

.sm-header__links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sm-header__link {
  padding: 10px;
  font-weight: 700;
  font-size: 16px;
}

.sm-header__lang {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 10px 4px 10px 10px;
  font-weight: 700;
  background: none;
  border: 0;
  cursor: pointer;
  color: inherit;
}

.sm-header__icons {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sm-header__cta {
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 1100px) {
  .sm-header__links,
  .sm-header__cta .sm-btn--primary {
    display: none;
  }

  .sm-header__inner {
    padding: 8px 0;
  }

  .sm-logo img,
  .sm-logo .custom-logo {
    height: 28px;
  }

  .sm-header__actions {
    gap: 12px;
  }
}

@media (max-width: 600px) {
  .sm-header__cta .sm-btn--outline span {
    font-size: 14px;
  }
}
