body {
    margin: 0px;
    position: relative;
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px;
    line-height: 1.4;
    color: #000;
    min-width: 320px;
    overflow-x: hidden;
}

/* Стили для иконки меню */
.menu-icon {
    display: none; /* Скрыто по умолчанию */
    cursor: pointer;
    flex-direction: column;
    justify-content: space-around;
    height: 25px;
    width: 30px;
    margin-right: 20px;
}

.menu-icon-line {
    width: 100%;
    height: 3px;
    background-color: #000;
}

/* Общие стили */
.language_options{
    color:#3498db;
    border-color: transparent;
    padding: 5px 10px;
    margin: 10px 20px;
    border-radius: 40px;
    border-color: #3498db;
    box-shadow: 0 2px 6px;
}

.language_options:hover {
    color: rgb(52, 85, 230);
}

.navbar{
    width: 100%;
    height: 70px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .1);
}

.navbar .container {
    height: inherit;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

.navbar-menu {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 0;
}

.navbar-menu li {
   display: inline-block;
}

.navbar-menu li a {
    display: inline-block;
    opacity: 0.6;
    text-decoration: none;
    padding: 10px;
    transition: all .07s ease-in-out;
}

.navbar-menu li a:hover {
    opacity: 1;
}

.navbar-wrap{
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
}

.callback{
    margin-left: 30px;
    margin-right: 10px;
    padding: 5px 20px;
    text-decoration: none;
    background-color: rgb(52, 85, 230);
    border-radius: 70px;
    color: #fff;
    transition: all .1s ease-in-out;
}

.callback:hover {
    border: 1px solid #3498db; 
    color: #3498db; 
    background-color: transparent; 
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(100, 149, 237, .2);
    transition: border-color 0.3s, color 0.3s, box-shadow 0.3;
}

.navbar-brand {
    font-weight: 700;
    font-size: 26px;
    text-decoration: none;
}

/* Адаптивные стили */
@media screen and (max-width: 992px) {
    .navbar-menu {
        box-shadow: 7px 6px 20px 0px rgb(0 0 0);
        max-height: 0;
        overflow: hidden;
        flex-direction: column;
        position: absolute;
        top: 70px; /* Настройте в зависимости от высоты навбара */
        right: 0;
        /* width: 250px; Ограничиваем ширину меню */
        background-color: #fff;
        z-index: 1000;
        transition: max-height 0.3s ease-in-out;
        border-radius: 10px;
    }
    .navbar-menu.show {
        max-height: 500px; /* Достаточно большое значение для отображения всех пунктов меню */
    }
    .navbar-menu li {
        display: block; /* Вертикальное расположение пунктов меню */
        text-align: center;
        padding: 5px 10px;
    }
    .menu-icon {
        display: flex; /* Показываем иконку меню */
    }
    .navbar-wrap {
        align-items: center;
    }
    .navbar-menu li a {
        opacity: 1; /* Полная видимость ссылок в мобильном меню */
    }
}


/* ===== Garland ===== */

.garland {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: center;
    gap: 18px;
    padding-top: 10px;
    z-index: 9999;
    pointer-events: none;
}

.garland span {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: red;
    box-shadow: 0 0 8px currentColor;
    animation: blink 2s infinite;
}

.garland span:nth-child(odd) { color: red; background: red; }
.garland span:nth-child(even) { color: green; background: green; }
.garland span:nth-child(even) { color: green; background: green; }

.garland span:nth-child(3n) {
    animation-delay: 0.4s;
}

.garland span:nth-child(4n) {
    animation-delay: 0.8s;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}







.footer-basic {
	padding:40px 0;
	background-color:#ffffff;
	color:#4b4c4d;
    box-shadow: 0 -10px 10px rgba(0, 0, 0, .1);
    display: flex;
    flex-direction: column;
}
  
.footer-basic ul {
	padding:0;
	list-style:none;
	text-align:center;
	font-size:18px;
	line-height:1.6;
	margin-bottom:0;
}
  
.footer-basic li {
	padding:0 10px;
}
  
.footer-basic ul a {
	color:inherit;
	text-decoration:none;
	opacity:0.8;
}
  
.footer-basic ul a:hover {
	opacity:1;
}
  
.footer-basic .social {
	text-align:center;
	padding-bottom:25px;
}
  
.footer-basic .social > a {
	font-size:24px;
	width:40px;
	height:40px;
	line-height:40px;
	display:inline-block;
	text-align:center;
	border-radius:50%;
	border:1px solid #ccc;
	margin:0 8px;
	color:inherit;
	opacity:0.75;
}
  
.footer-basic .social > a:hover {
	opacity:0.9;
}
  
.footer-basic .copyright {
	margin-top:15px;
	text-align:center;
	font-size:13px;
	color:#aaa;
	margin-bottom:0;
}

.cart_icon{
    width: 20px;
}








/* abw */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Темнее для контраста */
    z-index: 999;
    transition: opacity 0.3s ease-out; /* Плавное появление */
}
    
.modal.active {
    display: block;
    opacity: 1;
}
    
.modal-contacts {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 30px;
    z-index: 1000;
    height: auto; /* Уберём фиксированную высоту */
    width: 70%;
    border-radius: 10px; /* Скруглённые углы */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); /* Приятная тень */
    overflow-y: auto; /* Прокрутка, если содержимого слишком много */
    max-height: 80vh; /* Ограничение по высоте */
}
    
.modal-contacts h3.contacts-header {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 8px;
}
    
.modal-contacts .list-name-descr {
    font-size: 1rem;
    color: #666;
}
    
.modal-contacts a.contact-list-link {
    display: block;
    font-size: 1rem;
    color: #1a73e8; /* Цвет ссылки */
    text-decoration: none;
    margin-bottom: 5px;
    transition: color 0.2s;
}
    
.modal-contacts a.contact-list-link:hover {
    color: #004a99; /* При наведении */
}
    
.modal-contacts .contact-list-item {
    margin-bottom: 20px; /* Разделение блоков */
}
    
.modal-contacts .close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
    transition: color 0.2s;
}
    
.modal-contacts .close:hover {
    color: #000;
}
    
.contacts-list {
    padding: 0;
    list-style: none;
}
    
.contacts-list li {
    margin-bottom: 15px;
}
    
@media (max-width: 900px) {
.modal-content {
        width: 90%; /* Адаптация для мобильных устройств */
    }
}
    