/* ===== Общие сбросы и шрифты ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #f8f9fa;
            color: #212529;
            line-height: 1.6;
            padding-top: 50px; /* отступ под фиксированную шапку */
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }



        /* ===== ШАПКА (фиксированная) ===== */



        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: #ffffff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            z-index: 1000;
            padding: 12px 0;
        }

        header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        .logo a {
            font-size: 1.5rem;
            font-weight: 700;
            color: #0d6efd;
            text-decoration: none;
            letter-spacing: -0.5px;
        }

        nav {
            display: flex;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        nav a {
            text-decoration: none;
            color: #212529;
            font-weight: 500;
            transition: color 0.2s;
            font-size: 0.95rem;
        }

        nav a:hover {
            color: #0d6efd;
        }

        /* Выпадающее меню "Магазины" */
        .dropdown {
            position: relative;
            display: inline-block;
        }

        .dropdown > a {
            cursor: default;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            min-width: 150px;
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
            border-radius: 8px;
            padding: 8px 0;
            z-index: 1;
        }

        .dropdown-content a {
            display: block;
            padding: 8px 20px;
            color: #212529;
            text-decoration: none;
            font-weight: 400;
        }

        .dropdown-content a:hover {
            background: #f1f3f5;
            color: #0d6efd;
        }

        .dropdown:hover .dropdown-content {
            display: block;
        }
/* ===== Бургер-меню (скрыто на десктопе) ===== */
.burger-menu {
    display: none;           /* скрыто на больших экранах */
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.burger-menu span {
    display: block;
    width: 100%;
    height: 3px;
    background: #212529;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Анимация при открытии (крестик) */
.burger-menu.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.burger-menu.active span:nth-child(2) {
    opacity: 0;
}
.burger-menu.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}






        /* ===== Основные блоки ===== */
        .block {
            padding: 30px 0;
            border-bottom: 1px solid #dee2e6;
        }

        .block:last-of-type {
            border-bottom: none;
        }

        .block h2 {
            font-size: 2rem;
            margin-bottom: 10px;
            color: #0d6efd;
            text-align: center;
        }

       /* ===== лендинг ===== */
.hero {
    position: relative;
    background-image: url('img/hero_img.jpg'); /* фон */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100px; /* или 100vh, если хотите на весь экран */
    display: flex;
    align-items: center;
    padding: 30px 0;
    border-radius: 16px; /* можно убрать, если хотите на всю ширину */
    overflow: hidden;
}

/* Полупрозрачный оверлей для читаемости текста */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* затемнение */
    z-index: 1;
}

/* Контент поверх оверлея */
.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 1200px;
    margin: 1 auto;
    padding: 0 20px;
    width: 100%;
}

/* Текстовая часть */
.hero-text {
    flex: 1 1 300px;
    color: #ffffff; /* белый текст на тёмном фоне */
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #fff;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.2rem;
    color: #f0f0f0;
    margin-bottom: 20px;
}

/* Кнопка в герое */
.btn-primary {
    display: inline-block;
    background: #0d6efd;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #0b5ed7;
}

/* Изображение справа */
.hero-image {
    flex: 1 1 300px;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgb(0 0 0 / 30%);
}

