/* =====  RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #f5f5f5;
    color: #333;
}

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

/* ===== HEADER ===== */
header {
    background: #1a237e;
    color: white;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

.logo a {
    color: white;
    text-decoration: none;
}

.logo span {
    color: #ff6f00;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 10px;
}

nav ul li a {
    color: white !important;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 4px;
    transition: 0.3s;
}

nav ul li a:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* ===== HERO BANNER ===== */
.hero-banner {
    background: linear-gradient(135deg, #1a237e 0%, #0d47a1 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
    border-radius: 10px;
    margin: 30px 0;
}

.hero-banner h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-banner p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background: #ff6f00;
    color: white !important;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #e65100;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 111, 0, 0.4);
}

/* ===== ADVANTAGES ===== */
.advantages {
    display: flex;
    justify-content: space-around;
    padding: 60px 20px;
    background: white;
    border-radius: 10px;
    margin: 30px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.advantage-item {
    text-align: center;
    max-width: 300px;
    padding: 20px;
}

.advantage-item .icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.advantage-item h3 {
    font-size: 20px;
    color: #1a237e;
    margin-bottom: 10px;
}

.advantage-item p {
    color: #666;
    line-height: 1.5;
}

/* ===== CATALOG ===== */
.view-catalog .views-row {
    display: inline-block;
    width: 30%;
    margin: 1.5%;
    padding: 15px;
    background: white;
    border: 1px solid #eee;
    border-radius: 10px;
    text-align: center;
    vertical-align: top;
    transition: 0.3s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.view-catalog .views-row:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.product-card {
    padding: 10px;
}

.product-card .product-image img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

.product-card .product-title {
    font-size: 16px;
    font-weight: bold;
    margin: 15px 0 10px;
    color: #1a237e;
}

.product-card .product-price {
    font-size: 20px;
    color: #e31e24;
    font-weight: bold;
}

.product-card .product-link {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 25px;
    background: #1a237e;
    color: white !important;
    text-decoration: none;
    border-radius: 50px;
    transition: 0.3s;
}

.product-card .product-link:hover {
    background: #0d47a1;
}

/* ===== PRODUCT FULL ===== */
.product-full {
    display: flex;
    gap: 40px;
    padding: 30px;
    background: white;
    border-radius: 10px;
    margin: 30px 0;
}

.product-full-image {
    flex: 1;
}

.product-full-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.product-full-details {
    flex: 2;
}

.product-full-details h1 {
    color: #1a237e;
    margin-bottom: 20px;
}

.product-full-price {
    font-size: 28px;
    color: #e31e24;
    font-weight: bold;
    margin-bottom: 20px;
}

.product-full-article {
    color: #666;
    margin-bottom: 20px;
}

/* ===== FOOTER ===== */
footer {
    background: #1a237e;
    color: white;
    padding: 40px 0;
    margin-top: 40px;
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

footer a:hover {
    color: white;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 15px;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-banner h1 {
        font-size: 32px;
    }

    .view-catalog .views-row {
        width: 45%;
        margin: 2.5%;
    }

    .advantages {
        flex-direction: column;
        align-items: center;
    }

    .product-full {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .view-catalog .views-row {
        width: 100%;
        margin: 10px 0;
    }

    .hero-banner {
        padding: 40px 15px;
    }

    .hero-banner h1 {
        font-size: 24px;
    }
}
/* ===== MENU STYLES ===== */
nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

nav ul li {
    display: inline-block;
}

nav ul li a {
    color: #ffffff !important; /* Белый текст */
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: bold;
    transition: 0.3s;
}

nav ul li a:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff !important;
}

/* Для активного пункта меню */
nav ul li a.is-active {
    background: rgba(255, 255, 255, 0.3);
    border-bottom: 2px solid #ff6f00;
}
/* ===== MAIN LAYOUT ===== */
.main-layout {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.sidebar {
    width: 280px;
    flex-shrink: 0;
}

.content {
    flex: 1;
}

/* ===== VERTICAL MENU ===== */
.sidebar .block {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #e9ecef;
}

.sidebar .block-title {
    font-size: 18px;
    font-weight: bold;
    color: #1a237e;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #1a237e;
}

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

.sidebar ul li {
    margin: 0;
    padding: 0;
}

.sidebar ul li a {
    display: block;
    padding: 8px 12px;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    transition: 0.3s;
    font-size: 14px;
}

.sidebar ul li a:hover {
    background: #1a237e;
    color: white;
}

.sidebar ul ul {
    padding-left: 15px;
}

.sidebar ul ul li a {
    font-size: 13px;
    padding-left: 20px;
}

.sidebar ul ul ul li a {
    font-size: 12px;
    padding-left: 30px;
    color: #555;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .main-layout {
        flex-direction: column;
    }
    .sidebar {
        width: 100%;
    }
}

/* ===== SIDEBAR CATEGORY MENU - VISIBLE ===== */






/* Уровень 1 - корневые */


/* Уровень 2 */

/* Уровень 3 */

/* Активный пункт */

/* Свёрнутые/развёрнутые пункты */

/* ===== ГОРИЗОНТАЛЬНЫЕ ПОДПУНКТЫ ===== */



/* ===== СТРОГО ВЕРТИКАЛЬНОЕ МЕНЮ ===== */



/* Подпункты — тоже вертикально */



/* ===== FIX LONG CATEGORY NAMES ===== */


/* Для очень длинных слов — перенос по буквам */

/* ===== FORCE MENU HIERARCHY ===== */





/* Уровень 2 — отступ 20px */

/* Уровень 3 — отступ 35px */

/* Уровень 4 — отступ 50px */

/* ===== PRODUCT FULL PAGE ===== */
.product-full {
    display: flex;
    gap: 40px;
    padding: 30px;
    background: white;
    border-radius: 10px;
    margin: 30px 0;
}

.product-full-image {
    flex: 1;
    max-width: 400px;
}

.product-full-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    max-height: 400px;
    object-fit: contain;
}

.product-full-details {
    flex: 2;
}

.product-full-details h1 {
    color: #1a237e;
    margin-bottom: 20px;
}

.product-full-price {
    font-size: 28px;
    color: #e31e24;
    font-weight: bold;
    margin-bottom: 20px;
}

.product-full-fields .field {
    margin-bottom: 10px;
}

.product-full-fields .field__label {
    font-weight: bold;
    color: #333;
}

/* ===== APPLICATION AREAS MENU - FIX ===== */
#block-application-areas-menu {
    background: #f8f9fa !important;
    border: 1px solid #ddd !important;
    border-radius: 8px !important;
    padding: 20px !important;
    margin-top: 20px !important;
}

#block-application-areas-menu h2 {
    color: #1a237e !important;
    font-weight: bold !important;
    font-size: 18px !important;
    border-bottom: 2px solid #1a237e !important;
    padding-bottom: 10px !important;
    margin-bottom: 15px !important;
}

#block-application-areas-menu .menu {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: block !important;
}

