/* Сетка по ширине состоит из 3х представлерний: 991px, 767px, 479px
  @media (max-width: 991px) {

  }
  @media (max-width: 767px) {

  }
  @media (max-width: 479px) {

  }
*/

/* --------------------------------------ALL */

@font-face {
    font-family: 'Century Gothic';
    font-display: swap;
    src: url('/templates/schwank/assets/fonts/CenturyGothic.woff')
}

@font-face {
    font-family: 'Century Gothic Bold';
    font-weight: bold;
	font-style: normal;
    src: url('/templates/schwank/assets/fonts/CenturyGothic-Bold.ttf') format("ttf"), url('/templates/schwank/assets/fonts/CenturyGothic-Bold.woff') format("woff")
}

* { font-family: 'Century Gothic', Arial, Helvetica, sans-serif; }

h1, h2, h3, h4, h1 > *, h2 > *, h3 > *, h4 > *, b, strong, b > *, strong > *, .button, .bold, .active{
    font-family: 'Century Gothic Bold', Arial, Helvetica, sans-serif;
}

p.small {
    font-size: 14px;
    color: #aaa;
}
a {
    color: var(--dark-gray);
}
a:hover {
    color: var(--primary-orange);
    cursor: pointer;
}

/* -------------------------------------- TO TOP */
.back_to_top {
    position: fixed;
    bottom: 25px;
    left: 40px;
    z-index: 99;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    background: #e8540d;
    color: #fff;
    cursor: pointer;
    border-radius: 2px;
    display: none;
  }
  .back_to_top:hover {
    background: #e9ebec;
  }
  .back_to_top-show {
    display: block;
  }
