@font-face {
    font-family: 'SangBleuSunrise';
    src: url('../fonts/SangBleuSunrise-Regular-WebXL.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Применяем шрифт */
body, h1, h2, h3, h4, h5, h6, p, span, a, button, input, textarea {
    font-family: 'SangBleuSunrise', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}
/* Базовые сбросы */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background: #ffffff;
    color: #000000;
    line-height: 1.6;
}

/* Навигация */
.uk-navbar-nav > li > a {
    min-height: 80px;
    padding: 0 15px;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.uk-navbar-nav > li > a:hover {
    color: #ff0000 !important;
}
/* Стили для улучшенного блока преимуществ */

/* Анимация при наведении на карточку */
.advantage-card {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    z-index: 1;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(252, 18, 59, 0.1) !important;
    border-color: transparent !important;
}

.advantage-card:hover div[style*="position: absolute"] {
    transform: scaleX(1) !important;
}

.advantage-card:hover div[style*="width: 100px"] {
    background: #FC123B !important;
    transform: scale(1.1) rotate(5deg);
}

.advantage-card:hover div[style*="width: 100px"] svg path,
.advantage-card:hover div[style*="width: 100px"] svg circle {
    stroke: #ffffff !important;
}
/* Стили для модальных окон с прокруткой */

/* Убираем стандартные стили UIkit для модальных окон */
.uk-modal-full .uk-modal-dialog {
    width: 100vw !important;
    height: 100vh !important;
    max-width: 100% !important;
    max-height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Стили для колонок */
.uk-grid-collapse {
    margin: 0 !important;
}

.uk-grid-collapse > * {
    padding-left: 0 !important;
}

/* Стили для левой колонки с фото */
.uk-modal-full .uk-height-1-1 {
    height: 100vh !important;
}

/* Стили для правой колонки с прокруткой */
.uk-modal-full > div > div > div:last-child {
    height: 100vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch; /* плавный скролл на iOS */
}

/* Кастомизация скроллбара */
.uk-modal-full > div > div > div:last-child::-webkit-scrollbar {
    width: 6px;
}

.uk-modal-full > div > div > div:last-child::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.uk-modal-full > div > div > div:last-child::-webkit-scrollbar-thumb {
    background: #FC123B;
    border-radius: 3px;
}

.uk-modal-full > div > div > div:last-child::-webkit-scrollbar-thumb:hover {
    background: #d01030;
}

/* Кнопка закрытия */
.uk-modal-close-full {
    position: fixed !important;
    top: 20px !important;
    right: 20px !important;
    z-index: 1001 !important;
    background: #000000 !important;
    color: #ffffff !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s !important;
}

.uk-modal-close-full:hover {
    background: #FC123B !important;
    transform: scale(1.1) rotate(90deg);
}
/* Стили для блока акций */
#sales .uk-card {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

#sales .uk-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(252, 18, 59, 0.15) !important;
}

#sales .uk-card:hover img {
    transform: scale(1.05);
}

#sales .uk-card a:hover {
    background: #000000 !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(252, 18, 59, 0.3);
}