/* Адаптивность для мобильных */
@media (max-width: 768px) {
    .hero {
        min-height: 400px;
        padding: 20px 0;
    }
    .hero-text h1 {
        font-size: 2.2rem;
    }
    .hero-text p {
        font-size: 1rem;
    }
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    .hero-image {
        order: -1; /* картинка сверху на мобильных (опционально) */
    }
}

        /* ===== 2. О нас ===== */
        .about-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
        }

        .about-card {
            background: white;
            border-radius: 12px;
            padding: 25px;
            flex: 1 1 200px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
            text-align: center;
        }

        .about-card h3 {
            color: #0d6efd;
            margin-bottom: 10px;
        }

        /* ===== 3. Отзывы (горизонтальный скролл) ===== */
        .reviews-wrapper {
            overflow-x: auto;
            padding: 10px 0 20px;
            display: flex;
            gap: 25px;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
        }

        .reviews-wrapper::-webkit-scrollbar {
            height: 8px;
        }

        .reviews-wrapper::-webkit-scrollbar-thumb {
            background: #0d6efd;
            border-radius: 10px;
        }

        .review-item {
            flex: 0 0 280px;
            background: white;
            border-radius: 12px;
            padding: 20px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            scroll-snap-align: start;
            display: flex;
            flex-direction: column;
        }

        .review-item .author {
            font-weight: 600;
            margin-top: 12px;
            color: #0d6efd;
        }

        .review-item .text {
            flex: 1;
            font-style: italic;
        }

        /* ===== 4. FAQ (аккордеон на details/summary) ===== */
        .faq-list {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: white;
            border-radius: 8px;
            margin-bottom: 12px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.06);
        }

        .faq-item summary {
            padding: 18px 24px;
            font-weight: 600;
            cursor: pointer;
            outline: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.2s;
        }

        .faq-item summary:hover {
            background: #f1f3f5;
        }

        .faq-item summary::-webkit-details-marker {
            display: none;
        }

        .faq-item summary::after {
            content: "▶";
            font-size: 0.8rem;
            transition: transform 0.3s;
            margin-left: 15px;
        }

        .faq-item[open] summary::after {
            transform: rotate(90deg);
        }

        .faq-item .answer {
            padding: 0 24px 20px 24px;
            color: #495057;
        }

        /* ===== 5. Контакты (адрес + карта) ===== */
        .location-wrapper {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            align-items: flex-start;
			margin-bottom: 20px
        }

        .address {
            flex: 1 1 300px;
            background: white;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }

        .address p {
            margin-bottom: 10px;
            font-size: 1.1rem;
        }

        .map-placeholder {
            flex: 2 1 400px;
            background: #e9ecef;
            border-radius: 12px;
            overflow: hidden;
            position: relative;
        }

        .map-wrapper {
            position: relative;
            width: 100%;	
            padding-bottom: 56.25%;
            height: 0;
        }

        .map-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }
		
/* ===== Блок "Проход в ТЦ" ===== */
.location-in-mall {
    background: #f8f9fa; /* лёгкий фон для выделения секции */
    border-radius: 30px;
    padding: 20px 0;
}

.location-wrapper-mall {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch; /* чтобы блоки были одной высоты */
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---- Картинка с подписью ---- */
.image-in-mall {
    flex: 1 1 400px; /* минимальная ширина 400px, растягивается */
    max-width: 600px;
    margin: 0; /* убираем старые отступы */
    padding: 0;
    font-size: 0; /* убираем лишний пробел под картинкой */
}

.image-in-mall img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 30px;
    border: 2px solid #ccd2db; /* сохранили цвет рамки */
    margin-top: 0; /* убираем лишний отступ */
    box-shadow: 0 8px 25px rgba(0,0,0,0.08); /* лёгкая тень */
}

.location-in-mall figcaption {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0d6efd;
    text-align: center;
    letter-spacing: -0.5px;
    margin-top: 10px;
    margin-bottom: 5px;
}

/* ---- Текстовый блок ---- */
.navigation-text {
    flex: 1 1 400px;
    max-width: 600px;
    background-color: white;
    border-radius: 30px;
    padding: 25px 30px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    justify-content: center; /* центрируем текст по вертикали */
}

.navigation-text p {
    margin: 8px 0;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #212529;
}

.navigation-text .title-nav {
    font-weight: bold;
    text-align: center;
    font-size: 1.2rem;
    margin-top: 0;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e9ecef; /* разделитель */
}

.nav-option {
    padding-left: 5px;
}

.nav-option strong {
    color: #0d6efd; /* выделяем цифры и название ярким цветом */
}

