.header-mobile {
position: fixed;
top: 0;
left: -120%;
z-index: 99;
width: 100%;
height: 100%;
} .header-mobile.active {
left: 0;
} .header-mobile__content {
position: relative;
z-index: 10;
display: flex;
justify-content: space-between;
flex-direction: column;
max-width: 375px;
width: 100%;
height: 100%;
padding-top: 88px;
background: var(--bg);
} .header-mobile__menu {
display: flex;
flex-direction: column;
} .header-mobile__menu li {
display: flex;
flex-direction: column;
} .header-mobile__menu > li > a {
display: flex;
justify-content: space-between;
align-items: center;
gap: 30px;
padding: 12px 30px;
border: 1px solid #FFFFFF73;
} .header-mobile__menu > li > a:hover p,
.header-mobile__menu > li > a:hover svg {
color: var(--light2);
} .header-mobile__menu p {
font-size: 20px;
font-weight: 400;
line-height: 100%;
letter-spacing: 5%;
text-transform: uppercase;
color: var(--dark);
} .header-mobile__menu svg {
min-width: 25px;
min-height: 25px;
width: 25px;
height: 25px;
color: var(--dark);
} .header-mobile_bottom {
display: flex;
flex-direction: column;
gap: 15px;
} .header-mobile__delivery {
display: flex;
justify-content: center;
padding: 12px 0;
background: var(--light);
border-radius: 10px;
font-size: 15px;
font-weight: 400;
line-height: 100%;
letter-spacing: 0%;
text-align: center;
vertical-align: middle;
text-transform: uppercase;
color: var(--white-text);
} .header-mobile__buttons {
display: flex;
align-items: center;
flex-direction: column;
background: var(--dark);
} .header-mobile__button {
display: flex;
justify-content: center;
align-items: center;
gap: 30px;
width: 100%;
padding: 12px 0;
} .header-mobile__button:first-of-type {
border-bottom: 1px solid var(--white-text);
} .header-mobile__button:hover {
background: var(--light2);
} .header-mobile__button svg {
min-width: 30px;
min-height: 30px;
width: 30px;
height: 30px;
color: var(--white-text);
} .header-mobile__button h2 {
font-size: 16px;
font-weight: 400;
line-height: 100%;
letter-spacing: 0%;
text-align: center;
vertical-align: middle;
text-transform: uppercase;
color: var(--white-text);  
} .header-mobile__bg {
position: absolute;
top: 0;
left: 0;
z-index: 5;
width: 100%;
height: 100%;
background: rgba(16, 9, 9, 0.7);
} .dropdown.active a svg {
transform: rotate(90deg);
} .dropdown-list {
overflow: hidden;
padding: 0 45px;
} .dropdown-list li a {
display: flex;
padding: 12px 0;
font-size: 20px;
font-weight: 400;
line-height: 100%;
letter-spacing: 5%;
text-transform: uppercase;
color: var(--dark);
} .dropdown-list li a:hover {
color: var(--light2);
}
@media (max-width: 600px) {
.header-mobile__content {
padding-top: 70px;
}
}