/* Применение шрифта Inter ко всему сайту */
body {
    font-family: "Inter", sans-serif;
    background-color: #f9fafb;
}

/* Стиль для активного языка (оранжевый) */
.lang-active {
    font-weight: bold;
    color: #f97316;
    text-decoration: underline;
}

/* Стили для бокового меню категорий */
.category-sidebar a {
    transition: all 0.2s ease-in-out;
}
.category-sidebar a:hover {
    background-color: #f97316;
    color: white;
    padding-left: 1.25rem; /* 20px */
}

/* Убираем стрелки у поля для ввода */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
    -webkit-appearance: none;
}

/* Стили для слайдера новостей */
.news-slider .swiper-button-next,
.news-slider .swiper-button-prev {
    color: #f97316;
}
.news-slider .swiper-pagination-bullet-active {
    background-color: #f97316;
}

/* НОВЫЕ СТИЛИ ДЛЯ ВНЕШНИХ КНОПОК (ИСПРАВЛЕНИЕ №2) */
.swiper-button-next,
.swiper-button-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    /* ИСПОЛЬЗУЕМ !important, ЧТОБЫ ГАРАНТИРОВАТЬ ПРИМЕНЕНИЕ РАЗМЕРОВ */
    width: 44px !important;
    height: 44px !important;

    background-color: white;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f97316 !important; /* !important здесь уже был и он нужен */
    transition: box-shadow 0.2s;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 18px !important; /* Уменьшаем размер иконок-стрелок */
    font-weight: bold;
}
