/*
Theme Name: Motors
Theme URI: 
Author: Ты
Author URI: 
Description: Тема для сайта с новостями и WooCommerce
Version: 1.0.0
License: 
License URI: 
Text Domain: motors
*/

/* Сброс стилей */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #3A3A38;
    background: #FFFFFF;
}

/* Контейнер */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Header стили */
.header {
    background: #FFFFFF;
    box-shadow: 0px 7px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    width: 100%;
}

.header-top {
    background: #F5F5F5;
    padding: 10px 0;
    display: block;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.header-address {
    display: flex;
    align-items: center;
    gap: 5px;
}

.header-address img {
    width: 18px;
    height: 18px;
}

.header-address span {
    font-weight: 500;
    font-size: 15px;
    line-height: 18px;
    color: #3A3A38;
}

.header-phones {
    display: flex;
    gap: 30px;
}

.phone-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.phone-number {
    display: flex;
    align-items: center;
    gap: 5px;
}

.phone-number img {
    width: 18px;
    height: 18px;
}

.phone-number a {
    font-weight: 500;
    font-size: 15px;
    line-height: 18px;
    color: #3A3A38;
    text-decoration: none;
}

.phone-number a:hover {
    color: #009FE0;
}

.phone-socials {
    display: flex;
    align-items: center;
    gap: 10px;
}

.phone-socials a img {
    width: 16px;
    height: 16px;
    display: block;
}

.header-bottom {
    padding: 20px 0;
}

.header-bottom .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    max-width: 180px;
    height: auto;
}

.main-menu {
    display: flex;
    align-items: center;
}

.menu {
    display: flex;
    list-style: none;
    gap: 33px;
    margin: 0;
    padding: 0;
}

.menu li {
    position: relative;
}

.menu a {
    font-weight: 500;
    font-size: 17px;
    line-height: 21px;
    color: #3A3A38;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

.menu a:hover {
    color: #009FE0;
}

.menu .has-children > a::after {
    content: '';
    width: 11px;
    height: 11px;
    background: url('data:image/svg+xml;utf8,<svg width="11" height="11" viewBox="0 0 11 11" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M2.5 4L5.5 7L8.5 4" stroke="%233A3A38" stroke-width="1.5" stroke-linecap="round"/></svg>') no-repeat center;
    transform: rotate(0deg);
    transition: transform 0.3s;
}

.menu .has-children:hover > a::after {
    transform: rotate(180deg);
}

.menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #FFFFFF;
    box-shadow: 0px 7px 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 10px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
    z-index: 100;
    list-style: none;
}

.menu .has-children:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.menu .sub-menu a {
    padding: 8px 20px;
    font-size: 15px;
}

.menu .sub-menu a:hover {
    background: #F5F5F5;
}

.header-call-btn {
    background: #009FE0;
    border-radius: 10px;
    padding: 10px 16px;
    font-weight: 700;
    font-size: 15px;
    line-height: 18px;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
    text-decoration: none;
    transition: background 0.3s;
}

.header-call-btn:hover {
    background: #0077b3;
}

/* Мобильное меню */
.mobile-menu-toggle {
    display: none;
    width: 30px;
    height: 30px;
    background: #009FE0;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
}

.mobile-menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: #FFFFFF;
    margin: 4px auto;
    transition: all 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 61px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #FFFFFF;
    padding: 20px;
    overflow-y: auto;
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.3s;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu .menu {
    flex-direction: column;
    gap: 15px;
}

.mobile-menu .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    /*padding-left: 20px;*/
    display: none;
}

.mobile-menu .has-children.open > .sub-menu {
    display: block;
}

