/* ==================================================
   BOO HEADER
================================================== */

:root {
  --boo-header-green: #273E2C;
  --boo-header-green-dark: #103d2b;
  --boo-header-gold: #CAA472;
  --boo-header-white: #ffffff;
  --boo-header-height: 82px;
}

.boo-site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--boo-header-height);
  z-index: 1001;
  background: var(--boo-header-green);
  box-shadow: 0 2px 10px rgba(0,0,0,.10);
  transition:
    background .25s ease,
    box-shadow .25s ease,
    transform .25s ease;
}

.admin-bar .boo-site-header {
  top: 32px;
}

.boo-site-header--transparent {
  background: transparent;
  box-shadow: none;
}

.boo-header-container {
  max-width: 1440px;
  height: var(--boo-header-height);
  margin: 0 auto;
  padding: 10px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.boo-header-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.boo-header-logo a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  line-height: 0;
}

.boo-header-logo img {
  display: block;
  width: auto;
  height: auto;
  max-height: 56px;
  max-width: 145px;
  object-fit: contain;
}

.boo-desktop-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.boo-desktop-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin: 0;
  padding: 0;
}

.boo-desktop-nav li {
  margin: 0;
  padding: 0;
}

.boo-desktop-nav a {
  position: relative;
  color: var(--boo-header-white);
  text-decoration: none !important;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 15.5px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  transition: color .22s ease;
}

.boo-desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 999px;
  background: var(--boo-header-gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .22s ease;
}

.boo-desktop-nav a:hover,
.boo-desktop-nav a.is-active {
  color: var(--boo-header-gold);
}

.boo-desktop-nav a:hover::after,
.boo-desktop-nav a.is-active::after {
  transform: scaleX(1);
}

.boo-header-icons {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 18px;
}

.boo-search-toggle,
.boo-hamburger {
  appearance: none;
  -webkit-appearance: none;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
  cursor: pointer;
}

.boo-search-toggle {
  width: 42px;
  height: 42px;
  min-width: 42px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--boo-header-white);
  font-size: 20px;
  border-radius: 0 !important;
  transition: color .2s ease, transform .2s ease;
}

.boo-search-toggle i {
  font-size: 20px;
  line-height: 1;
  color: #fff;
}

.boo-search-toggle:hover {
  color: var(--boo-header-gold);
}

.boo-search-toggle:hover i {
  color: var(--boo-header-gold);
}

.boo-hamburger {
  display: none !important;
  width: 42px;
  height: 42px;
  min-width: 42px;
  min-height: 42px;
  position: relative;
  align-items: center;
  justify-content: center;
}

.boo-hamburger span {
  position: absolute;
  left: 8px;
  width: 26px;
  height: 3px;
  border-radius: 999px;
  background: var(--boo-header-white);
  box-shadow: none;
  transition:
    top .25s ease,
    transform .25s ease,
    opacity .25s ease,
    background .2s ease;
}

.boo-hamburger span:nth-child(1) {
  top: 12px;
}

.boo-hamburger span:nth-child(2) {
  top: 20px;
}

.boo-hamburger span:nth-child(3) {
  top: 28px;
}

.boo-hamburger.is-active span:nth-child(1) {
  top: 20px;
  transform: rotate(45deg);
}

.boo-hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.boo-hamburger.is-active span:nth-child(3) {
  top: 20px;
  transform: rotate(-45deg);
}

.boo-hamburger:hover span {
  background: var(--boo-header-gold);
}

/* ==================================================
   MOBILE MENU
================================================== */

.boo-mobile-nav {
  position: fixed;
  top: 0;
  left: -100%;
  width: min(82vw, 310px);
  height: 100vh;
  z-index: 1003;
  background: var(--boo-header-gold);
  padding: 26px 22px 28px;
  transition: left .3s ease;
  overflow-y: auto;
  box-shadow: 14px 0 34px rgba(0,0,0,.18);
}

.admin-bar .boo-mobile-nav {
  top: 32px;
  height: calc(100vh - 32px);
}

.boo-mobile-nav.is-open {
  left: 0;
}

.boo-mobile-nav__logo {
  margin-bottom: 34px;
}

.boo-mobile-nav__logo img {
  max-width: 145px;
  height: auto;
  display: block;
}

.boo-mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.boo-mobile-nav li {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid rgba(39,62,44,.16);
}

.boo-mobile-nav a {
  display: block;
  padding: 15px 0;
  color: var(--boo-header-white);
  text-decoration: none !important;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.25;
  transition: color .2s ease, transform .2s ease;
}

.boo-mobile-nav a:hover,
.boo-mobile-nav a.is-active {
  color: var(--boo-header-green-dark);
  transform: translateX(4px);
}

.boo-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 1002;
  display: none;
  background: rgba(0,0,0,.48);
  backdrop-filter: blur(2px);
}

.boo-menu-overlay.is-active {
  display: block;
}

/* ==================================================
   SEARCH OVERLAY
================================================== */

.boo-search-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 20% 18%, rgba(202,164,114,.16), transparent 28%),
    radial-gradient(circle at 82% 80%, rgba(255,255,255,.08), transparent 24%),
    var(--boo-header-green);
  color: var(--boo-header-white);
  padding: 34px 20px;
}

.boo-search-overlay.is-active {
  display: flex;
}

