/* ============================================
   DAMASKA - DEFAULT STYLES
   Базовые стили для всего проекта
   ============================================ */

/* ============================================
   RESET & BASE STYLES
   ============================================ */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-normal);
    color: var(--color-text-primary);
    /*background-color: var(--color-bg-primary);*/
    background-color:white;
    overflow-x: hidden;
}



/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-weight: var(--font-weight-semibold);
    line-height: var(--line-height-tight);
    margin-bottom: var(--spacing-4);
    color: var(--color-text-dark);
}

h1 {
    font-size: var(--font-size-8xl);
    font-weight: var(--font-weight-bold);
}

h2 {
    font-size: var(--font-size-5xl);
}

h3 {
    font-size: var(--font-size-4xl);
}

h4 {
    font-size: var(--font-size-3xl);
}

h5 {
    font-size: var(--font-size-2xl);
}

h6 {
    font-size: var(--font-size-xl);
}

p {
    margin-bottom: var(--spacing-4);
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: all var(--transition-fast) var(--transition-timing);
}

a:hover {
    color: var(--color-primary-light);
    text-decoration: none;
}

ul, ol {
    margin-bottom: var(--spacing-4);
    padding-left: var(--spacing-6);
}



/* ============================================
   CONTAINER & GRID
   ============================================ */

.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.container-fluid {
    width: 100%;
    padding: 0 var(--container-padding);
}

.container-wide {
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 calc(var(--container-padding) * -1);
}

[class*="col-"] {
    padding: 0 var(--container-padding);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-2);
    padding: var(--button-padding-y) var(--button-padding-x);
    font-family: var(--font-primary);
    font-size: var(--button-font-size);
    font-weight: var(--button-font-weight);
    line-height: 145%;
    text-align: center;
    text-decoration: none;
    border-radius: var(--button-border-radius);
    cursor: pointer;
    transition: all var(--transition-base) var(--transition-timing);
    border: none;
    background: none;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--color-secondary);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-secondary-dark);
    color: var(--color-white);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: var(--shadow-button-hover);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: var(--blur-md);
    color: var(--color-white);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    text-decoration: none;
}

.btn-outline {
    background-color: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-outline:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    text-decoration: none;
}

.btn-sm {
    padding: var(--button-padding-y-sm) var(--button-padding-x-sm);
    font-size: var(--font-size-sm);
}

.btn-lg {
    padding: calc(var(--button-padding-y) + 4px) calc(var(--button-padding-x) + 10px);
    font-size: var(--font-size-lg);
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}


/* ============================================
   HEADER
   ============================================ */



.header-container {
    max-width: 1800px;
    margin: 0 auto;
    background: var(--header-bg);
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    border-radius: var(--radius-header);
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: var(--header-shadow);

    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.05) 100%)!important;


}

/* Логотип */
.header-logo {
    flex-shrink: 0;
}

.header-logo a {
    display: block;
}

.header-logo svg {
    width: 170px;
    height: 40px;
}

/* Кнопка каталога */
.header-catalog {
    flex-shrink: 0;
}

.catalog-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 40px 16px 30px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: var(--blur-sm);
    border-radius: var(--radius-lg);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base) var(--transition-timing);
}

.catalog-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.catalog-icon {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 24px;
}

.catalog-icon span {
    width: 24px;
    height: 2px;
    background: var(--color-white);
    border-radius: 100px;
}

.catalog-icon span:nth-child(2) {
    width: 18px;
}

.catalog-text {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-medium);
    font-size: var(--font-size-md);
    line-height: 145%;
    color: var(--color-white);
}


/* ============================================
      HEADER SECTION
      ============================================ */
.header {
    position: fixed;
    top: 10px;
    left: 60px;
    width: calc(100% - 120px);
    z-index: 1000;
    padding: 0 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(33px);
    -webkit-backdrop-filter: blur(33px);
    border-radius: 20px;
}


.header__container {
    width: 100%;
    margin: 0 auto;
    min-height: 96px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 15px 30px;
    /*flex-wrap: wrap;*/
}

