/* ============================================
   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;
    color: #FFFFFF;
    text-decoration: none;
    background: rgba(40, 38, 36, 0.32);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 12px;
    backdrop-filter: blur(7.5px);
    transition: all 0.3s ease;
    cursor: pointer;
    font: inherit;
    appearance: none;
    -webkit-appearance: none;
}

/*.catalog-btn:hover {*/
/*    background: rgba(255, 255, 255, 0.3);*/
/*    transform: translateY(-2px);*/
/*}*/
.catalog-btn:hover {
    color: #FFFFFF;
    text-decoration: none;
    background: rgba(243, 191, 130, 0.32);
    /*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;
    height: 80px;
}

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

.header__logo-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;

}

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

.header__catalog {
    flex-shrink: 0;
    position: relative;
}

.header__catalog.is-open .catalog-btn,
.catalog-btn.is-open {
    color: #FFFFFF;
    text-decoration: none;
    background: rgba(243, 191, 130, 0.32);
}

.header__cart {
    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__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-cart-btn {
    position: relative;
    display: flex;
    width: 60px;
    height: 56px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    /*padding: 14px 22px 16px;*/
    color: #FFFFFF;
    text-decoration: none;
    background: rgba(40, 38, 36, 0.32);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 12px;
    backdrop-filter: blur(7.5px);
    transition: all 0.3s ease;
}

.header-cart-btn:hover {
    color: #FFFFFF;
    text-decoration: none;
    background: rgba(243, 191, 130, 0.32);
    /*transform: translateY(-2px);*/
}

.header-cart-btn__icon {
    position: relative;
    margin-top: 6px;
    width: 21px;
    height: 18px;
    border: 2px solid currentColor;
    border-top: 0;
    border-radius: 0 0 5px 5px;
}

.header-cart-btn__icon::before {
    content: '';
    position: absolute;
    left: 4px;
    top: -8px;
    width: 9px;
    height: 9px;
    border: 2px solid currentColor;
    border-bottom: 0;
    border-radius: 9px 9px 0 0;
}

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

.header-cart-btn__count {
    position: absolute;
    top: -7px;
    right: -7px;
    display: flex;
    min-width: 24px;
    height: 24px;
    align-items: center;
    justify-content: center;
    padding: 0 7px;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    background: rgba(40, 38, 36, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 7px;
    backdrop-filter: blur(7.5px);
    box-shadow: 0 8px 18px rgba(40, 38, 36, 0.18);
}

.header-cart-btn__count.is-empty {
    display: none;
}

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

.header__nav {
    flex: 1;
    min-width: 0;
    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;
    align-self: 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;
    justify-content: center;
    align-items: flex-end;
    gap: 4px;
    flex-shrink: 0;
}

.phone-number {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 1.2;
    color: #FFFFFF;
    text-decoration: none;
    white-space: nowrap;
    margin: 0;
    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: right;
    padding: 0;
    margin: 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;
    align-self: center;
}

.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: 1700px) {
    .header {
        left: 20px;
        width: calc(100vw - 40px);
        padding: 0 20px;
    }

    .header__container {
        gap: 14px;
        padding: 15px 20px;
    }

    .nav-menu {
        gap: 24px;
    }

    .nav-menu__link {
        font-size: 16px;
    }

    .catalog-btn {
        padding: 12px 28px 14px 22px;
    }

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

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

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

    .header__contacts {
        gap: 16px;
    }
}

@media (max-width: 1500px) {
    .header__container {
        gap: 10px;
    }

    .nav-menu {
        gap: 18px;
    }

    .nav-menu__link {
        font-size: 15px;
    }

    .catalog-btn {
        padding: 12px 20px 14px 18px;
    }

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

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

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

@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;
    }

    .header-cart-btn {
        width: 132px;
        padding: 10px 16px 12px;
    }

    .catalog-btn__text,
    .header-cart-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 10px;
    }

    .hero-content {
        width: 76% !important;
    }

    .header__container {
        min-height: 70px;
        padding: 10px 0px;
        gap: 15px;
    }



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

    .header-cart-btn {
        width: 44px;
        height: 44px;
        padding: 0;
    }

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

    .header-cart-btn__text {
        display: none;
    }

    .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__cart {
        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;
}