/* Анимация для бейджа */
@keyframes pulse-red {
    0% {
        box-shadow: 0 0 0 0 rgba(252, 18, 59, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(252, 18, 59, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(252, 18, 59, 0);
    }
}

#sales .uk-card div[style*="left: 20px"] span {
    animation: pulse-red 2s infinite;
}

/* Таймер */
.sale-timer {
    font-family: monospace;
    font-weight: 600;
}

/* Адаптивность */
@media (max-width: 960px) {
    #sales h2 {
        font-size: 32px !important;
    }
    
    #sales .uk-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 640px) {
    #sales .uk-grid {
        grid-template-columns: 1fr !important;
    }
}
/* Мобильная версия */
@media (max-width: 640px) {
    .uk-modal-full .uk-grid-collapse {
        display: block !important;
    }
    
    .uk-modal-full .uk-grid-collapse > * {
        width: 100% !important;
    }
    
    .uk-modal-full .uk-height-1-1 {
        height: 40vh !important;
        position: relative !important;
        top: 0 !important;
    }
    
    .uk-modal-full > div > div > div:last-child {
        height: 60vh !important;
    }
    
    .uk-modal-close-full {
        top: 10px !important;
        right: 10px !important;
        width: 40px !important;
        height: 40px !important;
    }
}
/* Анимация для иконок */
.advantage-card div[style*="width: 100px"] {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Стили для нижних преимуществ */
.uk-grid-margin-large > div > div {
    transition: all 0.3s;
}

.uk-grid-margin-large > div > div:hover {
    background: #FC123B !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(252, 18, 59, 0.2);
}

.uk-grid-margin-large > div > div:hover span:last-child {
    color: #ffffff !important;
}

/* Адаптивность */
@media (max-width: 960px) {
    .advantage-card {
        padding: 30px 20px !important;
    }
    
    .advantage-card h3 {
        font-size: 20px !important;
    }
    
    .uk-grid-margin-large {
        margin-top: 40px !important;
    }
}

@media (max-width: 640px) {
    #advantages h2 {
        font-size: 32px !important;
    }
    
    .advantage-card {
        padding: 25px 15px !important;
    }
    
    .uk-grid-margin-large > div {
        margin-bottom: 10px;
    }
}
/* Кнопка заказа */
.order-btn {
    display: inline-block;
    padding: 10px 25px;
    background: #ff0000;
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
    border: none;
}

.order-btn:hover {
    background: #cc0000;
    color: #ffffff;
}

/* Гамбургер */
.hamburger {
    width: 30px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger span {
    width: 100%;
    height: 2px;
    background: #ffffff;
    transition: all 0.3s;
}

/* Каталог - 3 товара в ряд */
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 960px) {
    .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .catalog-grid {
        grid-template-columns: 1fr;
    }
}

/* Карточка товара */
.product-card {
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
}

/* Фильтры */
.filter-btn {
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: #000000 !important;
    color: #ffffff !important;
}

/* Кнопка показать еще */
.load-more:hover {
    background: #000000 !important;
    color: #ffffff !important;
}

/* Формы */
input:focus {
    outline: none;
    border-color: #ff0000 !important;
}

/* Анимации */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

section {
    animation: fadeIn 0.8s ease;
}

/* Стили для секций */
.uk-section {
    position: relative;
}


.uk-navbar-right{
    padding: 8px 20px;
    flex-wrap: nowrap !important;
}

.uk-navbar-left{
    margin-left: 20px;
}
/* Стили для улучшенной формы */
#questions .contact-form input:hover,
#questions .contact-form input:focus {
    border-color: #FC123B !important;
    background: #ffffff !important;
    outline: none;
    box-shadow: 0 5px 20px rgba(227, 30, 36, 0.1);
}

#questions .contact-form button {
    background: linear-gradient(135deg, #FC123B 0%, #b0181d 100%);
    position: relative;
    overflow: hidden;
}

#questions .contact-form button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

#questions .contact-form button:hover::before {
    left: 100%;
}

#questions .contact-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(227, 30, 36, 0.4);
}

/* Анимация для фона */
@keyframes slowZoom {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.1);
    }
}

#questions .uk-container {
    animation: fadeInUp 1s ease;
}

/* Стили для модальной формы */
.uk-modal-dialog {
    border-radius: 20px;
    overflow: hidden;
}

.uk-modal-close-default {
    transition: transform 0.3s;
}

.uk-modal-close-default:hover {
    transform: rotate(90deg);
    color: #FC123B !important;
}

/* Адаптивность */
@media (max-width: 640px) {

    .catalog-grid{
        grid-template-columns: 1fr !important
    }

    #questions {
        padding: 80px 0 !important;
    }
    
    #questions h2 {
        font-size: 36px !important;
    }
    
    #questions .uk-width-2-3\@m > div {
        padding: 30px !important;
    }
    
    #questions .contact-form input {
        padding: 15px 15px 15px 45px !important;
    }
}

/* ===== АНИМИРОВАННЫЕ КНОПКИ ===== */
.btn-animated {
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    z-index: 1;
}

/* Эффект пульсации для красной кнопки */
.btn-primary {
    animation: pulse_2 1s infinite;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
    z-index: 2;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(227, 30, 36, 0.5) !important;
    animation: none;
}

.btn-primary:active {
    transform: translateY(-1px);
}