/*.header__container::before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    right: 0;*/
/*    bottom: 0;*/
/*    background: rgba(255, 255, 255, 0.1);*/
/*    backdrop-filter: blur(50px);*/
/*    -webkit-backdrop-filter: blur(50px);*/
/*    border-radius: 20px;*/
/*    z-index: -1;*/
/*    will-change: backdrop-filter;*/
/*    transform: translateZ(0);*/
/*}*/

/*.header-color .header__container::before {*/
/*    background: #908171;*/
/*}*/

/* ============================================
   ЛОГОТИП
   ============================================ */
.header-color{

    /*background: rgba(0, 0, 0, 0.33);*/
    background: rgba(93, 83, 70, 0.33);

    -webkit-backdrop-filter: blur(33px);
}
.header__logo {
    flex-shrink: 0;
    width: 170px;
    height: 40px;
}

.header__logo-link {
    display: block;
    width: 100%;
    height: 100%;
}

.header__logo-link img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ============================================
   КНОПКА КАТАЛОГА
   ============================================ */

.header__catalog {
    flex-shrink: 0;
}

.catalog-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 175px;
    height: 56px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(7.5px);
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 14px 40px 16px 30px;
}

.catalog-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.catalog-btn__icon {
    position: relative;
    width: 24px;
    height: 12px;
    display: flex;
    align-items: flex-end;
}

.catalog-btn__icon span {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background: #FFFFFF;
    border-radius: 100px;
}

.catalog-btn__icon span::before,
.catalog-btn__icon span::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 2px;
    background: #FFFFFF;
    border-radius: 100px;
    bottom: 6px;
}

.catalog-btn__icon span::before {
    left: 0;
}

.catalog-btn__icon span::after {
    left: 0;
    bottom: 12px;
    width: 12px;
}

.catalog-btn__text {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 145%;
    color: #FFFFFF;
    text-decoration: none;
}

/* ============================================
   НАВИГАЦИОННОЕ МЕНЮ
   ============================================ */

.header__nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin: 0;
}

