/* Start Reset */
* {
	padding: 0px;
	margin: 0px;
	border: none;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

/* Links */

a, a:link, a:visited  {
    text-decoration: none;
}

a:hover  {
    text-decoration: none;
}

/* Common */

aside, nav, footer, header, section, main {
	display: block;
}

h1, h2, h3, h4, h5, h6, p {
    font-size: inherit;
	font-weight: inherit;
}

ul, ul li {
	list-style: none;
}

img {
	vertical-align: top;
}

address {
  font-style: normal;
}

/* Form */

input, textarea, button, select {
	font-family: inherit;
    font-size: inherit;
    color: inherit;
    background-color: transparent;
}

input::-ms-clear {
	display: none;
}

textarea {
	resize: vertical;
}

button, input[type="submit"] {
    display: inline-block;
    box-shadow: none;
    background-color: transparent;
    background: none;
    cursor: pointer;
}

button::-moz-focus-inner {
	padding: 0;
	border: 0;
}

label {
	cursor: pointer;
}

legend {
	display: block;
}

input[type='file'] {
	max-width: 100%;
}

/* End Reset */

*{
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

body{
	background-color: #F5F5F5;
}

a{
	text-decoration: none;
}

.burger {
  display: none;
  position: relative;
  border: none;
  background: transparent;
  width: 40px;
  height: 26px;
  cursor: pointer;
  z-index: 1;
}
.burger::before,
.burger::after {
  content: '';
  left: 0;
  position: absolute;
  display: block;
  width: 100%;
  height: 4px;
  border-radius: 10px;
  background: #5F7CDB;
}
.burger::before {
  top: 0;
  box-shadow: 0 11px 0 #5F7CDB;
}
.burger::after {
  bottom: 0;
}
.burger::before {
  transition: box-shadow .3s .15s, top .3s .15s, transform .3s;
}
.burger::after {
  transition: bottom .3s .15s, transform .3s;
}
.burger.active::before {
  top: 11px;
  transform: rotate(45deg);
  box-shadow: 0 6px 0 rgba(0,0,0,0);
  transition: box-shadow .15s, top .3s, transform .3s .15s;
}
.burger.active::after {
  bottom: 11px;
  transform: rotate(-45deg);
  transition: bottom .3s, transform .3s .15s;
}
.burger-checkbox {
  position: absolute;
  visibility: hidden;
}
.burger-checkbox:checked + .burger::before {
  top: 11px;
  transform: rotate(45deg);
  box-shadow: 0 6px 0 rgba(0,0,0,0);
  transition: box-shadow .15s, top .3s, transform .3s .15s;
}
.burger-checkbox:checked + .burger::after {
  bottom: 11px;
  transform: rotate(-45deg);
  transition: bottom .3s, transform .3s .15s;
}
.menu{
    display: none;
}
.menu-list {
    position: fixed;  /* Меняем с absolute на fixed */
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;    /* Используем viewport height */
    margin: 0;
    padding: 80px 0 42px 0;  /* Увеличиваем верхний отступ (под хедер) */
    background: #fff;
    list-style-type: none;
    display: grid;
    gap: 12px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    box-sizing: border-box;
    z-index: 999;     /* Чтобы было поверх всего */
    
    /* Жёсткая фиксация границ */
    right: 0;
    max-width: 100%;
    overflow-x: hidden;
    overflow-y: auto;  /* Если пунктов много - будет скролл */
    
    /* Для Safari */
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}
.menu-item {
  display: block;
  padding: 8px;
  color: #5F7CDB;
  font-size: 18px;
  text-align: center;
  text-decoration: none;
}
.menu-item:hover {
  background: rgba(255,255,255,.2)
}
.burger-checkbox:checked ~ .menu-list {
	transform: translateX(0);
}

.wrapper{
	max-width: 1230px;
    padding: 0 15px;
    margin: 0 auto;
}

.header__container{
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 15px 0px;
}

.header__menu>ul{
	gap: 50px;
	display: flex;
	list-style: none;
	padding: 0;
	margin: 0;
}

.header__menu>ul>li>a{
	font-weight: 500;
	font-size: 16px;
	line-height: 19px;
	color: #121212;
}

.header__menu>ul>li>a:hover{
    color: #5F7CDB;
    transition: .2s;
}

.header__number>a{
	display: flex;
	align-items: center;
	font-weight: 600;
	font-size: 16px;
	line-height: 19px;
	color: #5F7CDB;
}

.header__number>a>img{
	margin-right: 20px;
}

.header__btn>a{
	display: flex;
	align-items: center;
	padding: 7px 10px;
	background-color: #5F7CDB;
	border-radius: 13px;
	max-width: 130px;
	max-height: 35px;
	font-weight: 400;
	font-size: 16px;
	line-height: 19px;
	color: #FFFFFF;
}

.header__btn img{
	padding-right: 17px;
}

.promo__container{
	background: #FFFFFF;
	border-radius: 20px;
	margin-top: 40px;
	padding: 44px 40px 27px 40px;
}

.promo_text__table{
	display: inline-block;
	font-weight: 500;
	font-size: 14px;
	line-height: 17px;
	color: #5377EA;
	padding: 8px 14px;
	background: rgba(115, 149, 255, 0.3);
	border-radius: 20px;
	margin-bottom: 27px;
}

.promo_text__title span{
	color: #5777A4;
}

.promo_text__title{
	font-weight: 700;
	font-size: 48px;
	line-height: 58px;
	color: #121212;
	margin-bottom: 25px;
}

.promo_text__subtitle{
	font-weight: 300;
	font-size: 20px;
	line-height: 24px;
	color: #7C7A7A;
	margin-bottom: 42px;
}

.btn-toform{
	font-weight: 400;
	font-size: 17px;
	line-height: 21px;
	color: #FFFFFF;
	padding: 10px 17px;
	background: #5F7CDB;
	border-radius: 13px;
	margin-right: 35px;
}

.btn-call{
	font-weight: 500;
	font-size: 17px;
	line-height: 21px;
	color: #5F7CDB;
	padding: 10px 43px;
	border: 1px solid #5F7CDB;
	border-radius: 13px;
}

.promo_block{
	display: flex;
	justify-content: space-between;
}

.promo_advantages{
	display: flex;
	justify-content: space-between;
	margin-top: 40px;
	border-top: 1px solid rgba(126, 126, 126, 0.5);
	padding-top: 23px;
}

.promo_advantages__card{
	font-weight: 400;
	font-size: 14px;
	line-height: 160.2%;
	color: #000000;
}

.promo_advantages__card span{
	display: block;
	font-weight: 600;
	font-size: 18px;
	line-height: 160.2%;
	color: #5F7CDB;
}

.services__container h2{
	font-weight: 700;
	font-size: 30px;
	line-height: 36px;
	color: #5F7CDB;
	text-align: center;
	margin-top: 30px;
	margin-bottom: 40px;
}

.service__item{
	display: flex;
	padding: 20px;
	background-color: #fff;
	border-radius: 20px;
	width: 570px;
	margin-bottom: 30px;
	justify-content: space-between;
}

.service__item_title{
	font-weight: 700;
	font-size: 24px;
	line-height: 29px;
	color: #424242;
	padding-bottom: 19px;
}

.service__item_list li{
	padding-bottom: 13px;
	font-weight: 300;
	font-size: 14px;
	line-height: 17px;
	color: #565656;
	display: flex;
}

.service__item_list li:last-child{
	padding-bottom: 0;
}

.service__item_list li span{
	width: 15px;
	height: 15px;
	background-image: url(img/list_icon.png);
	background-repeat: no-repeat;
	padding-right: 30px;
	margin-left: 22px;
}

.service__item_btn a{
	display: inline-flex;
	align-items: center;
	padding: 6px 10px;
	font-style: italic;
	font-weight: 600;
	font-size: 19px;
	line-height: 23px;
	color: #5F7CDB;
	border: 1px solid #5F7CDB;
	border-radius: 13px;
	margin-top: 30px;
}

.service__item_btn img{
	padding-left: 15px;
}

.service__item_price{
	font-weight: 700;
	font-size: 18px;
	line-height: 22px;
	color: #4C4C4C;
	text-align: center;
}

.services__items{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.service_item_rightcontent, .service_item_leftcontent{
  justify-content: space-between;
  flex-direction: column;
  display: inline-flex
}

.service__item_img{
	width: 228px;
	height: 163px;
}

.services__button{
	display: inline-block;
	padding: 12px 25px;
	background-color: #5F7CDB;
	color: #fff;
	border-radius: 13px;
	text-align: center;
	width: 330px;
	height: 45px;
	margin: 0 auto;
}

.steps__container{
	display: flex;
	justify-content: space-between;
}

.steps_h2{
	font-weight: 700;
	font-size: 30px;
	line-height: 36px;
	color: #5F7CDB;
	text-align: center;
	margin-top: 40px;
	margin-bottom: 25px;
}

.cert_h2{
	font-weight: 700;
	font-size: 30px;
	line-height: 36px;
	color: #5F7CDB;
	text-align: center;
	margin: 30px 0px 40px 0px;
}

.contact_h2{
	font-weight: 700;
	font-size: 30px;
	line-height: 36px;
	color: #5F7CDB;
	text-align: center;
	margin: 50px 0px 40px 0px;
}

.steps__right{
	margin-top: 20px;
}

.steps_item{
	width: 580px;
	height: 185px;
	background-color: #fff;
	border-radius: 20px;
	padding: 27px;
	margin-bottom: 40px;
}

.steps_item1{
	background-image: url(img/01.png);
	background-repeat: no-repeat;
	background-position: 10px 10px;
}

.steps_item2{
	background-image: url(img/02.png);
	background-repeat: no-repeat;
	background-position: 10px 10px;
}

.steps_item3{
	background-image: url(img/03.png);
	background-repeat: no-repeat;
	background-position: 10px 10px;
}

.steps_item4{
	background-image: url(img/04.png);
	background-repeat: no-repeat;
	background-position: 10px 10px;
}

.steps_item5{
	background-image: url(img/05.png);
	background-repeat: no-repeat;
	background-position: 10px 10px;
}

.steps_item6{
	background-image: url(img/06.png);
	background-repeat: no-repeat;
	background-position: 10px 10px;
}

.steps_item__title{
	font-weight: 700;
	font-size: 20px;
	line-height: 24px;
	color: #5F7CDB;
	text-align: center;
	margin-bottom: 15px;
}

.steps_item__text{
	font-weight: 300;
	text-align: center;
	font-size: 17px;
	line-height: 21px;
	color: #565656;
}

.certificates__container{
	display: flex;
	justify-content: space-evenly;
}

.license-item{
    height: 260px;
    width: 175px;
}

.contact__container{
	display: flex;
	justify-content: space-between;
}

.contact_info, .findus{
	width: 575px;
	height: 550px;
	background-color: #FFF;
	border-radius: 20px;
	padding: 25px;
}

.contact_info__title{
	font-weight: 700;
	font-size: 30px;
	line-height: 36px;
	color: #565656;
	margin-bottom: 40px;
}

.contact_info__item{
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}

.contact_info__item:last-child{
	margin-bottom: 0;
}

.info__item_icon{
	margin-right: 20px;
	height: 50px;
	width: 50px;
	border-radius: 13px;
	background-color: #5f7cdb;
	padding: 9px;
}

.info__item_title{
	font-weight: 700;
	font-size: 18px;
	line-height: 22px;
	color: #565656;
	padding-bottom: 6px;
}

.info__item_subtitle{
	font-weight: 700;
	font-size: 18px;
	line-height: 22px;
	color: #5F7CDB;
}

.form{
	margin-top: 55px;
	margin-bottom: 45px;
}

.form__container{
	background-color: #fff;
	border-radius: 20px;
	padding: 30px;
	width: 800px;
	height: 420px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}

.form__container{
	background-image: url(img/form-line.png);
	background-repeat: no-repeat;
	background-position: 267px 67px;
}

.form_text__title{
	font-weight: 700;
	text-align: right;
	font-size: 42px;
	line-height: 51px;
	color: #565656;
	display: inline-block;
	margin-bottom: 60px;
}

.form_text__title span{
	font-weight: 700;
	font-size: 42px;
	line-height: 51px;
	color: #5F7CDB;
}

.form_text__subtitle{
	font-weight: 200;
	font-size: 22px;
	line-height: 27px;
	color: #565656;
	margin-left: 50px;
}

#form{
	display: flex;
	flex-direction: column;
}

#form label{
	border-bottom: 1px solid #5F7CDB;
	color: #525252;
	font-weight: 200;
	font-size: 20px;
	line-height: 19px;
	width: 300px;
}

#form input{
	outline: none;
}