/* -------------------------------------- TO TOP */




    :root {
        --primary-orange: #fc7410;
        --light-gray: #f9f9f9;
        --dark-gray: #1b222a;
        --white: #ffffff;
        --text-gray: #666;
        --border-color: #e0e0e0;
    }

    body {
        line-height: 1.6;
        color: var(--dark-gray);
        overflow-x: hidden;
    }

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

    .section-title {
        text-align: center;
        font-size: 36px;
        margin-bottom: 20px;
        color: var(--dark-gray);
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
    }

    .section-subtitle {
        text-align: center;
        color: var(--text-gray);
        margin-bottom: 40px;
        font-size: 18px;
        line-height: 1.6;
    }

    .btn {
        padding: 8px 24px;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        font-weight: 600;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 14px;
    }
    .back_btn {
        color: #fc7410;
        background: #222;
        border-radius: 8px;
        margin: 30px 0px;
        display: inline-block;
        padding: 8px 24px;
        font-size: 14px;
    }

    .btn-primary {
        background: var(--primary-orange);
        color: var(--dark-gray);
    }

    .btn-secondary {
        background: transparent;
        color: var(--dark-gray);
        border: 2px solid var(--border-color);
    }

    .btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    }

    .btn-primary:hover {
        background: #e86509;
        color: #fff;
    }


    .btn-secondary:hover {
        border-color: var(--primary-orange);
        color: var(--primary-orange);
    }

    .btn-small {
        padding: 8px 16px;
        font-size: 12px;
        border-radius: 6px;
    }

    .copy.center {
        font-size: 14px;
        color: var(--primary-orange);
        font-weight: bold;
    }
    .copy.center a{
        color: #fff;
    }

    /* Шапка сайта */
    .header {
        background: var(--white);
        box-shadow: 0 2px 20px rgba(27, 34, 42, 0.08);
        position: sticky;
        top: 0;
        z-index: 1000;
        transition: all 0.3s ease;
    }
    @media screen and (max-width: 768px) {
        .header {position: sticky;}
    }
    .header.compact {
        box-shadow: 0 2px 30px rgba(27, 34, 42, 0.15);
    }

    .header.compact .header-top {
        padding: 10px 0;
    }

    .header.compact .nav-section {
        padding: 10px 0;
    }

    .header.compact .logo {
        font-size: 24px;
    }

    .header.compact .contacts {
        gap: 25px;
    }

    .header.compact .contact-item {
        font-size: 14px;
    }

    .header-top {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 0;
        transition: padding 0.3s ease;
        font-size: 16px;
    }

    .logo {
        font-size: 28px;
        font-weight: bold;
        color: var(--primary-orange);
        letter-spacing: -1px;
        transition: font-size 0.3s ease;
        text-decoration: none;
    }

    .contacts {
        display: flex;
        gap: 30px;
        align-items: center;
        transition: gap 0.3s ease;
        font-size: 14px;
    }

    .contact-item {
        color: var(--dark-gray);
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s ease, font-size 0.3s ease;
        display: flex;
        align-items: center;
        gap: 8px;
        font-weight: bold;
    }

    .contact-item:hover {
        color: var(--primary-orange);
    }

    .contact-item i {
        font-size: 16px;
    }

    .phone-icon {
        display: none;
        position: fixed;
        top: 20px;
        right: 70px;
        z-index: 1001;
        background: var(--primary-orange);
        color: var(--white);
        border: none;
        border-radius: 50%;
        width: 45px;
        height: 45px;
        font-size: 18px;
        cursor: pointer;
        box-shadow: 0 4px 12px rgba(252, 116, 16, 0.3);
        transition: transform 0.3s ease;
    }

    .nav-section {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 18px 0;
        transition: padding 0.3s ease;
        max-width: 1160px;
        margin: 0 auto;
    }
    .dark{
        background-color: var(--dark-gray);
    }
    .nav-menu {
        display: flex;
        list-style: none;
        gap: 30px;
    }

    .nav-menu a {
        text-decoration: none;
        color: var(--white);
        font-weight: 500;
        transition: all 0.3s ease;
        position: relative;
        padding: 8px 0;
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 16px;
    }

    .nav-menu a:hover {
        color: var(--primary-orange);
    }

    .nav-menu a.active {
        color: var(--primary-orange);
    }

    .nav-menu a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--primary-orange);
        transition: width 0.3s ease;
    }

    .nav-menu a:hover::after,
    .nav-menu a.active::after {
        width: 100%;
    }

    .nav-buttons {
        display: flex;
        gap: 15px;
    }

    .dropdown {
        position: relative;
    }

    .dropdown-content {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #fff;
        border: 1px solid #ccc;
        z-index: 999;
        padding: 10px 20px;
        border-radius: 2px;
    }
    .dropdown-content a{
        font-size: 14px;
        color: var(--dark-gray);
    }

    .dropdown:hover .dropdown-content {
        display: block;
    }

    /* Мобильная навигация */
    .mobile-menu-toggle {
        display: none;
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 1001;
        background: var(--white);
        border: 2px solid var(--border-color);
        border-radius: 8px;
        font-size: 18px;
        cursor: pointer;
        color: var(--dark-gray);
        width: 45px;
        height: 45px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        transition: all 0.3s ease;
    }

    .mobile-nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 999;
    }

    .mobile-nav-menu {
        display: none;
        position: fixed;
        top: 20px;
        right: -300px;
        width: 280px;
        height: 100%;
        background: var(--white);
        z-index: 1000;
        padding: 80px 30px 30px;
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
    }

    .mobile-nav-menu.active {
        right: 0;
    }

    .mobile-nav-menu ul {
        list-style: none;
        margin-bottom: 30px;
    }

    .mobile-nav-menu ul li {
        margin-bottom: 10px;
    }

    .mobile-nav-menu ul li a {
        text-decoration: none;
        color: var(--dark-gray);
        font-weight: 500;
        font-size: 16px;
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px 0;
        border-bottom: 1px solid var(--border-color);
    }

    .mobile-nav-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-bottom: 10px;
    }

    /* Хлебные крошки */
    .breadcrumbs {
        background: var(--light-gray);
    }
    .breadcrumbs .container{
        display: flex;
        justify-content: space-between;
    }
    .breadcrumbs .container .section-title{
        margin-bottom: 0;
        padding: 10px 0;
    }

    .breadcrumb-list {
        display: flex;
        align-items: center;
        gap: 12px;
        list-style: none;
        font-size: 14px;
    }

    .breadcrumb-list li {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .breadcrumb-list a {
        color: var(--text-gray);
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .breadcrumb-list a:hover {
        color: var(--primary-orange);
    }

    .breadcrumb-list .current {
        color: var(--dark-gray);
        font-weight: 500;
    }

    /* Заголовок страницы */
    .page-header {
        background: var(--white);
        padding: 40px 0;
        border-bottom: 1px solid var(--border-color);
    }

    .page-title {
        font-size: 36px;
        font-weight: 700;
        color: var(--dark-gray);
        margin-bottom: 16px;
        display: flex;
        align-items: center;
        gap: 16px;
    }

    .page-subtitle {
        color: var(--text-gray);
        font-size: 18px;
        line-height: 1.6;
    }

    /* Фильтры */
    .filters-section {
        background: var(--light-gray);
        padding: 30px 0;
        border-bottom: 1px solid var(--border-color);
    }

    .filters-container {
        display: flex;
        gap: 20px;
        align-items: center;
        flex-wrap: wrap;
    }

    .filter-group {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .filter-group label {
        font-weight: 500;
        color: var(--dark-gray);
        white-space: nowrap;
    }

    .filter-group select,
    .filter-group input {
        padding: 10px 14px;
        border: 2px solid var(--border-color);
        border-radius: 6px;
        font-size: 14px;
        transition: border-color 0.3s ease;
        min-width: 120px;
    }

    .filter-group select:focus,
    .filter-group input:focus {
        outline: none;
        border-color: var(--primary-orange);
    }

    .filter-clear {
        margin-left: auto;
    }

    /* Формы */
    .form-group {
        margin-bottom: 24px;
    }

    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
        color: var(--dark-gray);
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 16px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        width: 100%;
        padding: 14px 16px;
        border: 2px solid var(--border-color);
        border-radius: 8px;
        font-size: 14px;
        transition: border-color 0.3s ease;
        font-family: inherit;
    }

    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
        outline: none;
        border-color: var(--primary-orange);
    }

    .form-group textarea {
        resize: vertical;
        min-height: 100px;
    }

    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }


    /* Слайдер */
    .slider {
        position: relative;
        overflow: hidden;
    }

    /* Общий стиль для всех слайдов */
    .slide {
        top: 0;
        left: 0;
        width: 100%;
        max-height: 650px;
        opacity: 0;
        visibility: hidden;
        transition: opacity 1s ease-in-out;
        pointer-events: none;
        position: absolute;
    }

    /* Активный слайд */
    .slide.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    /* Изображение */
    .slide img {
        width: 100%;
        height: auto;
        max-height: 650px;
        object-fit: contain;
        display: block;
    }

    /* Контент слайда */
    .slide-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        color: #fff;
        max-width: 700px;
        padding: 10px 20px;
        background: var(--dark-gray);
        border-radius: 5px;
        z-index: 2;
    }
    .slide-content .btn{
        margin-bottom: 20px;
    }

    .slide-content h2 {
        margin-top: 10px;
        font-size: 42px;
        margin-bottom: 14px;
        font-weight: 700;
        line-height: 1.2;
    }

    .slide-content p {
        font-size: 18px;
        margin-bottom: 15px;
        opacity: 0.9;
        line-height: 1.6;
    }

    .slider-dots-container {
        text-align: center;
        margin-top: 0;
        position: relative;
        margin-bottom: 30px;
    }

    .slider-dots {
        display: flex;
        justify-content: center;
        gap: 0.5rem;
    }

    .slider-dots .dot {
        width: 15px;
        height: 15px;
        background-color: var(--light-gray);
        border-radius: 50%;
        cursor: pointer;
        transition: background-color 0.3s;
    }

    .slider-dots .dot.active {
        background-color: var(--dark-gray);
    }
    /* Стрелки слайдера */
    .slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    color: white;
    border: none;
    padding: 12px;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
    pointer-events: none;
    }
    .slider-arrow span {
        height: 40px;
        font-size: 28px;
        color: #fff;
        font-weight: bold;
    }

    .slider:hover .slider-arrow {
    opacity: 0.7;
    pointer-events: auto;
    }

    .slider-arrow:hover {
    background: var(--dark-gray);
    opacity: 1 !important;
    transform: translateY(-50%) scale(1.1);
    }

    .slider-arrow.prev {
    left: 20px;
    }

    .slider-arrow.next {
    right: 20px;
    }

    /* Скрываем стрелки на мобильных */
    @media (max-width: 767.98px) {
        .slider-arrow {
            display: none;
        }
        .slider {
            margin-bottom: 30px;
        }
    }
        @media (min-width: 767.98px) {
        .slider-dots-container {
            display: none;
        }
    }

    /* Плавное появление стрелок при наведении */
    .slider:hover .slider-arrow {
    opacity: 0.7;
    }

    /* Адаптация для мобильных */
    @media (hover: none) {
    .slider-arrow {
        opacity: 0.9;
        transition: opacity 0.3s;
    }
    }

    /* Добавляем эффекты для свайпов */
    .slide {
    transition: transform 0.4s ease, opacity 0.4s ease;
    will-change: transform, opacity;
    }

    .slide.swipe-left {
    transform: translateX(-100px);
    opacity: 0.9;
    }

    .slide.swipe-right {
    transform: translateX(100px);
    opacity: 0.9;
    }


    /* Основной контент */
    .main-content {
        padding:40px 0;
        background: var(--light-gray);
    }

    .content-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 50px;
        margin-bottom: 20px;
    }
    .contact-grid {
        display: grid;
        grid-template-columns: 2fr;
        gap: 50px;
        margin-bottom: 20px;
    }

    .content-block {
        background: var(--white);
        padding: 40px;
        border-radius: 12px;
        box-shadow: 0 8px 32px rgba(27, 34, 42, 0.08);
        border: 1px solid var(--border-color);
    }

    .cat-block {
        background: var(--white);
        padding: 40px 0;
        border-radius: 0px;
        box-shadow: none;
        border: 0;
    }

    .cat-block h1{
        font-size: 28px;
        margin-bottom: 30px;
    }

    .cat_img{
        max-width: 100%;height: auto;float: left;margin-right: 20px;margin-bottom: 20px;
    }

    .content-block h3 {
        color: var(--dark-gray);
        margin-bottom: 24px;
        font-size: 26px;
        font-weight: 700;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .content-block h3::after {
        content: '';
        display: block;
        width: 50px;
        height: 4px;
        background: var(--primary-orange);
        position: absolute;
        top: 30px;
    }

    .catalog-preview {
        display: flex;
        gap: 25px;
        align-items: flex-start;
        margin-bottom: 24px;
    }

    .catalog-img {
        width: 160px;
        height: auto;
        background: var(--light-gray);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--text-gray);
        flex-shrink: 0;
        font-size: 48px;
    }
    .catalog-img img{
        border-radius: 4px;
    }

    .catalog-info h4 {
        color: var(--dark-gray);
        margin-bottom: 12px;
        font-size: 20px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .catalog-info p {
        color: var(--text-gray);
        line-height: 1.6;
    }

    /* Раздел компании */
    .company-section {
        padding:40px 0;
        background: var(--white);
    }

    .company-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        align-items: center;
    }

    .company-img {
        width: 100%;
    }

    .company-text h3 {
        font-size: 28px;
        margin-bottom: 24px;
        color: var(--dark-gray);
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .company-text p {
        margin-bottom: 20px;
        color: var(--text-gray);
        line-height: 1.7;
    }

    .features-list {
        margin-top: 30px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .feature-item {
        display: flex;
        align-items: center;
        gap: 12px;
        color: var(--dark-gray);
        font-weight: 500;
    }

    .feature-item i {
        background: var(--primary-orange);
        color: var(--white);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
    }

    /* Портфолио */
    .portfolio-section {
        padding:40px 0;
        background: var(--light-gray);
    }

    .portfolio-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 35px;
        margin-top: 50px;
    }

    .portfolio-item {
        background: var(--white);
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 8px 32px rgba(27, 34, 42, 0.08);
        border: 1px solid var(--border-color);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .portfolio-item:hover {
        transform: translateY(-8px);
        box-shadow: 0 16px 48px rgba(27, 34, 42, 0.12);
    }

    .portfolio-img {
        width: 100%;
        height: 220px;
        background: var(--light-gray);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--text-gray);
        border-bottom: 1px solid var(--border-color);
        font-size: 48px;
    }

    .portfolio-content {
        padding: 30px;
    }

    .portfolio-content h4 {
        color: var(--dark-gray);
        margin-bottom: 16px;
        font-size: 20px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .portfolio-content p {
        color: var(--text-gray);
        line-height: 1.6;
    }

    /* Статьи */
    .articles-section {
        padding:40px 0;
        background: var(--white);
    }

    .articles-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 35px;
        margin-top: 50px;
    }

    .article-item {
        border-radius: 12px;
        overflow: hidden;
        transition: transform 0.3s ease;
        border: 1px solid var(--border-color);
    }

    .article-item:hover {
        transform: translateY(-5px);
    }

    .article-content {
        padding: 35px;
    }

    .article-content h4 {
        color: var(--dark-gray);
        margin-bottom: 16px;
        margin-top: 16px;
        font-size: 20px;
        line-height: 1.4;
        display: flex;
        align-items: flex-start;
        gap: 8px;
    }

    .article-content p {
        color: var(--text-gray);
        margin-bottom: 24px;
        line-height: 1.6;
    }

    /* Статистика */
    .stats-section {
        background: var(--primary-orange);
        padding: 30px 0;
        color: var(--white);
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
        text-align: center;
    }

    .stat-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .stat-number {
        font-size: 32px;
        font-weight: 700;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .stat-label {
        font-size: 14px;
        opacity: 0.9;
    }

    /* Каталог */
    .catalog-content {
        padding: 50px 0;
        background: var(--white);
    }

    .categories-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        margin-bottom: 60px;
    }

    .category-block {
        background: var(--light-gray);
        border-radius: 16px;
        padding: 30px;
        border: 1px solid var(--border-color);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .category-block:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 40px rgba(27, 34, 42, 0.1);
    }

    .category-header {
        display: flex;
        align-items: center;
        gap: 16px;
        margin-bottom: 20px;
        padding-bottom: 16px;
        border-bottom: 2px solid var(--border-color);
    }

    .category-icon {
        width: 60px;
        height: 60px;
        background: var(--primary-orange);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        font-size: 24px;
    }

    .category-info h3 {
        font-size: 24px;
        color: var(--dark-gray);
        margin-bottom: 8px;
    }

    .category-power {
        color: var(--text-gray);
        font-weight: bolder;
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .categories-grid .products-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .categories-grid .product-card {
        background: var(--white);
        border-radius: 12px;
        padding: 24px;
        border: 2px solid var(--border-color);
        transition: all 0.3s ease;
        cursor: pointer;
        display: block;
    }

    .categories-grid .product-card:hover {
        border-color: var(--primary-orange);
        box-shadow: 0 8px 24px rgba(252, 116, 16, 0.15);
        transform: translateY(-2px);
    }

    .categories-grid .product-header {
        align-items: center;
        justify-content: space-between;
        margin-bottom: 16px;
    }

    .categories-grid .product-name {
        font-size: 18px;
        font-weight: 600;
        color: var(--dark-gray);
    }

    .categories-grid .product-badge {
        background: var(--primary-orange);
        color: var(--white);
        padding: 4px 12px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 600;
    }

    .categories-grid .product-specs {
        display: flex;
        flex-direction: column;
        gap: 8px;
        margin-bottom: 16px;
    }

    .categories-grid .product-spec {
        display: flex;
        align-items: center;
        gap: 8px;
        color: var(--text-gray);
        font-size: 14px;
    }

    .categories-grid .product-actions {
        display: flex;
        gap: 12px;
    }

    /* Проекты */
    .portfolio-content {
        padding: 50px 20px;
        background: var(--white);
        justify-content: space-between;
        display: flex;
        flex-direction: column;
        height: 60%;
    }
    .projects-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

    .project-card {
        background: var(--white);
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 8px 32px rgba(27, 34, 42, 0.08);
        border: 1px solid var(--border-color);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .project-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 16px 48px rgba(27, 34, 42, 0.12);
    }

    .project-image {
        width: 100%;
        height: 250px;
        background: var(--light-gray);
        align-items: center;
        justify-content: center;
        color: var(--text-gray);
        font-size: 48px;
        position: relative;
        border-bottom: 1px solid var(--border-color);
    }

    .project-badge {
        position: absolute;
        top: 16px;
        right: 16px;
        background: var(--primary-orange);
        color: var(--white);
        padding: 6px 12px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 600;
    }

    .project-content {
        padding: 50px 20px;
        background: var(--white);
        justify-content: space-between;
        display: flex;
        flex-direction: column;
        height: 65%;
    }
    .project-content .btn-primary:hover {
        color: #fff;
    }

    .project-header {
        margin-bottom: 20px;
    }

    .project-title {
        font-size: 22px;
        font-weight: 700;
        color: var(--dark-gray);
        margin-bottom: 8px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .project-industry {
        color: var(--primary-orange);
        font-weight: 500;
        font-size: 18px;
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .project-specs {
        display: grid;
        grid-template-columns: 1fr;
        gap: 9px;
        margin-bottom: 20px;
    }

    .project-spec {
        display: flex;
        gap: 9px;
        color: var(--text-gray);
        font-size: 14px;
        line-height: 18px;
        padding: 5px 0px;
    }

    .project-spec strong {
        color: var(--dark-gray);
    }

    .project-description {
        color: var(--text-gray);
        line-height: 1.6;
        margin-bottom: 24px;
    }

    .project-actions {
        display: flex;
        gap: 12px;
    }

    .project-actions .btn {
        flex: 1;
        justify-content: center;
    }

    /* Контакты */
    .contact-info-section {
        padding: 50px 0;
        background: var(--white);
    }

    .contact-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        margin-bottom: 60px;
    }
    .contact-grid div{
        z-index: 1;
        position: relative;
    }

    .info-block {
        background: var(--light-gray);
        padding: 40px;
        border-radius: 16px;
        border: 1px solid var(--border-color);
    }

    .info-block h3 {
        color: var(--dark-gray);
        margin-bottom: 30px;
        font-size: 26px;
        font-weight: 700;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .info-block h3::after {
        content: '';
        display: block;
        width: 50px;
        height: 3px;
        background: var(--primary-orange);
        margin-top: 8px;
    }

    .contact-info-list {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .contact-info-item {
        display: flex;
        align-items: flex-start;
        gap: 16px;
        padding: 20px 0;
        background: var(--white);
        border-radius: 12px;
        border: 0px solid var(--border-color);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        background: var(--primary-orange);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        font-size: 20px;
        flex-shrink: 0;
    }

    .contact-details h4 {
        color: var(--dark-gray);
        margin-bottom: 8px;
        font-size: 18px;
    }

    .contact-details p {
        color: var(--text-gray);
        margin-bottom: 4px;
    }

    .contact-details a {
        color: var(--primary-orange);
        text-decoration: none;
        font-weight: 500;
    }

    .contact-details a:hover {
        text-decoration: underline;
    }

    .form-block {
        background: var(--white);
        padding: 40px;
        border-radius: 16px;
        border: 1px solid var(--border-color);
        box-shadow: 0 8px 32px rgba(27, 34, 42, 0.08);
    }

    /* Карта */
    .map-section {
        padding: 50px 0;
        background: var(--light-gray);
    }

    .map-container {
        background: var(--white);
        border-radius: 16px;
        overflow: hidden;
        border: 1px solid var(--border-color);
        box-shadow: 0 8px 32px rgba(27, 34, 42, 0.08);
    }

    .map-placeholder {
        width: 100%;
        height: 400px;
        background: var(--light-gray);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--text-gray);
        font-size: 24px;
        border-bottom: 1px solid var(--border-color);
    }

    .map-info {
        padding: 30px;
        background: var(--white);
    }

    .map-info h4 {
        color: var(--dark-gray);
        margin-bottom: 16px;
        font-size: 20px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .directions-list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
    }

    .direction-item {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        padding: 16px;
        background: var(--light-gray);
        border-radius: 8px;
    }

    .direction-icon {
        width: 40px;
        height: 40px;
        background: var(--primary-orange);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        font-size: 16px;
        flex-shrink: 0;
    }

    /* Офисы */
    .offices-section {
        padding: 50px 0;
        background: var(--white);
    }

    .offices-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 30px;
    }

    .office-card {
        background: var(--light-gray);
        padding: 30px;
        border-radius: 16px;
        border: 1px solid var(--border-color);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .office-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 40px rgba(27, 34, 42, 0.1);
    }

    .office-header {
        display: flex;
        align-items: center;
        gap: 16px;
        margin-bottom: 20px;
        padding-bottom: 16px;
        border-bottom: 2px solid var(--border-color);
    }

    .office-icon {
        width: 60px;
        height: 60px;
        background: var(--primary-orange);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        font-size: 24px;
    }

    .office-header h4 {
        color: var(--dark-gray);
        font-size: 22px;
    }

    .office-details {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .office-detail {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        color: var(--text-gray);
    }

    .office-detail i {
        color: var(--primary-orange);
        width: 20px;
        margin-top: 2px;
    }

    /* Социальные сети */
    .social-section {
        padding: 15px 0;
        background: var(--primary-orange);
        color: var(--white);
    }

    .social-content {
        text-align: center;
        display: flex;
        justify-content: center;
        gap: 20px;
        align-items: center;
    }
    @media screen and (max-width: 768px) {
            .breadcrumbs .container{
                display: block;
                justify-content: space-between;
            }
            .social-content {
                display: block;
            }
            .social-title {
                margin-bottom: 20px;
            }
            .project-content {
                height: auto;
            }
            .portfolio-content {
                height: auto;
            }
    }

    .social-title {
        font-size: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
    }

    .social-links {
        display: flex;
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
    }

    .social-link {
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        font-size: 14px;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .social-link:hover {
        background: var(--white);
        color: var(--primary-orange);
        transform: translateY(-3px);
    }

    /* Подвал сайта */
    .footer {
        background: var(--dark-gray);
        color: var(--white);
        padding: 60px 0 30px;
    }

    .footer-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 40px;
    }

    .footer-section h4 {
        color: var(--primary-orange);
        margin-bottom: 20px;
        font-size: 18px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .footer-section a {
        color: #ccc;
        text-decoration: none;
        margin-bottom: 12px;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: color 0.3s ease;
    }

    .footer-section a:hover {
        color: var(--primary-orange);
    }

    .footer-section p {
        color: #ccc;
        line-height: 1.6;
        display: flex;
        align-items: flex-start;
        gap: 8px;
    }

    .footer-bottom {
        text-align: center;
        margin-top: 40px;
        padding-top: 30px;
        border-top: 1px solid #333;
        color: #999;
    }

    /* Модальное окно */
    .modal {
        display: none;
        position: fixed;
        z-index: 2000;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.6);
    }

    .modal-content {
        background-color: var(--white);
        margin: 10% auto;
        padding: 40px;
        border-radius: 12px;

        max-width: 800px;
        box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    }

    .modal-content h3 {
        display: flex;
        align-items: center;
        gap: 12px;
        color: var(--dark-gray);
    }

    .close {
        color: #aaa;
        float: right;
        font-size: 28px;
        font-weight: bold;
        cursor: pointer;
        transition: color 0.3s ease;
    }

    .close:hover {
        color: var(--primary-orange);
    }

    .search-input {
        width: 100%;
        padding: 16px;
        border: 2px solid var(--border-color);
        border-radius: 8px;
        font-size: 16px;
        margin-top: 15px;
        transition: border-color 0.3s ease;
    }

    .search-input:focus {
        outline: none;
        border-color: var(--primary-orange);
    }



    /* Блок новости */
    .page {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0 auto;
    padding: 20px 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    }

    .page p {
    margin: 10px 0;
    padding: 0;
    }

    .page .redColor {
    color: #ff0000;
    font-weight: bold;
    }

    .page h1.bold {
    font-size: 24px;
    margin: 20px 0;
    font-weight: bold;
    line-height: 1.3;
    }

    .news_gallary {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 20px 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    }

    .news_gallary a {
    display: inline-block;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    }

    .news_gallary img {
    width: 280px;
    height: auto;
    border-radius: 5px;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    -moz-transition: transform 0.3s ease, -moz-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease, -moz-transform 0.3s ease;
    }

    .news_gallary img:hover {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
    }

    .button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    -webkit-transition: background-color 0.3s ease;
    -moz-transition: background-color 0.3s ease;
    -o-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
    }

    .button:hover {
    background-color: #0056b3;
    }

    .clearfix {
    clear: both;
    }

    /* Модальное окно (лайтбокс) */
    .modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    background-color: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.9)), to(rgba(0, 0, 0, 0.9)));
    background-color: -webkit-linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9));
    background-color: -moz-linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9));
    background-color: -o-linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9));
    background-color: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9));
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    overflow: auto;
    }

    .modal-content img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 80vh;
    display: block;
    }

    .close {
    position: fixed;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    }

    .close:hover,
    .close:focus {
    color: #ccc;
    }

    /* Мобильная адаптация */
    @media screen and (max-width: 768px) {
    img{
        max-width: 100% !important;
        height: auto !important;
    }
    .categories-grid .products-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page {
        padding: 15px;
    }
    .slider {
        height: auto;
    }
    .page h1.bold {
        font-size: 20px;
        margin: 15px 0;
    }
    .cat_img{
        max-width: 100%;height: auto;float: none;margin:0px 0px 10px 0px;
    }
    .breadcrumb-list {
        display: flex;
        align-items: center;
        gap: 6px;
        list-style: none;
        font-size: 12px;
        padding-bottom: 10px;
        justify-content: center;
    }
    .news_gallary {
        gap: 8px;
        margin: 15px 0;
    }
    
    .news_gallary img {
        width: 120px;
    }
    
    .button {
        padding: 12px 20px;
        font-size: 16px;
        width: 100%;
        text-align: center;
    }
    
    .modal-content img {
        max-height: 70vh;
        margin: 10px auto;
    }
    
    .close {
        top: 10px;
        right: 15px;
        font-size: 35px;
    }
    }

    @media screen and (max-width: 480px) {
    .page {
        padding: 10px;
    }
    
    .page h1.bold {
        font-size: 18px;
    }
    
    .news_gallary {
        gap: 6px;
        margin: 10px 0;
    }
    
    .news_gallary img {
        width: 100px;
    }
    
    .modal-content img {
        max-height: 60vh;
    }
    
    .close {
        font-size: 30px;
        top: 5px;
        right: 10px;
    }
    }

    @media screen and (max-width: 320px) {
        .news_gallary img {
            width: 80px;
        }
        
        .modal-content img {
            max-height: 50vh;
        }
    }







    /* Адаптивный дизайн */
    @media (max-width: 768px) {
        .content-block h3::after {
            top: 15px;
        }
        .phone-icon {
            display: block;
        }

        .mobile-menu-toggle {
            display: block;
        }

        .mobile-nav-overlay.active {
            display: block;
        }

        .mobile-nav-menu {
            display: block;
            overflow: auto;
            height: 100%;
        }

        .header-top {
            padding: 15px 0;
        }

        .contacts {
            display: none;
        }

        .nav-section {
            display: none;
        }

        .slide-content h2 {
            font-size: 28px;
        }

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

        .content-grid {
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .company-content {
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .catalog-preview {
            flex-direction: column;
        }

        .catalog-img {
            align-self: center;
        }

        .features-list {
            grid-template-columns: 1fr;
        }

        .form-row {
            grid-template-columns: 1fr;
        }

        .content-block {
            padding: 30px 25px;
        }

        .modal-content {
            width: 95%;
            margin: 20% auto;
            padding: 30px 25px;
        }

        .section-title {
            font-size: 28px;
        }

        .main-content,
        .company-section,
        .portfolio-section,
        .articles-section,
        .contact-info-section,
        .map-section,
        .offices-section,
        .catalog-content,
        .portfolio-content {
            padding: 50px 5px;
        }
        .content-block h3 {
            font-size: 22px;
            line-height: 26px;
            margin-top: 10px;
        }
        .company-text h3 {
            font-size: 18px;
        }

        .categories-grid {
            grid-template-columns: 1fr;
            gap: 30px;
        }

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

        .filters-container {
            flex-direction: column;
            align-items: stretch;
            gap: 15px;
        }

        .filter-group {
            flex-direction: column;
            align-items: stretch;
            gap: 8px;
        }

        .filter-group select,
        .filter-group input {
            min-width: auto;
            width: 100%;
        }

        .filter-clear {
            margin-left: 0;
            order: -1;
        }

        .page-title {
            font-size: 28px;
        }

        .stats-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        .projects-grid {
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .project-specs {
            grid-template-columns: 1fr;
        }

        .project-actions {
            flex-direction: column;
        }

        .contact-grid {
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .info-block,
        .form-block {
            padding: 30px 25px;
        }

        .directions-list {
            grid-template-columns: 1fr;
        }

        .social-links {
            gap: 15px;
        }

        .social-link {
            width: 50px;
            height: 50px;
            font-size: 20px;
        }
    }

    @media (max-width: 480px) {
        .container {
            padding: 0 15px;
        }

        .content-block,
        .info-block,
        .form-block {
            padding: 25px 20px;
        }

        .btn {
            padding: 10px 18px;
            font-size: 14px;
        }
        .logo {
            font-size: 24px;
        }

        .slide-content h2 {
            font-size: 21px;
        }

        .portfolio-grid,
        .articles-grid {
            grid-template-columns: 1fr;
        }

        .category-block {
            padding: 20px;
        }

        .product-card {
            padding: 20px;
        }

        .page-title {
            font-size: 24px;
        }

        .category-info h3 {
            font-size: 20px;
        }

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

        .project-card {
            border-radius: 12px;
        }

        .project-content {
            padding: 20px;
        }

        .project-title {
            font-size: 20px;
        }

        .stats-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .stat-number {
            font-size: 24px;
        }

        .office-card {
            padding: 20px;
        }

        .map-placeholder {
            height: 300px;
            font-size: 18px;
        }
    }


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

        .catalog-header {
            text-align: center;
            margin-bottom: 30px;
            padding: 20px 0;
        }

        .catalog-title {
            font-size: 2.5rem;
            color: #2c3e50;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .catalog-subtitle {
            font-size: 1.2rem;
            color: #7f8c8d;
            font-weight: 400;
        }

        .accordion-container {
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            overflow: hidden;
        }

        .accordion-item {
            border-bottom: 1px solid #e9ecef;
        }

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

        .accordion-header {
            background: linear-gradient(135deg, #1b222a 0%, #1b222a 100%);
            transition: all 0.3s ease;
        }

        .accordion-header:hover {
            background: linear-gradient(135deg, #1b222a 0%, #293038ff 100%);
            transform: translateY(-2px);
        }

        .accordion-button {
            width: 100%;
            padding: 20px 25px;
            text-align: left;
            background: transparent;
            border: none;
            color: white;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
            gap: 15px;
        }

        .accordion-button:hover {
            color: #f8f9fa;
        }

        .accordion-button::after {
            content: '▼';
            font-size: 0.8rem;
            transition: transform 0.3s ease;
        }

        .accordion-button.collapsed::after {
            transform: rotate(-90deg);
        }

        .accordion-collapse {
            display: none;
        }

        .accordion-collapse.show {
            display: block;
        }

        .accordion-body {
            padding: 25px;
            background: #ffffff;
        }

        .products-grid {
            display: grid;
            gap: 20px;
            grid-template-columns:1fr;
        }

        .product-card {
            background: #f8f9fa;
            border-radius: 10px;
            padding: 10px 20px;
            border: 1px solid #e9ecef;
            transition: all 0.3s ease;
            display: grid;
            grid-template-columns: 2fr 1fr 3fr;
            gap: 20px;
            align-items: center;
        }

        .product-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.12);
            border-color: #dee2e6;
        }

        .product-name {
            font-weight: 600;
            font-size: 1.1rem;
        }
        .product-name img{
            margin:0 10px;
            border:1px solid #fff;
            border-radius:5px;
        }

        .product-name a {
            color: var(--dark-gray);
            text-decoration: none;
            transition: color 0.3s ease;
            font-size:16px;
        }

        .product-name a:hover {
            color: var(--primary-orange);
        }

        .product-power-text {
            color: #6c757d;
            font-size: 0.95rem;
        }

        .power-bar-container {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .power-range-labels {
            display: flex;
            justify-content: space-between;
            font-size: 0.85rem;
            color: #6c757d;
        }

        .power-bar-wrapper {
            height: 12px;
            background-color: #e9ecef;
            border-radius: 6px;
            overflow: hidden;
            position: relative;
        }

        .power-bar-fill {
            height: 100%;
            background: linear-gradient(90deg, #e51935 0%, #bd2f2f 100%);
            border-radius: 6px;
            transition: width 0.5s ease;
        }

        .model-count {
            background: rgba(255,255,255,0.2);
            padding: 2px 12px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 500;
        }

        .product_block h1{
            font-size: 30px;
            margin: 30px 0;
        }
        .product_block h1 a{
            color: var(--primary-orange)
        }
        .product{  
            display: grid;
            grid-template-columns: 40% 50%;
            gap: 10%;
        }
        .info{
            margin: 40px 0px;
        }
        .show_info_img{
            margin: 30px 0;
            cursor: pointer;
        }
        .show_info_gallary{
            display: flex;
            gap: 10px;
        }
        .show_info_gallary img{
            cursor: pointer;
        }
        .gt_img{
            width: 150px;
        }
        .spec-item {
            border: 1px solid #1b222a;
            margin: 10px 0px;
            border-radius: 2px;
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
            gap: 30px;
        }
        span.spec-label {
            color: #666;
        }
        span.spec-value {
            text-align: right;
        }

        @media (max-width: 768px) {
            .product{  
                display: block;
            }
            .model-count {
                display:none;
            }
            .catalog-container {
                padding: 15px;
            }
            
            .catalog-title {
                font-size: 2rem;
            }
            
            .product-card {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            
            .accordion-button {
                padding: 15px 20px;
                font-size: 1rem;
            }
            
            .accordion-body {
                padding: 20px;
            }
        }

        @media (max-width: 480px) {
            .catalog-title {
                font-size: 1.8rem;
            }
            
            .catalog-subtitle {
                font-size: 1rem;
            }
            
            .product-card {
                padding: 15px;
            }
        }


    /* Базовые стили для плавающей кнопки */
    .floating-btn {
        position: fixed;
        right: 20px;
        bottom: 20px;
        z-index: 1000;
        transition: all 0.3s ease;
        white-space: nowrap;
        display: flex;
        align-items: center;
        gap: 8px;
        color: #000;
        background: var(--primary-orange);
    }
    @media (max-width: 768px) {
        .floating-btn {
            padding: 8px 12px;
            font-size: 14px;
        }
        
        .floating-btn .btn-text {
            font-size: 12px;
        }
        
        .floating-btn i {
            margin-right: 0;
        }
    }
    @media (min-width: 769px) {
        .floating-btn .btn-text {
            display: inline;
        }
    }
    .floating-btn:hover {
        transform: translateX(-5px);
        color: #fff;
    }
    .floating-btn.hidden {
        transform: translateX(100%);
        opacity: 0;
    }

    .hh{
        background: var(--light-gray);
        padding: 10px 0;
    }
    .hh .section-title {
        text-align: left;
        font-size: 36px;
        margin-bottom: 20px;
        color: var(--dark-gray);
        font-weight: 700;
        display: block;
        margin: 0;
    }
    .map{
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0%;
        top: 0;
        padding-left: 50%;
    }
    @media (max-width: 768px) {
        .hh .section-title {
            font-size: 28px;
            text-align: left;
            padding: 0 10px;
        }
        .map{
            position: relative;
            width: 100%;
            height: 400px;
            left: 0;
            top: 0;
            margin-bottom: 20px;
            padding-left: 0;
        }
        .contact-grid {
            margin-bottom: 0px;
        }
    }