.nav-menu__link {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 145%;
    color: #FFFFFF;
    text-decoration: none;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

.nav-menu__link:hover {

    opacity: 0.8;
    text-decoration: none;

}

/* ============================================
   КОНТАКТЫ И МЕССЕНДЖЕРЫ
   ============================================ */

.header__contacts {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.header__messengers {
    display: flex;
    align-items: center;
    gap: 10px;
}

.messenger-link {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.messenger-link:hover {
    transform: scale(1.05);
}

.messenger-link img {
    width: 32px;
    height: 32px;
}

.header__phone {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.phone-number {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 110%;
    color: #FFFFFF;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.3s ease;
}

.phone-number:hover {
    opacity: 0.8;
    text-decoration: none;
}

.callback-link {
    background: none;
    border: none;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 145%;
    color: #FFFFFF;
    cursor: pointer;
    text-align: left;
    padding: 0;
    transition: opacity 0.3s ease;
}

.callback-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* ============================================
   МОБИЛЬНОЕ МЕНЮ (БУРГЕР)
   ============================================ */

.header__mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
}

.header__mobile-toggle span {
    width: 100%;
    height: 2px;
    background: #FFFFFF;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.header__mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.header__mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

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

/* ============================================
   АДАПТИВНОСТЬ
   ============================================ */

@media (max-width: 1400px) {
    /*.header {*/
    /*    padding: 10px 30px 0;*/
    /*}*/

    .nav-menu {
        gap: 30px;
    }
}

@media (max-width: 1200px) {
    .header__nav {
        display: none;
    }

    .header__mobile-toggle {
        display: flex;
    }

    .header__container {
        justify-content: flex-start;
    }

    .header__logo {
        margin-right: auto;
    }
}

@media (max-width: 992px) {
    .catalog-btn {
        width: 140px;
        padding: 10px 20px 12px;
    }

    .catalog-btn__text {
        font-size: 16px;
    }

    .phone-number {
        font-size: 20px;
    }

    .callback-link {
        font-size: 14px;
    }

    .messenger-link img {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 0 15px;
    }
.hero-content{
    width: 76%!important;
}
    .header__container {
        min-height: 70px;
        padding: 10px 15px;
        gap: 15px;
    }

    .header__logo {
        width: 120px;
        height: 28px;
    }

    .catalog-btn {
        width: 115px;
        height: 44px;
        padding: 8px 15px 10px;
    }

    .catalog-btn__text {
        font-size: 14px;
    }

    .header__contacts {
        gap: 12px;
    }

    .header__messengers {
        gap: 8px;
    }

    .phone-number {
        font-size: 16px;
    }

    .callback-link {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .hero-content{
        width: 100%!important;
    }
    .header__catalog {
        display: none;
    }

    .header__messengers {
        display: none;
    }

    .phone-number {
        font-size: 14px;
    }

    .callback-link {
        font-size: 10px;
    }

    .header__contacts {
        margin-left: auto;
    }
}

/* ============================================
   АНИМАЦИИ
   ============================================ */

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header {
    animation: fadeInDown 0.6s ease forwards;
}



/* ============================================
   STATIC PAGE
   ============================================ */

/* ============================================
   СТАТИЧЕСКАЯ СТРАНИЦА - ЕДИНЫЙ СТИЛЬ С САЙТОМ
   ============================================ */

.static-page-wrapper {
    width: 100%;
    background: #F6F5F3;
}

.static-page {
    width: 100%;
    min-height: 100vh;
}

/* ============================================
   СЕКЦИЯ СТАТИЧЕСКОЙ СТРАНИЦЫ (HERO MINI СТИЛЬ)
   ============================================ */

.static-page__hero {
    position: relative;
    width: 100%;
    background: #907A71;
    border-radius: 0 0 50px 50px;
    overflow: hidden;
}

.static-page__hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 156px 20px 80px;
    display: flex;
    flex-direction: column;
}

/* Хлебные крошки */
.static-page__breadcrumbs {
    margin-bottom: 60px;
}

.static-page__breadcrumbs .breadcrumbs {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.static-page__breadcrumbs .breadcrumbs__link {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 145%;
    color: #FFFFFF;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.static-page__breadcrumbs .breadcrumbs__link:hover {
    opacity: 0.8;
    text-decoration: none;
}

.static-page__breadcrumbs .breadcrumbs__separator {
    width: 4px;
    height: 4px;
    background: #E2E1DF;
    border-radius: 50%;
}

.static-page__breadcrumbs .breadcrumbs__current {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 145%;
    color: #E2E1DF;
}

/* Заголовок страницы */
.static-page__hero-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 70px;
    line-height: 110%;
    color: #FFFFFF;
    margin: 0;
    max-width: 800px;
}

/* ============================================
   ОСНОВНОЙ КОНТЕНТ
   ============================================ */

.static-page__content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 20px;
}

.static-page__body {
    background: #FFFFFF;
    border-radius: 30px;
    padding: 50px 60px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Типография контента */
.static-page__body h1 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 48px;
    line-height: 115%;
    color: #282624;
    margin: 0 0 20px 0;
    padding-bottom: 20px;
    border-bottom: 2px solid #F3BF82;
}

.static-page__body h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 36px;
    line-height: 115%;
    color: #282624;
    margin: 40px 0 20px 0;
}

.static-page__body h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 28px;
    line-height: 120%;
    color: #282624;
    margin: 30px 0 15px 0;
}

.static-page__body h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 125%;
    color: #282624;
    margin: 25px 0 12px 0;
}

.static-page__body p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 145%;
    color: #4A4A4A;
    margin: 0 0 20px 0;
}

.static-page__body a {
    color: #F3BF82;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.static-page__body a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.static-page__body ul,
.static-page__body ol {
    margin: 0 0 20px 0;
    padding-left: 25px;
}

.static-page__body li {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 145%;
    color: #4A4A4A;
    margin: 8px 0;
}

.static-page__body img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    margin: 20px 0;
}

.static-page__body table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    border-radius: 20px;
    overflow: hidden;
}

.static-page__body th,
.static-page__body td {
    border: 1px solid #E0E0E0;
    padding: 12px 15px;
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
}

.static-page__body th {
    background: #F6F5F3;
    font-weight: 600;
    color: #282624;
}

.static-page__body td {
    color: #4A4A4A;
}