#form label{
	margin-bottom: 20px;
}

.form-btn{
	display: block;
	color: #fff;
	background-color: #5F7CDB;
	padding: 7px 62px;
	border-radius: 10px;
	font-weight: 200;
	font-size: 22px;
	line-height: 27px;
	margin-top: 10px;
}

.form-approve{
	font-weight: 200;
	margin-top: 20px;
	font-size: 12px;
	line-height: 15px;
	color: #565656;
}

#sign{
	margin-right: 7px;
}

#footer{
	background-color: #fff;
	border-radius: 20px;
	padding: 40px 32px 6px 32px;
	width: 98%;
	margin: 0 auto;
	margin-bottom: 10px;
}

.footer__container{
	text-align: center;
}

.footer__menu{
	justify-content: space-between;     /* Все элементы по центру */
    gap: 40px;                    /* Расстояние между элементами */
    flex-wrap: wrap;              /* Перенос на мобильных */
}

.footer__menu, .footer__menu a{
	display: flex;
	align-items: center;
	font-style: normal;
	font-weight: 700;
	font-size: 14px;
	line-height: 17px;
	color: #565656;
}

.footer_adress{
	text-align: left;
}

.policy{
	display: block;
	margin: 25px 0px 10px 0px;
	font-weight: 200;
	font-size: 12px;
	line-height: 15px;
	color: #565656;
}

