.dindo-site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(5, 5, 5, 0.98);
  color: #fff;
  transition: transform 0.24s ease;
}

.dindo-shell-header-inner {
  width: min(calc(100% - 48px), 1680px);
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0 auto;
}

.dindo-shell-brand {
  min-width: 230px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
}

.dindo-shell-brand img {
  width: 126px;
  height: 58px;
  object-fit: contain;
}

.dindo-shell-brand span,
.dindo-shell-brand strong,
.dindo-shell-brand small {
  display: block;
}

.dindo-shell-brand strong {
  font-size: 0.9rem;
  font-weight: 950;
  text-transform: uppercase;
}

.dindo-shell-brand small {
  margin-top: 3px;
  color: #9b9ba4;
  font-size: 0.7rem;
  font-weight: 800;
}

.dindo-shell-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  margin: 0 auto;
}

.dindo-shell-nav a {
  position: relative;
  color: #c6c6cd;
  font-size: 0.76rem;
  font-weight: 950;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.dindo-shell-nav a:hover,
.dindo-shell-nav a[aria-current="page"] {
  color: #fff;
}

.dindo-shell-nav a[aria-current="page"]::after {
  position: absolute;
  right: 0;
  bottom: -11px;
  left: 0;
  height: 3px;
  background: #e53333;
  content: "";
}

.dindo-shell-socials {
  display: flex;
  gap: 7px;
}

.dindo-shell-socials a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 7px;
  color: #fff;
  text-decoration: none;
}

.dindo-shell-socials a:hover {
  border-color: #e53333;
  background: #e53333;
}

.dindo-shell-socials svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.dindo-shell-actions {
  display: flex;
  gap: 9px;
  margin-left: 4px;
}

.dindo-shell-actions button,
.dindo-shell-actions a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 7px;
  padding: 0 17px;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 950;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.dindo-shell-actions a {
  border-color: #1fab64;
  background: #1fab64;
}

@media (max-width: 1320px) {
  .dindo-shell-brand {
    min-width: 126px;
  }

  .dindo-shell-brand > span {
    display: none;
  }

  .dindo-shell-nav {
    gap: 17px;
  }
}

@media (max-width: 1080px) {
  .dindo-shell-nav {
    display: none;
  }

  .dindo-shell-socials {
    margin-left: auto;
  }
}

@media (max-width: 720px) {
  .dindo-shell-header-inner {
    width: min(calc(100% - 24px), 1680px);
    min-height: 70px;
    gap: 8px;
  }

  .dindo-shell-brand {
    min-width: 0;
    position: relative;
    z-index: 2;
  }

  .dindo-shell-brand img {
    width: 88px;
    height: 46px;
  }

  .dindo-shell-socials {
    position: absolute;
    left: 50%;
    z-index: 1;
    gap: 3px;
    margin: 0;
    transform: translateX(-50%);
  }

  .dindo-shell-socials a {
    width: 29px;
    height: 29px;
  }

  .dindo-shell-socials svg {
    width: 15px;
    height: 15px;
  }

  .dindo-shell-actions {
    position: relative;
    z-index: 2;
    margin-left: auto;
  }

  .dindo-shell-actions button {
    display: none;
  }

  .dindo-shell-actions a {
    min-height: 38px;
    padding: 0 9px;
    font-size: 0.62rem;
  }

  .dindo-site-header.is-mobile-hidden {
    transform: translateY(-100%);
  }
}

@media (max-width: 370px) {
  .dindo-shell-brand img {
    width: 78px;
  }

  .dindo-shell-socials {
    left: 48%;
  }

  .dindo-shell-socials a {
    width: 27px;
    height: 27px;
  }
}