#block-application-areas-menu .menu-item {
    display: block !important;
    margin: 0 !important;
    padding: 2px 0 !important;
}

#block-application-areas-menu .menu-item a {
    display: block !important;
    padding: 8px 12px !important;
    color: #1a237e !important;
    text-decoration: none !important;
    border-radius: 4px !important;
    font-size: 14px !important;
    background: #e8eaf6 !important;
    margin-bottom: 2px !important;
    transition: 0.3s !important;
}

#block-application-areas-menu .menu-item a:hover {
    background: #1a237e !important;
    color: white !important;
}

/* ===== PRODUCT FULL PAGE - TWO COLUMNS ===== */
.product-full {
    display: flex;
    gap: 40px;
    padding: 30px;
    background: white;
    border-radius: 10px;
    margin: 30px 0;
}

.product-full-image {
    flex: 0 0 350px;
    max-width: 350px;
}

.product-full-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    max-height: 350px;
    object-fit: contain;
}

.product-full-details {
    flex: 1;
}

.product-full-details h1 {
    color: #1a237e;
    margin-bottom: 20px;
    font-size: 24px;
}

.product-full-fields .field {
    display: flex;
    margin-bottom: 8px;
    padding: 4px 0;
    border-bottom: 1px solid #f0f0f0;
}