/* ============================================
   CITY PAGE
   ============================================ */

.city-page__content {
    padding: 60px 0;
    background: #F6F5F3;
}

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

@media (max-width: 768px) {
    .city-page__content {
        padding: 40px 0;
    }
}

.city-popular-solutions__action {
    margin-top: 40px;
    text-align: center;
}

.city-popular-solutions__link {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 145%;
    color: var(--color-danger);
    text-decoration: none;
    transition: color 0.3s ease;
}

.city-popular-solutions__link:hover {
    color: var(--color-danger-dark);
    text-decoration: underline;
}

.city-works .work-card__content {
    gap: 6px;
}

.city-works .work-card__info {
    margin-bottom: 0;
}

.city-works .work-card__details {
    margin-top: 0;
}

.city-faq {
    padding: 80px 0 100px;
    background: #FFFFFF;
}

.city-faq .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.city-faq__title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 54px;
    line-height: 115%;
    text-align: center;
    color: #282624;
    margin: 0 0 60px;
}

.city-faq__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.city-faq__item {
    background: #F6F5F3;
    border-radius: 20px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.city-faq__item.is-open {
    box-shadow: 0 8px 30px rgba(40, 38, 36, 0.08);
}

.city-faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    padding: 24px 28px;
    border: none;
    background: transparent;
    cursor: pointer;
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 140%;
    color: #282624;
    transition: color 0.3s ease;
}

.city-faq__question:hover {
    color: var(--color-primary-dark);
}

.city-faq__icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #FFFFFF;
    position: relative;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.city-faq__icon::before,
.city-faq__icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 2px;
    background: #282624;
    border-radius: 2px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.city-faq__icon::before {
    transform: translate(-50%, -50%);
}

.city-faq__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.city-faq__item.is-open .city-faq__icon {
    transform: rotate(180deg);
    background: var(--color-primary);
}

.city-faq__item.is-open .city-faq__icon::before,
.city-faq__item.is-open .city-faq__icon::after {
    background: #FFFFFF;
}

.city-faq__item.is-open .city-faq__icon::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.city-faq__answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s ease;
}

.city-faq__item.is-open .city-faq__answer {
    grid-template-rows: 1fr;
}

.city-faq__answer[hidden] {
    display: grid;
}

.city-faq__answer-inner {
    overflow: hidden;
}

.city-faq__answer-inner p {
    margin: 0;
    padding: 20px 28px 24px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 160%;
    color: #5C5A57;
}

@media (max-width: 768px) {
    .city-faq {
        padding: 40px 0 60px;
    }

    .city-faq__title {
        font-size: 32px;
        margin-bottom: 32px;
    }

    .city-faq__question {
        padding: 18px 20px;
        font-size: 17px;
        gap: 14px;
    }

    .city-faq__answer-inner p {
        padding: 20px 20px 18px;
        font-size: 16px;
    }

    .city-faq__icon {
        width: 32px;
        height: 32px;
    }
}

.city-contacts {
    padding: 80px 0 100px;
    background: #F6F5F3;
}

.city-contacts .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.city-contacts__title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 54px;
    line-height: 115%;
    text-align: center;
    color: #282624;
    margin: 0 0 60px;
}

.city-contacts__card {
    background: #FFFFFF;
    border-radius: 30px;
    padding: 48px 56px;
    box-shadow: 0 8px 40px rgba(40, 38, 36, 0.06);
}

.city-contacts__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 40px;
}

.city-contacts__item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.city-contacts__item--full {
    grid-column: 1 / -1;
}

.city-contacts__label {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 140%;
    color: #92918F;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.city-contacts__value {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 22px;
    line-height: 145%;
    color: #282624;
}

