/* Определение шрифта */
@font-face {
    font-family: Nexa;
    src: url('../../font/Nexa-Heavy.ttf');
}

/* Базовые стили для body */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #1a0033, #000033);
    position: relative;
    overflow-x: hidden !important;
    font-family: 'Nexa', sans-serif;
    transition: opacity 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

body.menu-open {
    overflow: hidden;
}

body.menu-open > *:not(header) {
    opacity: 0;
    pointer-events: none;
}

/* Стили для хедера */
header {
    position: relative;
    z-index: 100;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 20px 40px;
    max-width: 1200px;
    margin: 0 auto; /* Центрируем хедер */
    transition: all 0.3s ease;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

header.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: none;
    padding: 10px 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    background: rgba(32, 0, 83, 0.97); /* Добавляем фон для фиксированного хедера */
}

.logo-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.navbar {
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

.nav-list li a {
    color: #FFF;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 0.3s ease, color 0.3s ease;
}

.nav-list li a:hover {
    transform: translateY(-2px);
    color: #9F7FF3;
}

.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.burger-menu span {
    width: 30px;
    height: 3px;
    background-color: #FFF;
    margin: 5px 0;
    transition: all 0.3s ease;
}

.burger-menu.toggle span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.burger-menu.toggle span:nth-child(2) {
    opacity: 0;
}

.burger-menu.toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Стили для основного контента (Webshop) */
.webshop-section {
    position: relative;
    z-index: 2;
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

.webshop-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.webshop-intro {
    text-align: center;
}

.headline {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.headline-emoji {
    font-size: 40px;
    margin-right: 10px;
}

.headline-main {
    color: #FFF;
    font-size: 48px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.2;
    text-shadow: 0 5px 20px rgba(255, 255, 255, 0.5);
    display: inline;
}

.headline-sub {
    color: #9F7FF3;
    font-size: 48px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.2;
    -webkit-text-stroke: 1px #9F7FF3;
    text-shadow: 0 5px 25px rgba(159, 127, 243, 0.8);
    display: inline;
    margin-left: 10px;
}

/* Описание */
.webshop-main {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 20px;
    color: #FFF;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.webshop-main:hover {
    transform: perspective(1000px) rotateX(2deg) rotateY(2deg);
    box-shadow: 0 10px 40px rgba(159, 127, 243, 0.5);
}

.webshop-text {
    font-size: 16px !important;
    font-weight: 900;
    line-height: 1.5;
    margin: 15px 0;
    opacity: 1; /* Устанавливаем видимость по умолчанию */
}

/* Каталог товаров */
.webshop-products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 1; /* Устанавливаем видимость по умолчанию */
}

.product-card:hover {
    transform: perspective(1000px) rotateX(2deg) rotateY(2deg);
    box-shadow: 0 10px 40px rgba(159, 127, 243, 0.5);
}

.product-image {
    width: 100%;
    height: 270px;
    object-fit: cover;
}

.product-content {
    padding: 20px;
    color: #FFF;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-content h2 {
    font-size: 24px !important;
    font-weight: 900;
    margin: 0 0 10px;
    text-transform: uppercase;
}

.product-description {
    font-size: 16px !important;
    margin: 0 0 15px;
    line-height: 1.5;
}

.product-price {
    font-size: 16px !important;
    font-weight: 700;
    margin: 5px 0;
}

.product-btn {
    display: inline-block;
    background: #FFF;
    color: #000;
    padding: 12px 25px;
    text-decoration: none;
    font-size: 16px !important;
    font-weight: 900;
    text-transform: uppercase;
    border-radius: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s;
    margin-top: auto;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.product-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(159, 127, 243, 0.8);
    opacity: 1;
}

.product-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(159, 127, 243, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: 0;
}

.product-btn:hover::after {
    width: 300px;
    height: 300px;
}

.product-btn span {
    position: relative;
    z-index: 1;
}

.product-btn-more {
    display: inline-block;
    background: #FFF;
    color: #000;
    padding: 12px 25px;
    text-decoration: none;
    font-size: 16px !important;
    font-weight: 900;
    text-transform: uppercase;
    border-radius: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s;
    margin-top: auto;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.product-btn-more:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(159, 127, 243, 0.8);
    opacity: 1;
}

.product-btn-more::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(159, 127, 243, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: 0;
}

.product-btn-more:hover::after {
    width: 300px;
    height: 300px;
}

.product-btn-more span {
    position: relative;
    z-index: 1;
}

/* Стили для футера */
footer {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 40px;
    background: rgba(0, 0, 33, 0.8);
    color: #FFF;
    text-align: center;
    margin-top: auto;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content p {
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-links a {
    color: #FFF;
    text-decoration: none;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    transition: transform 0.3s ease, color 0.3s ease;
}

.footer-links a:hover {
    transform: translateY(-2px);
    color: #9F7FF3;
}

/* Стили для login-nav */
.login-nav {
    background-color: rgb(67, 1, 121);
    border-radius: 15px;
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
    color: pink;
    padding: 10px 20px;
    margin-left: auto;
    white-space: nowrap;
}

.login-nav li a {
    color: #FFF;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 0.3s ease, color 0.3s ease;
}

.login-nav li a:hover {
    transform: translateY(-2px);
    color: #9F7FF3;
}

/* Стили для иконки корзины */
.cart-icon {
    position: relative;
    color: #FFF;
    font-size: 30px;
    cursor: pointer;
    margin-left: 25rem;
    padding: 10px 20px;
    background: rgba(159, 127, 243, 0.8);
    border-radius: 10px;
    transition: opacity 0.3s;
}

.cart-icon:hover {
    opacity: 0.8;
}

header.fixed .cart-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    top: auto;
    left: auto;
    margin-left: 0;
    z-index: 1000;
}

.cart-count {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #ff4444;
    color: #FFF;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

/* Стили для модального окна корзины */
.cart-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

.cart-modal.active {
    display: flex;
}

.cart-content {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 30px;
    width: 90%;
    max-width: 600px;
    color: #FFF;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.cart-content h2 {
    margin: 0 0 20px;
    font-size: 28px;
    text-transform: uppercase;
    text-align: center;
}

.cart-items {
    max-height: 400px;
    overflow-y: auto;
    margin-bottom: 20px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 16px;
}

.cart-item-title {
    flex: 1;
}

.cart-item-price {
    margin: 0 20px;
}

.remove-item {
    background: #ff4444;
    color: #FFF;
    border: none;
    padding: 5px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    font-size: 20px;
    font-weight: 900;
    background: rgba(159, 127, 243, 0.2);
    border-radius: 10px;
    margin-bottom: 20px;
}

.checkout-btn,
.close-cart {
    display: block;
    width: 100%;
    padding: 15px;
    margin: 10px 0;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
    transition: opacity 0.3s;
}

.checkout-btn {
    background: #9F7FF3;
    color: #FFF;
}

.checkout-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.checkout-btn:hover,
.close-cart:hover {
    opacity: 0.8;
}

.close-cart {
    background: #FFF;
    color: #000;
}

/* Стили для всплывающего уведомления */
.crypto-popup {
    position: fixed;
    bottom: -100px;
    right: 20px;
    width: 300px;
    background: rgba(159, 127, 243, 0.95);
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: bottom 0.5s ease-in-out;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

.crypto-popup.active {
    bottom: 20px;
}

.crypto-popup-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.crypto-popup-content p {
    margin: 0;
    color: #FFF;
    font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
}

.crypto-popup-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.crypto-more-btn {
    background: #FFF;
    color: #000;
    padding: 8px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s;
    position: relative;
    overflow: hidden;
}

.crypto-more-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(159, 127, 243, 0.8);
    opacity: 1;
}

.crypto-more-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(159, 127, 243, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: 0;
}

.crypto-more-btn:hover::after {
    width: 300px;
    height: 300px;
}

.crypto-more-btn span {
    position: relative;
    z-index: 1;
}

.crypto-close-btn {
    background: none;
    border: none;
    color: #FFF;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}

.crypto-close-btn:hover {
    opacity: 0.8;
}

/* Для webshop.css и contact.css */
.custom-alert {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 3000;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

.custom-alert-content {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 20px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    color: #FFF;
}

.custom-alert-content p {
    font-size: 18px;
    font-weight: 900;
    margin: 0 0 20px;
}

.custom-alert-close {
    background: #9F7FF3;
    color: #FFF;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
    transition: opacity 0.3s;
}

.custom-alert-close:hover {
    opacity: 0.8;
}

/* Стили для анимации полета товара */
.flying-item {
    position: fixed;
    width: 50px;
    height: 50px;
    background-color: rgba(159, 127, 243, 0.8);
    border-radius: 50%;
    z-index: 3000;
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.2s ease;
}

/* Анимация появления (оставляем для совместимости с JavaScript) */
.headline-main,
.headline-sub,
.webshop-text,
.product-card {
    opacity: 1; /* Устанавливаем видимость по умолчанию */
    transform: translateY(0); /* Убираем смещение */
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Класс для появления (если JavaScript работает) */
.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Задержка для субтитров и текста */
.headline-sub { transition-delay: 0.2s; }
.webshop-text:nth-child(1) { transition-delay: 0.3s; }
.webshop-text:nth-child(2) { transition-delay: 0.4s; }
.product-card:nth-child(1) { transition-delay: 0.5s; }
.product-card:nth-child(2) { transition-delay: 0.6s; }
.product-card:nth-child(3) { transition-delay: 0.7s; }

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    header {
        padding: 20px;
        background: rgba(32, 0, 83, 0.97) !important;
        flex-wrap: wrap;
        justify-content: space-between;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    header.fixed {
        padding: 10px;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        background: rgba(32, 0, 83, 0.97) !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    }

    .nav-list {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.95);
        padding: 35px 0 !important;
        opacity: 0;
        transform: translateY(-100%);
        transition: transform 0.5s ease-in-out, opacity 0.3s ease-in-out;
        z-index: 2000;
        justify-content: flex-start;
        align-items: center;
        overflow-y: auto;
    }

    .nav-list.active {
        display: flex;
        opacity: 1;
        transform: translateY(0);
    }

    .nav-list li {
        margin: 10px 0;
        text-align: center;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    }

    .nav-list.active li {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-list.active li:nth-child(1) { transition-delay: 0s; }
    .nav-list.active li:nth-child(2) { transition-delay: 0.1s; }
    .nav-list.active li:nth-child(3) { transition-delay: 0.2s; }
    .nav-list.active li:nth-child(4) { transition-delay: 0.3s; }
    .nav-list.active li:nth-child(5) { transition-delay: 0.4s; }
    .nav-list.active li:nth-child(6) { transition-delay: 0.5s; }
    .nav-list.active li:nth-child(7) { transition-delay: 0.6s; }
    .nav-list.active li:nth-child(8) { transition-delay: 0.7s; }

    .burger-menu {
        display: flex;
        z-index: 2100;
    }

    .login-nav {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        padding: 5px 10px;
        gap: 10px;
        margin-left: 0;
        max-width: 250px;
        width: auto;
        background-color: rgb(67, 1, 121);
        border-radius: 15px;
        position: relative;
        margin: 0 auto;
    }

    header.fixed .login-nav {
        max-width: 200px;
        padding: 5px 8px;
        font-size: 12px;
    }

    .login-nav li {
        font-size: 14px;
        text-align: center;
        white-space: normal;
        overflow-wrap: break-word;
        overflow: visible;
    }

    .login-nav li a {
        font-size: 14px;
        padding: 5px;
        white-space: normal;
        overflow-wrap: break-word;
    }

    header.fixed .login-nav li,
    header.fixed .login-nav li a {
        font-size: 12px;
    }

    .cart-icon {
        margin-right: 10px;
        padding: 10px;
        font-size: 24px;
        margin-left: 15rem;
    }

    header.fixed .cart-icon {
        font-size: 36px;
        padding: 15px;
        border-radius: 15px;
    }

    .cart-count {
        width: 20px;
        height: 20px;
        font-size: 12px;
    }

    .cart-modal.active {
        display: flex;
        align-items: flex-end;
    }

    .cart-content {
        width: 100%;
        max-width: none;
        padding: 15px;
        border-radius: 20px 20px 0 0;
        max-height: 80vh;
        overflow-y: auto;
    }

    .cart-content h2 {
        font-size: 20px;
    }

    .cart-items {
        max-height: 300px;
    }

    .cart-item {
        font-size: 14px;
        padding: 10px;
    }

    .remove-item {
        padding: 5px 10px;
        font-size: 12px;
    }

    .cart-total {
        font-size: 16px;
        padding: 10px 0;
    }

    .checkout-btn,
    .close-cart {
        padding: 12px;
        font-size: 16px;
    }

    .webshop-section {
        padding: 20px;
        padding-top: 70px;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .webshop-intro {
        text-align: center;
    }

    .headline-emoji {
        font-size: 30px;
    }

    .headline-main {
        font-size: 28px;
    }

    .headline-sub {
        font-size: 28px;
    }

    .webshop-text {
        font-size: 14px !important;
        margin: 10px 0;
    }

    .webshop-products {
        grid-template-columns: 1fr;
    }

    .product-image {
        height: 300px;
    }

    .product-content h2 {
        font-size: 20px !important;
    }

    .product-description {
        font-size: 14px !important;
    }

    .product-price {
        font-size: 14px !important;
    }

    .product-btn {
        padding: 10px 20px;
        font-size: 14px !important;
    }

    .crypto-popup {
        width: 40%;
        max-width: 180px;
        right: 10px;
        padding: 5px;
        color: white;
    }

    .crypto-more-btn {
        padding: 10px !important;
        width: 50%;
        text-align: center;
    }

    .crypto-popup-content p {
        font-size: 14px;
    }

    .crypto-more-btn {
        padding: 6px 15px;
        font-size: 12px;
    }

    .crypto-close-btn {
        font-size: 20px;
        width: 25px;
        height: 25px;
    }

    .flying-item {
        width: 40px;
        height: 40px;
    }

    footer {
        padding: 20px;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .footer-links {
        flex-direction: column;
        gap: 12px;
    }

    .footer-links a {
        font-size: 12px;
    }
}

/* Дополнительная оптимизация для очень маленьких экранов */
@media (max-width: 480px) {
    .headline-emoji {
        font-size: 25px;
    }

    .headline-main {
        font-size: 24px;
    }

    .headline-sub {
        font-size: 24px;
    }

    .webshop-text {
        font-size: 12px !important;
    }

    .product-content h2 {
        font-size: 18px !important;
    }

    .product-description {
        font-size: 13px !important;
    }

    .product-price {
        font-size: 13px !important;
    }

    .flying-item {
        width: 30px;
        height: 30px;
    }
}

.checkout-btn:disabled,
.checkout-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #888; /* Серый фон для заблокированной кнопки */
}

.checkout-btn:disabled:hover,
.checkout-btn.disabled:hover {
    opacity: 0.5; /* Не меняем прозрачность при наведении */
    background: #888; /* Сохраняем серый фон */
}

.min-order-message {
    display: none; /* Скрыто по умолчанию */
    color: #ff4444; /* Красный цвет для привлечения внимания */
    font-size: 16px;
    font-weight: 900;
    text-align: center;
    margin: 10px 0;
    padding: 10px;
    background: rgba(255, 75, 75, 0.2);
    border-radius: 5px;
}

/* Стили для спиннера загрузки */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 33, 0.8);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.loading-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #9F7FF3;
    border-top: 5px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Убираем text-shadow для iOS (Safari) */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
    /* Уточняем, что это для iOS */
    @supports (-webkit-touch-callout: none) {
        .headline-main,
        .headline-sub,
        .headline-main-second,
        .headline-sub-second,
        .headline-main-third {
            text-shadow: none !important;
        }
    }
}