.boo-search-close {
  position: absolute;
  top: 24px;
  right: 30px;
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  outline: 0;
  box-shadow: none;
  background: transparent;
  color: var(--boo-header-white);
  font-size: 30px;
  cursor: pointer;
  transition: color .2s ease, transform .2s ease;
}

.boo-search-close:hover {
  color: var(--boo-header-gold);
  transform: rotate(90deg);
}

.boo-search-box {
  width: min(680px, 100%);
  text-align: center;
}

.boo-search-eyebrow {
  margin: 0 0 8px;
  color: var(--boo-header-gold);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2.4px;
}

.boo-search-box h2 {
  margin: 0 0 24px;
  color: #fff;
  font-family: "The Jungle", "DynaPuff", Arial, sans-serif;
  font-weight: normal;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1;
}

.boo-search-form {
  display: flex;
  gap: 10px;
  width: 100%;
}

.boo-search-form input {
  flex: 1;
  min-width: 0;
  height: 54px;
  border: 0;
  outline: 0;
  border-radius: 999px;
  padding: 0 20px;
  background: #fff;
  color: #103d2b;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 16px;
  box-shadow: 0 12px 28px rgba(0,0,0,.16);
}

.boo-search-form input::placeholder {
  color: rgba(16,61,43,.55);
}

.boo-search-form button {
  flex: 0 0 auto;
  height: 54px;
  border: 0;
  border-radius: 999px;
  padding: 0 26px;
  background: var(--boo-header-gold);
  color: var(--boo-header-green-dark);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}

.boo-search-form button:hover {
  transform: translateY(-2px);
  background: #e0ba85;
}

.boo-search-suggestions {
  width: 100%;
  margin-top: 20px;
  text-align: left;
}

.boo-search-suggestions div,
.boo-search-suggestions a {
  display: block;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,.16);
  color: #fff;
  text-decoration: none !important;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 15px;
  cursor: pointer;
}

.boo-search-suggestions div:hover,
.boo-search-suggestions a:hover {
  color: var(--boo-header-gold);
}

/* POPÜLER ARAMALAR */

.boo-popular-searches {
  width: 100%;
  margin-top: 28px;
  text-align: left;
}

.boo-popular-searches h4 {
  margin: 0 0 12px;
  color: rgba(255,255,255,.82);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 1px;
}

#popular-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 10px;
}

#popular-list div,
#popular-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background-color: rgba(255,255,255,.07);
  border-radius: 36px;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 16px;
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
  transition: all .3s ease;
  border: 1.5px solid rgba(255,255,255,.12);
  min-width: max-content;
  max-width: 100%;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(0,0,0,.1);
  text-decoration: none !important;
}

#popular-list div:hover,
#popular-list a:hover {
  background-color: #CAA472;
  color: #273E2C;
  border-color: #CAA472;
  transform: translateY(-2px);
}

#popular-list div i,
#popular-list a i {
  margin-right: 8px;
  font-size: 15px;
}

/* ==================================================
   RESPONSIVE
================================================== */

@media (max-width: 1180px) {
  .boo-desktop-nav ul {
    gap: 17px;
  }

  .boo-desktop-nav a {
    font-size: 14.5px;
  }
}

@media (min-width: 1025px) {
  .boo-hamburger {
    display: none !important;
  }

  .boo-desktop-nav {
    display: flex !important;
  }
}

@media (max-width: 1024px) {
  .boo-desktop-nav {
    display: none !important;
  }

  .boo-hamburger {
    display: inline-flex !important;
  }

  .boo-header-container {
    gap: 16px;
  }
}

@media (max-width: 782px) {
  .admin-bar .boo-site-header {
    top: 46px;
  }

  .admin-bar .boo-mobile-nav {
    top: 46px;
    height: calc(100vh - 46px);
  }
}

@media (max-width: 768px) {
  :root {
    --boo-header-height: 76px;
  }

  .boo-header-container {
    padding: 8px 18px;
  }

  .boo-header-logo img {
    max-height: 50px;
    max-width: 128px;
  }

  .boo-search-toggle,
  .boo-hamburger {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
  }

  .boo-search-toggle i {
    font-size: 19px;
  }

  .boo-hamburger span {
    left: 8px;
    width: 24px;
  }

  .boo-hamburger span:nth-child(1) {
    top: 11px;
  }

  .boo-hamburger span:nth-child(2) {
    top: 19px;
  }

  .boo-hamburger span:nth-child(3) {
    top: 27px;
  }

  .boo-hamburger.is-active span:nth-child(1),
  .boo-hamburger.is-active span:nth-child(3) {
    top: 19px;
  }

  .boo-search-form {
    flex-direction: column;
  }

  .boo-search-form button {
    width: 100%;
  }

  #popular-list {
    gap: 10px;
  }

  #popular-list div,
  #popular-list a {
    padding: 12px 18px;
    font-size: 14px;
  }
}

/* ARAMA OVERLAY KAPATMA İKONU DÜZELTME */

.boo-search-close,
.boo-search-close:hover,
.boo-search-close:focus,
.boo-search-close:active,
.boo-search-close:focus-visible {
  width: 46px !important;
  height: 46px !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  padding: 0 !important;
  margin: 0 !important;

  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  background: transparent !important;

  color: #ffffff !important;

  appearance: none !important;
  -webkit-appearance: none !important;
}

.boo-search-close i {
  color: #ffffff !important;
  font-size: 24px !important;
  line-height: 1 !important;
}

.boo-search-close:hover i {
  color: #CAA472 !important;
}