html {
	scroll-behavior: smooth;
}

.zindex-one{
	z-index: 1;
}

.wp-block-search__inside-wrapper input{
	margin-right: 20px;
    border-radius: 10px !important;
}
/* ПОДКЛЮЧАЕМ ШРИФТ MONTSERRAT */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap');

/* =========================================
   N.O.M.A.D. NEON FIX
   ========================================= */

/* 1. БАЗОВЫЙ ВИД КНОПОК */
body .wp-block-button__link,
body .wp-element-button,
body .wpcf7-submit,
body input.wp-element-button,
body button.wp-block-search__button {
    /* Полная очистка фона и градиентов */
    background-color: transparent !important;
    background: transparent !important;
    background-image: none !important;
    
    /* Янтарная рамка и текст */
    border: 2px solid #FF9900 !important;
    color: #FF9900 !important;
    
    /* Настройка шрифта */
    font-family: 'Montserrat', 'Poppins', sans-serif !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    font-size: 14px !important;
    
    /* Форма кнопки */
    border-radius: 2px !important;
    padding: 12px 35px !important;
    box-shadow: none !important;
    text-shadow: none !important;
    transition: all 0.3s ease !important;
}

/* 2. ЭФФЕКТ ПРИ НАВЕДЕНИИ */
body .wp-block-button__link:hover,
body .wp-element-button:hover,
body .wpcf7-submit:hover,
body input.wp-element-button:hover,
body button.wp-block-search__button:hover {
    background-color: #FF9900 !important;
    color: #000000 !important;
    box-shadow: 0 0 25px rgba(255, 153, 0, 0.8) !important; /* Яркое свечение */
    border-color: #FF9900 !important;
    transform: translateY(-2px) !important;
    text-decoration: none !important;
}

/* 3. МЕНЮ (Ссылкам белый цвет) */
body .wp-block-navigation-item__content {
    color: #ffffff !important;
}
body .wp-block-navigation-item__content:hover {
    color: #FF9900 !important;
    text-decoration: none !important;
}