/*!
Theme Name: Mirflyhd
Theme URI: http://underscores.me/
Author: Keyit.by
Author URI: https://keyit.by/
Description: Custom theme for mirflyhd
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: mirflyhd
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

Mirflyhd is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/* ============================================
   MIRFLY CUSTOM THEME STYLES
   Основной цвет: #205990
============================================= */

/* --- Сброс и базовые стили --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* ============================================
   ВЕРХНЯЯ ПАНЕЛЬ
============================================= */
.header-top-bar {
    background-color: #ffffff;
    height: 80px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 100;
}

.header-top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

/* Логотип */
.header-logo .logo-link {
    display: inline-block;
    font-size: 28px;
    font-weight: 700;
    color: #205990;
    letter-spacing: 1px;
}

.header-logo .logo-link:hover {
    color: #153d63;
}

.header-logo .logo-image {
    max-height: 60px;
    width: auto;
}

/* Правая часть (меню + Instagram) */
.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* Меню */
.header-menu {
    display: flex;
    list-style: none;
    gap: 25px;
}

.header-menu li {
    position: relative;
}

.header-menu a {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 10px 0;
    position: relative;
}

.header-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #205990;
    transition: width 0.3s ease;
}

.header-menu a:hover::after {
    width: 100%;
}

.header-menu a:hover {
    color: #205990;
}

/* Instagram иконка */
.instagram-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888, #8a3ab9);
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.instagram-link:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(220, 39, 67, 0.4);
    color: #fff;
}

/* ============================================
   БАННЕР С ПОИСКОМ
============================================= */
.header-banner {
    height: 220px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

/* Затемнение баннера для читаемости */
.header-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(32, 89, 144, 0.85) 0%, rgba(32, 89, 144, 0.6) 100%);
    z-index: 1;
}

.header-banner-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    padding-right: 5%;
}

/* Поиск */
.banner-search-wrapper {
    width: 100%;
    max-width: 450px;
}

.search-form {
    display: flex;
    background: #ffffff;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	max-width: 400px; /* Ограничим ширину */
}

.search-field {
    flex: 1;
    border: none;
    padding: 12px 20px;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    outline: none;
    color: #333;
}

.search-field::placeholder {
    color: #999;
}

.search-submit {
    background-color: #205990;
    border: none;
    padding: 0 25px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-submit i {
    color: #ffffff;
    font-size: 18px;
}

.search-submit:hover {
    background-color: #153d63;
}

/* Скрываем технический текст */
.screen-reader-text {
    position: absolute !important;
    clip: rect(1px, 1px, 1px, 1px);
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* ============================================
   АДАПТИВНОСТЬ (мобильные)
============================================= */
@media (max-width: 768px) {
    .header-top-inner {
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px;
    }
    
    .header-top-bar {
        height: auto;
        padding: 15px 0;
    }
    
    .header-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .header-banner {
        height: 250px;
    }
    
    .header-banner-inner {
        justify-content: center;
        padding-right: 20px;
    }
    
    .banner-search-wrapper {
        max-width: 100%;
    }
}

/* ============================================
   ОБЩИЕ СТИЛИ СЕКЦИЙ
============================================= */
.site-main {
    background-color: #ffffff;
}

.section {
    padding: 40px 0;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #205990;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #205990;
    margin: 15px auto 0;
    border-radius: 2px;
}

/* ============================================
   СЕКЦИЯ КАЛЕНДАРЕЙ
============================================= */
.calendars-section {
    background-color: #ffffff;
    padding-top: 60px;
}

.calendars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.calendar-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 15px;
    text-align: center;
    border: 1px solid #f0f0f0;
}

.calendar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(32, 89, 144, 0.15);
}

.calendar-image-wrapper {
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
}

.calendar-image {
    width: 100%;
    height: auto; 
    aspect-ratio: 3 / 4; /* Современное свойство CSS для пропорций */
    object-fit: cover;
    display: block;
    border-radius: 15px; /* Закруглим само изображение */
}

.calendar-name {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
	flex-grow: 1; /* Чтобы кнопки всегда были внизу */
}

