.language-switcher {
  position: absolute;
  top: 112px;
  right: 20px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
}

.language-switcher button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 50px;
  min-height: 36px;
  padding: 0 9px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  font: inherit;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.language-switcher button:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.16);
}

.language-switcher button[aria-pressed="true"] {
  color: var(--ink);
  background: #fff;
  border-color: #fff;
}

.language-flag {
  font-size: 15px;
  line-height: 1;
}

html[lang="es"] .price-card::before {
  content: "Brunch de cocteles";
}

@media (max-width: 620px) {
  .language-switcher {
    top: 98px;
    right: 14px;
    gap: 3px;
  }

  .language-switcher button {
    min-width: 34px;
    min-height: 34px;
    padding: 0 7px;
    font-size: 10px;
  }

  .language-code {
    display: none;
  }
}

@media (max-width: 360px) {
  .language-switcher button {
    min-width: 30px;
    padding: 0 6px;
  }
}
