.header__left {
    position: relative;
}
  
.header__logo--wrap {
    display: flex;
    align-items: center;
}

.header__logo-btn {
    margin-left: 12px;
    cursor: pointer;
}

.header__logo-btn-img {
    display: block;
    width: 30px;
    height: auto;
    max-width: 100%;
    transition: .2s;
}

.header__logo-btn.is-active .header__logo-btn-img {
    transform: rotate(180deg);
}

.header__left .cities_dd {
    position: absolute;
    display: flex;
    width: 450px;
    z-index: 99;
    top: 100%;
    background: #323967;
    flex-direction: column;
    justify-content: space-between;
    padding: 21px 18px;
    transition: .4s;

    opacity: 0;
    visibility: hidden;
    transform: translateY(32px);
}

.header__left .cities_dd.is-show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header__left .cities_dd a{
    color:#ffffff85;
    transition: all 0.2s ease-in-out;
}

.header__left .cities_dd a:hover{
    color:#fff;
}
.item__left .item__images .item__image.swiper-slide .product-item__images-btn {
    position: absolute;
    top: 0;
    border-radius: 0;
}
/* плажка о принятии печенок на сайте */
.cookie-banner {
    /* Всегда снизу слева */
    position: fixed;
    bottom: 20px;
    left: 20px;
    
    /* Размеры и форма */
    max-width: 320px;
    padding: 16px;
    border-radius: 8px;
    
    /* Оформление */
    background-color: rgba(34, 34, 34, 0.95);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    
    /* Шрифт */
    font-family: sans-serif;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-link {
    color: #4db8ff;
    text-decoration: underline;
}

.cookie-link:hover {
    text-decoration: none;
}

.cookie-btn {
    display: block;
    width: 100%;
    margin-top: 12px;
    padding: 10px;
    background-color: #4caf50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.2s ease;
}

.cookie-btn:hover {
    background-color: #45a049;
}
/* принятие куков */
.cookie-banner-progres {
  /* Сброс стандартного вида */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  
  /* Размеры и рамка */
  width: 100%;
  height: 20px;
  border: none;
  background-color: #ffffff;
  
  overflow: hidden; 
}
/* --- Стили для Chrome, Safari, Edge --- */
/* Фон (пустая часть) */
.cookie-banner-progres::-webkit-progress-bar {
  background-color: #ffffff;
}
/* Заполнение */
.cookie-banner-progres::-webkit-progress-value {
  background-color: #737fd4;
border-radius: 4px 0 0 4px;
}
/* --- Стили для Firefox --- */
/* Заполнение */
.cookie-banner-progres::-moz-progress-bar {
    background-color: #373F80;
}
/* Контейнер для фиксации наложения текста */
.progress-container {
  position: relative; 
  cursor: pointer;
  line-height: 0; 
  padding-top: 10px;
}
.cookie-banner-text {
  position: absolute;
  top: 65%;
  left: 50%;
  transform: translate(-50%, -50%); 
  font-weight: bold;
  pointer-events: none; 
  mix-blend-mode: exclusion; /* Опционально: инверсия цвета на темном фоне */
  color: #ffffff;
  font-family: sans-serif;
  font-size: 14px;
  line-height: 1.5;
}
/* Адаптив для совсем маленьких экранов */
@media (max-width: 400px) {
    .cookie-banner {
        left: 10px;
        right: 10px;
        bottom: 10px;
        max-width: none;
    }
}
/*  */
@media (max-width: 767px) {
    .header__left {
        position: static;
    }

    .header__logo-btn {
        margin-left: 8px;
        width: 16px;
        height: 16px;
    }

    .header__left .cities_dd {
        width: 100%;
        padding: 16px;
        left: 0;
        top: 66px;
    }

    .header__left .cities_dd a {
        margin: 0 0 8px;
    }

    .header__left .cities_dd:last-child {
        margin: 0;
    }
}