.city-contacts__link {
    color: #282624;
    text-decoration: none;
    transition: color 0.3s ease;
}

.city-contacts__link:hover {
    color: var(--color-primary-dark);
}

.city-contacts__details {
    font-weight: 400;
    font-size: 18px;
    line-height: 160%;
    color: #5C5A57;
}

.city-contacts__details p {
    margin: 0 0 8px;
}

.city-contacts__details p:last-child {
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .city-contacts__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .city-contacts {
        padding: 40px 0 60px;
    }

    .city-contacts__title {
        font-size: 32px;
        margin-bottom: 32px;
    }

    .city-contacts__card {
        padding: 28px 24px;
        border-radius: 20px;
    }

    .city-contacts__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .city-contacts__value {
        font-size: 18px;
    }
}

/* ============================================
   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: #908571;
    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;
}

.lllllll {
    display: flex;
    justify-content: center;
}

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

.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) {
    .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: 140px 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: #908571;
    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;
        border-radius: 10px;

}

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

.mobile-menu__logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
        border-radius: 10px;

}

.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 {
    display: grid;
    gap: 10px;
    padding: 0 16px 16px;
}

.mobile-catalog-btn,
.mobile-cart-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,
.mobile-cart-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,
.mobile-cart-btn:hover::before {
    width: 300px;
    height: 300px;
}

.mobile-catalog-btn:hover,
.mobile-cart-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-cart-btn {
    color: #282624;
}

.mobile-cart-btn__icon {
    position: relative;
    z-index: 1;
    width: 19px;
    height: 16px;
    border: 2px solid currentColor;
    border-top: 0;
    border-radius: 0 0 5px 5px;
}

.mobile-cart-btn__icon::before {
    content: '';
    position: absolute;
    left: 4px;
    top: -8px;
    width: 7px;
    height: 8px;
    border: 2px solid currentColor;
    border-bottom: 0;
    border-radius: 8px 8px 0 0;
}

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

/* Контакты в мобильном меню */
.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;
        border-radius: 10px;
    }

    .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,
    .mobile-cart-btn {
        padding: 10px 14px;
    }

    .mobile-catalog-btn__text,
    .mobile-cart-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,
    .mobile-cart-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: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

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

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

.footer__logo {
    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__nav {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    justify-content: center;
    column-gap: 40px;
    row-gap: 32px;
    width: 100%;
    padding: 40px 0;
    border-top: 1px solid #E2E1DF;
    border-bottom: 1px solid #E2E1DF;
}

.footer__nav-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 200px;
}

.footer__nav-title {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 140%;
    color: #282624;
}

.footer__nav-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer__nav-item {
    margin: 0;
}

.footer__nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 145%;
    color: #92918F;
    text-decoration: none;
    transition: color 0.3s ease;
    overflow-wrap: break-word;
}

.footer__nav-link:hover {
    color: #282624;
    text-decoration: underline;
}

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

.footer__contacts {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    max-width: 574px;
    width: 100%;
    align-self: center;
}

.footer__phone {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 28px;
    line-height: 120%;
    color: #282624;
    text-decoration: none;
    text-align: center;
    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;
    text-align: center;
    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: 538px;
}

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

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

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

.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: 1200px) {
    .footer__nav {
        column-gap: 32px;
    }
}

@media (max-width: 1024px) {
    .footer__nav {
        grid-template-columns: repeat(3, max-content);
        column-gap: 32px;
    }

    .footer__nav-column {
        max-width: 200px;
    }
}

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

    .footer__container {
        max-width: 100%;
    }

    .footer__nav {
        grid-template-columns: 1fr;
        justify-content: stretch;
        justify-items: center;
        gap: 28px;
        padding: 32px 0;
    }

    .footer__nav-column {
        max-width: 280px;
        width: 100%;
    }

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

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

    .footer__contacts {
        gap: 25px;
    }

    .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 {
        width: 100%;
    }

    .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__nav,