/* ===== Адаптивность для мобильных ===== */
@media (max-width: 768px) {
    .location-wrapper-mall {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .image-in-mall,
    .navigation-text {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .navigation-text {
        padding: 20px;
    }

    .location-in-mall figcaption {
        font-size: 1.2rem;
    }

    .navigation-text .title-nav {
        font-size: 1.1rem;
    }
}

        /* ===== 6. Форма заявки ===== */
        .order-form {
            max-width: 600px;
            margin: 0 auto;
            background: white;
            padding: 35px 40px;
            border-radius: 16px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.08);
        }

        .order-form label {
            display: block;
            margin-bottom: 6px;
            font-weight: 500;
        }

        .order-form input,
        .order-form select {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid #ced4da;
            border-radius: 8px;
            margin-bottom: 20px;
            font-size: 1rem;
            transition: border-color 0.2s;
        }

        .order-form input:focus,
        .order-form select:focus {
            border-color: #0d6efd;
            outline: none;
            box-shadow: 0 0 0 3px rgba(13,110,253,0.15);
        }

        .radio-group {
            display: flex;
            gap: 20px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        .radio-group label {
            display: flex;
            align-items: center;
            gap: 6px;
            font-weight: 400;
        }

        .radio-group input[type="radio"] {
            width: auto;
            margin: 0;
            padding: 0;
        }

        .checkbox-group {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-bottom: 25px;
        }

        .checkbox-group input[type="checkbox"] {
            width: 20px;
            height: 20px;
            margin-top: 3px;
            flex-shrink: 0;
            cursor: pointer;
        }

        .checkbox-group label {
            font-size: 0.95rem;
            color: #495057;
            cursor: pointer;
        }

        .order-form button {
            background: #0d6efd;
            color: white;
            border: none;
            padding: 14px 32px;
            font-size: 1.1rem;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.2s;
            width: 100%;
            font-weight: 600;
        }

        .order-form button:hover {
            background: #0b5ed7;
        }

        /* ===== Подвал ===== */
        footer {
            background: #212529;
            color: #adb5bd;
            padding: 30px 0;
            text-align: center;
            margin-top: 30px;
        }

        footer a {
            color: #adb5bd;
            text-decoration: none;
        }

        footer a:hover {
            color: white;
        }
   

/* ===== Мобильная адаптация (< 780px) ===== */
@media (max-width: 780px) {
    /* ---------- Бургер-кнопка ---------- */
    .burger-menu {
        display: flex;
    }

    /* ---------- Контейнер меню ---------- */
    .nav-menu {
        display: none;                     /* скрыто по умолчанию */
        flex-direction: column;
        align-items: center;               /* центрируем все дочерние элементы */
        position: absolute;                /* лучше absolute, чтобы не сдвигать контент */
        top: 100%;                         /* под шапкой */
        left: 0;
        width: 100%;
        background: #ffffff;
        box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        padding: 15px 20px;
        border-radius: 0 0 12px 12px;
        z-index: 1000;
    }

    .nav-menu.active {
		display: block;
		align-items: center;      /* Выравнивание по центру строго по вертикали */
		justify-content: center;   /* Дополнительно: выравнивание по центру по горизонтали */
    }

    /* ---------- Все пункты меню (ссылки и контейнеры) ---------- */
    .nav-menu a,
    .nav-menu .dropdown > a {
        display: block;                    /* блочные, чтобы занимать всю ширину */
        width: 100%;
        text-align: center;
        padding: 10px 0;                  /* вертикальные отступы для удобства */
        border-bottom: 1px solid #f1f3f5;
        font-size: 1rem;
        color: #212529;
        text-decoration: none;
    }

    .nav-menu a:last-child,
    .nav-menu .dropdown:last-child > a {
        border-bottom: none;              /* убираем границу у последнего элемента */
    }

    /* ---------- Выпадающий блок "Магазины" ---------- */
    .nav-menu .dropdown {
        width: 100%;
        text-align: center;
    }

    .nav-menu .dropdown-content {
        position: static;                  /* не позиционируем абсолютно */
        box-shadow: none;
        background: #f8f9fa;
        border-radius: 8px;
        margin-top: 5px;
        padding: 5px 0;
        text-align: center;
        width: 100%;
    }

    .nav-menu .dropdown-content a {
        display: block;
        width: 100%;
        padding: 8px 15px;
        border-bottom: none;
        text-align: center;
        color: #212529;
        text-decoration: none;
    }

    /* ---------- Шапка ---------- */
    header .container {
        position: relative;
    }

    header {
        padding: 10px 0;
    }
}

		/* ===== Мобильные устройства (ширина < 480px) ===== */
		@media (max-width: 480px){
			body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #f8f9fa;
            color: #212529;
            line-height: 1.6;
            padding-top: 50px; /* отступ под фиксированную шапку */
	        }
			
		    /* Форма – без фиксированной ширины */
		    .order-form {
		        width: 100%;
		        padding: 15px;
		    
		
		    /* Кнопка – на всю ширину, под чекбоксом */
		    .order-form button {
		        display: block;
		        width: 100%;
		        float: none;
		        clear: both;
		        position: static;
		        margin-top: 15px;
		        font-size: 1rem;
		        padding: 16px 20px;
		    }
		
		   	.checkbox-group {
			    display: flex;
			    flex-direction: row;
			    align-items: flex-start;
			    gap: 10px;
			}
			
			.checkbox-group input[type="checkbox"] {
			    flex-shrink: 0;
			    margin-top: 3px;
			    width: 18px;
			    height: 18px;
			}
			
			.checkbox-group label {
			    flex: 1;
			    word-break: break-word;
			}
		
		    /* Увеличиваем размер шрифта для удобства ввода */
		    .order-form input,
		    .order-form select,
		    .order-form button {
		        font-size: 16px;
		    }
			}
		}