.static-page__body blockquote {
    margin: 20px 0;
    padding: 20px 30px;
    background: #F6F5F3;
    border-left: 4px solid #F3BF82;
    border-radius: 15px;
    font-family: 'Inter', sans-serif;
    font-style: italic;
    color: #666;
    font-size: 18px;
}

.static-page__body code {
    background: #F6F5F3;
    padding: 2px 6px;
    border-radius: 6px;
    font-family: monospace;
    font-size: 16px;
    color: #282624;
}

.static-page__body pre {
    background: #282624;
    color: #FFFFFF;
    padding: 20px;
    border-radius: 15px;
    overflow-x: auto;
    margin: 20px 0;
}

.static-page__body pre code {
    background: none;
    color: #FFFFFF;
    padding: 0;
}

/* ============================================
   АДАПТИВНОСТЬ
   ============================================ */

@media (max-width: 1400px) {
    .header{
        top: 10px;
        left: 20px;
        width: calc(100vw - 40px);
    }
    .static-page__hero-container {
        padding: 140px 20px 60px;
    }

    .static-page__hero-title {
        font-size: 60px;
    }
}
@media (max-width: 1280px) {
    .header__nav{
        display: none;
    }
    .header__mobile-toggle{
        display: flex;
    }
    .header__container{
        justify-content: unset;
    }
    .header__contacts{
        flex-grow: 1;
        justify-content: end;
    }
}

@media (max-width: 1200px) {
    .static-page__hero-container {
        padding: 120px 20px 60px;
    }

    .static-page__hero-title {
        font-size: 52px;
    }

    .static-page__body {
        padding: 40px 50px;
    }

    .static-page__body h1 {
        font-size: 42px;
    }

    .static-page__body h2 {
        font-size: 32px;
    }

    .static-page__body h3 {
        font-size: 26px;
    }
}

@media (max-width: 992px) {
    .hero{
        display: flex;
        align-items: center;
        height: 100vh;
    }
    .hero-container{
        padding: 0;

    }
    .static-page__hero {
        border-radius: 0 0 40px 40px;
    }

    .static-page__hero-container {
        padding: 100px 20px 50px;
    }

    .static-page__hero-title {
        font-size: 44px;
    }

    .static-page__breadcrumbs {
        margin-bottom: 40px;
    }

    .static-page__content {
        padding: 60px 20px;
    }

    .static-page__body {
        padding: 35px 40px;
        border-radius: 25px;
    }

    .static-page__body h1 {
        font-size: 36px;
    }

    .static-page__body h2 {
        font-size: 28px;
    }

    .static-page__body h3 {
        font-size: 24px;
    }

    .static-page__body p,
    .static-page__body li,
    .static-page__body blockquote {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .hero-container{
       transform: translateY(-100px);

    }
    .static-page__hero {
        border-radius: 0 0 30px 30px;
    }

    .static-page__hero-container {
        padding: 80px 15px 40px;
    }

    .static-page__breadcrumbs {
        margin-bottom: 30px;
    }

    .static-page__breadcrumbs .breadcrumbs {
        gap: 12px;
    }

    .static-page__breadcrumbs .breadcrumbs__link,
    .static-page__breadcrumbs .breadcrumbs__current {
        font-size: 14px;
    }

    .static-page__hero-title {
        font-size: 36px;
    }

    .static-page__content {
        padding: 50px 15px;
    }

    .static-page__body {
        padding: 30px 25px;
        border-radius: 20px;
    }

    .static-page__body h1 {
        font-size: 32px;
        margin-bottom: 15px;
        padding-bottom: 15px;
    }

    .static-page__body h2 {
        font-size: 26px;
        margin: 30px 0 15px;
    }

    .static-page__body h3 {
        font-size: 22px;
    }

    .static-page__body h4 {
        font-size: 20px;
    }

    .static-page__body p,
    .static-page__body li,
    .static-page__body blockquote {
        font-size: 15px;
    }

    .static-page__body ul,
    .static-page__body ol {
        padding-left: 20px;
    }

    .static-page__body blockquote {
        padding: 15px 20px;
    }

    .static-page__body th,
    .static-page__body td {
        padding: 8px 10px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .static-page__hero-container {
        padding: 60px 15px 30px;
    }

    .static-page__hero-title {
        font-size: 28px;
    }

    .static-page__content {
        padding: 40px 15px;
    }

    .static-page__body {
        padding: 20px 16px;
        border-radius: 16px;
    }

    .static-page__body h1 {
        font-size: 28px;
    }

    .static-page__body h2 {
        font-size: 24px;
    }

    .static-page__body h3 {
        font-size: 20px;
    }

    .static-page__body h4 {
        font-size: 18px;
    }

    .static-page__body p,
    .static-page__body li,
    .static-page__body blockquote {
        font-size: 14px;
    }

    .static-page__body th,
    .static-page__body td {
        padding: 6px 8px;
        font-size: 13px;
    }
}

/* ============================================
   АНИМАЦИИ
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.static-page__breadcrumbs {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    animation-delay: 0s;
}

.static-page__hero-title {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    animation-delay: 0.1s;
}

.static-page__body {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    animation-delay: 0.2s;
}


/* ============================================
     МОБИЛЬНОЕ ВЫЕЗЖАЮЩЕЕ МЕНЮ
    ============================================ */

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1001;
    visibility: hidden;
}

.mobile-menu.active {
    visibility: visible;
}

.mobile-menu__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.mobile-menu.active .mobile-menu__overlay {
    opacity: 1;
}

.mobile-menu__panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 75%;
    height: 100%;
    background: #907A71;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-menu.active .mobile-menu__panel {
    transform: translateX(0);
}