/* Эффект для прозрачной кнопки */
.btn-outline {
    position: relative;
    border: 2px solid #ffffff;
    transition: all 0.3s;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #FC123B;
    transition: width 0.3s ease;
    z-index: 2;
}

.btn-outline:hover::before {
    width: 100%;
}

.btn-outline:hover {
    border-color: #FC123B;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(227, 30, 36, 0.3);
}

.btn-outline:hover span {
    color: #ffffff;
}

.btn-outline:active {
    transform: translateY(-1px);
}

/* Анимация пульсации */
@keyframes pulse_2 {
    0% {
        box-shadow: 0 0 0 0 rgba(227, 30, 36, 0.4);
    }
    70% {
        box-shadow: 0 0 0 30px rgba(227, 30, 36, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(227, 30, 36, 0);
    }
}

/* Вторая анимация для привлечения внимания */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-2px); }
    20%, 40%, 60%, 80% { transform: translateX(2px); }
}

.btn-primary:hover {
    animation: shake 0.5s ease;
}

/* Стили для кнопки наверх */
#scroll-to-top a:hover {
    transform: scale(1.1);
    background: #b0181d;
}

#scroll-to-top a:hover span {
    animation: bounce 1s infinite;
}

@keyframes bounce {
    0%, 100% { transform: rotate(0deg) translateY(0); }
    50% { transform: rotate(0deg) translateY(-5px); }
}

/* ===== МОБИЛЬНАЯ ВЕРСИЯ ===== */
@media (max-width: 768px) {
    /* Hero секция */
    .hero-section h1 {
        font-size: 36px !important;
    }
    
    .hero-section p {
        font-size: 16px !important;
        margin-bottom: 30px !important;
    }
    
    .hero-section .uk-width-2-3\@m {
        width: 100% !important;
        padding: 0 15px !important;
    }
    
    /* Преимущества в hero */
    .hero-section div[style*="gap: 50px"] {
        gap: 20px !important;
        margin-bottom: 30px !important;
    }
    
    .hero-section div[style*="gap: 50px"] > div {
        width: 45% !important;
    }
    
    .hero-section div[style*="gap: 50px"] span[style*="font-size: 36px"] {
        font-size: 28px !important;
    }
    
    /* Кнопки */
    .hero-section div[style*="gap: 25px"] {
        flex-direction: column !important;
        gap: 15px !important;
        width: 100% !important;
    }
    
    .hero-section .btn-animated {
        width: 100% !important;
        min-width: auto !important;
        padding: 16px 30px !important;
        font-size: 16px !important;
    }
    
    /* Убираем фиксированную высоту */
    .hero-section .uk-container {
        height: auto !important;
        min-height: 80vh !important;
        padding: 60px 0 !important;
    }
}
.uk-scrollspy-inview,.uk-accordion,.uk-container{
    position: relative;
    z-index: 3;
}
@media (max-width: 480px) {

    #floating-btn{
        right: 20px !important;
        bottom: 100px !important;
    }
    .uk-visible\@s {
        display: block !important;
    }

    .hero-section h1 {
        font-size: 40px !important;
    }
    h2{
        font-size: 32px !important;

    }

    .order-btn{
        min-width: 130;
    }
    .hero-section div[style*="gap: 50px"] > div {
        width: 100% !important;
    }
    
    .hero-section .btn-animated {
        padding: 14px 20px !important;
        font-size: 15px !important;
    }
}

/* ===== МИНИМАЛИСТИЧНОЕ МЕНЮ ===== */
#fullscreen-menu .uk-modal-dialog {
    background: #000000 !important;
}

#fullscreen-menu ul li a {
    position: relative;
    display: inline-block;
    transition: all 0.3s;
}

#fullscreen-menu ul li a:hover {
    color: #FC123B !important;
    transform: translateY(-2px);
}

#fullscreen-menu ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #FC123B;
    transition: width 0.3s;
}

#fullscreen-menu ul li a:hover::after {
    width: 50%;
}

#fullscreen-menu .uk-close-large {
    color: #ffffff;
    font-size: 30px;
    transition: transform 0.3s;
}
/* ===== СТИЛИ ДЛЯ CONTACT FORM 7 ===== */

/* Общий контейнер формы */
.wpcf7-form {
    width: 100%;
    max-width: 100%;
}