/* Адаптивность */
@media (max-width: 1024px) {
    .header-phones {
        gap: 15px;
    }
    
    .menu {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .header-top .container {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .header-phones {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    
    .main-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .header-bottom .container {
        position: relative;
    }
    
    .header-call-btn {
        margin-right: 40px;
    }
}

@media (max-width: 480px) {
    .logo img {
        max-width: 120px;
    }
    
    .header-call-btn {
        font-size: 13px;
        padding: 8px 12px;
    }
}


@media (max-width: 768px) {
    .header-top {display: none;}
}












/* Контактный блок в мобильном меню */
.mobile-menu-contacts {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: 24px;
    width: 100%;
    margin-top: 32px;
}

/* Адрес */
.mobile-menu-address {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 5px;
    width: 100%;
}

.mobile-menu-address img {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.mobile-menu-address span {
    font-weight: 500;
    font-size: 15px;
    line-height: 130%;
    color: #3A3A38;
    max-width: calc(100% - 23px);
}

/* Телефонный блок */
.mobile-menu-phone {
    display: flex;
    /*flex-direction: column;*/
    align-items: flex-start;
    padding: 0;
    gap: 10px;
    width: 100%;
}

.mobile-menu-phone .phone-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.mobile-menu-phone .phone-row img {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.mobile-menu-phone .phone-row a {
    font-weight: 500;
    font-size: 15px;
    line-height: 18px;
    color: #3A3A38;
    text-decoration: none;
}

.mobile-menu-phone .phone-row a:hover {
    color: #009FE0;
}

/* Социальные иконки */
.mobile-menu-phone .phone-socials {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0;
    gap: 5px;
    margin-left: 6px;
}

.mobile-menu-phone .phone-socials a img {
    width: 16px;
    height: 16px;
    display: block;
}

/* Кнопка Заказать звонок */
.mobile-menu-call-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px 16px;
    gap: 10px;
    width: 188px;
    height: 38px;
    background: #009FE0;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    line-height: 18px;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
    text-decoration: none;
    margin-top: 8px;
}

.mobile-menu-call-btn:hover {
    background: #0077b3;
}

/* Для очень маленьких экранов */
@media (max-width: 360px) {
    .mobile-menu-call-btn {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .header-call-btn {
        display: none;
    }
}









/* Стили для кнопки раскрытия подменю в мобильном меню */
.mobile-menu .has-children {
    position: relative;
}

.mobile-menu .has-children > a {
    display: inline-block;
    padding-right: 40px;
}

.submenu-toggle {
    position: absolute;
    right: 0;
    top: 0;
    width: 40px;
    height: 10px; /* Было 10px, исправил на 40px */
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.submenu-toggle span {
    display: block;
    width: 11px;
    height: 11px;
    border-right: 2px solid #3A3A38;
    border-bottom: 2px solid #3A3A38;
    transform: rotate(45deg);
    transition: transform 0.3s;
}

/* Поворот стрелки для открытого подменю - для всех уровней */
.mobile-menu .has-children.open > .submenu-toggle span {
    transform: rotate(-135deg) !important;
}

/* Для вложенных меню */
.mobile-menu .sub-menu .has-children.open > .submenu-toggle span {
    transform: rotate(-135deg) !important;
}

/* Корректировка отступов для подменю */
.mobile-menu .sub-menu {
    padding-left: 8px;
}








.footer {
    background: #3A3A38;
    color: #FFFFFF;
    padding: 40px 0 30px;
    margin-top: 60px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-logo img {
    max-width: 250px;
    height: auto;
    display: block;
}

.footer-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 33px;
    flex-wrap: wrap;
}

.footer-menu a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    font-size: 17px;
    transition: opacity 0.3s;
}

.footer-menu a:hover {
    opacity: 0.8;
}

/* Ряды с контентом */
.footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 10px;
}

.footer-row:last-child {
    margin-bottom: 0;
}

.footer-company {
    font-size: 13px;
    color: #FFFFFF;
}

.footer-policies {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-policies a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.footer-policies a:hover {
    color: #FFFFFF;
}

.footer-empty {
    /* Пустой div для flex-выравнивания */
}

.footer-copyright {
    font-size: 13px;
    color: rgba(255,255,255,0.8);
}

/* Адаптив */
@media (max-width: 768px) {
    .footer {
        padding: 30px 0 20px;
    }
    
    .footer-top {
        flex-direction: column;
        text-align: center;
        margin-bottom: 30px;
    }
    
    .footer-menu {
        justify-content: center;
        gap: 20px;
    }
    
    .footer-menu a {
        font-size: 16px;
    }
    
    .footer-row {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        margin-bottom: 15px;
    }
    
    .footer-policies {
        justify-content: center;
        flex-direction: column;
        gap: 8px;
    }
    
    .footer-copyright {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-menu {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-logo img {
        max-width: 200px;
    }
}








/* Breadcrumbs */
.breadcrumbs {
    margin: 20px 0;
    padding: 0;
}

.breadcrumbs-list {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0;
    gap: 5px;
    flex-wrap: wrap;
}

.breadcrumb-item,
.breadcrumb-item a {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: #BDBDBD;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: #009FE0;
}

.breadcrumb-item.current {
    color: #3A3A38;
}

.breadcrumb-separator {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: #BDBDBD;
}

/* WooCommerce breadcrumbs */
.woocommerce-breadcrumbs {
    margin: 20px 0;
}

.woocommerce-breadcrumbs .breadcrumbs-list {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0;
    gap: 5px;
    flex-wrap: wrap;
}

.woocommerce-breadcrumbs a {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: #BDBDBD;
    text-decoration: none;
}

.woocommerce-breadcrumbs a:hover {
    color: #009FE0;
}

.woocommerce-breadcrumbs .breadcrumb-separator {
    margin: 0 2px;
}

/* Адаптив */
@media (max-width: 768px) {
    .breadcrumbs {
        margin: 15px 0;
    }
    
    .breadcrumbs-list {
        gap: 3px;
    }
    
    .breadcrumb-item,
    .breadcrumb-item a,
    .breadcrumb-separator {
        font-size: 11px;
    }
}
.breadcrumb-item a {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: #BDBDBD;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: #009FE0;
}





.header {
  position: sticky;
  top: 0;
  z-index: 1000;

}













/* Архив новостей */
.archive-title {
    font-family: 'Unbounded', sans-serif;
    font-weight: 600;
    font-size: 60px;
    line-height: 74px;
    text-align: center;
    color: #3A3A38;
    margin-bottom: 50px;
}

.posts-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 60px;
}

.post-card {
    width: calc(25% - 22.5px);
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 16px;
    transition: transform 0.3s;
}
@media (max-width: 768px) {
    .post-card { width:100% }
}

.post-card:hover {
    transform: translateY(-5px);
}

.post-card-image {
    width: 100%;
    height: 240px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
}

.post-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-card-image--placeholder {
    background: #f5f5f5;
}

.post-card-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.post-card-date {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    color: rgba(58, 58, 56, 0.4);
}

.post-card-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 130%;
    color: #3A3A38;
    margin: 0;
}

.post-card-title a {
    color: #3A3A38;
    text-decoration: none;
}

.post-card-title a:hover {
    color: #009FE0;
}

.post-card-excerpt {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    color: #3A3A38;
    margin-bottom: 5px;
}

.post-card-link {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    text-decoration-line: underline;
    color: #009FE0;
    width: fit-content;
}

/* Пагинация */
.pagination {
    display: flex;
    justify-content: center;
    margin: 0 0 40px 0;
}

.pagination .page-numbers {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    margin: 0 2px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #3A3A38;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s;
}

.pagination .page-numbers.current {
    background: #009FE0;
    color: #FFFFFF;
    font-weight: 800;
}

.pagination .page-numbers:not(.current):hover {
    background: #f5f5f5;
}

.pagination .prev,
.pagination .next {
    font-size: 16px;
}

/* Отдельная запись */
.single-post {
    max-width: 100%; /* Убрал ограничение 900px */
    width: 100%;
}

.single-post-title {
    font-family: 'Unbounded', sans-serif;
    font-weight: 600;
    font-size: 40px;
    line-height: 1.2;
    color: #3A3A38;
    margin-bottom: 20px;
    /*max-width: 900px;*/ /* Ограничил только заголовок */
}

.single-post-meta {
    margin-bottom: 30px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(58, 58, 56, 0.4);
    /*max-width: 900px;*/
}

.single-post-categories a {
    color: #009FE0;
    text-decoration: none;
    margin-left: 10px;
}

.single-post-categories a:hover {
    text-decoration: underline;
}

.single-post-image {
    margin-bottom: 40px;
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
}

.single-post-image img {
    width: 100%;
    height: auto;
}

.single-post-content {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #3A3A38;
    /*max-width: 900px;*/ /* Текст тоже ограничил для читаемости */
    margin: 0 auto 0 0; /* Выравнивание влево */
}

.single-post-content p {
    margin-bottom: 20px;
}

.single-post-content h2,
.single-post-content h3 {
    margin: 40px 0 20px;
}

.single-post-tags {
    margin: 40px 0;
    padding: 20px 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    /*max-width: 900px;*/
}

.single-post-tags a {
    color: #009FE0;
    text-decoration: none;
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    margin: 50px 0;
    padding-top: 30px;
    border-top: 1px solid #f0f0f0;
    /*max-width: 900px;*/
}

.post-navigation a {
    color: #009FE0;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
}

.post-navigation a:hover {
    text-decoration: underline;
}

/* Адаптив */
@media (max-width: 768px) {
    .single-post-title {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .single-post-title {
        font-size: 24px;
    }
}






.pagination .nav-links {
  display: flex !important;
  flex-wrap: wrap; /* если много страниц */
  justify-content: center;
}



@media (max-width: 768px) {
    .contacts-map {
        width: 100%;
    }
}







.site-video {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}


.title-c h2 {
    font-family: 'Unbounded', sans-serif;
font-weight: 600;
font-size: 50px;
}


@media (max-width: 768px) {
.title-c h2 {
 font-size: 28px;
}
}









.page-title {text-align: center;
margin-bottom: 40px;}
@media (min-width: 768px) {
   .page-title {
    font-size: 60px;
    font-weight: 600;
   } 
}



.text-align-center {
text-align: center;
}

.wpb_text_column ul {
    padding-left: 20px;
    margin: 0;
}

.wpb_text_column ul li {
    font-family: Inter, sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.2;
    margin-bottom: 10px;
}

/* адаптив */
@media (max-width: 768px) {
    .wpb_text_column ul li {
        font-size: 16px;
        line-height: 1.5;
    }
    .wpb_text_column p {font-size: 16px;}
}
.wpb_text_column p {   
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.3;
}

.title-s h2 {
    font-family: 'Unbounded', sans-serif;
    font-weight: 600;
    font-size: 40px;
    line-height: 1.2;
}
@media (max-width: 768px) {
    .title-s h2 {
    font-size: 28px;
}
}

.wpb_text_column p {
    padding: 7px 0px;
}






.custom-style-text h2 {

color: #009FE0;
}




































































  /* 141-префикс — полная изоляция от тем WP, улучшенный профессиональный стиль */
    .141-document-wrapper {
        max-width: 1200px;
        margin: 0 auto;
        background: #f1f4f9;
        padding: 40px 24px;
        font-family: 'Georgia', 'Times New Roman', 'Times', serif;
        line-height: 1.5;
        color: #1a2c3e;
    }
    .141-contract-paper {
        background: #ffffff;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
        padding: 48px 56px;
        border-radius: 4px;
        transition: all 0.2s;
    }
    @media (max-width: 700px) {
        .141-contract-paper { padding: 28px 22px; }
    }
    /* утверждение */
    .141-approval-block {
        text-align: right;
        margin-bottom: 32px;
        font-size: 15px;
        border-bottom: 2px solid #dce3ec;
        padding-bottom: 18px;
        font-weight: 500;
    }
    .141-approval-text {
        font-weight: 700;
        margin-bottom: 8px;
        font-size: 16px;
        letter-spacing: 0.3px;
    }
    .141-signature {
        margin-top: 10px;
        font-family: 'Courier New', monospace;
        letter-spacing: 0.8px;
        border-top: 1px dashed #b9c3d0;
        display: inline-block;
        padding-top: 6px;
    }
    /* заголовок */
    .141-contract-title {
        font-size: 24px;
        font-weight: 700;
        text-align: center;
        text-transform: uppercase;
        margin: 10px 0 28px 0;
        color: #0f3b5c;
        letter-spacing: 1.2px;
        border-bottom: 1px solid #e2e8f0;
        padding-bottom: 18px;
    }
    /* секции */
    .141-section-title {
        font-size: 18px;
        font-weight: 700;
        margin: 28px 0 14px 0;
        color: #1f4e6e;
        border-left: 4px solid #b8860b;
        padding-left: 16px;
        background: linear-gradient(to right, #fafcfd, transparent);
    }
    .141-paragraph {
        margin: 0 0 10px 0;
        text-align: justify;
        font-size: 15px;
    }
    .141-clause {
        font-weight: 700;
        margin-right: 8px;
        color: #2c5a7a;
    }
    /* списки — ровные отступы, аккуратные маркеры */
    .141-list {
        margin: 8px 0 16px 0;
        padding-left: 0;
        list-style: none;
    }
    .141-list li {
        margin-bottom: 8px;
        position: relative;
        padding-left: 28px;
        line-height: 1.45;
        text-align: justify;
    }
    .141-list li:before {
        content: "●";
        position: absolute;
        left: 8px;
        color: #b8860b;
        font-size: 14px;
        top: 0;
    }
    /* вложенные или дополнительные списки (ровные отступы) */
    .141-list ul, .141-list ol {
        margin-top: 6px;
        margin-bottom: 4px;
    }
    /* реквизиты */
    .141-rekvizity {
        margin: 36px 0 28px;
        padding: 20px 24px;
        background: #f8fafd;
        border-left: 5px solid #b8860b;
        border-radius: 12px;
        font-size: 14px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.02);
    }
    .141-rekv-title {
        font-weight: 800;
        margin-bottom: 10px;
        font-size: 17px;
        letter-spacing: 0.3px;
        color: #1f4e6e;
    }
    /* приложение */
    .141-appendix {
        margin-top: 45px;
        background: #fefaf0;
        padding: 26px 28px;
        border: 1px solid #e4dccd;
        border-radius: 16px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.02);
    }
    .141-appendix-title {
        font-weight: 800;
        font-size: 18px;
        text-align: center;
        margin-bottom: 12px;
        text-transform: uppercase;
        letter-spacing: 0.8px;
        color: #2c3e2b;
    }
    .141-appendix-sub {
        font-weight: 600;
        text-align: center;
        margin-bottom: 20px;
        font-size: 16px;
        border-bottom: 1px dashed #cfc9b6;
        display: inline-block;
        width: auto;
        padding: 0 20px 8px;
    }
    .141-app-table {
        width: 100%;
        border-collapse: collapse;
        margin: 22px 0;
        background: white;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    }
    .141-app-table td {
        border: 1px solid #d6d0bd;
        padding: 12px 14px;
        vertical-align: top;
        font-size: 14px;
    }
    .141-label {
        font-weight: 700;
        background: #f5f2e6;
        width: 150px;
        color: #2e4a33;
    }
    .141-field {
        min-width: 170px;
        background: #fffef8;
    }
    .141-sign-row {
        display: flex;
        justify-content: space-between;
        margin-top: 32px;
        font-size: 14px;
        font-weight: 500;
        padding-top: 18px;
        border-top: 2px dotted #d4cdb2;
    }
    a {
        color: #2c5a7a;
        text-decoration: underline;
        transition: 0.1s;
    }
    a:hover {
        text-decoration: none;
        color: #b8860b;
    }
    /* для печати */
    @media print {
        .141-document-wrapper { background: white; padding: 0; margin: 0; }
        .141-contract-paper { box-shadow: none; padding: 0.6cm; }
        .141-sign-row, .141-appendix { break-inside: avoid; }
        .141-list li:before { color: black; }
    }
    /* небольшая корректировка для очень ровных списков */
    .141-list li:last-child {
        margin-bottom: 0;
    }
    /* дополнительная гармония */
    .141-intro {
        font-size: 15px;
        margin-bottom: 20px;
        background: #fefef7;
        padding: 12px 18px;
        border-radius: 14px;
        border-left: 3px solid #b8860b;
    }
