
/* Font */
@font-face {
  font-family: 'Nexa';
  src: url(https://www.luminousskinlab.com/wp-content/uploads/2025/12/NEXA-BOOK.ttf);
}

.site-header {
  font-family: 'Nexa', sans-serif;
}

/* Container */
.inner-container {
  max-width: 1140px;
  display: flex;
  width: 100%;
  margin: auto;
}

/* Top bar */
.top-bar {
  padding: 10px 40px;
  background: linear-gradient(90deg, #1F2352 0%, #3C5D6A 33%, #C39A39 67%, #9B752B 100%);
}

.top-inner {
  justify-content: space-between;
  align-items: center;
}

.social-icons a {
  margin-right: 20px;
  color: #fff;
  font-size: 14px;
}

.contact-info span {
  font-size: 16px;
  color: #fff;
  margin: 0 8px;
}

/* Main header */
.main-header {
  padding: 10px;
  position: relative;
}

.header-inner {
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

/* Menu */
.nav-menu ul {
  display: flex;
  list-style: none;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  text-decoration: none;
  color: #1F2352;
  font-weight: 700;
  font-size: 15px;
}

/* Buttons */
.header-buttons {
  display: flex;
  gap: 10px;
}

.btn {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
  border-radius: 100px;
  padding: 10px 15px;
  text-decoration: none;
}

.cst-b-btn-gr {
  background: linear-gradient(90deg, #1B2353 0%, #2C8498 50%, #12103B 100%);
}

.cst-btn-gr {
  background: linear-gradient(261deg, #F9E58E 0%, #BD891E 100%);
}

/* Toggle */
.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
}
.search-wrapper{
  position: absolute;
  background: #000000d4;
  width: 100vw;
  height: 100vh;
  left: 0;
  z-index: 999;
  top: 0;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.search-wrapper.active {
    display: flex; /* ya block */
}
#searchBox{
    max-width: 300px;
  width: 100%;
  background: transparent;
  height: 40px;
  outline: none;
  border: none;
    border-bottom-width: medium;
    border-bottom-style: none;
    border-bottom-color: currentcolor;
  border-bottom: 1px solid white;
  color: white;
  font-size: 20px;
}
#searchResults{
    max-width: 300px;
  width: 100%;
  background: white;
  border-radius: 12px;
  padding: 20px;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
/* Tablet */
@media (max-width: 1024px) {

  .contact-info span {
    font-size: 14px;
  }
}

/* Mobile */
@media (max-width: 768px) {
    .main-header{
        padding:10px 20px;
    }
  /* Top */
  .top-inner {
    flex-direction: column;
    text-align: center;
    gap: 5px;
  }

  .contact-info {
    display: none;
  }

  /* Header layout */
  .header-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  /* Toggle left */
  .menu-toggle {
    display: block;
    order: 1;
  }

  /* Buttons right */
  .header-buttons {
    order: 3;
  }

  /* Hide secondary button */
  .btn-hide-mobile {
    display: none;
  }

  /* Menu dropdown */
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    display: none;
    z-index: 999;
  }

  .nav-menu.active {
    display: block;
  }

  .nav-menu ul {
    flex-direction: column;
    padding: 10px;
    gap: 10px;
  }

  .nav-menu a {
    display: block;
    padding: 10px;
    border-bottom: 1px solid #eee;
  }

  /* Button size */
  .header-buttons .btn {
    padding: 8px 12px;
    font-size: 11px;
  }

}