/* Поля ввода */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="number"],
.wpcf7-form textarea {
    width: 100%;
    padding: 16px 20px;
    margin-bottom: 15px;
    background: #f5f5f5;
    border: 2px solid transparent;
    border-radius: 50px;
    font-size: 15px;
    color: #333;
    transition: all 0.3s;
    font-family: inherit;
}

.wpcf7-form textarea {
    border-radius: 20px;
    min-height: 100px;
    resize: vertical;
}

.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
    outline: none;
    border-color: #FC123B;
    background: #ffffff;
    box-shadow: 0 5px 15px rgba(252, 18, 59, 0.1);
}

/* Кнопка отправки */
.wpcf7-form input[type="submit"] {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #FC123B 0%, #d01030 100%);
    color: #ffffff;
    border: none;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s;
    box-shadow: 0 8px 20px rgba(252, 18, 59, 0.3);
    margin-top: 5px;
}

.wpcf7-form input[type="submit"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(252, 18, 59, 0.4);
    background: linear-gradient(135deg, #d01030 0%, #FC123B 100%);
}

.wpcf7-form input[type="submit"]:active {
    transform: translateY(-1px);
}

/* Сообщения об ошибках */
.wpcf7-form .wpcf7-not-valid-tip {
    color: #FC123B;
    font-size: 12px;
    margin-top: -10px;
    margin-bottom: 10px;
    padding-left: 15px;
}

.wpcf7-form .wpcf7-response-output {
    margin: 20px 0 0;
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 14px;
    text-align: center;
}

.wpcf7-form .wpcf7-validation-errors,
.wpcf7-form .wpcf7-acceptance-missing {
    background: #fff3f3;
    border: 1px solid #FC123B !important;
    color: #FC123B;
}

.wpcf7-form .wpcf7-mail-sent-ok {
    background: #e8f7e8;
    border: 1px solid #00a65a !important;
    color: #00a65a;
}

/* Спиннер загрузки */
.wpcf7-form .ajax-loader {
    display: block;
    margin: 10px auto 0;
}
/* ===== УЛУЧШЕННЫЕ СТИЛИ ДЛЯ CONTACT FORM 7 ===== */

/* Контейнер формы */
.wpcf7-form {
    width: 100%;
    max-width: 100%;
    position: relative;
}

/* Скрываем лишние поля */
.hidden-fields-container {
    display: none;
}

/* Стили для полей */
.wpcf7-form p {
    margin: 0 0 15px 0;
    position: relative;
}

.wpcf7-form label {
    display: block;
    font-size: 13px;
    color: #666;
    margin-bottom: 5px;
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* Контейнер для поля с иконкой */
.wpcf7-form .wpcf7-form-control-wrap {
    position: relative;
    display: block;
}



/* Поля ввода */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="number"],
.wpcf7-form textarea {
    width: 100%;
    padding: 16px 16px 16px 50px;
    background: #f9f9f9;
    border: 2px solid #eaeaea;
    border-radius: 12px;
    font-size: 15px;
    color: #333;
    transition: all 0.3s ease;
    font-family: inherit;
    box-sizing: border-box;
}

.wpcf7-form textarea {
    padding: 16px 16px 16px 50px;
    min-height: 100px;
    resize: vertical;
    border-radius: 16px;
}

/* Эффект при фокусе */
.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
    outline: none;
    border-color: #FC123B;
    background: #ffffff;
    box-shadow: 0 5px 20px rgba(252, 18, 59, 0.1);
    transform: translateY(-2px);
}

/* Плейсхолдеры */
.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder {
    color: #aaa;
    font-weight: 300;
    font-size: 14px;
}

