.header {
	border-bottom: 1px solid #bfbfbf;
}

.header__container {
	display: flex;
	justify-content: space-between;
	padding: 0 20px;
	position: relative;
    height: 64px;
}

.header__right {
	display: flex;
	align-items: center;
	gap: 20px;
}

.header__hours {
	font-size: 14px;
}

.header__tel {
}

.bottom__mobile {
	display: none;
}

.search-icon svg{
    width: 1.125rem;
    height: 1rem;
}

.search-icon {
	position: relative;
	cursor: pointer;
}

.cart-link svg{
    width: 1.2rem;
    height: 1.2rem;
}

.cart-link {
	position: relative;
}

.cart-link .count {
    position: absolute;
    right: -10px;
    top: -8px;
    padding: 5px;
    background: #000;
    width: 20px;
    border-radius: 50%;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.logo img{
	width: 140px;
}

.nav__list {
	display: flex;
	align-items: center;
	margin: 0;
	gap: 20px;
	padding: 0 10px;

}

.nav__link {
	font-size: 16px;
	text-transform: uppercase;
	font-weight: 700;
}

.nav__list--dropdown {
	position: absolute;
	background-color: #fff;
	right: 0;
	top: 100%;
	padding: 30px;
	display: block;
	transition: all 0.3s;
	opacity: 0;
	visibility: hidden;
	width: 100vw;
	z-index: 4;
    border-top:1px solid #d9d9d9;
    border-bottom:1px solid #d9d9d9;
}

.dropdown-submenu {
	display: flex;
	align-items: initial;
}
.dropdown-submenu__item {
	min-width: 200px;
	padding: 0 30px;
}

.dropdown-submenu__list {
	padding: 0;
}

.header__nav-mobile .dropdown-submenu__item:first-child {
	padding-left: 0;
    border-top: 1px solid #000;
}

.header__nav-mobile .dropdown-submenu__item:last-child {
	padding-right: 0;
    border-bottom: 1px solid #000;
}

.mobile-back {
	display: none;
}

.dropdown-list__item {
	margin-bottom: 10px;
}

.dropdown-submenu__list-item {
	margin-bottom: 10px;
}

.header__nav-desktop .dropdown-submenu__title, .bottom__mobile .dropdown-submenu__title{
    border-bottom: 1px solid #d9d9d9;
    padding: 2rem 0 .875rem 0;
    margin-bottom: 1rem;
    min-height: 1.25rem;
    font-size: 16px;
    text-transform: uppercase;
    display: block;
    font-weight: 500;
}

.header__nav-desktop {
    display: flex;
}

.header__nav-desktop .nav__item {
    height: 100%;
}

.header__nav-desktop .nav__link {
    display: flex;
    align-items: center;
    height: 100%;
}

@media (max-width: 1449.98px) {
	.nav__list {
		gap: 10px;
	}
}

@media (max-width: 1399.98px) {
	.bottom__mobile {
		display: flex;
		justify-content: center;
		height: 40px;
	}

    .bottom__mobile .nav__list {
        align-items: stretch;
    }

    .bottom__mobile .nav__link {
        height: 100%;
        display: flex;
        align-items: center;
    }

	.nav__list {
		gap: 20px;
	}
	
	.header__nav-desktop {
		display: none;
	}
}

@media (min-width: 992px) {
	.nav__link--drop:hover::after {
		transform: rotate(180deg);
		transition: all 0.3s;
	}

    .nav__item:hover {
        box-shadow: 0 -0.2rem 0 #000 inset;
    }

	.nav__item:hover .nav__list--dropdown {
		visibility: visible;
		opacity: 1;
		transition: all 0.3s;
		justify-content: center;
	}
}

.burger {
	width: 30px;
	height: 20px;
	cursor: pointer;
	background-color: transparent;
	border: none;
	position: relative;
	display: none;
}

.burger::before,
.burger::after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 2px;
	background-color: #000;
}

.closeMenu {
	width: 30px;
	height: 20px;
	cursor: pointer;
	background-color: transparent;
	border: none;
	position: relative;
	display: none;
}