.mob_content{
	display: none;
}

.col{
    margin: 20px 0px;
}

label > textarea{
    resize: none;
    outline: none;
}

.timer {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
}

.timer > * {
  flex: 0 0 4.5rem;
  text-align: center;
}

.timer > :nth-child(even) {
  flex: 0 0 0.5rem;
}

.timer__item {
  position: relative;
	font-weight: 700;
	font-size: 42px;
	line-height: 51px;
	color: #5F7CDB;
}

.timer__item::before {
  content: attr(data-title);
  display: block;
  position: absolute;
  bottom: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.875rem;
  color: #424242;
}

.sale__container{
	padding: 35px 0px;
	display: flex;
	flex-direction: column;
	height: 274px;
	border: 2px solid #5377EA;
	border-radius: 20px;
	text-align: center;
	margin-top: 45px;
}

.sale__container h2{
	font-weight: 700;
	font-size: 42px;
	line-height: 51px;
	color: #565656;
	margin-bottom: 20px;
}

.sale_text{
	font-weight: 200;
	font-size: 22px;
	line-height: 27px;
	color: #565656;
	margin-top: 20px;
}

@media (max-width: 1200px) {
    .wrapper {
    	max-width: 1170px;
    }
    .service__item {
    width: 545px;
	}
	.steps_item {
    width: 550px;
    height: 210px;
    background-color: #fff;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 25px;
	}
}