/* Шапка мобильного меню */
.mobile-menu__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.mobile-menu__logo {
    width: 100px;
    height: 28px;
}

.mobile-menu__logo a {
    display: block;
    width: 100%;
    height: 100%;
}

.mobile-menu__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.mobile-menu__close {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    transition: all 0.3s ease;
}

.mobile-menu__close:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: rotate(90deg);
}

.mobile-menu__close svg {
    width: 18px;
    height: 18px;
}

/* Навигация мобильного меню */
.mobile-menu__nav {
    flex: 1;
    padding: 16px 0;
}

.mobile-nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-menu li {
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav-menu__link {
    display: block;
    padding: 14px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-nav-menu__link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: #F3BF82;
    transition: height 0.3s ease;
}

.mobile-nav-menu__link:hover {
    background: rgba(255, 255, 255, 0.08);
    padding-left: 20px;
}

.mobile-nav-menu__link:hover::before {
    height: 18px;
}

/* Кнопка каталога в мобильном меню - БЕЛАЯ */
.mobile-menu__catalog {
    padding: 0 16px 16px;
}

.mobile-catalog-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px 16px;
    background: #FFFFFF;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mobile-catalog-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.mobile-catalog-btn:hover::before {
    width: 300px;
    height: 300px;
}

.mobile-catalog-btn:hover {
    transform: translateY(-2px);
    background: #f5f5f5;
}

.mobile-catalog-btn__icon {
    position: relative;
    width: 20px;
    height: 10px;
    display: flex;
    align-items: flex-end;
    z-index: 1;
}

.mobile-catalog-btn__icon span {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 20px;
    height: 2px;
    background: #282624;
    border-radius: 100px;
}

.mobile-catalog-btn__icon span::before,
.mobile-catalog-btn__icon span::after {
    content: '';
    position: absolute;
    width: 14px;
    height: 2px;
    background: #282624;
    border-radius: 100px;
    bottom: 5px;
}

.mobile-catalog-btn__icon span::before {
    left: 0;
}

.mobile-catalog-btn__icon span::after {
    left: 0;
    bottom: 10px;
    width: 10px;
}

.mobile-catalog-btn__text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #282624;
    z-index: 1;
}

/* Контакты в мобильном меню */
.mobile-menu__contacts {
    padding: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.mobile-menu__phone {
    margin-bottom: 20px;
}

/* Номер телефона - БЕЛЫЙ */
.mobile-phone-number {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #FFFFFF;
    text-decoration: none;
    margin-bottom: 6px;
    transition: opacity 0.3s;
}

.mobile-phone-number:hover {
    opacity: 0.8;
}

.mobile-callback-link {
    background: none;
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    padding: 0;
    transition: color 0.3s;
}

.mobile-callback-link:hover {
    color: #F3BF82;
}

.mobile-messengers-label {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 10px 0;
}

.mobile-messengers-links {
    display: flex;
    gap: 12px;
}

.mobile-messenger-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    flex: 1;
}

