@font-face {
  font-family: 'Univers67';
  src: url('../fonts/OPTIUniversSixtySeven.otf') format('opentype');
  font-style: normal;
  font-weight: 700;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  overflow-x: clip;
}

body {
  font-family: Arial, sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #fff;
  color: #111;
  overflow-x: hidden;
}

.careers-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  height: 90px;
  padding: 18px 25px;
  background: #f4f4f4;
}

.careers-header__left {
  position: relative;
  z-index: 3;
  min-width: 48px;
  overflow: visible;
  flex: 0 0 auto;
}

.careers-header__right {
  position: relative;
  z-index: 3;
  min-width: 80px;
  height: 24px;
  flex: 0 0 auto;
}

.header-back {
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  text-decoration: none;
  color: #111;
  animation: bounceLeft 2s infinite;
  z-index: 4;
}

.header-back svg {
  width: 18px;
  height: 18px;
  display: block;
}

@keyframes bounceLeft {
  0%, 20%, 50%, 80%, 100% { transform: translateY(-50%) translateX(0); }
  40% { transform: translateY(-50%) translateX(-8px); }
  60% { transform: translateY(-50%) translateX(-4px); }
}

.careers-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.careers-logo {
  width: auto;
  height: 80px;
  max-width: min(75vw, 100%);
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.careers-main {
  flex: 1 0 auto;
  padding: 70px 22px 70px;
}

.careers-shell {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.careers-intro {
  width: min(720px, 100%);
  margin: 0 auto 28px;
  text-align: center;
}

.careers-intro h1 {
  margin: 0;
  font-size: clamp(30px, 4.2vw, 54px);
  font-family: 'Univers67', Arial, sans-serif;
  font-weight: 700;
  line-height: 0.88;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  -webkit-text-stroke: 0.35px currentColor;
  text-rendering: geometricPrecision;
  white-space: nowrap;
}

.careers-form {
  width: 100%;
}

.careers-status {
  min-height: 18px;
  margin: 0 0 18px;
  font-size: 13px;
  line-height: 1.4;
  text-align: center;
  opacity: 0;
  transition: opacity .5s ease;
}

.careers-status.is-error {
  color: red;
}

.careers-status.is-success {
  color: #1f7a1f;
}

.careers-grid {
  display: grid;
  gap: 18px 18px;
}

.careers-grid--double {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.careers-field {
  display: flex;
  flex-direction: column;
}

.careers-field--full {
  grid-column: 1 / -1;
}

.careers-field-meta {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 12px;
  margin-bottom: 6px;
  color: #6d6d6d;
  font-size: 13px;
  font-family: 'Univers67', Arial, sans-serif;
  letter-spacing: 0.02em;
}

.careers-field-meta label,
.careers-field-meta span {
  display: block;
  line-height: 1;
}

.careers-field-meta label {
  margin-bottom: 0;
  align-self: start;
}

.careers-field label {
  margin-bottom: 6px;
  color: #6d6d6d;
  font-size: 13px;
  font-family: 'Univers67', Arial, sans-serif;
  letter-spacing: 0.02em;
}

.careers-field input,
.careers-field select,
.careers-field textarea {
  width: 100%;
  padding: 10px 10px;
  border: 1px solid #111;
  border-radius: 5px;
  font-size: 16px;
  font-family: 'Univers67', Arial, sans-serif;
  background: #f4f4f4;
  color: #0f0f0f;
  outline: none;
}

.careers-field textarea {
  resize: vertical;
  min-height: 160px;
}

.careers-field input::placeholder,
.careers-field textarea::placeholder {
  color: #777;
}

.careers-field select {
  appearance: none;
}

.careers-field input:focus,
.careers-field select:focus,
.careers-field textarea:focus {
  border-color: #111;
}

.careers-field input.is-invalid,
.careers-field select.is-invalid,
.careers-field textarea.is-invalid {
  border-color: #8b0000;
}

.field-error {
  min-height: 18px;
  margin: 6px 0 0;
  font-size: 13px;
  color: #8b0000;
}

.careers-submit {
  width: 100%;
  margin-top: 14px;
  padding: 10px;
  border: 1px solid #111;
  border-radius: 5px;
  background: #000;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  font-family: 'Univers67', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.careers-submit:hover {
  background: #1a1a1a;
}

.careers-submit:disabled {
  opacity: 0.7;
  cursor: wait;
}

.footer-zone {
  width: 100%;
  flex-shrink: 0;
  line-height: normal;
}

.footer-zone > .container.text-center.pt-4.pb-0 {
  width: 100%;
  max-width: none;
  padding-top: 0 !important;
  padding-right: 0;
  padding-bottom: 0 !important;
  padding-left: 0;
  margin: 0;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 10px;
}

.socials img {
  width: 15px;
  height: 15px;
  cursor: pointer;
  user-select: none;
}

.socials a img {
  vertical-align: baseline;
}

.brand img {
  max-width: 180px;
  height: auto;
  display: block;
  margin: 0 auto 10px;
}

.brand {
  margin-bottom: 10px;
}

.footer-zone .brand.mb-4 {
  margin-bottom: 10px !important;
}

.images-banner {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
  background: #000;
  margin-top: 0;
  margin-bottom: 0;
  position: relative;
}

.images-banner .image-ticker {
  display: flex;
  flex-wrap: nowrap;
  overflow: hidden;
  position: relative;
}

.images-banner .image-ticker ul {
  list-style: none;
  flex-shrink: 0;
  min-width: 100%;
  display: flex;
  gap: 0;
  padding: 0;
  margin: 0;
  animation: scrollRight 240s linear infinite reverse;
}

.images-banner .image-ticker ul li {
  flex-shrink: 0;
}

.images-banner .image-ticker ul li img {
  height: 24px;
  width: auto;
  display: block;
}

.images-banner .image-ticker:hover ul {
  animation-play-state: paused;
}

@keyframes scrollRight {
  to { transform: translateX(calc(-100%)); }
}

footer {
  background-color: #000;
  color: #fff;
  padding: 50px 20px;
  text-align: left;
  font-size: 10px;
  line-height: normal;
  margin-top: 0;
  margin-bottom: 0;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  box-sizing: border-box;
}

footer > .container {
  width: 100%;
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

footer .footer-sections {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

footer .footer-sections.row {
  --bs-gutter-x: 0;
  margin-left: auto;
  margin-right: auto;
}

footer .footer-sections.row > * {
  width: auto;
  max-width: none;
  padding-left: 0;
  padding-right: 0;
  flex: 0 0 auto;
}

footer .footer-sections strong {
  display: block;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
}

footer .footer-sections .col-6,
footer .footer-sections .col-md-3 {
  text-align: center;
}

footer .footer-sections a {
  color: #fff;
  text-decoration: none;
  display: table;
  margin: 5px auto;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.35;
  position: relative;
}

footer .footer-sections a[data-i18n="footer_help_returns"] {
  white-space: nowrap;
}

footer .footer-sections a[data-i18n="footer_gift_card_terms"] {
  white-space: nowrap;
}

footer .footer-sections a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .18s ease;
}

footer .footer-sections a:hover::after,
footer .footer-sections a.footer-link-active::after {
  transform: scaleX(1);
}

footer .footer-bottom {
  border-top: 1px solid #555;
  margin-top: 30px !important;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 10px;
  gap: 8px;
}

footer .footer-bottom > div:first-child {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.15;
}

footer .footer-lang {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
}

footer .footer-lang span {
  cursor: pointer;
  position: relative;
  display: inline-block;
  line-height: 1.2;
}

footer .footer-lang .lang-separator {
  opacity: 0.85;
}

footer .footer-lang span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .18s ease;
}

footer .footer-lang span:hover::after,
footer .footer-lang span.lang-active::after {
  transform: scaleX(1);
}

@media (max-width: 767px) {
  .careers-grid--double {
    grid-template-columns: 1fr;
  }

  .careers-field--full {
    grid-column: auto;
  }
}

@media (max-width: 1024px) {
  .careers-header {
    display: flex;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    height: auto !important;
    min-height: 74px !important;
    padding: 14px 16px 10px !important;
  }

  .header-back {
    left: 4px;
    width: 22px;
    height: 22px;
  }

  .header-back svg {
    width: 18px;
    height: 18px;
  }

  .careers-header__left,
  .careers-header__right {
    flex: 0 0 28px;
    min-width: 28px;
  }

  .careers-logo {
    top: 50%;
    width: auto;
    height: 44px;
    max-width: calc(100% - 96px) !important;
    object-fit: contain;
    margin: 0 !important;
    display: block !important;
    transform: translate(-50%, -50%);
  }

  .careers-main {
    padding: 50px 14px 56px;
  }

  footer {
    padding: 34px 16px 22px;
  }

  footer .footer-sections {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 32px 20px !important;
    max-width: 520px !important;
    margin: 0 auto !important;
    padding: 0 12px !important;
  }

  footer .footer-sections .col-6,
  footer .footer-sections .col-md-3,
  .footer-zone footer .footer-col {
    padding: 0 2px !important;
    text-align: center !important;
  }

  footer .footer-sections.row > * {
    width: auto;
    max-width: none;
    flex: 0 0 auto;
  }

  footer .footer-sections a {
    margin: 5px auto;
    padding: 0 8px;
    font-size: 10px;
    font-weight: 400;
    line-height: 1.5;
  }

  footer .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    gap: 8px;
    text-align: left;
    align-items: center;
    margin-top: 28px;
    padding-top: 16px;
  }

  footer .footer-lang {
    justify-content: flex-end;
  }
}

@media (max-width: 480px) {
  .careers-main {
    padding: 36px 14px 40px;
  }

  .careers-shell {
    width: min(100%, 320px);
  }

  .careers-form {
    padding: 0 14px;
    box-sizing: border-box;
  }

  .careers-intro {
    margin-bottom: 22px;
  }

  footer .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    align-items: center;
  }

  footer .footer-lang {
    justify-content: center;
  }

  .careers-intro h1 {
    white-space: normal;
    font-size: 2.25rem;
  }

  .careers-grid {
    gap: 12px;
  }

  .careers-field-meta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 10px;
    font-size: 11px;
    margin-bottom: 4px;
    text-align: left;
  }

  .careers-field-meta label {
    flex: 1 1 auto;
    min-width: 0;
    margin: 0;
    font-size: inherit;
    line-height: 1;
    text-align: left;
  }

  .careers-field-meta span {
    font-size: inherit;
    line-height: 1;
    align-self: start;
    text-align: right;
    white-space: nowrap;
  }

  .field-error {
    min-height: 10px;
    margin-top: 4px;
    font-size: 11px;
  }

  .careers-logo {
    width: auto;
    height: 44px;
    max-width: calc(100% - 96px) !important;
  }

  footer .footer-sections {
    grid-template-columns: repeat(2, 1fr) !important;
    max-width: 92vw !important;
    gap: 32px 20px !important;
    padding: 0 12px !important;
    transform: scale(0.92);
    transform-origin: top center;
  }

  footer {
    text-align: center;
  }

  footer .footer-sections a,
  footer .footer-sections button {
    white-space: nowrap;
    overflow-wrap: normal;
    word-break: normal;
  }
}