@media (max-width: 900px) {
    .wrapper {
    	max-width: 870px;
    }
    .mob_content{
    	display: block;
    }
    .steps_item__title_HIDE, .steps_item__text_HIDE{
    	display: none;
    }
    .header__logo a img{
    	width: 39px;
    }
    .header__menu>ul {
    	gap: 25px;
    }
    .header__number a img{
    	display: none;
    }
    .header__number>a{
    	font-size: 15px;
    }
    .header__btn>a{
    	font-size: 14px;
    }
    .header__menu>ul>li>a {
    	font-size: 14px;
	}
    .promo_banner img{
    	width: 380px;
    }
    .promo_text__title{
    	font-size: 33px;
    }
    .promo_text__subtitle{
    	font-size: 16px;
	}
	.steps__container{
    	flex-direction: column;
	}
	.promo_text__table{
		font-size: 13px;
	}
	.promo_text__buttons a{
		display: inline-block;
		width: 177px;
        height: 43px;
	}
	.btn-toform{
		margin-bottom: 15px;
	}
	.promo_advantages__card span {
    	font-size: 16px;
    }
    .promo_advantages__card {
    	font-size: 12px;
	}
	.services__container h2 {
    	font-size: 26px;
	}
	.service__item {
        width: 100%;
    }
    .service__item_title {
    	font-size: 21px;
	}
	.service__item_btn a{
		font-size: 18px;
	}
	.steps_h2{
		font-size: 26px;
	}
	.steps_item {
        width: 100%;
    }
    .steps_item3 {
    	background-image: url(img/02.png);
	}
	.steps_item5 {
    	background-image: url(img/03.png);
	}
	.steps__right {
    	margin-top: 0px;
	}
	.steps_item2 {
    	background-image: url(img/04.png);
	}
	.steps_item4 {
    	background-image: url(img/05.png);
	}
	.cert_h2 {
    	font-size: 26px;
	}
	.contact_h2{
		font-size: 26px;
	}
	.contact__container {
    	flex-direction: column;
	}
	.contact_info, .findus {
    	width: 100%;
    	margin-bottom: 25px;
	}
	.form {
    	margin-top: 30px;
	}
	.findus{
	    display: flex;
	    align-items: center;
	    flex-direction: column;
	}
	.findus iframe{
	    width: 100%;
	}
	.menu-list {
        padding-top: 100px;  /* Ещё больше отступ сверху на мобильных */
    }
}