.product-full-fields .field__label {
    font-weight: bold;
    min-width: 140px;
    color: #333;
}

.product-full-fields .field__item {
    color: #555;
}

/* Цена - крупно и жирно */
.product-full-fields .field--name-field-price .field__item {
    font-size: 28px;
    font-weight: bold;
    color: #e31e24;
}

@media (max-width: 768px) {
    .product-full {
        flex-direction: column;
    }
    .product-full-image {
        flex: 1;
        max-width: 100%;
    }
}

/* ===== PRODUCT TEASER (catalog list) ===== */
.product-teaser {
    display: flex;
    gap: 20px;
    padding: 15px;
    background: white;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 15px;
    align-items: center;
}

.product-teaser-image {
    flex: 0 0 120px;
    max-width: 120px;
}

.product-teaser-image img {
    width: 100%;
    height: auto;
    max-height: 100px;
    object-fit: contain;
    border-radius: 4px;
}

.product-teaser-content {
    flex: 1;
}

.product-teaser-title {
    margin: 0 0 5px 0;
    font-size: 16px;
}

.product-teaser-title a {
    color: #1a237e;
    text-decoration: none;
}

.product-teaser-price {
    font-size: 18px;
    color: #e31e24;
    font-weight: bold;
    margin: 5px 0;
}

.product-teaser-price .price-label {
    font-weight: normal;
    color: #333;
    font-size: 14px;
}

.btn-detail {
    display: inline-block;
    padding: 5px 15px;
    background: #1a237e;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 13px;
}

.btn-detail:hover {
    background: #0d47a1;
}

/* ===== FOOTER STYLES ===== */
footer {
    background: #1a237e;
    color: white;
    padding: 40px 0;
    margin-top: 40px;
}

footer .container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

footer .block {
    flex: 1;
    min-width: 200px;
}

footer .block h3 {
    color: #ff6f00;
    font-size: 18px;
    margin-bottom: 15px;
    border-bottom: 2px solid #ff6f00;
    padding-bottom: 10px;
}

footer .block p {
    margin: 8px 0;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

footer .block strong {
    color: #fff;
}

footer .block a {
    color: #ff6f00;
    text-decoration: none;
}

footer .block a:hover {
    text-decoration: underline;
}

/* Копирайт отдельно */
footer .block:last-child {
    flex: 0 0 100%;
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* Адаптив */
@media (max-width: 768px) {
    footer .container {
        flex-direction: column;
        gap: 20px;
    }
    footer .block {
        flex: 1 1 100%;
    }
}

/* ===== FOOTER STYLES ===== */
footer {
    background: #1a237e;
    color: white;
    padding: 30px 0;
    margin-top: 40px;
}

footer .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

footer .footer-contacts {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    flex: 1;
}

footer .footer-contacts .block {
    margin: 0;
}

footer .footer-contacts .block h3 {
    color: #ff6f00;
    font-size: 16px;
    margin-bottom: 8px;
    border-bottom: 1px solid #ff6f00;
    padding-bottom: 5px;
}

footer .footer-contacts .block p {
    margin: 4px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

footer .footer-contacts .block strong {
    color: #fff;
}

footer .footer-copyright {
    flex: 0 0 auto;
    text-align: right;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

footer .footer-copyright p {
    margin: 0;
}

/* Адаптив */
@media (max-width: 768px) {
    footer .container {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }
    footer .footer-contacts {
        flex-direction: column;
        gap: 15px;
    }
    footer .footer-copyright {
        text-align: center;
    }
}

/* ===== FOOTER CONTACTS ===== */
.footer-contacts-horizontal {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.footer-contact-item {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.footer-contact-item strong {
    color: #fff;
}

/* На смартфонах — вертикально */
@media (max-width: 768px) {
    .footer-contacts-horizontal {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
}

/* ===== MAIN CATEGORY MENU (SIDEBAR) ===== */



/* Вложенные пункты */




/* ===== CATALOG MENU (SIDEBAR) - SAME STYLE AS APPLICATION AREAS ===== */






/* Вложенные пункты */



/* ===== CATALOG MENU - SAME AS APPLICATION AREAS ===== */
#block-category-menu {
    background: #f8f9fa !important;
    border: 1px solid #ddd !important;
    border-radius: 8px !important;
    padding: 20px !important;
    margin-top: 20px !important;
}

#block-category-menu h2 {
    color: #1a237e !important;
    font-weight: bold !important;
    font-size: 18px !important;
    border-bottom: 2px solid #1a237e !important;
    padding-bottom: 10px !important;
    margin-bottom: 15px !important;
}

#block-category-menu .menu {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: block !important;
}

#block-category-menu .menu-item {
    display: block !important;
    margin: 0 !important;
    padding: 2px 0 !important;
}

#block-category-menu .menu-item a {
    display: block !important;
    padding: 8px 12px !important;
    color: #1a237e !important;
    text-decoration: none !important;
    border-radius: 4px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    background: #e8eaf6 !important;
    margin-bottom: 2px !important;
    transition: 0.3s !important;
}

#block-category-menu .menu-item a:hover {
    background: #1a237e !important;
    color: white !important;
}

/* Вложенные пункты */
#block-category-menu .menu .menu .menu-item a {
    background: transparent !important;
    padding-left: 25px !important;
    color: #333 !important;
    font-weight: normal !important;
}