.mobile-messenger-link:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.mobile-messenger-link img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.mobile-messenger-link span {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #FFFFFF;
}

/* Футер мобильного меню */
.mobile-menu__footer {
    padding: 16px;
    text-align: center;
}

.mobile-menu__copyright {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    margin: 0 0 6px 0;
}

.mobile-menu__privacy {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.3s;
}

.mobile-menu__privacy:hover {
    color: #F3BF82;
}



/* ============================================
   АДАПТИВНОСТЬ
   ============================================ */

/* Для маленьких телефонов - ширина 85% */
@media (max-width: 480px) {
    .mobile-menu__panel {
        width: 85%;
    }

    .mobile-menu__header {
        padding: 16px 14px;
    }

    .mobile-menu__logo {
        width: 90px;
        height: 24px;
    }

    .mobile-menu__close {
        width: 32px;
        height: 32px;
    }

    .mobile-nav-menu__link {
        font-size: 15px;
        padding: 12px 14px;
    }

    .mobile-phone-number {
        font-size: 16px;
    }

    .mobile-callback-link {
        font-size: 12px;
    }

    .mobile-catalog-btn {
        padding: 10px 14px;
    }

    .mobile-catalog-btn__text {
        font-size: 15px;
    }

    .mobile-messenger-link {
        padding: 6px 10px;
    }

    .mobile-messenger-link span {
        font-size: 12px;
    }
}

/* Для планшетов - ширина 60% */
@media (min-width: 768px) and (max-width: 1024px) {
    .mobile-menu__panel {
        width: 60%;
    }

    .mobile-nav-menu__link {
        font-size: 18px;
        padding: 16px 20px;
    }

    .mobile-phone-number {
        font-size: 20px;
    }

    .mobile-catalog-btn__text {
        font-size: 18px;
    }
}

/* Для больших экранов - ширина 50% */
@media (min-width: 1025px) {
    .mobile-menu__panel {
        width: 50%;
    }
}





/* ============================================
 FOOTER SECTION - ТОЧНОЕ СООТВЕТСТВИЕ МАКЕТУ
 ============================================ */

.footer {
    width: 100%;
    background: #FFFFFF;
    padding: 100px 0 50px;

}

.footer__container {
    max-width: 735px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   ОСНОВНАЯ ИНФОРМАЦИЯ
   ============================================ */

.footer__main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    margin-bottom: 50px;
}

/* ============================================
   ЛОГОТИП И ПОДПИСЬ
   ============================================ */

.footer__brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.footer__logo {
    width: 624px;
    height: 146px;
}

.footer__logo svg {
    width: 100%;
    height: 100%;
}

.footer__tagline {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 22px;
    line-height: 140%;
    text-align: center;
    color: #282624;
    max-width: 565px;
    margin: 0;
}

/* ============================================
   КОНТАКТЫ
   ============================================ */

.footer__contacts {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 40px 60px;
    max-width: 574px;
}

.footer__contacts-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer__phone {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 28px;
    line-height: 120%;
    color: #282624;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer__phone:hover {
    opacity: 0.7;
}