@media (max-width: 600px) {
    .promo_advantages{
        flex-direction: column;
        text-align: center;
    }
    .promo_advantages__card{
        margin-bottom: 15px;
    }
    .promo_advantages__card:last-child{
        margin-bottom: 0;
    }
	.wrapper{
		max-width: 570px;
	}
	.burger, .menu{
		display: block;
	}
	.promo_banner{
		display: none;
	}
	.promo_text{
		text-align: center;
	}
	.btn-toform{
		margin-bottom: 0;
		margin-right: 0;
	}
	.promo_text__buttons{
		justify-content: space-evenly;
    	display: flex;
	}
	.header__menu, .header__number{
		display: none;
	}
    .promo_block {
    	flex-direction: column;
	}
	.certificates__container {
    	flex-direction: column;
    	align-items: center;
	}
	.certificates__container a{
		margin-bottom: 25px;
	}
	.certificates__container a:last-child{
		margin-bottom: 0;
	}
	.form__container{
		width: auto;
		height: auto;
		flex-direction: column;
		background-image: none;
	}
	.form_text__title{
		text-align: center;
		margin-bottom: 15px;
	}
	.form_text{
		text-align: center;
		margin-bottom: 30px;
	}
	.form_text__subtitle {
    	margin-left: 0px;
	}
	#form label{
		width: 100%;
		margin-bottom: 40px;
	}
	.form-btn {
    	text-align: center;
	}
	.form-approve {
    	text-align: center;
	}
	.footer__menu, .footer__menu a {
    	flex-direction: column;
    	gap: 25px;
	}
	#footer{
		padding: 20px 32px 6px 32px;
	}
	.footer_adress {
    	text-align: center;
	}
	.sale__container h2{
	    font-size: 32px;
	}
	.sale_text{
	    font-size: 17px;
	}
	.menu-list {
        padding-top: 120px;  /* Ещё больше */
    }
}

@media (max-width: 480px) {
	.header__btn{
		display: none;
	}
	.header__container{
		flex-direction: row-reverse;
	}
	.steps_item {
    height: 280px;
  }
  .findus a img{
      width: 410px;
  }
  .menu-list {
        padding-top: 140px;  /* И ещё */
    }
}