#block-category-menu .menu .menu .menu-item a:hover {
    background: #1a237e !important;
    color: white !important;
}

#block-category-menu .menu .menu .menu .menu-item a {
    padding-left: 38px !important;
    color: #555 !important;
}

#block-category-menu .menu .menu .menu .menu-item a:hover {
    background: #1a237e !important;
    color: white !important;
}

/* ===== HEADER STYLES ===== */
header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo a {
    color: white;
    text-decoration: none;
}

.logo a:hover {
    color: #ff6f00;
}

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

nav ul li a {
    color: rgba(255, 255, 255, 0.8) !important;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 500;
    transition: 0.3s;
}

nav ul li a:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white !important;
}

nav ul li a.is-active {
    background: rgba(255, 255, 255, 0.2);
    color: white !important;
}

/* Кнопка Войти */
.btn-login {
    display: inline-block;
    padding: 8px 20px;
    background: #ff6f00;
    color: white !important;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.btn-login:hover {
    background: #e65100;
    transform: scale(1.05);
}

/* Адаптив */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 10px;
    }
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    .header-login {
        width: 100%;
        text-align: center;
    }
}

/* ===== ARTICLES ===== */
.node--article h1 {
    color: #1a237e;
    font-size: 28px;
    margin-bottom: 10px;
}