.calendar-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
	margin-top: auto; /* Прижимаем кнопки к низу */
}

/* Кнопки */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-wildberries {
    background: linear-gradient(135deg, #cb11ab 0%, #a60c8a 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(203, 17, 171, 0.3);
}

.btn-wildberries:hover {
    background: linear-gradient(135deg, #a60c8a 0%, #cb11ab 100%);
    box-shadow: 0 6px 20px rgba(203, 17, 171, 0.4);
    color: #ffffff;
}

.btn-details {
    background: transparent;
    color: #205990;
    border: 2px solid #205990;
}

.btn-details:hover {
    background: #205990;
    color: #ffffff;
}

.btn-submit {
    background-color: #205990;
    color: #ffffff;
    width: 100%;
    padding: 15px;
    font-size: 16px;
}

.btn-submit:hover {
    background-color: #153d63;
}

/* ============================================
   СЕКЦИИ ПРЕИМУЩЕСТВ
============================================= */
.advantages-section {
    background-color: #f8f9fa;
    padding: 0;
}

.advantage-row {
    padding: 80px 0;
    background-color: #ffffff;
}

.advantage-row:nth-child(even) {
    background-color: #f8f9fa;
}

.advantage-row-inner {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* Чередование расположения */
.advantage-row.left-image .advantage-row-inner {
    flex-direction: row;
}

.advantage-row.right-image .advantage-row-inner {
    flex-direction: row;
}

.advantage-content {
    flex: 1;
}

.advantage-title {
    font-size: 32px;
    font-weight: 700;
    color: #205990;
    margin-bottom: 25px;
}

.advantage-list {
    list-style: none;
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 16px;
    color: #555;
}

.advantage-item i {
    color: #205990;
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.advantage-image-wrapper {
    flex: 1;
}

.advantage-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: block;
}

/* ============================================
   СЕКЦИЯ КОНТАКТОВ
============================================= */
.contact-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.contact-inner {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-content {
    flex: 1;
}

.contact-title {
    font-size: 36px;
    font-weight: 700;
    color: #205990;
    margin-bottom: 25px;
}

.contact-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.contact-form-wrapper {
    flex: 1;
    max-width: 500px;
}

.contact-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #205990;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-message {
    margin-top: 15px;
    padding: 15px;
    border-radius: 10px;
    font-size: 14px;
    text-align: center;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
}

/* ============================================
   АДАПТИВНОСТЬ
============================================= */
@media (max-width: 1024px) {
    .calendars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .advantage-row-inner {
        flex-direction: column !important;
        gap: 40px;
    }
    
    .advantage-image {
        max-width: 100%;
    }
    
    .contact-inner {
        flex-direction: column;
    }
    
    .contact-form-wrapper {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .calendars-grid {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .advantage-title,
    .contact-title {
        font-size: 26px;
    }
    
    .contact-form {
        padding: 25px;
    }
}
/* ============================================
   СТИЛИ ДЛЯ CONTACT FORM 7
============================================= */
.wpcf7-form {
    margin: 0;
}

.wpcf7-form p {
    margin-bottom: 0;
}

.wpcf7-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

/* ❗ Исключаем label внутри чекбокса согласия */
.wpcf7-form label:has(input[type="checkbox"]),
.wpcf7-form .acceptance-policy label {
    display: inline-flex !important;
    align-items: flex-start !important;
    gap: 2px !important;
    color: #666 !important;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.3s ease;
    background: #ffffff;
}

.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
    outline: none;
    border-color: #205990;
}

.wpcf7-form textarea {
    resize: vertical;
    min-height: 120px;
}

.wpcf7-form input[type="submit"] {
    background-color: #205990;
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.wpcf7-form input[type="submit"]:hover {
    background-color: #153d63;
}

/* Сообщения после отправки */
.wpcf7-response-output {
    margin: 15px 0 0 !important;
    padding: 15px !important;
    border-radius: 10px !important;
    font-size: 14px !important;
    border: none !important;
}

.wpcf7-mail-sent-ok {
    background-color: #d4edda !important;
    color: #155724 !important;
}

.wpcf7-validation-errors,
.wpcf7-mail-sent-ng {
    background-color: #f8d7da !important;
    color: #721c24 !important;
}

/* Скрытие спама-поля */
.wpcf7-form-control-wrap[data-name="_wpcf7_hp_settings"] {
    display: none !important;
}

/* ============================================
   ИСПРАВЛЕНИЕ: ЧЕКБОКС СОГЛАСИЯ В ОДНУ СТРОКУ
============================================= */

/* Контейнер согласия */
.wpcf7-form-control-wrap.acceptance-policy {
    display: block;
    width: 100%;
    margin: 20px 0 25px;
}

.wpcf7-list-item {
    margin: 0;
}
/* Убираем блочное отображение у вложенных элементов CF7 */
.wpcf7-form-control-wrap.acceptance-policy .wpcf7-list-item {
    display: flex !important;
    align-items: flex-start !important;
    gap: 10px !important;
    flex-wrap: wrap !important; /* ← Разрешаем перенос текста на мобильных */
    margin: 0 !important;
    list-style: none !important;
}

/* Чекбокс */
.wpcf7-form-control-wrap.acceptance-policy input[type="checkbox"] {
    margin: 3px 0 0 0 !important;
    width: 16px !important;
    height: 16px !important;
    min-width: 16px !important;
    flex-shrink: 0 !important;
    accent-color: #205990;
    cursor: pointer;
}

/* Текст согласия */
.wpcf7-form-control-wrap.acceptance-policy .wpcf7-list-item-label {
    display: inline !important;
    font-weight: normal !important;
    margin: 0 !important;
    line-height: 1.5 !important;
}

/* Ссылка в тексте */
.wpcf7-form-control-wrap.acceptance-policy a {
    color: #205990 !important;
    text-decoration: none !important;
    border-bottom: 1px dashed #205990 !important;
    display: inline !important;
    white-space: normal !important;
}

.wpcf7-form-control-wrap.acceptance-policy a:hover {
    color: #153d63 !important;
    border-bottom-style: solid !important;
}

/* Сообщение об ошибке валидации */
.wpcf7-form-control-wrap.acceptance-policy .wpcf7-not-valid-tip {
    font-size: 12px !important;
    color: #dc3545 !important;
    margin: 5px 0 0 26px !important;
    display: block !important;
}

/* Адаптив: на мобильных текст под чекбоксом, если не влезает */
@media (max-width: 480px) {
    .wpcf7-form-control-wrap.acceptance-policy .wpcf7-list-item {
        flex-direction: row !important;
        gap: 8px !important;
    }
    
    .wpcf7-form-control-wrap.acceptance-policy .wpcf7-list-item-label {
        flex: 1 1 auto;
        min-width: 0; /* Позволяет тексту переноситься */
    }
}

/* ============================================
   ПОДВАЛ САЙТА (МИНИМАЛИСТИЧНЫЙ)
============================================= */
.site-footer {
    background: linear-gradient(135deg, #1a4a75 0%, #205990 100%);
    color: #ffffff;
    padding: 40px 0;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

/* Текст компании */
.footer-company {
    font-size: 14px;
    color: #b0d4f1;
    font-weight: 500;
}

/* Ссылка на политику */
.footer-privacy a {
    color: #b0d4f1;
    font-size: 14px;
    transition: color 0.3s ease;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.footer-privacy a:hover {
    color: #ffffff;
}

/* Копирайт */
.footer-copyright {
    font-size: 13px;
    color: #8ab8d8;
    text-align: right;
}

/* ============================================
   АДАПТИВНОСТЬ
============================================= */
@media (max-width: 768px) {
    .footer-inner {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .site-footer {
        padding: 30px 0;
    }
    
    .footer-copyright {
        text-align: center;
    }
    
    .footer-company,
    .footer-privacy {
        text-align: center;
    }
}

/* ============================================
   СТРАНИЦА КАЛЕНДАРЯ
============================================= */
.calendar-page {
    background-color: #ffffff;
}

/* ============================================
   СЕКЦИЯ 1: ТОВАР
============================================= */
.calendar-product-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Левая колонка: Изображение + кнопка */
.product-image-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
}

.product-image-wrapper {
    width: 100%;
    max-width: 450px;
    margin-bottom: 30px;
    background: transparent; /* Прозрачный фон для PNG */
}

.product-image {
    width: 100%;
    height: auto;
    display: block;
    /* Для PNG на прозрачном фоне можно добавить лёгкую тень */
    filter: drop-shadow(0 10px 30px rgba(32, 89, 144, 0.15));
}

/* Большая кнопка Wildberries */
.btn-wildberries-large {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    max-width: 450px;
    padding: 20px 30px;
    background: linear-gradient(135deg, #cb11ab 0%, #a60c8a 100%);
    color: #ffffff;
    border-radius: 15px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(203, 17, 171, 0.35);
    transition: all 0.3s ease;
}

.btn-wildberries-large:hover {
    background: linear-gradient(135deg, #a60c8a 0%, #cb11ab 100%);
    box-shadow: 0 12px 35px rgba(203, 17, 171, 0.45);
    transform: translateY(-3px);
    color: #ffffff;
}

.btn-wildberries-large i {
    font-size: 22px;
}

/* Правая колонка: Информация */
.product-info-column {
    padding: 20px 0;
}

.product-title {
    font-size: 42px;
    font-weight: 700;
    color: #205990;
    margin-bottom: 30px;
    line-height: 1.2;
}

.product-description {
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 20px;
    padding: 35px;
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.product-description p {
    margin-bottom: 20px;
}

.product-description p:last-child {
    margin-bottom: 0;
}

/* ============================================
   СЕКЦИЯ 2: ПРЕИМУЩЕСТВА (синий фон)
============================================= */
.calendar-advantages-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #205990 0%, #1a4a75 100%);
    color: #ffffff;
}

.advantages-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.advantages-content {
    padding: 20px 0;
}

.advantages-title {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 35px;
}

.advantages-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.advantages-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 17px;
    color: #ffffff;
}

.advantages-item i {
    color: #64b5f6;
    font-size: 22px;
    margin-top: 2px;
    flex-shrink: 0;
}

.advantages-image-column {
    display: flex;
    justify-content: center;
}

.advantages-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    display: block;
}

/* ============================================
   СЕКЦИЯ 3: ФОРМА ЗАЯВКИ (БЕЗНАЛИЧНЫЙ РАСЧЕТ)
============================================= */
.calendar-form-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.form-section-title {
    font-size: 36px;
    font-weight: 700;
    color: #205990;
    text-align: center;
    margin-bottom: 50px;
}

.calendar-form-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.cashless-form {
    background: #ffffff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

/* ============================================
   СЕТКА ФОРМЫ (ДЕСКТОП)
============================================= */
.cashless-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 0;
}

.cashless-form-grid .form-left {
    grid-column: 1;
    display: flex;
    flex-direction: column;
}

.cashless-form-grid .form-right {
    grid-column: 2;
    grid-row: 1 / span 2;
}

/* ============================================
   ПОЛЯ ФОРМЫ
============================================= */
.cashless-form-grid .form-input,
.cashless-form-grid .form-textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.3s ease;
    background: #ffffff;
}

.cashless-form-grid .form-input:focus,
.cashless-form-grid .form-textarea:focus {
    outline: none;
    border-color: #205990;
}

.cashless-form-grid .form-textarea {
    resize: vertical;
}

/* Лейблы */
.cashless-form-grid label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

/* ============================================
   ЧЕКБОКС СОГЛАСИЯ (ОТДЕЛЬНЫЙ БЛОК)
============================================= */
.form-consent-wrapper {
    margin: 25px 0;
}

.consent-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    cursor: pointer;
    font-weight: normal !important;
}

.consent-label input[type="checkbox"] {
    margin: 3px 0 0 0;
    width: 16px;
    height: 16px;
    min-width: 16px;
    flex-shrink: 0;
    accent-color: #205990;
    cursor: pointer;
}

.consent-label a {
    color: #205990;
    text-decoration: none;
    border-bottom: 1px dashed #205990;
}

.consent-label a:hover {
    color: #153d63;
    border-bottom-style: solid;
}

/* ============================================
   КНОПКА ОТПРАВКИ (ОТДЕЛЬНЫЙ БЛОК)
============================================= */
.form-submit-wrapper {
    margin-top: 10px;
}

.form-submit-wrapper input[type="submit"] {
    background-color: #205990;
    color: #ffffff;
    border: none;
    padding: 18px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.form-submit-wrapper input[type="submit"]:hover {
    background-color: #153d63;
}

/* ============================================
   АДАПТИВНОСТЬ (ОБЩАЯ)
============================================= */
@media (max-width: 1024px) {
    .product-grid,
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .product-image-column { order: 1; }
    .product-info-column { order: 2; }
    
    .advantages-content { order: 2; }
    .advantages-image-column { order: 1; }
}

/* ============================================
   АДАПТИВНОСТЬ (МОБИЛЬНАЯ ВЕРСИЯ - ФОРМА)
============================================= */
@media (max-width: 768px) {
    .calendar-product-section,
    .calendar-advantages-section,
    .calendar-form-section {
        padding: 50px 0;
    }
    
    .product-title { font-size: 32px; }
    .product-description { padding: 25px; }
    .advantages-title,
    .form-section-title { font-size: 28px; }
    .cashless-form { padding: 30px 25px; }
    .btn-wildberries-large { padding: 18px 25px; font-size: 16px; }

    /* Логика формы на мобильном */
    .cashless-form-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
    }
    
    /* 1. Левая колонка (Имя, Email, Организация) */
    .cashless-form-grid .form-left {
        order: 1 !important;
        gap: 20px !important;
    }
    
    /* 2. Правая колонка (Запрос) */
    .cashless-form-grid .form-right {
        order: 2 !important;
    }
    
    /* 3. Чекбокс согласия — НАД КНОПКОЙ */
    .form-consent-wrapper {
        order: 3 !important;
        margin: 0;
    }
    
    /* 4. Кнопка — ПОСЛЕДНЯЯ */
    .form-submit-wrapper {
        order: 4 !important;
        margin-top: 10px !important;
    }
    
    .cashless-form-grid .form-textarea {
        min-height: 150px !important;
    }
}

/* ============================================
   SINGLE POST PAGE
============================================= */
.single-post {
    background: #ffffff;
}

/* Заголовок + дата */
.post-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px 0;
}

.post-title {
    font-size: 42px;
    font-weight: 700;
    color: #205990;
    line-height: 1.2;
    flex: 1;
    min-width: 0;
}

.post-date {
    font-size: 18px;
    color: #666;
    font-weight: 500;
    white-space: nowrap;
    padding: 10px 20px;
    background: #f0f4f8;
    border-radius: 30px;
}

/* Баннер */
.post-banner-section {
    padding: 0;
}

.post-banner {
    width: 100%;
    overflow: hidden;
}

.banner-image {
    width: 100%;
    height: auto;
    display: block;
    max-height: 600px;
    object-fit: cover;
}

/* Текст статьи */
.post-content-section {
    padding: 60px 0;
}

.post-content {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
}

.post-content p {
    margin-bottom: 20px;
}

.post-content h2,
.post-content h3 {
    color: #205990;
    margin: 40px 0 20px;
}

.post-content ul,
.post-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.post-content li {
    margin-bottom: 10px;
}

.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    margin: 20px 0;
}

/* Секции */
.puzzle-section {
    background: #f8f9fa;
}

.map-section {
    background: #ffffff;
    padding-bottom: 80px;
}

/* Адаптив */
@media (max-width: 768px) {
    .post-title-row {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .post-title {
        font-size: 32px;
    }
    
    .post-date {
        font-size: 16px;
        padding: 8px 16px;
    }
    
    .post-content {
        font-size: 16px;
    }
    
    .banner-image {
        max-height: 400px;
    }
}

/* ============================================
   DYNAMIC MAP (GOOGLE EMBED)
============================================= */
.dynamic-map-wrapper {
    text-align: center;
    width: 100%;
}

.map-address-label {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
    font-weight: 500;
}

.dynamic-map-container {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    background: #f0f0f0;
}

.dynamic-map-container iframe {
    display: block;
    width: 100%;
    height: 400px;
    border: none;
}

/* Адаптив */
@media (max-width: 768px) {
    .dynamic-map-container iframe {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .dynamic-map-container iframe {
        height: 250px;
    }
}
/* Кнопка "Посмотреть в пространстве" (для карты и пазла) */
.map-space-link,
.puzzle-space-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    font-size: 14px;
    color: #205990;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 20px;
    background: rgba(32, 89, 144, 0.1);
    border-radius: 25px;
    border: 1px solid rgba(32, 89, 144, 0.2);
}

.map-space-link:hover,
.puzzle-space-link:hover {
    color: #ffffff;
    background: #205990;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(32, 89, 144, 0.3);
}

.map-space-link i,
.puzzle-space-link i {
    font-size: 12px;
}

/* Адаптив для кнопки */
@media (max-width: 480px) {
    .map-space-link,
    .puzzle-space-link {
        font-size: 13px;
        padding: 6px 16px;
    }
}

/* Кнопка "Прогуляться по месту" */
.map-space-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 12px 25px;
    background: linear-gradient(135deg, #205990 0%, #1a4a75 100%);
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(32, 89, 144, 0.3);
    transition: all 0.3s ease;
}

.map-space-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(32, 89, 144, 0.4);
    color: #ffffff;
}

.map-space-link i { font-size: 16px; }

@media (max-width: 480px) {
    .map-space-link {
        font-size: 14px;
        padding: 10px 20px;
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   GOOGLE MAPS (с поддержкой Street View)
============================================= */
.dynamic-map-wrapper {
    text-align: center;
    width: 100%;
}

.map-address-label {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
    font-weight: 500;
}

.dynamic-map-container {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    background: #f0f0f0;
    position: relative;
}

.dynamic-map-container iframe {
    display: block;
    width: 100%;
    height: 500px; /* Увеличили высоту для удобства */
    border: none;
}

/* Подсказка под картой */
.map-hint {
    margin-top: 15px;
    font-size: 13px;
    color: #777;
    font-style: italic;
}

.map-hint i {
    color: #205990;
    margin-right: 5px;
}

/* Адаптив */
@media (max-width: 768px) {
    .dynamic-map-container iframe {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .dynamic-map-container iframe {
        height: 280px;
    }
}

/* ============================================
   СТРАНИЦА «О НАС»
============================================= */
.about-page { background: #ffffff; }

/* Hero */
.about-hero {
    background: linear-gradient(135deg, #205990 0%, #1a4a75 100%);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.about-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.about-subtitle {
    font-size: 20px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Контент */
.about-content { padding: 60px 0; }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 32px;
    color: #205990;
    margin-bottom: 25px;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

/* Ценности */
.about-values { background: #f8f9fa; padding: 60px 0; }
.section-title {
    font-size: 36px;
    color: #205990;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.value-card:hover { transform: translateY(-5px); }

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #205990, #1a4a75);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #ffffff;
    font-size: 24px;
}

.value-card h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 12px;
    font-weight: 600;
}

.value-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Статистика */
.about-stats { padding: 60px 0; }
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: #205990;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* CTA */
.about-cta { padding: 60px 0; }
.cta-box {
    background: linear-gradient(135deg, #205990 0%, #1a4a75 100%);
    color: #ffffff;
    padding: 50px;
    border-radius: 20px;
    text-align: center;
}

.cta-box h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 18px;
    opacity: 0.95;
    margin-bottom: 30px;
}

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background: #ffffff;
    color: #205990;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    color: #205990;
}

/* Адаптив */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .about-title { font-size: 36px; }
    .about-subtitle { font-size: 18px; }
    .values-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .cta-box { padding: 35px 25px; }
}

@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr; }
    .about-title { font-size: 32px; }
}

/* ============================================
   СТРАНИЦА «КОНТАКТЫ»
============================================= */
.contacts-page { background: #ffffff; }

/* Hero */
.contacts-hero {
    background: linear-gradient(135deg, #205990 0%, #1a4a75 100%);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.contacts-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.contacts-subtitle {
    font-size: 20px;
    opacity: 0.9;
}

/* Основная секция */
.contacts-main { padding: 60px 0; }
.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

/* Информация */
.contacts-info h2 {
    font-size: 28px;
    color: #205990;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.contact-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.contact-item i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #205990, #1a4a75);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 16px;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    font-size: 14px;
    color: #333;
    margin-bottom: 5px;
}

.contact-item a {
    color: #205990;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.contact-item a:hover { color: #153d63; text-decoration: underline; }

.contact-item p {
    margin: 0;
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}

/* Соцсети */
.contact-social { margin-top: 30px; }
.contact-social strong {
    display: block;
    font-size: 14px;
    color: #333;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: #f8f9fa;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #205990;
    color: #ffffff;
    transform: translateX(5px);
}

.social-link i {
    font-size: 18px;
    width: 20px;
    text-align: center;
}

/* Форма */
.contacts-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 20px;
}

.contacts-form h2 {
    font-size: 28px;
    color: #205990;
    margin-bottom: 25px;
}

.form-note {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 10px;
    padding: 15px 20px;
    font-size: 14px;
    color: #856404;
}

.form-note i { margin-right: 8px; }

/* Карта */
.contacts-map {
    background: #f8f9fa;
    padding: 60px 0;
}

.contacts-map .section-title {
    margin-bottom: 40px;
}

/* Адаптив */
@media (max-width: 1024px) {
    .contacts-grid { grid-template-columns: 1fr; gap: 40px; }
    .contacts-form { padding: 30px 25px; }
}

@media (max-width: 768px) {
    .contacts-title { font-size: 36px; }
    .contacts-subtitle { font-size: 18px; }
    .contact-item { flex-direction: column; text-align: center; }
    .contact-item i { margin: 0 auto; }
    .social-links { flex-direction: column; }
}

@media (max-width: 480px) {
    .contacts-title { font-size: 32px; }
    .contacts-form { padding: 25px 20px; }
}

/* ============================================
   КАСТОМНЫЙ IFRAME КАРТЫ (как в записях)
============================================= */
.custom-map-iframe {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    background: #f8f9fa;
}

.custom-map-iframe iframe {
    display: block;
    width: 100%;
    height: 400px;
    border: none;
}

/* Адаптив — как в записях */
@media (max-width: 768px) {
    .custom-map-iframe iframe {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .custom-map-iframe iframe {
        height: 250px;
    }
}

/* ============================================
   СТРАНИЦА ПОИСКА (минималистичная)
============================================= */
.search-page { background: #ffffff; }

/* Заголовок */
.search-header {
    padding: 50px 0 30px;
    background: #f8f9fa;
}

.search-title {
    font-size: 32px;
    font-weight: 700;
    color: #205990;
    text-align: center;
    margin: 0;
}

.search-title .search-query {
    display: block;
    font-size: 20px;
    font-weight: 400;
    color: #555;
    margin-top: 8px;
}

/* Счётчик */
.search-count {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    text-align: center;
}
.search-count strong { color: #205990; }

/* Сетка результатов */
.search-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Карточка */
.search-result-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.search-result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(32, 89, 144, 0.15);
}

.result-image {
    display: block;
    overflow: hidden;
    height: 200px;
}

.result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.search-result-card:hover .result-image img {
    transform: scale(1.05);
}

.result-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.result-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
}

.result-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.result-title a:hover { color: #205990; }

.result-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 13px;
    color: #888;
}

.result-meta i { margin-right: 4px; }

.result-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

/* Пагинация */
.search-pagination {
    margin-top: 50px;
    text-align: center;
}

.search-pagination .page-numbers {
    display: inline-flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.search-pagination .page-numbers li { display: inline-block; }

.search-pagination .page-numbers a,
.search-pagination .page-numbers span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f0f4f8;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
}

.search-pagination .page-numbers a:hover,
.search-pagination .page-numbers .current {
    background: #205990;
    color: #ffffff;
}

.search-pagination .page-numbers .prev i,
.search-pagination .page-numbers .next i {
    font-size: 12px;
}

/* Нет результатов */
.search-no-results {
    text-align: center;
    padding: 80px 40px;
    background: #f8f9fa;
    border-radius: 20px;
}

.no-results-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #205990, #1a4a75);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: #ffffff;
    font-size: 32px;
}

.search-no-results h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 15px;
}

.search-no-results p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.search-no-results strong { color: #205990; }

.btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background: #205990;
    color: #ffffff;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: #153d63;
    color: #ffffff;
}

/* ============================================
   АДАПТИВНОСТЬ
============================================= */
@media (max-width: 1024px) {
    .search-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .search-title { font-size: 26px; }
    .search-title .search-query { font-size: 18px; }
    
    .search-grid { grid-template-columns: 1fr; }
    
    .search-result-card { flex-direction: row; }
    .result-image { width: 150px; height: auto; min-height: 150px; }
    .result-content { padding: 20px; }
    
    .search-pagination .page-numbers a,
    .search-pagination .page-numbers span {
        width: 35px; height: 35px; font-size: 13px;
    }
}

@media (max-width: 480px) {
    .search-title { font-size: 24px; }
    
    .search-result-card { flex-direction: column; }
    .result-image { width: 100%; height: 180px; }
    
    .search-pagination .page-numbers { gap: 5px; }
    .search-pagination .page-numbers a,
    .search-pagination .page-numbers span {
        width: 32px; height: 32px; font-size: 12px;
    }
}

/* ============================================
   СТРАНИЦА 404
============================================= */
.error-404-page {
    background: #ffffff;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.error-section {
    padding: 80px 20px;
    text-align: center;
    width: 100%;
}

/* Иконка */
.error-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #205990 0%, #1a4a75 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: #ffffff;
    font-size: 36px;
    box-shadow: 0 10px 40px rgba(32, 89, 144, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 10px 40px rgba(32, 89, 144, 0.3);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 15px 50px rgba(32, 89, 144, 0.4);
    }
}

/* Заголовок */
.error-title {
    font-size: 36px;
    font-weight: 700;
    color: #205990;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

/* Текст описания */
.error-text {
    font-size: 16px;
    color: #666;
    margin-bottom: 35px;
    line-height: 1.6;
}

/* ============================================
   УНИКАЛЬНАЯ КНОПКА 404 (без конфликтов)
============================================= */
.error-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 40px;
    background: linear-gradient(135deg, #205990 0%, #1a4a75 100%);
    color: #ffffff !important;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none !important;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(32, 89, 144, 0.35);
    border: 2px solid transparent;
    letter-spacing: 0.3px;
}

.error-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(32, 89, 144, 0.45);
    background: linear-gradient(135deg, #1a4a75 0%, #205990 100%);
    color: #ffffff !important;
}

.error-btn:active {
    transform: translateY(-2px);
}

.error-btn i {
    font-size: 16px;
}

/* ============================================
   АДАПТИВНОСТЬ
============================================= */
@media (max-width: 768px) {
    .error-icon {
        width: 80px;
        height: 80px;
        font-size: 32px;
    }
    
    .error-title {
        font-size: 28px;
    }
    
    .error-text {
        font-size: 15px;
        padding: 0 20px;
    }
    
    .error-btn {
        padding: 14px 35px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .error-section {
        padding: 60px 20px;
    }
    
    .error-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
    
    .error-title {
        font-size: 24px;
    }
    
    .error-text {
        font-size: 14px;
    }
    
    .error-btn {
        padding: 14px 30px;
        font-size: 14px;
        width: 100%;
        max-width: 280px;
    }
}