:root {
  --font-size: 15px;
}

@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Regular.woff2") format("woff2"),
    url("../fonts/Gilroy-Regular.woff") format("woff");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Medium.woff2") format("woff2"),
    url("../fonts/Gilroy-Medium.woff") format("woff");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Semibold.woff2") format("woff2"),
    url("../fonts/Gilroy-Semibold.woff") format("woff");
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "RockStar";
  src: url("../fonts/RockStar-SemiBold.woff2") format("woff2"),
    url("../fonts/RockStar-SemiBold.woff") format("woff");
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}

body {
  font-family: "Gilroy";
}

a {
  color: currentColor;
}

.nheader {
  height: 175px;
  z-index: 10;
  position: relative;
}
.nheader__fxd {
  position: absolute;
  left: 0;
  width: 100%;
}
.nheader__fxd._fixed {
  position: fixed;
  transform: translateY(-100%);
}
.nheader__fxd._show {
  transition: all 0.5s ease;
  transform: translateY(0);
}
.nheader__fxd._fixed .nheader-top {
  display: none;
}
.nheader__fxd._fixed .nheader-bottom {
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nheader-top {
  padding: 15px 0;
  color: #fff;
  background: #000;
}
.nheader-top__inner {
  display: flex;
  align-items: center;
  gap: 60px;
}
.nheader-top__location {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nheader-top__nav ul {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #bab7b4;
}
.nheader-top__nav a:hover {
  color: #fff;
  opacity: 1;
}
.nheader-top__contacts {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-left: auto;
}
.social-box {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nheader-top__socials {
  color: #999999;
  font-size: 17px;
}
.nheader-top__socials a:hover {
  color: #fff;
  opacity: 1;
}
.nheader-top__tel {
  font-weight: 500;
}

.nheader-middle {
  padding: 11px 0;
  background: #0b120f;
}
.nheader-middle__inner {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nheader-middle__logo {
  margin-right: 50px;
}
.nheader-middle__logo img {
  width: 100px;
  object-fit: contain;
}
.search-form {
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 6px;
}
.search-form input {
  flex: 1 0 0;
  background: transparent;
  color: currentColor;
  border: none;
  outline: none;
}
.search-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.search-form button {
  background: none;
  color: currentColor;
  font-size: 16px;
  border: none;
  outline: none;
  cursor: pointer;
  line-height: 0;
}
.nheader-middle .search-form {
  width: 100%;
  max-width: 550px;
}
.nheader-middle__actions {
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: 28px;
  color: #fff;
  margin-left: auto;
}
.cart-link {
  position: relative;
}
.cart-link span {
  position: absolute;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -4px;
  right: -4px;
  padding: 3px;
  color: #000;
  background: #03b78f;
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
  border-radius: 50%;
}

.nheader-bottom {
  padding: 20px 0;
  background: #0b120f;
  color: #fff;
}
.nheader-bottom__nav ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 17px;
  font-weight: 500;
}

.nheader-drop {
  position: absolute;
  left: 0;
  width: 100%;
  height: calc(90svh - 175px);
  background: #ff7627;
  z-index: -1;
	transition: all 0.4s ease;
	transform: translateY(-101%);
}
.nheader-drop-overlay {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100svh;
  background: #6cff84;
  z-index: -2;
	transition: all 0.4s ease;
	opacity: 0;
	visibility: hidden;
}