.footer__contacts,
.footer__details,
.footer__bottom {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.footer__brand {
    animation-delay: 0s;
}

.footer__nav {
    animation-delay: 0.05s;
}

.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);
    align-self: center;
}

.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;
    }
}

/* ============================================
   MEGA MENU — каталог
   ============================================ */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.menu-cat-name {
    display: inline;
}

.menu-cat-name__paren {
    display: block;
    white-space: nowrap;
    font-weight: 400;
    opacity: 0.78;
    margin-top: 2px;
}

.mega-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    z-index: 1100;
    width: 820px;
    max-width: min(820px, calc(100vw - 80px));
    padding: 0;
    background: #2c2824;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    box-shadow: 0 24px 60px rgba(20, 16, 12, 0.45);
    overflow: hidden;
    animation: megaMenuIn 0.22s ease;
}

.mega-menu[hidden] {
    display: none !important;
}

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

.mega-menu__inner {
    display: grid;
    grid-template-columns: 280px 1fr;
    min-height: 320px;
}

.mega-menu__roots {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px 12px;
    background: rgba(255, 255, 255, 0.04);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.mega-menu__root {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    padding: 14px 14px;
    border: none;
    border-radius: 10px;
    background: transparent;
    color: rgba(255, 255, 255, 0.88);
    text-align: left;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.35;
    transition: background 0.2s ease, color 0.2s ease;
}

.mega-menu__root:hover,
.mega-menu__root.is-active {
    background: rgba(243, 191, 130, 0.18);
    color: #fff;
}

.mega-menu__root-title {
    flex: 1;
}

.mega-menu__root-arrow {
    flex-shrink: 0;
    width: 7px;
    height: 7px;
    border-right: 1.5px solid rgba(255, 255, 255, 0.55);
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.55);
    transform: rotate(-45deg);
    transition: border-color 0.2s ease;
}

.mega-menu__root.is-active .mega-menu__root-arrow,
.mega-menu__root:hover .mega-menu__root-arrow {
    border-color: #F3BF82;
}

.mega-menu__all {
    margin-top: auto;
    padding: 14px 14px 6px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #F3BF82;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.mega-menu__all:hover {
    opacity: 0.8;
    color: #F3BF82;
    text-decoration: none;
}

.mega-menu__panels {
    padding: 20px 24px 24px;
}

.mega-menu__panel[hidden] {
    display: none !important;
}

.mega-menu__panel-head {
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mega-menu__panel-title {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    color: #fff;
    text-decoration: none;
}

.mega-menu__panel-title:hover {
    color: #F3BF82;
    text-decoration: none;
}

.mega-menu__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 20px;
}

.mega-menu__item {
    position: relative;
}

.mega-menu__row {
    display: flex;
    align-items: center;
    gap: 4px;
}

.mega-menu__link {
    display: block;
    flex: 1;
    padding: 10px 4px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    transition: color 0.2s ease;
}

.mega-menu__link:hover {
    color: #F3BF82;
    text-decoration: none;
}

.mega-menu__toggle {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border: none;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
    position: relative;
    transition: background 0.2s ease, transform 0.2s ease;
}

.mega-menu__toggle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 7px;
    height: 7px;
    margin: -5px 0 0 -3px;
    border-right: 1.5px solid rgba(255, 255, 255, 0.7);
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.7);
    transform: rotate(45deg);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.mega-menu__item.is-open .mega-menu__toggle,
.mega-menu__toggle:hover {
    background: rgba(243, 191, 130, 0.22);
}

.mega-menu__item.is-open .mega-menu__toggle::before {
    transform: rotate(225deg);
    margin-top: -2px;
    border-color: #F3BF82;
}

.mega-menu__sublist {
    list-style: none;
    margin: 0 0 8px;
    padding: 4px 0 4px 12px;
    border-left: 1px solid rgba(243, 191, 130, 0.35);
}

.mega-menu__sublist[hidden] {
    display: none !important;
}

