 .header__logo img {
    margin-left: -20px;
}
.headerCitySelect {
    width: 115px;
    text-align: center;
}

.catalogCard__content-button p {
    font-size: 15px;
    }
        /* Корзина */
.cart {
    width: 20px;
    height: 20px;
    position: relative;
    top: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: #140a47;
    box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.1);
    transition: 0.1s;
    cursor: pointer;
    padding: 15px;
}
.cart:hover {
  transform: scale(1.1);
}

/* Иконка корзины */
.cart__image {
  width: 20px;
}

/* Количество товаров в корзине */
.cart__num {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #d62240;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
}


@media (max-width: 1120px) and (min-width: 651px){
.header__email, .header__phone {
    gap: 6px;
	}    
.header__block:first-child {
    gap: 22px;
}
.header__container {
    gap: 22px;
}
.header__block:last-child {
    gap: 22px;
}
}

@media (max-width: 345px) {
.header__logo img {
    margin-left: -25px;
}

.header__container {
        gap: 8px;
}
    .header__block {
        gap: 12px !important;
    }
	.cart {
    width: 15px;
    height: 15px;
    padding: 14px;
}
.cart__image {
  width: 17px;
}

.cart__num {
  width: 12px;
  height: 12px;
  font-size: 10px;
}

.header__phone img {
        width: 35px;
        height: 35px;
    }
    
.catalogCard__content-button p {
    font-size: 14px;
    }
}

  .modalc-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0,0,0,0.5);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }
        
        .modalc-container {
            background: white;
            padding: 20px;
            border-radius: 8px;
            max-width: 400px;
            width: 90%;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            position: relative;
            top: 20%;
            left: 40%;
        }
        
        @media (max-width: 767px) {
        .modalc-container {
top: 20%;
 left: 15px;
}}
        
        .modalc-message {
            margin-bottom: 20px;
            font-size: 13px;
        }
        
        .modalc-message-p  {
            font-size: 13px;
            font-weight:600;
        }
        
        .modalc-buttons {
            display: flex;
            gap: 10px;
            justify-content: flex-end;
        }
        
        .modalc-btn {
            padding: 8px 16px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 13px;
        }
        
        .modalc-btn-cart {
            background: #f2ce14;
            color: #141413;
            text-decoration: none;
        }
        
        .modalc-btn-close {
            background: #f1f1f1;
        }