.node--article .node__meta {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.node--article .node__content {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.node--article .node__content p {
    margin-bottom: 15px;
}

.node--article-teaser {
    background: white;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #eee;
    margin-bottom: 20px;
}

.node--article-teaser h2 {
    margin: 0 0 5px 0;
    font-size: 20px;
}

.node--article-teaser h2 a {
    color: #1a237e;
    text-decoration: none;
}

.node--article-teaser .node__date {
    color: #666;
    font-size: 13px;
    margin-bottom: 10px;
}

.node--article-teaser .node__teaser {
    color: #555;
    font-size: 14px;
    margin-bottom: 10px;
}

.btn-read-more {
    display: inline-block;
    padding: 6px 18px;
    background: #1a237e;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 13px;
}

.btn-read-more:hover {
    background: #0d47a1;
}

/* ===== ARTICLES LIST ===== */
.articles-list {
    max-width: 800px;
    margin: 0 auto;
}

.articles-title {
    color: #1a237e;
    font-size: 28px;
    border-bottom: 2px solid #1a237e;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.article-item {
    background: white;
    padding: 20px 25px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    margin-bottom: 20px;
    transition: 0.3s;
}

.article-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.article-title {
    margin: 0 0 8px 0;
    font-size: 20px;
}

.article-title a {
    color: #1a237e;
    text-decoration: none;
}

.article-title a:hover {
    color: #ff6f00;
}

.article-meta {
    color: #666;
    font-size: 13px;
    margin-bottom: 12px;
}

.btn-read-more {
    display: inline-block;
    padding: 6px 18px;
    background: #1a237e;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 13px;
    transition: 0.3s;
}

.btn-read-more:hover {
    background: #0d47a1;
    transform: translateX(4px);
}

/* Пагинация */
.pager {
    display: flex;
    gap: 5px;
    justify-content: center;
    margin-top: 30px;
    padding: 20px 0;
}

.pager a, .pager .current {
    padding: 6px 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    color: #1a237e;
}

.pager .current {
    background: #1a237e;
    color: white;
    border-color: #1a237e;
}

.pager a:hover {
    background: #e8eaf6;
}

/* ===== ARTICLE FULL ===== */
.node-article-full {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.node-article-full h1 {
    color: #1a237e;
    font-size: 28px;
    margin-bottom: 10px;
}

.node-article-meta {
    color: #666;
    font-size: 14px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.node-article-content {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.node-article-content p {
    margin-bottom: 15px;
}

/* ===== ARTICLE TEASER ===== */
.article-teaser {
    background: white;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #eee;
    margin-bottom: 15px;
}

.article-teaser h2 {
    margin: 0 0 5px 0;
    font-size: 18px;
}

.article-teaser h2 a {
    color: #1a237e;
    text-decoration: none;
}

.article-teaser h2 a:hover {
    color: #ff6f00;
}

.article-teaser-meta {
    color: #666;
    font-size: 13px;
    margin-bottom: 10px;
}

/* Скрываем заголовок внутри тела статьи, чтобы не дублировался */
.node-article-full .node__content h1:first-child,
.node-article-full .node__content h2:first-child,
.node-article-full .node__content h3:first-child,
.node-article-full .field--name-body h1:first-child,
.node-article-full .field--name-body h2:first-child {
    display: none !important;
}

/* Скрываем заголовок в контенте, если он идёт первым */
.node-article-full .node__content > *:first-child:is(h1, h2, h3) {
    display: none !important;
}

/* Также скрываем заголовок внутри div.content */
.node-article-full .content h1:first-child,
.node-article-full .content h2:first-child {
    display: none !important;
}

/* Убираем дублирование заголовка в статье */
.node-article-full h1:first-child {
    display: none !important;
}

/* Если заголовок выводится дважды через Drupal */
.node-article-full .node__title {
    display: none !important;
}

/* Скрываем заголовок в теле статьи, если он есть */
.node-article-full .node__content h1:first-child {
    display: none !important;
}

/* ===== СТРАНИЦА ДОКУМЕНТОВ ===== */
.documents-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.page-title {
    color: #1a237e;
    font-size: 32px;
    border-bottom: 3px solid #1a237e;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

/* Категории */
.category-section {
    margin-bottom: 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    overflow: hidden;
}

.category-title {
    background: #1a237e;
    color: white;
    padding: 15px 25px;
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.category-title::before {
    content: "📁";
    font-size: 24px;
}

.category-content {
    padding: 5px 0;
}

/* Документ */
.document-item {
    display: flex;
    align-items: center;
    padding: 12px 25px;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s;
}

.document-item:hover {
    background: #f8f9ff;
}

.document-item:last-child {
    border-bottom: none;
}

.document-icon {
    font-size: 20px;
    margin-right: 15px;
    color: #1a237e;
}

.document-title {
    flex: 1;
    font-size: 15px;
    color: #333;
    font-weight: 500;
}

.document-file {
    font-size: 13px;
    color: #888;
    background: #f5f5f5;
    padding: 4px 12px;
    border-radius: 20px;
    font-family: monospace;
    white-space: nowrap;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Ссылка на файл */
.document-file a {
    color: #1a237e;
    text-decoration: none;
}

.document-file a:hover {
    color: #ff6f00;
    text-decoration: underline;
}

/* Адаптивность */
@media (max-width: 768px) {
    .document-item {
        flex-wrap: wrap;
        padding: 10px 15px;
    }
    
    .document-title {
        width: 100%;
        margin-bottom: 5px;
        font-size: 14px;
    }
    
    .document-file {
        font-size: 12px;
        max-width: 100%;
    }
    
    .category-title {
        font-size: 17px;
        padding: 12px 18px;
    }
}

/* ===== СТРАНИЦА ДОКУМЕНТОВ ===== */
.documents-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.page-title {
    color: #1a237e;
    font-size: 32px;
    border-bottom: 3px solid #1a237e;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

/* Категории */
.category-section {
    margin-bottom: 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    overflow: hidden;
}

.category-title {
    background: #1a237e;
    color: white;
    padding: 15px 25px;
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.category-title::before {
    content: "📁";
    font-size: 24px;
}

.category-content {
    padding: 5px 0;
}

/* Документ */
.document-item {
    display: flex;
    align-items: center;
    padding: 12px 25px;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s;
}

.document-item:hover {
    background: #f8f9ff;
}

.document-item:last-child {
    border-bottom: none;
}

.document-icon {
    font-size: 20px;
    margin-right: 15px;
    color: #1a237e;
}

.document-title {
    flex: 1;
    font-size: 15px;
    color: #333;
    font-weight: 500;
}

.document-file {
    font-size: 13px;
    color: #888;
    background: #f5f5f5;
    padding: 4px 12px;
    border-radius: 20px;
    font-family: monospace;
    white-space: nowrap;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.document-file a {
    color: #1a237e;
    text-decoration: none;
}

.document-file a:hover {
    color: #ff6f00;
    text-decoration: underline;
}

/* Адаптивность */
@media (max-width: 768px) {
    .document-item {
        flex-wrap: wrap;
        padding: 10px 15px;
    }
    
    .document-title {
        width: 100%;
        margin-bottom: 5px;
        font-size: 14px;
    }
    
    .document-file {
        font-size: 12px;
        max-width: 100%;
    }
    
    .category-title {
        font-size: 17px;
        padding: 12px 18px;
    }
}

/* ===== СТРАНИЦА ДОКУМЕНТОВ ===== */
.documents-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.page-title {
    color: #1a237e;
    font-size: 32px;
    border-bottom: 3px solid #1a237e;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

/* Категории */
.category-section {
    margin-bottom: 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    overflow: hidden;
}

.category-title {
    background: #1a237e;
    color: white;
    padding: 15px 25px;
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.category-title::before {
    content: "📁";
    font-size: 24px;
}

.category-content {
    padding: 5px 0;
}

/* Документ */
.document-item {
    display: flex;
    align-items: center;
    padding: 12px 25px;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s;
}

.document-item:hover {
    background: #f8f9ff;
}

.document-item:last-child {
    border-bottom: none;
}

.document-icon {
    font-size: 20px;
    margin-right: 15px;
    color: #1a237e;
}

.document-title {
    flex: 1;
    font-size: 15px;
    color: #333;
    font-weight: 500;
}

.document-file {
    font-size: 13px;
    color: #888;
    background: #f5f5f5;
    padding: 4px 12px;
    border-radius: 20px;
    font-family: monospace;
    white-space: nowrap;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.document-file a {
    color: #1a237e;
    text-decoration: none;
}

.document-file a:hover {
    color: #ff6f00;
    text-decoration: underline;
}

/* Адаптивность */
@media (max-width: 768px) {
    .document-item {
        flex-wrap: wrap;
        padding: 10px 15px;
    }
    
    .document-title {
        width: 100%;
        margin-bottom: 5px;
        font-size: 14px;
    }
    
    .document-file {
        font-size: 12px;
        max-width: 100%;
    }
    
    .category-title {
        font-size: 17px;
        padding: 12px 18px;
    }
}