.mega-menu__sublink {
    display: block;
    padding: 7px 4px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
}

.mega-menu__sublink:hover {
    color: #F3BF82;
    text-decoration: none;
}

.mega-menu__empty {
    margin: 0 0 12px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
}

.mega-menu__panel-cta {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    border-radius: 10px;
    background: rgba(243, 191, 130, 0.22);
    color: #F3BF82;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.mega-menu__panel-cta:hover {
    color: #fff;
    text-decoration: none;
    background: rgba(243, 191, 130, 0.35);
}

@media (max-width: 992px) {
    .mega-menu {
        width: 680px;
    }

    .mega-menu__inner {
        grid-template-columns: 240px 1fr;
    }

    .mega-menu__list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mega-menu {
        width: min(520px, calc(100vw - 40px));
    }

    .mega-menu__inner {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .mega-menu__roots {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        flex-direction: row;
        flex-wrap: wrap;
        gap: 6px;
    }

    .mega-menu__root {
        flex: 1 1 auto;
        padding: 10px 12px;
        font-size: 12px;
    }

    .mega-menu__root-arrow {
        display: none;
    }

    .mega-menu__all {
        width: 100%;
        margin-top: 4px;
        padding: 8px 12px 0;
    }

    .mega-menu__panels {
        padding: 16px;
    }
}

/* ============================================
   Мобильный аккордеон каталога
   ============================================ */
.mobile-catalog-accordion {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-catalog-btn {
    width: 100%;
    justify-content: flex-start;
    cursor: pointer;
    font: inherit;
    appearance: none;
    -webkit-appearance: none;
    position: relative;
}

.mobile-catalog-btn__chevron {
    margin-left: auto;
    width: 8px;
    height: 8px;
    border-right: 2px solid #282624;
    border-bottom: 2px solid #282624;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
}

.mobile-catalog-btn.is-open .mobile-catalog-btn__chevron {
    transform: rotate(225deg);
    margin-top: 4px;
}

.mobile-catalog-tree {
    margin-top: 10px;
    padding: 10px 0 4px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
}

.mobile-catalog-tree[hidden] {
    display: none !important;
}

.mobile-catalog-tree__all {
    display: block;
    padding: 8px 14px 12px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #F3BF82;
    text-decoration: none;
}

.mobile-catalog-tree__all:hover {
    color: #F3BF82;
    text-decoration: none;
    opacity: 0.85;
}

.mobile-catalog-tree__roots,
.mobile-catalog-tree__children {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-catalog-tree__root,
.mobile-catalog-tree__child {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-catalog-tree__row {
    display: flex;
    align-items: stretch;
}

.mobile-catalog-tree__link {
    display: block;
    flex: 1;
    padding: 12px 14px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
}

.mobile-catalog-tree__link:hover {
    color: #F3BF82;
    text-decoration: none;
}

.mobile-catalog-tree__link--child {
    padding-left: 22px;
    font-weight: 400;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

.mobile-catalog-tree__link--grand {
    padding: 10px 14px 10px 34px;
    font-weight: 400;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.mobile-catalog-tree__toggle {
    flex-shrink: 0;
    width: 44px;
    border: none;
    background: transparent;
    cursor: pointer;
    position: relative;
}

.mobile-catalog-tree__toggle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    margin: -6px 0 0 -4px;
    border-right: 1.5px solid rgba(255, 255, 255, 0.7);
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.7);
    transform: rotate(45deg);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.mobile-catalog-tree__root.is-open > .mobile-catalog-tree__row .mobile-catalog-tree__toggle::before,
.mobile-catalog-tree__child.is-open > .mobile-catalog-tree__row .mobile-catalog-tree__toggle::before {
    transform: rotate(225deg);
    margin-top: -2px;
    border-color: #F3BF82;
}

.mobile-catalog-tree__children[hidden] {
    display: none !important;
}

.mobile-catalog-tree__children--nested {
    background: rgba(0, 0, 0, 0.15);
}
