/* =========================
   TOP BAR
========================= */

.pp-topbar {
  background: linear-gradient(180deg, #5a391d 0%, #1d1208 100%);
  min-height: 91px;
}

.pp-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 91px;
}

.pp-logo {
  display: flex;
  align-items: center;
}

.pp-logo img {
  width: 300px;
  max-width: 100%;
  display: block;
}

.pp-top-actions {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

/* =========================
   BUTTON & ICON
========================= */

.pp-icon-btn,
.pp-burger {
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 19px;
  cursor: pointer;
  padding: 0 14px;
  height: 32px;
}

.pp-icon-btn:hover,
.pp-burger:hover {
  opacity: 0.8;
}

.pp-lang,
.pp-date,
.pp-mobile-link,
.pp-wap-link {
  min-height: 32px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 14px;
  border-left: 1px solid rgba(255,255,255,0.45);
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}

.pp-wap-link {
  border-right: 1px solid rgba(255,255,255,0.45);
}

.pp-lang img {
  width: 18px;
  height: auto;
  display: block;
}

.pp-mobile-link:hover,
.pp-wap-link:hover {
  color: #ffd67b;
}

/* =========================
   LOGIN BUTTON
========================= */

.pp-btn {
  margin-left: 10px;
  padding: 9px 24px;
  border-radius: 30px;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  transition: 0.2s ease;
  box-shadow:
    inset 0 2px 2px rgba(255,255,255,0.35),
    0 2px 4px rgba(0,0,0,0.3);
}

.pp-btn:hover {
  transform: translateY(-1px);
}

.pp-btn-login {
  background: linear-gradient(#d7dbe6, #7d8397);
  border: 1px solid #d8dce7;
}

.pp-btn-register {
  background: linear-gradient(#f5cf7a, #ab6d27);
  border: 1px solid #f3d99b;
}

.pp-burger {
  display: none;
}

/* =========================
   NAVBAR
========================= */

.pp-navbar {
  background: linear-gradient(
    180deg,
    #ffe8b8 0%,
    #e2a24f 45%,
    #b46b22 100%
  );
  min-height: 49px;
  box-shadow: inset 0 1px rgba(255,255,255,0.35);
}

/* CENTER NAV MENU */
.pp-navbar .pp-container {
  display: flex;
  justify-content: center;
}

.pp-nav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 49px;
  width: fit-content;
  margin: 0 auto;
}

/* MENU */
.pp-nav-inner a,
.pp-nav-arrow {
  min-height: 49px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 900;
  text-shadow: 0 1px 1px rgba(0,0,0,0.35);
  border: 0;
  background: transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: 0.2s ease;
}

.pp-nav-inner a:hover {
  background: rgba(255,255,255,0.14);
}

/* HOME BUTTON */
.pp-home {
  width: 46px;
  background: #ffe0a4 !important;
  color: #000 !important;
  font-size: 17px !important;
  text-shadow: none !important;
}

.pp-home:hover {
  background: #ffd285 !important;
}

/* ARROW */
.pp-nav-arrow {
  font-size: 16px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {

  .pp-topbar {
    min-height: 74px;
  }

  .pp-topbar-inner {
    min-height: 74px;
  }

  .pp-logo img {
    width: 210px;
  }

  .pp-date,
  .pp-mobile-link,
  .pp-wap-link {
    display: none;
  }

  .pp-burger {
    display: block;
  }

  .pp-navbar {
    display: none;
  }

  .pp-navbar.show {
    display: block;
  }

  .pp-navbar .pp-container {
    display: block;
  }

  .pp-nav-inner {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    padding: 8px 0;
  }

  .pp-nav-inner a,
  .pp-nav-arrow {
    width: 100%;
    justify-content: flex-start;
    min-height: 44px;
    padding: 0 16px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
  }

  .pp-home {
    width: 100%;
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 576px) {

  .pp-topbar-inner {
    min-height: 68px;
  }

  .pp-topbar {
    min-height: 68px;
  }

  .pp-logo img {
    width: 170px;
  }

  .pp-top-actions {
    gap: 2px;
  }

  .pp-icon-btn {
    display: none;
  }

  .pp-lang {
    border-left: 0;
    padding: 0 8px;
  }

  .pp-btn {
    padding: 7px 14px;
    font-size: 11px;
    margin-left: 4px;
  }

  .pp-burger {
    padding: 0 8px;
    font-size: 18px;
  }
}