@media (max-width: 430px) {
	.promo_text__buttons{
		flex-direction: column;
		align-items: center;
	}
	.btn-toform{
		margin-bottom: 20px;
	}
	.promo_advantages{
		flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .promo_advantages__card{
    margin-bottom: 15px;
  }
  .promo_advantages__card:last-child{
  	margin-bottom: 0;
  }
  .service__item_img{
  	display: none;
  }
  .service__item{
  	flex-direction: column;
    text-align: center;
  }
  .service__item_btn{
  	margin-bottom: 12px;
  }
  .service__item_list{
  	text-align: left;
  }
  .promo_advantages__card {
    font-size: 13px;
  }
  .promo_advantages__card span {
    font-size: 18px;
  }
  .contact_info, .findus {
    height: 595px;
  }
  .findus a img{
      width: 355px;
  }
  .findus{
      height: auto;
  }
  .sale__container h2{
	    font-size: 26px;
  }
}

@media (max-width: 390px) {
    .contact_info, .findus {
    height: 610px;
  }
} 


/* ========================================= */
/* СТИЛИ ДЛЯ ПЕРЕКЛЮЧАТЕЛЯ ГОРОДОВ */
/* ========================================= */

.city-selector {
    padding: 8px 12px;
    border: 1px solid #5F7CDB;
    border-radius: 13px;
    font-size: 14px;
    cursor: pointer;
    background-color: white;
    min-width: 150px;
    color: #121212;
    font-weight: 500;
    outline: none;
}

.city-selector:hover {
    border-color: #3a5bbf;
}

/* Модальное окно выбора города */
.city-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.city-modal-content {
    background: white;
    padding: 30px;
    border-radius: 20px;
    max-width: 400px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.city-modal h3 {
    margin: 0 0 10px;
    font-size: 24px;
    font-weight: 700;
    color: #121212;
}

.city-modal p {
    color: #7C7A7A;
    margin-bottom: 20px;
    font-size: 16px;
}

.city-modal-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 13px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s;
}

.btn-primary {
    background: #5F7CDB;
    color: white;
}

.btn-primary:hover {
    background: #3a5bbf;
}

.btn-link {
    background: none;
    color: #5F7CDB;
    text-decoration: underline;
    border: 1px solid #5F7CDB;
}

.btn-link:hover {
    background: #f0f4ff;
}

.city-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
}

.city-modal-close:hover {
    color: #333;
}

/* Адаптация для мобильных */
@media (max-width: 768px) {
    .city-modal-content {
        margin: 20px;
        padding: 20px;
    }
    
    .city-selector {
        min-width: 120px;
        font-size: 12px;
        padding: 6px 8px;
    }
}

@media (max-width: 600px) {
    .city-selector {
        margin: 10px 0;
        width: 100%;
    }
}

/* До 900px - ваш существующий брейкпоинт */
@media (max-width: 900px) {
    .header__container {
        flex-wrap: wrap;  /* Разрешаем перенос */
        justify-content: space-between;
        align-items: center;
        position: relative;
    }
    
    .header__menu, .header__number {
        display: none;
    }
    
    .burger, .menu {
        display: block;
        z-index: 1001;
    }
    
    /* Логотип слева */
    .header__logo {
        order: 1;
        flex: 0 0 auto;
    }
    
    /* Бургер справа */
    .menu {
        order: 3;
        flex: 0 0 auto;
    }
    
    .burger-checkbox {
        /* ваш существующий код */
    }
    
    /* Telegram кнопка - скрываем или оставляем? */
    .header__btn {
        display: none;  /* Скрываем Telegram на мобильных */
    }
    
    /* СЕЛЕКТОР НА ВСЮ ШИРИНУ - главное изменение */
    .city-selector {
        order: 4;
        width: 100%;           /* Вся ширина */
        min-width: 100%;       /* Перебиваем min-width */
        margin: 10px 0 0 0;    /* Отступ сверху */
        padding: 10px 30px 10px 12px;  /* Увеличиваем для удобного тыка */
        font-size: 16px;       /* Побольше для мобильных */
        box-sizing: border-box; /* Чтобы padding не выходил за границы */
    }
}

/* Для совсем маленьких */
@media (max-width: 600px) {
    .city-selector {
        padding: 12px 30px 12px 12px;  /* Ещё больше для удобства */
        font-size: 16px;
    }
}

/* Если нужно подправить бургер меню */
@media (max-width: 480px) {
    .header__container {
        padding: 10px 15px;  /* Добавляем отступы по бокам */
    }
    
    .city-selector {
        margin: 10px 0 5px 0;
    }
}


/* ФИНАЛЬНЫЙ ФИКС ДЛЯ MENU-LIST */
html, body {
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
}

.menu-list {
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    transform: translateX(-100%) !important;
}

.burger-checkbox:checked ~ .menu-list {
    transform: translateX(0) !important;
}

/* Фикс для wrapper чтобы не создавал лишних отступов */
.wrapper {
    max-width: 1230px;
    padding: 0 15px;
    margin: 0 auto;
    box-sizing: border-box;
}