.closeMenu::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	width: 100%;
	height: 2px;
	background-color: #000;
	transform: rotate(-45deg) translateY(-50%);
}

.closeMenu::after {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	width: 100%;
	height: 2px;
	background-color: #000;
	transform: rotate(45deg) translateY(-50%);
}

.burger::after {
	top: auto;
	bottom: 0;
}

.burger span {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	height: 2px;
	display: inline-block;
	background-color: #000;
}

.closeMenu span {
	display: none;
}

.lock {
	overflow: hidden;
}

.header__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 5px 20px;
	background: #000;
	color: #fff;
}

.header__bottom-text {
	margin: 0;
	font-size: 14px;
	text-align: center;
}

.bottom__nav {
}

.bottom__list {
	display: flex;
	margin: 0;
	gap: 15px;
}

.bottom__item {
}

.bottom__link {
	font-size: 14px;
	text-transform: uppercase;
}

.nav__item-bottom {
	display: none;
}

.header__search {
	width: 100%;
	position: relative;
	display: none;
}

.header__form-desktop {
	position: absolute;
	width: 250px;
	left: -180px;
	bottom: -50px;
	opacity: 0;
	visibility: hidden;
	transition: 0.5s;
}

.header__form-desktop.active {
	opacity: 1;
	visibility: visible;
}

.header__search-desktop {
	position: relative;
	display: flex;
}

.header__search-desktop .form-control {
	width: 100%;
	height: 50px;
	padding: 5px 40px 5px 20px;
	border-radius: 2px;
}

.header__search-desktop .header__search-submit {
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	background: transparent;
	border: none;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}

.header__search .form-control {
	width: 100%;
	height: 55px;
	padding: 1rem 2.6rem;
	border-radius: 2px;
	border: 2px solid #d9d9d9;
}

.header__search .header__search-submit {
	position: absolute;
	left: 20px;
	transform: translateY(-50%);
	top: 50%;
	background: transparent;
	border: none;
	display: flex;
	justify-content: center;
	align-items: center;
}

.header__search svg {
	width: 30px;
}

.bottom__mobile .nav__list--dropdown {
	top: 104px;
}

.header__nav-mobile {
    display: none;
}

.nav__dropdown-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 106.25rem;
}

.nav__items-bottom {
	display: none;
}

.plus, .minus {
	width: 15px;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
    z-index: -1;
}

.minus {
	display: none;
}

.nav__link--drop.opened .minus,
.nav__link-second.opened .minus{
	display: block;
}

.nav__link--drop.opened {
    border-bottom: none;
}

.nav__link--drop.opened .plus,
.nav__link-second.opened .plus{
	display: none;
}

.nav__link-second .plus,
.nav__link-second .minus {
    z-index: 1;
}

.nav__list--dropdown.transformation .dropdown-submenu__item:last-child .nav__link-second {
    border-bottom: none;
}

@media (max-width: 1399.98px) {
    .nav__count-dropdown {
        flex-direction: column;
        flex-wrap: wrap;
        width: 100%;
        max-height: 550px;
    }

    .mega-menu__featured-cat h4 {
        font-size: 1.125rem;
    }

    .mega-menu__featured-cat p {
        font-size: 0.875rem;
    }

    .mega-menu__featured-cat img {
        min-width: 7.25rem;
        width: 30%;
    }
}

@media (max-width: 1199.98px) {
	.header__bottom {
		flex-direction: column;
	}

	.bottom__nav {
		margin-top: 10px;
	}

	.nav__list {
		gap: 15px;
	}
}