/* Кнопка отправки */
.wpcf7-form input[type="submit"] {
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(135deg, #FC123B 0%, #d01030 100%);
    color: #ffffff;
    border: none;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(252, 18, 59, 0.3);
    margin-top: 10px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

/* Эффект волны на кнопке */
.wpcf7-form input[type="submit"]::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.wpcf7-form input[type="submit"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(252, 18, 59, 0.4);
    background: linear-gradient(135deg, #d01030 0%, #FC123B 100%);
}

.wpcf7-form input[type="submit"]:hover::before {
    width: 300px;
    height: 300px;
}

.wpcf7-form input[type="submit"]:active {
    transform: translateY(-1px);
}

/* Спиннер загрузки */
.wpcf7-form .wpcf7-spinner {
    display: block;
    margin: 15px auto 0;
    background-color: #FC123B;
    opacity: 0.5;
}

/* Сообщение об ошибке */
.wpcf7-form .wpcf7-not-valid-tip {
    color: #FC123B;
    font-size: 12px;
    margin-top: 5px;
    padding-left: 15px;
    animation: shake 0.3s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Ответ после отправки */
.wpcf7-form .wpcf7-response-output {
    margin: 20px 0 0;
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 14px;
    text-align: center;
    font-weight: 500;
    animation: fadeInUp 0.5s ease;
}

.wpcf7-form .wpcf7-validation-errors,
.wpcf7-form .wpcf7-acceptance-missing {
    background: #fff3f3;
    border: 1px solid #FC123B !important;
    color: #FC123B;
}

.wpcf7-form .wpcf7-mail-sent-ok {
    background: #e8f7e8;
    border: 1px solid #00a65a !important;
    color: #00a65a;
}

.wpcf7-form .wpcf7-mail-sent-ng {
    background: #fff3f3;
    border: 1px solid #FC123B !important;
    color: #FC123B;
}

/* Стили для темного фона (секция questions) */
#questions .wpcf7-form input,
#questions .wpcf7-form textarea {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(255, 255, 255, 0.1);
}

#questions .wpcf7-form label {
    color: #ccc;
}

#questions .wpcf7-form .wpcf7-form-control-wrap::before {
    color: #FC123B;
}

/* Стили для модального окна */
#form-modal .wpcf7-form {
    background: transparent;
}

#form-modal .wpcf7-form input,
#form-modal .wpcf7-form textarea {
    background: #f9f9f9;
    border-color: #eaeaea;
}

#form-modal .wpcf7-form label {
    color: #666;
}

/* Адаптивность */
@media (max-width: 768px) {
    .wpcf7-form input[type="text"],
    .wpcf7-form input[type="email"],
    .wpcf7-form input[type="tel"],
    .wpcf7-form textarea {
        padding: 14px 14px 14px 45px;
        font-size: 14px;
    }
    
    .wpcf7-form .wpcf7-form-control-wrap::before {
        left: 14px;
        font-size: 16px;
    }
    
    .wpcf7-form input[type="submit"] {
        padding: 16px;
        font-size: 15px;
    }
    
    #questions .wpcf7-form {
        padding: 0;
    }
}
textarea{
    height: 100px;
}
 .wpcf7-submit{
    background: #FC123B !important;
}
@media (max-width: 480px) {

    .li_contact{
        flex-direction: column;
    }
    .wpcf7-form input[type="submit"] {
        padding: 14px;
        font-size: 14px;
    }
}
/* Стили для разных темных фонов */
#questions .wpcf7-form input,
#questions .wpcf7-form textarea {
    background: rgba(255,255,255,0.95);
    border: 1px solid #ddd;
}

/* Стили для модального окна */
#form-modal .wpcf7-form input {
    padding: 14px 20px;
    font-size: 15px;
}

#form-modal .wpcf7-form input[type="submit"] {
    padding: 16px;
    font-size: 16px;
}

/* Адаптивность */
@media (max-width: 640px) {
    .wpcf7-form input,
    .wpcf7-form textarea {
        padding: 14px 18px !important;
        font-size: 14px !important;
    }
    
    .wpcf7-form input[type="submit"] {
        padding: 16px !important;
        font-size: 15px !important;
    }
}
#fullscreen-menu .uk-close-large:hover {
    transform: rotate(90deg);
    color: #FC123B !important;
}

/* Адаптация для планшетов */
@media (max-width: 1024px) {
    #fullscreen-menu ul li a {
        font-size: 32px !important;
    }
}

@media (max-width: 768px) {
    #fullscreen-menu ul li a {
        font-size: 28px !important;
    }
}

@media (max-width: 480px) {
    #fullscreen-menu ul li a {
        font-size: 24px !important;
        margin-bottom: 20px;
    }
    
    #fullscreen-menu div[style*="margin-top: 60px"] {
        margin-top: 40px !important;
    }
}

.uk-modal-full .uk-modal-dialog{
    height: 100%;
}