@import url("/wp-content/plugins/photorace/photorace-ui/css/fonts.css?v=20260222a");

:root {
  --text: #f6f6f9;
  --line: #202224;
  --red: #d52b31;
  --font-display: "Special Gothic Expanded One", "Arial Black", "Arial", sans-serif;
  --font-body: "Zalando Sans Expanded", "Helvetica Neue", "Arial", sans-serif;
}

.pr-container {
  width: min(1288px, calc(100% - 2rem));
  margin: 0 auto;
}

.pr-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.pr-logo-link {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.pr-logo {
  width: 128px;
  height: auto;
  object-fit: contain;
  display: block;
}

.pr-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid #2a2d33;
  background: #101114;
  padding: 10px 8px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.pr-menu-toggle span {
  width: 22px;
  height: 2px;
  background: #f6f6f9;
  display: block;
}

.pr-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 0;
  padding: 0;
  border: 0;
}

.pr-nav a {
  color: var(--text);
  font-size: 14px;
  line-height: 1.5;
  text-decoration: none;
  font-family: var(--font-body);
}

.pr-login-btn {
  background: var(--red);
  color: #fff;
  border: 0;
  width: 7.25rem;
  min-height: 3rem;
  padding: 0 1rem;
  font-size: 12px;
  letter-spacing: .02em;
  text-align: center;
  font-family: var(--font-display) !important;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  white-space: nowrap;
}

.pr-login-btn:hover { filter: brightness(.92); }

.pr-user-menu {
  position: relative;
  display: flex;
  align-items: center;
}

.pr-user-trigger {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(213, 43, 49, .75);
  border-radius: 999px;
  background: rgba(213, 43, 49, .6);
  color: #f6f6f9;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: filter .2s ease, border-color .2s ease;
}

.pr-user-trigger:hover {
  filter: brightness(.92);
  border-color: rgba(213, 43, 49, 1);
}

.pr-user-trigger svg {
  width: 22px;
  height: 22px;
  display: block;
}

.pr-user-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 220px;
  background: #101114;
  border: 1px solid #2a2d33;
  box-shadow: 0 16px 36px rgba(0, 0, 0, .32);
  border-radius: 14px;
  padding: 12px;
  display: none;
  z-index: 20;
}

.pr-user-menu:hover .pr-user-dropdown,
.pr-user-menu:focus-within .pr-user-dropdown {
  display: block;
}

.pr-user-name {
  display: block;
  padding: 8px 12px 12px;
  font-size: 12px;
  color: #a7aab3;
  border-bottom: 1px solid #25282d;
  margin-bottom: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pr-user-dropdown a,
.pr-user-logout {
  display: block;
  width: 100%;
  padding: 12px;
  margin-top: 6px;
  border-radius: 10px;
  color: #f6f6f9;
  font-size: 13px;
  line-height: 1.4;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-body);
  text-transform: none;
}

.pr-user-dropdown a:hover,
.pr-user-logout:hover {
  background: #1c1f25;
  filter: brightness(.92);
}

@media (max-width:1100px) {
  .pr-header { flex-direction: column; gap: 16px; }
}

@media (max-width:720px) {
  .pr-header {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 3.2vw;
  }

  .pr-menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .pr-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 3.2vw;
    border-top: 0.2667vw solid #2a2d33;
    padding-top: 3.2vw;
  }

  #pr-home-header.is-menu-open .pr-nav {
    display: flex;
  }

  .pr-nav a,
  #prHeaderActions {
    width: 100%;
  }

  #prHeaderActions {
    display: flex;
    justify-content: flex-start;
  }

  #prHeaderActions .pr-login-btn {
    width: 100%;
    min-height: 11.7333vw;
  }

  .pr-user-menu {
    width: 100%;
  }

  .pr-user-dropdown {
    right: auto;
    left: 0;
  }

  .pr-user-trigger {
    width: 12.8vw;
    height: 10.6667vw;
    border: 0.2667vw solid rgba(213, 43, 49, .75);
    border-radius: 2.1333vw;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(213, 43, 49, .6);
  }

  .pr-user-trigger svg {
    transform: none;
  }
}