@media (max-width: 991.98px) {
    .nav__item {
        padding: 0 1rem;
    }
    nav__link {
        padding: 20px 0;
    }

    .mobile-back .mobile-back__link{
		padding: 10px 25px;
	}
	.search-icon {
		display: none;
	}
	.bottom__mobile {
		display: none;
	}

	.header__nav-desktop {
		display: block;
	}

	.burger {
		display: block;
	}

	.burger.closeBurger {
		display: none;
	}

	.closeMenu {
		display: none;
	}

	.closeMenu.openBurger {
		display: block;
	}

	.nav__item-bottom {
		display: block;
		width: auto !important;
	}

	.nav__item-bottom a {
		border: none;
		font-size: 16px;
		line-height: 48px;
		padding: 0 10px;
		text-align: center;
		color: #fff;
		font-weight: 400;
	}

	.nav__items-bottom {
		display: flex;
		flex-wrap: wrap;
		background: #000;
		margin-top: 5%;
		justify-content: center;
	}

	.header__search {
		display: block;
		padding: 0 1rem;
	}

	.bottom__nav {
		display: none;
	}

	.mobile-back {
		display: block;
	}

	.nav {
		position: fixed;
		left: 0;
		top: 60px;
		width: 100%;
		height: calc(100% - 50px);
		z-index: 100;
		background-color: #fff;
		transform: translateX(-150vw);
		overflow-x: hidden;
		overflow-y: scroll;
		padding: 0 0 10px 0;
	}

	.nav__list {
		flex-direction: column;
		align-items: flex-start;
		padding: 0;
		position: relative;
        gap: 0;
	}

	.nav__item {
		margin-left: 0 !important;
		font-size: 20px;
		width: 100%;
		position: relative;
		list-style-type: none;
	}

	.nav__link,
	.dropdown-submenu__list-item a,
	.dropdown-list__link,
    .nav__link-second{
		padding: 20px 0;
		width: 100%;
		display: flex;
		justify-content: space-between;
		align-items: center;
		border-bottom: 1px solid #bfbfbf;
	}

	.nav__list--dropdown {
		display: none;
	}

	.dropdown-submenu__item {
		width: 100%;
		padding: 0;
	}

    .nav__link-second {
        font-size: 16px;
        font-weight: 700;
        text-transform: uppercase;
        padding: 20px 1rem;
    }

	.dropdown-submenu__title {
		padding: 30px 30px 0 30px;
	}

	.dropdown-submenu__banner {
		display: inline-block;
		padding: 20px;
	}

	.nav__list.transformation {
		transition: all 0.3s;
        opacity: 1;
        visibility: visible;
        position: static;
	}

	.nav__list--dropdown.transformation {
		display: block;
		transition: all 0.3s;
        width: 100%;
	}

	.nav.open {
		transform: translateX(0);
		transition: all 0.3s;
	}

	.overlay.open {
		opacity: 1;
		visibility: visible;
		transition: all 0.3s;
	}

	.mobile-back a {
		position: relative;
		border: none;
		display: flex;
		align-items: center;
		justify-content: flex-start;
	}

	.mobile-back a::before {
		content: "\2794";
		margin-right: 10px;
		transform: rotate(180deg);
	}

	/*.nav__link--drop::after,*/
    /*.nav__link-second::after{*/
	/*	content: "+";*/
	/*	position: absolute;*/
	/*	right: 30px;*/
    /*    font-size: 26px;*/
    /*    font-weight: 500;*/
	/*}*/

	.nav__link--drop, .nav__link-second {
		position: relative;
	}

    /*.nav__link--drop.opened::after,*/
    /*.nav__link-second.opened::after{*/
    /*    content: "-";*/
    /*}*/

	.logo {
		order: 1;
	}

	.header__right {
		order: 2;
	}

	.burger {
		order: 0;
	}

	.closeMenu {
		order: 0;
	}

	.header__hours {
		display:none;
	}

    .header__nav-desktop {
        display: none;
    }

    .header__nav-mobile {
        display: block;
    }

    .nav__link-second-dropdown {
        display: none;
    }

    .nav__link-second-dropdown.open {
        display: block;
        padding: 10px 30px;
    }

    .nav__link-second-dropdown-item a {
        font-size: 16px;
        padding: 5px 0;
        display: block;
    }

    .header__container {
        align-items: center;
    }
}

@media (max-width: 767.98px) {
	.header__hours {
		display: none;
	}
}

a {
	color: inherit;
	text-decoration: none;
}
img {
	max-width: 100%;
	object-fit: cover;
}
ul {
	list-style-type: none;
}

.header .logo {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}