.footer__messengers {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer__messenger {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.footer__messenger:hover {
    transform: scale(1.05);
}

.footer__messenger svg {
    width: 32px;
    height: 32px;
}

.footer__email {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 28px;
    line-height: 120%;
    color: #282624;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer__email:hover {
    opacity: 0.7;
}

.footer__address {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 28px;
    line-height: 120%;
    text-align: center;
    color: #282624;
    max-width: 508px;
}

/* ============================================
   РЕКВИЗИТЫ
   ============================================ */

.footer__details {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 145%;
    text-align: center;
    color: #92918F;
    max-width: 735px;
}

/* ============================================
   НИЖНЯЯ ЧАСТЬ (КОПИРАЙТ, ПОЛИТИКА)
   ============================================ */

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 100px;
    padding-top: 50px;
    border-top: 1px solid #E2E1DF;
}

.footer__copyright {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 145%;
    color: #92918F;
}

.footer__policy {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 145%;
    color: #92918F;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer__policy:hover {
    opacity: 0.7;
    text-decoration: underline;
}

/* ============================================
   АДАПТИВНОСТЬ
   ============================================ */

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 30px;
        margin-top: 60px;
    }

    .footer__container {
        max-width: 100%;
    }

    .footer__logo {
        width: 100%;
        max-width: 400px;
        height: auto;
        display: flex;
        justify-content: center;
    }

    .footer__tagline {
        font-size: 18px;
        max-width: 100%;
    }

    .footer__contacts {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .footer__contacts-row {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .footer__phone,
    .footer__email,
    .footer__address {
        font-size: 22px;
        text-align: center;
    }

    .footer__address {
        font-size: 20px;
    }

    .footer__details {
        font-size: 12px;
        padding: 0 15px;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding-top: 30px;
    }

    .footer__copyright,
    .footer__policy {
        font-size: 12px;
    }


}

@media (max-width: 576px) {
    .footer {
        padding: 40px 0 20px;
        margin-top: 40px;
    }

    .footer__brand {
        gap: 20px;
    }

    .footer__logo img {
        max-width: 280px;
        width: 280px;
    }

    .footer__tagline {
        font-size: 16px;
    }

    .footer__phone,
    .footer__email {
        font-size: 18px;
    }

    .footer__address {
        font-size: 16px;
    }

    .footer__messenger svg {
        width: 28px;
        height: 28px;
    }

    .footer__details {
        font-size: 10px;
    }

    .footer__bottom {
        gap: 10px;
    }

    .footer__copyright,
    .footer__policy {
        font-size: 10px;
    }
}

/* ============================================
   АНИМАЦИИ
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer__brand,
.footer__contacts,
.footer__details,
.footer__bottom {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.footer__brand {
    animation-delay: 0s;
}

.footer__contacts {
    animation-delay: 0.1s;
}

.footer__details {
    animation-delay: 0.2s;
}

.footer__bottom {
    animation-delay: 0.3s;
}

/* ============================================
   СОЦИАЛЬНЫЕ СЕТИ (VK, Telegram-канал, MAX)
   ============================================ */

.social-networks {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.social-networks__title {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 140%;
    text-align: center;
    color: #282624;
}

.social-networks__links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-networks__link {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.social-networks__link:hover {
    transform: scale(1.05);
}

.social-networks__link img {
    display: block;
    width: 40px;
    height: 40px;
    max-width: 40px;
    max-height: 40px;
    margin: 0;
    border-radius: 8px;
    object-fit: contain;
    flex-shrink: 0;
}

/* Иконки внутри контента статических страниц (перебивает .static-page__body img) */
.static-page__body .social-networks__link img {
    width: 40px;
    height: 40px;
    max-width: 40px;
    margin: 0;
    border-radius: 8px;
}

/* В шапке и футере — в одну линию с мессенджерами */
.social-networks--header,
.social-networks--footer-inline,
.social-networks--modal {
    display: contents;
}

.social-networks--header .social-networks__links,
.social-networks--footer-inline .social-networks__links,
.social-networks--modal .social-networks__links {
    display: contents;
}

.social-networks--header .social-networks__link,
.social-networks--footer-inline .social-networks__link,
.social-networks--modal .social-networks__link {
    display: flex;
}

/* Футер — отдельный блок с заголовком */
.social-networks--footer {
    width: 100%;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(40, 38, 36, 0.1);
}

.social-networks--footer .social-networks__title {
    font-size: 20px;
}

/* Страница контактов */
.social-networks--contacts {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(40, 38, 36, 0.1);
    align-items: flex-start;
}

.social-networks--contacts .social-networks__title {
    font-size: 22px;
}

/* Мобильное меню */
.social-networks--mobile {
    margin-top: 20px;
    align-items: flex-start;
}

.social-networks--mobile .social-networks__title {
    font-size: 14px;
    font-weight: 500;
    color: #92918F;
    text-align: left;
}

@media (max-width: 768px) {
    .social-networks--contacts .social-networks__title {
        font-size: 18px;
    }

    .social-networks--footer .social-networks__title {
        font-size: 16px;
    }
}
