/* Утилиты */
.active {
    display: block !important;
}

.lock {
    overflow: hidden;
}

.body-no-scroll {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

/* Формы */
.commission-form {
    max-width: var(--em-form-max-width);
    margin: 40px auto;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.form-title {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
    font-size: var(--em-font-size-xl);
    font-weight: bold;
}

form {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.form-group {
    flex: 1 1 calc(50% - 10px);
    min-width: 250px;
    margin-bottom: 0;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #d4d4d4 !important;
    font-size: var(--em-font-size-sm);
}

.form-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--em-border-radius);
    font-size: var(--em-font-size-base);
    transition: all 0.3s ease;
    background: white;
    box-sizing: border-box;
}

.form-input:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.form-input::placeholder {
    color: #999;
}

.privacy-notice {
    flex: 1 1 100%;
    text-align: left;
    margin: 10px 0;
    font-size: var(--em-font-size-sm);
    color: #666;
    line-height: 1.4;
}

.privacy-notice a {
    color: var(--em-color-accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-notice a:hover {
    color: var(--em-color-accent-hover);
    text-decoration: underline;
}

.submit-btn {
    width: 33.33%;
    min-width: 200px;
    padding: 15px 25px;
    background: var(--em-color-accent);
    color: white;
    border: none;
    border-radius: var(--em-border-radius);
    font-size: var(--em-font-size-base);
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
}

.submit-btn:hover {
    background: var(--em-color-accent-hover);
}

/* Уведомления */
.notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    padding: 18px 25px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    max-width: var(--em-notification-width);
    min-height: 70px;
    transform: translateX(500px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: Arial, sans-serif;
    border-left: 5px solid;
}

.notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification.hide {
    transform: translateX(500px);
    opacity: 0;
}

.notification.success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border-left-color: #28a745;
    color: #155724;
}

.notification.error {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    border-left-color: #dc3545;
    color: #721c24;
}

.notification.warning {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border-left-color: #ffc107;
    color: #856404;
}

.notification-icon {
    font-size: var(--em-icon-size-medium);
    flex-shrink: 0;
}

.notification-content {
    flex: 1;
    padding: 2px 0;
}

.notification-title {
    font-weight: bold;
    font-size: 15px;
    margin-bottom: 4px;
}

.notification-message {
    font-size: 13px;
    opacity: 0.9;
    line-height: 1.4;
}

.notification-close {
    background: none;
    border: none;
    font-size: var(--em-font-size-base);
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
    padding: 5px;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    margin-top: -5px;
}

.notification-close:hover {
    opacity: 1;
    background: rgba(0, 0, 0, 0.1);
}

.notification-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: currentColor;
    opacity: 0.3;
    width: 100%;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 5s linear;
}

.notification.show .notification-progress {
    transform: scaleX(1);
}

/* Header */
.header {
    position: fixed;
    width: 100%;
    z-index: 500;
    transition: var(--em-03-seconds);
}

.header.hide {
    transform: translateY(-60px);
}

.headerContent {
    position: relative;
    display: flex;
    width: 100%;
    height: var(--em-header-height);
}

.headerMask {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgb(19 19 19) 60%, transparent);
}

/* Header Top */
.headerMenu {
    display: flex;
    flex-direction: column;
    width: 100%;
    z-index: 501;
}

.headerTop {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--em-header-top-height);
    width: var(--em-container-width);
    margin: 0 auto;
}

.headerLogotype {
    display: flex;
    height: var(--em-button-height);
    margin: 0 auto 0 0;
}

.headerTopBtn {
    display: flex;
    align-items: center;
    font-family: var(--em-font);
    font-size: var(--em-font-size-sm);
    color: var(--em-color-extra-accent);
    margin: 0 0 0 50px;
}

.headerTopBtn:hover {
    color: var(--em-color-darkgray);
}

.headerTopBtn svg {
    margin: 0 10px 0 0;
    width: var(--em-icon-size-large);
    height: var(--em-icon-size-large);
    stroke: var(--em-color-accent);
}

.headerSocialLinks {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 145px;
    height: 50px;
    padding: 0 20px 0 0;
}

.headerSocialLink {
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--em-button-height);
    height: var(--em-button-height);
}

.headerSocialLink svg, .socialMediaDropMenu svg {
    fill: var(--em-color-darkgray);
}

.headerSocialLink:hover svg {
    fill: var(--em-color-accent);
}

.svg_zen_one {
    fill: var(--em-color-white);
}

.svg_zen_two {
    fill: var(--em-color-black);
}

.headerSocialLink:hover .svg_zen_two {
    fill: var(--em-color-accent);
}

/* Header Bottom */
.headerBottom {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: var(--em-header-bottom-height);
    padding: 0;
}

.headerBottomArea {
    position: relative;
    width: var(--em-container-width);
    margin: 0 auto;
    padding: 0 10px 0 25px;
    height: var(--em-header-bottom-height);
    display: flex;
    align-items: center;
    justify-content: space-around;
    background: var(--em-color-white);
    border-radius: var(--em-border-radius);
    border: 1px solid var(--em-color-silver);
}

.headerBotContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: auto;
    height: 50px;
}

.headerBotBtn {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--em-font);
    font-weight: 600;
    font-size: var(--em-font-size-sm);
    line-height: var(--em-line-height-small);
    flex: auto;
    height: 50px;
    padding: 0px;
    color: var(--em-color-darkgray);
}

.headerBotBtn:nth-child(1) {
    flex: unset;
    padding: 0 30px 0 0;
    border-right: 1px solid var(--em-color-silver);
}

.headerBotContainer .headerBotBtn:nth-child(1) {
    flex: auto;
    padding: 0px;
    border-right: none;
}

.headerBotBtn.hover-active {
    color: var(--em-color-accent);
}

.headerBotBtn.hover-active svg {
    stroke: var(--em-color-accent);
}

.headerBotBtn:hover {
    color: var(--em-color-accent);
}

.headerBotBtn:hover svg {
    stroke: var(--em-color-accent);
}

.headerBotBtn svg {
    stroke: var(--em-color-extra-accent);
    width: var(--em-icon-size-small);
    height: var(--em-icon-size-small);
    margin: 0 10px 0 0;
}

.favoritesBtn {
    position: relative;
}

.favoritesBtn div {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: -5px;
    top: -5px;
    width: 20px;
    height: 20px;
    background-color: var(--em-color-accent);
    border-radius: 100px;
    color: var(--em-color-white);
    font-size: var(--em-font-size-xs);
}

/* Header Right Section */
.headerBotRight {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.headerBotBtnShop {
    display: flex;
    align-items: center;
    justify-content: center;
    height: var(--em-button-height);
    width: var(--em-button-height);
    border-radius: var(--em-border-radius);
    background: var(--em-color-silver);
    margin: 0 0 0 10px;
}

.headerBotBtnShop:hover {
    background: var(--em-color-lgray);
}

.headerBotBtnShop svg {
    stroke: var(--em-color-black);
    width: var(--em-icon-size-medium);
    height: var(--em-icon-size-medium);
}

.headerBotBtnShop:hover svg {
    stroke: var(--em-color-accent);
}

.headerFormBtn {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--em-font);
    font-weight: 500;
    font-size: var(--em-font-size-sm);
    line-height: var(--em-line-height-small);
    background: var(--em-color-accent);
    color: var(--em-color-white);
    min-width: 125px;
    height: 50px;
    transition: var(--em-02-seconds);
}

.headerFormBtn:hover {
    background: var(--em-color-accent-hover);
}

.headerProfile {
    display: flex;
    align-items: center;
    font-family: var(--em-font);
    font-size: var(--em-font-size-sm);
    color: var(--em-color-extra-accent);
    background: var(--em-color-silver);
    height: var(--em-button-height);
    padding: var(--em-button-padding);
    border-radius: var(--em-border-radius);
    margin: 0 0 0 10px;
}

.headerProfile svg {
    margin: 0 10px 0 0;
    width: var(--em-icon-size-large);
    height: var(--em-icon-size-large);
    stroke: var(--em-color-accent);
}

.headerProfile p {
    max-width: 150px;
    overflow-x: hidden;
    text-overflow: ellipsis;
}

.headerProfile:hover {
    background: var(--em-color-lgray);
    color: var(--em-color-darkgray);
}

.headerExit {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--em-color-silver);
    height: var(--em-button-height);
    width: var(--em-button-height);
    border: none;
    border-radius: var(--em-border-radius);
    margin: 0 0 0 10px;
    cursor: pointer;
}

.headerExit svg {
    width: var(--em-icon-size-medium);
    height: var(--em-icon-size-medium);
    stroke: var(--em-color-darkgray);
}

.headerExit:hover svg {
    stroke: #d41218;
}

.headerExit:hover {
    background: var(--em-color-lgray);
}

.headerPhone {
    display: flex;
    align-items: center;
    font-family: var(--em-font);
    font-size: var(--em-font-size-sm);
    color: var(--em-color-extra-accent);
    background: var(--em-color-silver);
    height: var(--em-button-height);
    padding: var(--em-button-padding);
    border-radius: var(--em-border-radius);
    margin: 0 0 0 50px;
}

.headerPhone:hover {
    background: var(--em-color-lgray);
    color: var(--em-color-darkgray);
}

.headerPhone svg {
    margin: 0 10px 0 0;
    width: var(--em-icon-size-medium);
    height: var(--em-icon-size-medium);
    stroke: var(--em-color-accent);
}

.headerBtnForm {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--em-font);
    background: var(--em-color-accent);
    padding: var(--em-button-padding);
    color: var(--em-color-black);
    height: var(--em-button-height);
    padding: 0 15px;
    font-size: var(--em-font-size-sm);
    line-height: var(--em-line-height-medium);
    border-radius: var(--em-border-radius);
    cursor: pointer;
    margin: 0 0 0 10px;
}

.headerBtnForm:hover {
    background: var(--em-color-accent-hover);
}

/* Burger Menu */
.burgerMenu, .dropMenu {
    display: none;
}

.headerBotBurger {
    display: none;
    flex-direction: column;
    position: absolute;
    background: var(--em-color-white);
    width: auto;
    height: auto;
    top: 69px;
    padding: 10px;
    border-radius: 24px;
    border: 1px solid var(--em-color-silver);
}

.headerBotBurgerCatalog {
    display: none;
    flex-wrap: wrap;
    position: absolute;
    background: var(--em-color-white);
    width: var(--em-container-width);
    left: -1px;
    padding: 10px;
    top: 69px;
    border-radius: 24px;
    border: 1px solid var(--em-color-silver);
}

.headerBotBurger .headerBotBtn {
    font-weight: 500;
    justify-content: center;
    white-space: nowrap;
    padding: 0px 27px;
    height: var(--em-button-height);
}

.headerBotBurger .headerBotBtn:hover {
    background: var(--em-color-silver);
    border-radius: var(--em-border-radius);
}

.headerBotBurger.active, .headerBotBurgerCatalog.active {
    display: flex !important;
}

.headMenuCatalogArea {
    position: relative;
    display: flex;
    align-content: center;
    justify-content: center;
    width: 100%;
    padding-top: 100%;
}

.headMenuCatalog {
    display: flex;
    flex-direction: column;
    width: 20%;
    font-family: var(--em-font);
    border-radius: var(--em-border-radius);
}

.headMenuCatalog:hover {
    background: var(--em-color-silver);
}

.headMenuCatalog img {
    position: absolute;
    width: var(--em-catalog-image-width);
    top: 35px;
    transform: scaleX(-1);
}

.headMenuCatalog p {
    position: absolute;
    bottom: 15px;
    left: 20px;
    font-weight: 500;
    color: var(--em-color-extra-accent);
}

.headMenuCatalog:hover p {
    color: var(--em-color-accent);
}

/* Main */
main {
    width: 100%;
    padding: var(--em-main-padding-top) 0 var(--em-main-padding-bottom) 0;
}

.main {
    width: var(--em-main-width);
    margin: 0 auto;
}

.mainHead {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: var(--em-head-padding);
}

.mainHeadTree {
    display: flex;
    align-items: center;
    padding: var(--em-tree-padding);
    width: 100%;
    font-family: var(--em-font);
    flex-wrap: wrap;
    gap: 10px 0;
}

.mainHeadTree a,
.mainHeadTree p {
    font-size: var(--em-font-size-sm) !important;
}

.mainHeadTree p {
    color: var(--em-color-gray) !important;
    font-weight: 500 !important;
}

.mainHeadTree svg {
    width: var(--em-font-size-xs);
    margin: 0 5px;
    stroke: var(--em-color-gray);
}

.mainHead p {
    font-family: var(--em-font);
    font-weight: 600;
    font-size: var(--em-font-size-xl);
    line-height: 1;
    color: var(--em-color-extra-accent);
}

.mainHead a {
    font-family: var(--em-font);
    font-weight: 500;
    font-size: var(--em-font-size-lg);
    line-height: 1;
    white-space: nowrap;
    color: var(--em-color-accent);
}

.mainHead a:hover {
    color: var(--em-color-accent-hover);
}

/* Главный слайдер */
.sliderBlock {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: var(--em-slider-height-ratio);
    overflow: hidden;
}

.sliderArea {
    position: absolute;
    top: 10px;
    left: 0;
    width: 100%;
    height: calc(100% - 20px);
    padding: 0 10px;
    transition: all 0.6s ease;
    transform: translateX(200%);
    opacity: 0;
}

.sliderArea.left {
    transform: translateX(-100%);
    opacity: 0;
    z-index: 1;
    cursor: default;
}

.sliderArea.center {
    transform: translateX(0%);
    opacity: 1;
    z-index: 2;
}

.sliderArea.right {
    transform: translateX(100%);
    opacity: 0;
    z-index: 1;
    cursor: pointer !important;
}

.slider {
    font-family: var(--em-font);
    width: 100%;
    overflow: hidden;
    border-radius: var(--em-slider-border-radius);
}

.sliderArea img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: var(--em-slider-border-radius);
}

.sliderOriginal {
    display: block;
}

.sliderMobile {
    display: none;
}

/* Анимации слайдера */
.slide-left { animation: slideToLeft 0.6s ease forwards; }
.slide-center { animation: slideToCenter 0.6s ease forwards; }
.slide-right { animation: slideToRight 0.6s ease forwards; }
.slide-out-left { animation: slideOutLeft 0.6s ease forwards; }
.slide-out-right { animation: slideOutRight 0.6s ease forwards; }
.slide-in-right { animation: slideInRight 0.6s ease forwards; }
.slide-in-left { animation: slideInLeft 0.6s ease forwards; }

@keyframes slideToLeft {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(-100%); opacity: 0; }
}

@keyframes slideToCenter {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideToRight {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(100%); opacity: 0; }
}

@keyframes slideOutLeft {
    from { transform: translateX(-100%); opacity: 0; }
    to { transform: translateX(-200%); opacity: 0; }
}

@keyframes slideOutRight {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(200%); opacity: 0; }
}

@keyframes slideInRight {
    from { transform: translateX(200%); opacity: 0; }
    to { transform: translateX(100%); opacity: 0; }
}

@keyframes slideInLeft {
    from { transform: translateX(-200%); opacity: 0; }
    to { transform: translateX(-100%); opacity: 0; }
}

.slider-inactive {
    pointer-events: none;
    cursor: default;
}

/* Каталог */
/* Пагинация */
.pagination-info {
    margin: 0 0 20px 10px;
    color: var(--em-color-black);
    font-size: 14px;
}

.pagination {
    display: flex;
    margin: 40px 0;
    padding: 20px 0;
}

.pagination-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pagination-dots {
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.pagination-btn,
.pagination-page,
.pagination-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: 6px;
    text-decoration: none;
    color: var(--em-color-black);
    font-weight: 500;
    transition: all 0.2s ease;
}

.pagination-btn:hover:not(.disabled),
.pagination-page:hover:not(.active) {
    background: var(--em-color-black);
    color: var(--em-color-accent);
}

.pagination-page.active {
    display: flex !important;
    color: var(--em-color-accent);
}

.pagination-btn.disabled {
    display: none;
}

.pagination-pages {
    display: flex;
    gap: 4px;
}

.pagination-btn svg {
    width: 16px;
    height: 16px;
}

/* основные стили каталога */
.catalog {
    display: flex;
    flex-wrap: wrap;
    align-items: start;
}

.catalog .no-products {
    color: var(--em-color-black);
    padding: 0 10px;
}

.catalog .no-products a {
    color: var(--em-color-accent);
}

/* Блоки категорий каталога */
.catalogBlock {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 25%;
    padding: var(--em-catalog-block-padding);
    cursor: pointer;
    transition: var(--em-03-seconds);
}

.catalogBlock:hover {
    scale: 1.03;
    rotate: 1.5deg;
}

.catalogBlock img {
    position: absolute;
    top: 50px;
    height: var(--em-catalog-image-height);
    right: -20px;
    transform: scaleX(-1);
}

.catalogBlock p {
    position: absolute;
    font-family: var(--em-font);
    font-weight: 600;
    font-size: var(--em-font-size-lg);
    color: var(--em-color-extra-accent);
    padding: 35px 30px;
    bottom: 0;
    z-index: 1;
}

.catalogArea {
    position: relative;
    width: 100%;
    padding-bottom: var(--em-catalog-area-padding-bottom);
    background: var(--em-color-silver);
    border-radius: var(--em-slider-border-radius);
    overflow: hidden;
}

.catalogBlock:hover p {
    color: var(--em-color-accent);
}

.catalogBlock:hover .catalogArea {
    background: var(--em-color-lgray);
}

/* Описание каталога */
.catalogDescription {
    font-family: var(--em-font);
    color: var(--em-color-extra-accent);
    display: flex;
    flex-direction: column;
    padding: var(--em-catalog-block-padding);
}

.catalogDescription h1 {
    padding: 30px 0 40px 0;
    font-weight: 700;
}

.catalogDescription h2 {
    padding: 0 0 30px 0;
    font-weight: 700;
}

.catalogDescription p {
    padding: 0 0 30px 0;
}

/* Товары подкатегорий ПОКА ЧТО СТИЛИ ДЛЯ ПУСТОГО, НАДО ИЗМЕНИТЬ */
.empty-catalog {
    color: var(--em-color-bg);
    padding: 0 10px;
}

.empty-catalog h1 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
}

.empty-catalog p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.manager-contact h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

.phone-link {
    display: inline-block;
    color: var(--em-color-accent);
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: background 0.3s;
}


/* Список товаров */
.catalogList {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: var(--em-catalog-list-width);
    max-width: var(--em-catalog-list-width);
    flex: auto;
    padding: var(--em-catalog-block-padding);
}

.catalogListArea {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    width: 100%;
    background: var(--em-color-white);
    cursor: pointer;
    border: 1px solid var(--em-color-silver);
    border-radius: 24px;
    overflow: hidden;
    transition: var(--em-03-seconds);
}

.catalogListArea img {
    display: flex;
    width: 100%;
    height: var(--em-catalog-list-max-height);
    object-fit: cover;
    margin: 0 auto;

}

.catalogListArea:hover img {
    filter: brightness(80%);
}

.catalogListArea:hover {
    scale: 1.03;
    rotate: 1.5deg;
}

/* Действия с товаром */
.favorite-btn svg,
.cart-btn svg {
    width: var(--em-icon-size-small);
    height: var(--em-icon-size-small);
}

/* Информация о товаре */
.catalogListInfo {
    width: 100%;
    padding: 18px 20px;
}

.catalogListInfo p {
    font-family: var(--em-font);
    font-weight: 600;
    font-size: var(--em-font-size-lg);
    color: var(--em-color-darkgray);
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    transition: var(--em-02-seconds);
    text-overflow: ellipsis;
}

.catalogListInfo p:nth-child(1) {
    margin: 0 0 5px 0;
    font-weight: 500;
}

.catalogListInfo span {
    font-weight: 500;
    font-size: var(--em-font-size-base);
    text-decoration: line-through;
    color: var(--em-color-extra-accent);
}

.catalogListValue,
.catalogListChar {
    display: flex;
    flex-wrap: wrap;
    font-family: var(--em-font);
    width: 50%;
    padding: 0 0 20px 20px;
}

.catalogListChar {
    text-align: right;
    padding: 0 20px 20px 0;
    color: var(--em-color-footer);
}

.catalogListValue p,
.catalogListChar p {
    width: 100%;
}

.catalogListFooter {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px 20px 20px;
}

.catalogListPrice {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-family: var(--em-font);
    font-weight: 500;
    font-size: var(--em-font-size-base);
    color: #32CB41;
    width: 50%;
    order: 2;
}

.catalogListPrice svg {
    stroke: #32CB41;
    width: var(--em-font-size-xl);
    height: var(--em-font-size-xl);
    margin: 0 5px 0 0;
}

.catalogListBtn {
    order: 1;
    width: 50%;
    height: var(--em-button-height);
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--em-font);
    font-weight: 500;
    font-size: var(--em-font-size-base);
    border-radius: var(--em-border-radius);
    background: var(--em-color-accent);
    color: var(--em-color-white);
    transition: var(--em-02-seconds);
}

.catalogListArea:hover .catalogListInfo p:nth-child(2) {
    color: var(--em-color-accent);
}

.catalogListBtn:hover {
    background: var(--em-color-accent-hover);
}

/* Параметры каталога */
.catalogParams {
    display: flex;
    width: 100%;
}

.catalogParamsArea {
    flex: auto;
    width: 33%;
    padding: var(--em-catalog-block-padding);
}

.catalogParamsContent {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 60px;
    background: var(--em-color-silver);
    transition: var(--em-02-seconds);
}

.catalogParamsContent:hover {
    background: var(--em-color-lgray);
}

.catalogParamsContent:hover p {
    color: var(--em-color-accent);
}

.catalogParamsContent p {
    font-family: var(--em-font);
    font-weight: 600;
    font-size: var(--em-font-size-lg);
    color: var(--em-color-extra-accent);
    padding: 0 20px;
}

.catalogParamsArea:first-child .catalogParamsContent img {
    height: 60px;
}

.catalogParamsArea:nth-child(3) .catalogParamsContent img {
    height: 50px;
}

.catalogParamsContent img {
    height: 45px;
}

/* Статусы товаров */
.catalogStatusAvailable,
.catalogStatusToOrder,
.catalogStatusNotAvailable {
    display: flex;
    align-items: center;
    font-family: var(--em-font);
    font-weight: 500;
    font-size: var(--em-font-size-sm);
    margin: 0 0 15px 0;
}

.catalogStatusAvailable {
    color: rgb(11, 204, 27);
}

.catalogStatusToOrder {
    color: rgb(253, 152, 36);
}

.catalogStatusNotAvailable {
    color: rgb(204, 11, 11);
}

.catalogStatusAvailable svg,
.catalogStatusToOrder svg,
.catalogStatusNotAvailable svg {
    width: var(--em-icon-size-small);
    margin: 0 5px 0 0;
}

/* Контейнер каталога */
.catalogContainer {
    display: flex;
}

.catalogInfo {
    width: 20%;
    padding: var(--em-catalog-block-padding);
}

.catalogInfoBlock {
    padding: var(--em-catalog-info-padding);
    border-radius: 24px;
    border: 1px solid var(--em-color-lgray);
}

.catalogInfoValue {
    display: flex;
    justify-content: space-between;
    font-family: var(--em-font);
    font-size: var(--em-font-size-lg);
    font-weight: 600;
    margin: 0 0 10px 0;
}

.catalogInfoValue p:nth-child(2) {
    color: var(--em-color-gray);
    text-decoration: line-through;
}

.catalogInfoBtn {
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
    font-family: var(--em-font);
    font-size: var(--em-font-size-base);
    height: var(--em-button-height);
    width: 100%;
    border: 1px solid var(--em-color-lgray);
    border-radius: var(--em-border-radius);
    background: var(--em-color-accent);
    border: 1px solid var(--em-color-accent);
    color: var(--em-color-white);
    cursor: pointer;
    transition: var(--em-02-seconds);
}

.catalogInfoBtn:hover {
    background: var(--em-color-accent-hover);
}

.catalogContent {
    display: flex;
    flex-wrap: wrap;
    flex: auto;
    padding: var(--em-catalog-block-padding);
    width: 60%;
}

.catalogContentArea {
    display: flex;
    width: 100%;
    padding: var(--em-catalog-content-padding);
    border-radius: 24px;
    border: 1px solid var(--em-color-lgray);
}

.catalogContentImages {
    width: 60%;
    display: flex;
    flex-wrap: wrap;
}

.catalogContentImage:first-child {
    width: 100%;
    padding: var(--em-catalog-block-padding);
}

.catalogContentImage {
    width: 20%;
    padding: var(--em-catalog-block-padding);
}

.catalogContentImageArea {
    position: relative;
    width: 100%;
    padding-top: 70%;
    border-radius: var(--em-border-radius);
    overflow: hidden;
}

.catalogContentImageArea img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
}

.catalogContentInformation {
    position: relative;
    width: 50%;
    padding: var(--em-catalog-block-padding);
}

.catalogContentArticle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--em-font);
    color: var(--em-color-gray);
    font-size: var(--em-font-size-sm);
    margin: 0 0 15px 0;
}

.vin {
    font-size: var(--em-font-size-base) !important;
}

.catalogContentName {
    font-family: var(--em-font);
    font-weight: 700;
    font-size: var(--em-font-size-xl);
    color: var(--em-color-extra-accent);
    margin: 0 0 10px 0;
    width: 100%;
}

.catalogContentSpace {
    width: 100%;
    height: 1px;
    background: var(--em-color-lgray);
}

.catalogContentButtons {
    display: flex;
    width: 100%;
    gap: 10px;
}

.catalogContentButton {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 40%;
    flex: auto;
    height: var(--em-catalog-button-height);
    border-radius: 20px;
    background: var(--em-color-silver);
    cursor: pointer;
    transition: var(--em-02-seconds);
}

.catalogContentButton.active p {
    color: var(--em-color-accent);
}

.catalogContentButton p {
    font-size: var(--em-font-size-base);
    font-family: var(--em-font);
    font-weight: 500;
    color: var(--em-color-extra-accent);
    margin: 0 0 0 10px;
    transition: var(--em-02-seconds);
}

.catalogContentButton:hover p {
    color: var(--em-color-accent);
}

.catalogContentButton:hover {
    background: var(--em-color-lgray);
}

.catalogContentButton svg {
    stroke: var(--em-color-gray);
    transition: var(--em-02-seconds);
}

.catalogContentButton:hover svg {
    stroke: var(--em-color-accent);
}

.catalogContentTech {
    display: flex;
    gap: 10px;
    padding: 15px 0;
    font-family: var(--em-font);
    color: var(--em-color-gray);
    flex-direction: column;
}

.catalogContentTech p {
    font-weight: 400;
    color: var(--em-color-gray);
    font-size: var(--em-font-size-base);
    margin: 0 0 3px 0;
}

.catalogContentTech span {
    font-weight: 600;
    color: var(--em-color-darkgray);
}

.catalogContentTech p:nth-child(1) {
    font-size: var(--em-font-size-lg);
    font-weight: 600;
    color: var(--em-color-extra-accent);
    margin: 0 0 10px 0;
}

.catalogTechBlock {
    width: 100%;
    font-family: var(--em-font);
    padding: 40px 10px 0 10px;
}

.catalogTechHead {
    font-weight: 600;
    font-size: var(--em-font-size-2xl);
    line-height: 1;
    width: 100%;
    color: var(--em-color-extra-accent);
    margin: 0 0 35px 0;
}

.catalogTechParams {
    gap: 4px;
    display: flex;
    flex-wrap: wrap;
}

.catalogTechParams p {
    font-size: var(--em-font-size-base);
    width: 30%;
    font-weight: 500;
    margin: 0 0 5px 0;
    color: var(--em-color-darkgray);
}

.catalogTechParams span {
    color: var(--em-color-gray);
}

.catalogTechDescription {
    font-family: var(--em-font);
    font-weight: 500;
    color: var(--em-color-darkgray);
}

.catalogTechDescription p {
    font-weight: 400;
    color: var(--em-color-black);
    font-size: var(--em-font-size-base);
}

.catalogContactInfo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 0 35px 0;
}

.catalogContactInfo p {
    font-size: var(--em-font-size-base);
    display: flex;
    align-items: center;
}

.catalogContactInfo svg {
    stroke: var(--em-color-accent);
    height: 28px;
    margin: 0 10px 0 0;
}

.catalogTechBlock iframe {
    border-radius: 24px;
}

/* Страница товара - Галерея изображений */
.main-image-container {
    width: 100%;
}

.main-image {
    width: 100%;
    margin-bottom: 20px;
    cursor: pointer;
}

.main-image img {
    width: 100%;
    /*height: auto;*/
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.main-image img:hover {
    transform: scale(1.02);
}

.thumbnails-container {
    display: flex;
    gap: 3%;
    justify-content: space-between;
    width: 100%;
}

.thumbnail {
    width: 30%;
    max-height: 145px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    border-radius: 6px;
    overflow: hidden;
}

.thumbnail:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

.thumbnail.active {
    border-color: #007bff;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    border-radius: 4px;
}

/* Модальное окно изображений */
.image-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.modal-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    z-index: 1001;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
}

.image-counter {
    color: white;
    font-size: var(--em-font-size-base);
    font-weight: 500;
}

.close-modal {
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.close-modal:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.modal-body {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 80px 20px;
}

.image-container {
    max-width: 90%;
    max-height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

#modalImage {
    max-height: 95vh;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
}

.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 1001;
}

.nav-button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.prev-button {
    left: 20px;
}

.next-button {
    right: 20px;
}

.nav-button svg {
    width: var(--em-font-size-xl);
    height: var(--em-font-size-xl);
}

.fade-in {
    animation: fadeIn 0.3s ease;
}

.carInfo {
    width: 100%;
    display: flex;
}

/* Parts */
.parts {
    display: flex;
    padding: 40px 0 0 0;
}

.partsInfo {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    width: 66%;
    flex: auto;
    padding: var(--em-catalog-block-padding);
    cursor: default;
}

.partsInfo p:first-child {
    font-weight: 600;
    font-size: var(--em-font-size-2xl);
    line-height: 1;
    margin: 0 0 50px 0;
}

.partsInfo p:last-child {
    margin: 0;
}

.partsInfo p {
    font-family: var(--em-font);
    font-weight: 400;
    font-size: var(--em-font-size-base);
    line-height: 20px;
    margin: 0 0 20px 0;
    width: 100%;
    color: var(--em-color-extra-accent);
}

.partsInfo ul {
    font-family: var(--em-font);
    font-weight: 400;
    font-size: var(--em-font-size-base);
    line-height: 22px;
    color: var(--em-color-extra-accent);
    padding: 0 0 0 25px;
    margin: 0 0 20px 0;
}

.partsInfo a {
    color: var(--em-color-accent);
}

.partsBlock {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 33%;
    flex: auto;
    padding: var(--em-catalog-block-padding);
}

.partsArea img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.partsArea {
    position: relative;
    width: 100%;
    padding-bottom: 150%;
    background: var(--em-color-white);
    overflow: hidden;
    border-radius: 24px;
}

.partsBanner {
    width: 100%;
    padding: var(--em-catalog-block-padding);
}

.partsBanner img {
    display: flex;
    width: 100%;
}

.partsDescription {
    font-family: var(--em-font);
    font-size: var(--em-font-size-lg);
    padding: 30px 10px;
}

.partsDescription p {
    margin: 0 0 30px 0;
}

.partsDescription p:last-child {
    margin: 0;
}

.partsDescription ul {
    padding: 0 0 0 25px;
    margin: 0 0 30px 0;
    line-height: 26px;
}

.partsDescription b {
    font-weight: 600;
}

/* Sales */
.sales {
    display: flex;
}

.salesBlock {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 50%;
    padding: var(--em-catalog-block-padding);
    cursor: pointer;
    transition: var(--em-03-seconds);
}

.salesImage {
    position: absolute;
    width: 100%;
    height: 100%;
    padding-bottom: 62px;
}

.salesImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}

.salesBlock p {
    position: absolute;
    font-family: var(--em-font);
    font-weight: 600;
    font-size: var(--em-font-size-lg);
    color: var(--em-color-extra-accent);
    padding: 30px 0px;
    width: 90%;
    white-space: nowrap;
    overflow: hidden;
    bottom: 0;
    z-index: 1;
}

.salesUnvisible {
    position: absolute;
    bottom: 22px;
    right: 40px;
    height: 40px;
    width: 100px;
    background: linear-gradient(270deg, rgb(19 19 19) 20%, rgba(255, 255, 255, 0) 100%);
    z-index: 2;
}

.salesBlock svg {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 26px;
    padding: 18px 0px;
    stroke: var(--em-color-extra-accent);
}

.salesArea {
    position: relative;
    width: 100%;
    padding-bottom: 75%;
    background: var(--em-color-white);
}

.salesBlock:hover p {
    color: var(--em-color-accent);
}

.salesBlock:hover svg {
    stroke: var(--em-color-accent);
}

.salesBlock:hover {
    scale: 1.03;
    rotate: 1.5deg;
}

/* News */
.news {
    display: flex;
    flex-wrap: wrap;
}

.newsBlock {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 33.3333%;
    padding: var(--em-catalog-block-padding);
    cursor: pointer;
    transition: var(--em-03-seconds);
}

.newsImage {
    position: absolute;
    width: 100%;
    height: 100%;
    padding-bottom: 96px;
    overflow: hidden;
}

.newsImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.newsBlock p {
    position: absolute;
    font-family: var(--em-font);
    font-weight: 600;
    font-size: var(--em-font-size-lg);
    color: var(--em-color-extra-accent);
    padding: 18px 0px;
    width: 80%;
    bottom: 48px;
    left: 40px;
    white-space: nowrap;
    overflow: hidden;
    z-index: 1;
}

.newsDesc {
    position: absolute;
    bottom: 35px;
    left: 40px;
    width: 80%;
    z-index: 1;
    white-space: nowrap;
    overflow: hidden;
    font-family: var(--em-font);
    color: var(--em-color-darkgray);
}

.newsUnvisible {
    position: absolute;
    bottom: 15px;
    right: 40px;
    height: 90px;
    width: 100px;
    background: linear-gradient(270deg, rgb(19 19 19) 20%, rgba(255, 255, 255, 0) 100%);
    z-index: 2;
}

.newsBlock svg {
    position: absolute;
    bottom: 35px;
    right: 20px;
    width: 26px;
    padding: 18px 0px;
    z-index: 3;
    stroke: var(--em-color-extra-accent);
}

.newsArea {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    border-radius: 24px;
    border: 1px solid var(--em-color-silver);
    overflow: hidden;
}

.newsBlock:hover p {
    color: var(--em-color-accent);
}

.newsBlock:hover svg {
    stroke: var(--em-color-accent);
}

.newsBlock:hover {
    scale: 1.03;
    rotate: 1.5deg;
}

.newsPagePreview {
    width: 100%;
    height: 500px;
    padding: 10px 10px 25px 10px;
}

.newsPagePreview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}

.newsPageDescription {
    font-family: var(--em-font);
    color: var(--em-color-extra-accent);
    display: flex;
    flex-direction: column;
    padding: 10px;
}

.newsPageDescription h2 {
    padding: 0 0 30px 0;
    font-weight: 600;
}

.newsPageDescription ul {
    padding: 0 0 0 25px;
    line-height: 28px;
    margin: 0 0 30px 0;
}

.newsPageDescription p {
    padding: 0 0 30px 0;
}

.newsPageDescription img {
    width: 100%;
    padding: 0 0 30px 0;
}

/* Form */
.form {
    display: flex;
    flex-wrap: wrap;
}

.formInput {
    padding: var(--em-catalog-block-padding);
    width: 33%;
    flex: auto;
}

.formInput input {
    font-family: var(--em-font);
    font-size: var(--em-font-size-base);
    width: 100%;
    height: 50px;
    border: 1px solid var(--em-color-lgray);
    border-radius: 20px;
    outline: none;
    padding: 0 15px;
}

.formTextArea {
    width: 100%;
    padding: var(--em-catalog-block-padding);
}

.formInput input, .formTextArea textarea {
    background-color: #131313;
    color: var(--em-color-black);
}

.formTextArea textarea {
    font-family: var(--em-font);
    font-size: var(--em-font-size-base);
    width: 100%;
    height: 200px;
    border: 1px solid var(--em-color-lgray);
    border-radius: 20px;
    outline: none;
    padding: 15px 15px;
    resize: none;
}

.formButton {
    padding: var(--em-catalog-block-padding);
    width: 100%;
}

.formButton button {
    font-family: var(--em-font);
    font-size: var(--em-font-size-base);
    width: 100%;
    height: 50px;
    border: none;
    cursor: pointer;
    border-radius: 20px;
    background: var(--em-color-accent);
    color: var(--em-color-black);
    transition: var(--em-02-seconds);
}

.formButton button:hover {
    background: var(--em-color-accent-hover);
}

.form p {
    font-size: var(--em-font-size-sm);
    font-family: var(--em-font);
    padding: var(--em-catalog-block-padding);
}

.form a {
    font-size: var(--em-font-size-sm);
    color: var(--em-color-accent);
}

.form a:hover {
    color: var(--em-color-accent-hover);
}

/* Footer */
.footer {
    width: 100%;
    border-top: 1px solid var(--em-color-lgray);
}

.footerArea {
    display: flex;
    flex-wrap: wrap;
    width: var(--em-footer-width);
    margin: 0 auto;
    padding: 50px 0;
}

.footerBlock {
    display: flex;
    flex-direction: column;
    width: 25%;
    margin: 0 0 45px 0;
}

.footerBlock p {
    font-family: var(--em-font);
    font-weight: 600;
    font-size: var(--em-font-size-lg);
    color: var(--em-color-extra-accent);
    margin: 0 0 8px 0;
}

.footerBlock:nth-child(1) a {
    font-weight: 600;
    font-size: var(--em-font-size-lg);
    color: var(--em-color-extra-accent);
}

.footerBlock a {
    display: flex;
    align-items: center;
    font-family: var(--em-font);
    font-weight: 400;
    font-size: var(--em-font-size-sm);
    color: var(--em-color-gray);
    margin: 0 0 6px 0;
}

.footerBlock svg {
    width: 20px;
    height: 20px;
    stroke: var(--em-color-accent);
    margin: 0 8px 0 0;
}

.footerBlock a:hover {
    color: var(--em-color-accent);
}

.footerLine {
    background: var(--em-color-lgray);
    width: 100%;
    height: 1px;
}

.footerCopyright {
    padding: 50px 0 0 0;
    width: 50%;
    font-family: var(--em-font);
    font-size: var(--em-font-size-sm);
    color: var(--em-color-gray);
}

.footerCopyright a {
    margin: 0 0 20px 0;
    color: var(--em-color-gray);
}

.footerCopyright a:hover {
    color: var(--em-color-accent);
}

.footerCopyright p:nth-child(1) {
    margin: 0 0 10px 0;
    width: 100%;
}

.footerCopyright p:nth-child(3) {
    margin: 20px 0 0 0;
}

.footerInfo {
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
    padding: 50px 0 0 0;
    width: 50%;
    font-family: var(--em-font);
    font-size: var(--em-font-size-sm);
    color: var(--em-color-gray);
}

.footerInfo img {
    width: 180px;
}

.footerSocialLinks {
    display: flex;
    align-items: center;
    width: 100%;
    height: 60px;
}

.footerSocialLink {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--em-color-silver);
    border-radius: 22px;
    margin: 0 10px 0 0 !important;
}

.footerSocialLink svg {
    fill: var(--em-color-darkgray) !important;
    stroke: none;
    margin: 0 !important;
}

.footerSocialLink:hover {
    background: var(--em-color-lgray);
}

.footerSocialLink .svg_zen_one {
    fill: var(--em-color-silver);
}

.footerSocialLink:hover .svg_zen_one {
    fill: var(--em-color-lgray);
}

/* FAQ */
.faq {
    display: flex;
    flex-direction: column;
    padding: var(--em-catalog-block-padding);
}

.faqHead {
    font-family: var(--em-font);
    font-size: 20px;
    font-weight: 600;
    color: var(--em-color-extra-accent);
    margin: 0 0 20px 0;
}

.question {
    width: 100%;
    font-family: var(--em-font);
    font-size: var(--em-font-size-lg);
    font-weight: 600;
    color: var(--em-color-extra-accent);
    background: var(--em-color-lgray);
    padding: 15px 20px;
    margin: 0 0 25px 0;
}

.answer {
    width: 100%;
    font-family: var(--em-font);
    font-size: var(--em-font-size-base);
    font-weight: 500;
    color: var(--em-color-extra-accent);
    padding: 0 20px;
    margin: 0 0 25px 0;
}

.answer a {
    color: var(--em-color-accent);
}

.faq ul {
    padding: 0 45px;
    margin: 0 0 25px 0;
    line-height: 26px;
}

/* Contacts */
.contacts {
    display: flex;
    flex-wrap: wrap;
}

.contactsBlock {
    display: flex;
    flex-direction: column;
    font-size: 20px;
    font-family: var(--em-font);
    width: 50%;
    padding: var(--em-catalog-block-padding);
}

.contactsMap {
    font-family: var(--em-font);
    width: 50%;
    padding: var(--em-catalog-block-padding);
}

.contactsMap iframe {
    border-radius: 24px;
    overflow: hidden;
}

.contactsStuff {
    width: 100%;
    padding: var(--em-catalog-block-padding);
}

.contactsH1 {
    font-size: var(--em-font-size-xl) !important;
    font-weight: 600;
    color: var(--em-color-accent);
}

.contactsH2 {
    font-size: var(--em-font-size-lg) !important;
    color: var(--em-color-gray) !important;
}

.contactsBlock p {
    margin: 8px 0;
    font-size: 20px;
    padding: 0 20px 0 0;
    color: var(--em-color-extra-accent);
    width: 100%;
}

.contactsPhone {
    color: var(--em-color-accent);
    font-size: 28px;
    font-weight: 600;
    margin: 8px 0;
}

.contactsSchedule {
    font-size: var(--em-font-size-lg);
}

.contactsEmail {
    color: var(--em-color-accent);
    padding: 0 0 20px;
    margin: 8px 0;
}

.contactsSocialLinks {
    display: flex;
    align-items: center;
    width: 100%;
    height: 50px;
}

.contactsSocialLink {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--em-color-silver);
    margin: 0 10px 0 0 !important;
    border-radius: 30px;
}

.contactsSocialLink svg {
    fill: var(--em-color-black) !important;
    margin: 0 !important;
}

.contactsSocialLink:hover {
    background: var(--em-color-lgray);
}

.contactsSocialLink .svg_zen_one {
    fill: var(--em-color-silver);
}

.contactsSocialLink:hover .svg_zen_one {
    fill: var(--em-color-lgray);
}

.contactsStuffHeader {
    display: flex;
    width: 100%;
    font-family: var(--em-font);
    font-size: var(--em-font-size-lg);
    font-weight: 600;
    color: var(--em-color-extra-accent);
    background: var(--em-color-lgray);
    padding: 15px 0px;
}

.contactsStuffHeader p {
    width: 50%;
    padding: 0 20px;
}

.contactsStuffFace {
    display: flex;
    width: 100%;
    font-family: var(--em-font);
    font-size: var(--em-font-size-base);
    color: var(--em-color-extra-accent);
    padding: 15px 0px;
    border-bottom: 1px solid var(--em-color-lgray);
}

.contactsStuffFace p {
    width: 50%;
    padding: 0 20px;
}

/* Vacancy */
.vacancy {
    width: 100%;
    padding: var(--em-catalog-block-padding);
}

.vacancyContainer {
    padding: 30px 20px;
    background: var(--em-color-silver);
}

.vacancyIntro {
    display: flex;
    flex-wrap: wrap;
    font-family: var(--em-font);
    color: var(--em-color-gray);
}

.vacancyIntro p {
    width: 50%;
}

.vacancyIntro p:first-child {
    color: var(--em-color-extra-accent);
    font-weight: 600;
    font-size: 20px;
    padding: 0 0 5px 0;
}

.vacancyIntro p:nth-child(2) {
    color: var(--em-color-accent);
    font-weight: 600;
    font-size: 20px;
    padding: 0 0 5px 0;
    text-align: right;
}

.vacancyDescription {
    height: 0;
    width: 100%;
    padding: 0;
    overflow: hidden;
    transition: var(--em-03-seconds);
}

.vacancyDescription.active {
    padding: 30px 0 0 0;
    height: auto;
}

.vacancyDescription p {
    font-size: var(--em-font-size-base) !important;
    color: var(--em-color-extra-accent) !important;
    margin: 0 0 20px 0;
}

.vacancyDescription p:last-child {
    margin: 0;
}

.vacancyDescription b {
    font-weight: 600;
}

.vacancyDescription ul {
    line-height: 26px;
    margin: 0 0 20px 0;
    padding: 0 0 0 25px;
    color: var(--em-color-extra-accent) !important;
}

/* Modal */
.modal {
    display: none;
    align-items: center;
    justify-content: center;
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .7);
    z-index: 799;
    top: 0;
}

.modal.active {
    display: flex;
}

.modalBackClose {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 800;
    cursor: pointer;
}

.modalContainer {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 30px;
    width: var(--em-modal-width);
    background: var(--em-color-white);
    z-index: 801;
}

.modalContainer h2 {
    font-family: var(--em-font);
    font-size: var(--em-font-size-xl);
    color: var(--em-color-extra-accent);
    margin: 0 0 25px 0;
}

.modalContainer a {
    color: var(--em-color-accent);
}

.modalContainer a:hover {
    text-decoration: underline;
}

.modalContainer p {
    font-family: var(--em-font);
    font-size: var(--em-font-size-base);
    color: var(--em-color-extra-accent);
    margin: 0 0 10px 0;
}

.modalContainer input {
    font-family: var(--em-font);
    font-size: var(--em-font-size-base);
    width: 100%;
    height: 50px;
    border: 1px solid var(--em-color-lgray);
    outline: none;
    padding: 0 15px;
    margin: 0 0 10px 0;
}

.modalContainer button {
    font-family: var(--em-font);
    font-size: var(--em-font-size-base);
    width: 100%;
    height: 50px;
    border: none;
    cursor: pointer;
    background: var(--em-color-accent);
    color: var(--em-color-white);
    transition: var(--em-02-seconds);
}

.modalClose {
    position: absolute;
    right: 30px;
    cursor: pointer;
}

.modalClose svg {
    fill: var(--em-color-gray);
}

.modalClose svg:hover {
    fill: var(--em-color-accent);
}

/* Page Buttons */
.pageButtonContainer {
    padding: var(--em-catalog-block-padding);
}

.pageButtonArea {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--em-color-lgray);
    height: 90px;
    padding: 20px;
}

.pageButtonArea p {
    font-family: var(--em-font);
    font-size: var(--em-font-size-base);
    padding: 0 10px;
}

.pageButtonArea span {
    font-size: var(--em-font-size-lg);
    font-weight: 600;
    color: var(--em-color-accent);
}

.pageButton {
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--em-font);
    font-weight: 500;
    font-size: var(--em-font-size-base);
    padding: 0 30px;
    background: var(--em-color-accent);
    color: var(--em-color-white);
    transition: var(--em-02-seconds);
    cursor: pointer;
}

.pageButton:hover {
    background: var(--em-color-accent-hover);
}

/* Auth */
.authBlock {
    width: var(--em-auth-width);
    margin: 150px auto;
    padding: 30px;
    border: 1px solid var(--em-color-lgray);
    border-radius: 24px;
}

.authBlock.success {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.authBlock.success svg {
    width: 80px;
    stroke: #32CB41;
}

.authBlock.success p {
    font-family: var(--em-font);
    font-weight: 500;
    text-align: center;
    padding: 20px 0 10px 0;
}

.authBlock.error {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.authBlock.error svg {
    width: 80px;
    stroke: #FF7455;
}

.authBlock.error p {
    font-family: var(--em-font);
    font-weight: 500;
    text-align: center;
    padding: 20px 0 10px 0;
}

.authHeader {
    font-family: var(--em-font);
    font-size: var(--em-font-size-xl);
    font-weight: 600;
    margin: 0 0 30px 0;
    color: var(--em-color-extra-accent);
}

.authForm {
    display: flex;
    flex-direction: column;
    font-family: var(--em-font);
}

.authPolicy {
    font-size: var(--em-font-size-sm);
    color: var(--em-color-black);
}

.authForgot {
    font-size: var(--em-font-size-sm);
}

.authForgot:hover {
    color: var(--em-color-accent-hover);
}

.authForm a {
    color: var(--em-color-accent);
    margin: 5px 0;
}

.authInput {
    position: relative;
}

.authLabel {
    position: absolute;
    font-size: var(--em-font-size-xs);
    background: var(--em-color-white);
    padding: 0 5px;
    top: -8px;
    left: 10px;
    border-radius: 5px;
    color: var(--em-color-black);
}

.authInput input {
    font-family: var(--em-font);
    height: var(--em-button-height);
    width: 100%;
    border: 1px solid var(--em-color-lgray);
    border-radius: var(--em-border-radius);
    padding: 0 15px;
    margin: 0 0 10px 0;
    outline: none;
    background-color: #131313;
    color: var(--em-color-black);
}

.authForm button {
    font-family: var(--em-font);
    font-size: var(--em-font-size-sm);
    height: var(--em-button-height);
    border-radius: var(--em-border-radius);
    background: var(--em-color-accent);
    border: 1px solid var(--em-color-accent);
    color: var(--em-color-extra-accent);
    margin: 10px 0 5px;
    cursor: pointer;
    transition: var(--em-02-seconds);
}

.authForm button:hover {
    background: var(--em-color-accent-hover);
    border: 1px solid var(--em-color-accent-hover);
}

.authNonProfile {
    display: flex;
    align-items: center;
    justify-content: center;
    height: var(--em-button-height);
    font-size: var(--em-font-size-sm);
    border-radius: var(--em-border-radius);
    border: 1px solid var(--em-color-accent);
    color: var(--em-color-darkgray) !important;
    margin: 5px 0;
    transition: var(--em-02-seconds);
}

.authNonProfile:hover {
    background: var(--em-color-accent);
    color: var(--em-color-extra-accent) !important;
}

/* Service */
.service {
    display: flex;
    flex-wrap: wrap;
}

.serviceTypeBtn {
    display: flex;
    width: 25%;
    padding: var(--em-catalog-block-padding);
}

.serviceTypeContent {
    width: 100%;
    font-family: var(--em-font);
    font-weight: 600;
    font-size: var(--em-font-size-lg);
    color: var(--em-color-extra-accent);
    padding: 20px 30px;
    border: 1px solid var(--em-color-silver);
    border-radius: 24px;
    transition: var(--em-03-seconds);
}

.serviceTypeContent:hover {
    scale: 1.03;
    rotate: 1.5deg;
    color: var(--em-color-accent);
}

/* Profile */
.profile {
    display: flex;
}

.profileBlock {
    padding: var(--em-catalog-block-padding);
    width: 100%;
}

.profileArea {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
    padding-top: 20%;
    background: var(--em-color-silver);
    border-radius: 24px;
    transition: var(--em-03-seconds);
}

.profileArea:hover {
    background: var(--em-color-lgray);
    scale: 1.03;
    rotate: 1.5deg;
}

.profileAreaContent {
    top: 0;
    height: 100%;
    position: absolute;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
}

.profileAreaContent svg {
    stroke: var(--em-color-darkgray);
    width: 60px;
    height: 60px;
    margin: 0 0 10px 0;
}

.profileAreaContent p {
    font-family: var(--em-font);
    font-weight: 500;
    text-align: center;
    width: 100%;
}

/* VK */
.vkPostBlock {
    width: 33.3333%;
    padding: var(--em-catalog-block-padding);
}

.vkPostArea {
    border-radius: 24px;
    border: 1px solid var(--em-color-silver);
    transition: var(--em-03-seconds);
}

.vkPostArea:hover {
    scale: 1.03;
    rotate: 1.5deg;
}

.vkPostArea:hover .vkPostInfo {
    color: var(--em-color-accent);
}

.vkPostText {
    font-family: var(--em-font);
    color: var(--em-color-darkgray);
    overflow: hidden;
    height: 98px;
    margin: 0 0 30px 0;
    padding: 0 30px;
}

.vkPostImage {
    position: relative;
    width: 100%;
    padding-top: 100%;
    border-radius: 24px 24px 0 0;
    overflow: hidden;
}

.vkPostArea img {
    top: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vkPostInfo {
    display: flex;
    font-size: var(--em-font-size-base);
    color: var(--em-color-darkgray);
    height: 40px;
    margin: 20px 0;
    padding: 0 30px;
}

.vkPostInfo p {
    padding: 0 0 0 10px;
    font-family: var(--em-font);
    font-weight: 600;
}

.vkPostInfo img {
    position: relative;
    min-width: 40px;
    max-width: 40px;
    height: 40px;
    border-radius: 100%;
    overflow: hidden;
}

/* Информация */
.policy {
    padding: 0 10px;
    font-family: var(--em-font);
    color: var(--em-color-black);
}

/* Избранное */
.empty-favorites {
    font-family: var(--em-font);
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.empty-favorites .btn {
    margin-top: 10px;
    color: var(--em-color-accent);
    width: max-content;
    font-weight: 600;
}

.empty-favorites .btn:hover {
    color: var(--em-color-accent-hover);
}

/* О компании */
.aboutPageDescription {
    position: relative;
    font-family: var(--em-font);
    color: var(--em-color-black);
    font-size: var(--em-font-size-lg);
    display: flex;
    flex-direction: column;
    padding: var(--em-catalog-block-padding);
}

.aboutPageBackground {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url("../assets/extremall.png");
    background-repeat: no-repeat;
    background-size: contain;
    opacity: .05;
}

/* Сертификаты */
.mainCertificates {
    width: 100%;
    padding: var(--em-catalog-block-padding);
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 85px;
}

.certificate {
    width: 28%;
    cursor: pointer;
}

.certificateImage {
    width: 100%;
    border-radius: 10px 10px 0 0;
}

.certificateName {
    width: 100%;
    font-size: 15px;
    font-family: var(--em-font);
    text-align: center;
    border: 1px solid var(--em-color-silver);
    padding: 10px;
    margin-top: -5px;
    border-radius: 0 0 10px 10px;
}

.mainCertificateInfo {
    display: flex;
    gap: 20px;
    font-family: var(--em-font);
}

.mainCertificateInfo img {
    width: 50%;
}

.certificateContent {
    font-size: var(--em-font-size-sm);
}

.certificateDescriptions p {
    margin-top: 10px;
}

/* Brands */
.brands {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 3vw;
}

.brand {
    border-radius: 10px;
    border: 1px solid var(--em-color-silver);
    width: 30%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: var(--em-color-extra-accent);
}

.brand img {
    max-height: 100%;
    max-width: 100%;
}

.brandCard {
    border-radius: 12px;
    padding: 10px;
    font-family: var(--em-font);
}

.brandMain {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
}

.brandText h1 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.brandText {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--em-color-black);
}

.brandVisual {
    display: flex;
    align-items: flex-start;
}

.logoFrame {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.logoFrame img {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

/* Сервис и услуги */
.block-main {
    width: 100%;
    position: relative;
    height: 300px;
    margin-bottom: 30px;
}

.block {
    position: absolute;
    width: 100%;
    height: 200px;
}

.service-block {
    width: 100%;
}

.service-block:hover p {
    color: var(--em-color-accent);
}

.service-left {
    top: 0;
    left: 0;
}

.service-right {
    bottom: 0;
    right: 0;
    z-index: 2;
}

.service-inner {
    position: absolute;
    width: 50%;
    height: 100%;
    border-radius: 30px 0 30px 0;
    z-index: 3;
    background-size: cover;
    overflow: hidden;
}

.inner-left {
    top: 0;
    left: 0;
    background-position: left center;
}

.inner-right {
    bottom: 0;
    right: 0;
    background-position: right center !important;
}

.inner-left img {
    position: absolute;
    bottom: 20px;
    left: 20px;
    height: 90%;
    width: auto;
    object-fit: contain;
}

.inner-right img {
    position: absolute;
    bottom: 20px;
    right: 20px;
    height: 80%;
    width: auto;
    object-fit: contain;
}

.service-decoration {
    position: absolute;
    width: 100%;
    height: 80%;
    z-index: 2;
}

.decoration-top {
    top: 0;
    left: 0;
    border-radius: 30px 30px 0 0;
}

.decoration-bottom {
    bottom: 0;
    left: 0;
    border-radius: 0 0 30px 30px;
}

.service-text {
    position: absolute;
    z-index: 4;
    margin: 0;
    font-weight: bold;
    font-size: var(--em-font-size-lg);
}

.text-left {
    top: 40px;
    right: 40px;
    color: white;
}

.text-right {
    bottom: 40px;
    left: 40px;
    color: white;
}

.servis .service-inner {
    background-color: #313131;
}

.servis .service-decoration {
    background: #313131;
}

.kreditovanie p, .komissia p {
    color: var(--em-color-extra-accent);
}

.kreditovanie .service-inner {
    background-color: #818181;
}

.kreditovanie .service-decoration {
    background-color: #818181;
}

.komissia .service-inner {
    background-color: #313131;
}

.komissia .service-decoration {
    background-color: #313131;
}

.sesonnoe .service-inner {
    background-color: #818181;
}

.sesonnoe .service-decoration {
    background: #818181;
}

.serviceDescription {
    line-height: 1.6em;
    padding: 0 10px;
}

.serviceTitle {
    margin-bottom: 1.5em;
    font-size: 2em;
    font-weight: 600;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 0.5em;
    color: var(--em-color-extra-accent);
}

.serviceInfoBlock {
    background: #252525;
    padding: 1em;
    border: 1px solid #e0e0e0;
    margin: 2em 0;
    border-radius: 4px;
    color: var(--em-color-black);
}

.serviceInfoBlock p {
    margin-left: 20px;
    margin-top: 0.5em;
}

.serviceInfoBlock h3 {
    font-size: 1.4em;
    font-weight: 600;
    margin-bottom: 1em;
    color: #333;
}

.priceEmphasis {
    font-size: 1.1em;
    font-weight: 600;
}

.serviceItem {
    margin-bottom: 2em;
    padding-bottom: 1.5em;
    border-bottom: 1px solid #f0f0f0;
    color: var(--em-color-black);
}

.serviceItem:last-child {
    border-bottom: none;
}

.serviceSubtitle {
    margin-bottom: 0.8em;
    color: #333;
    font-size: 1.2em;
    font-weight: 600;
}

.requirementsTitle {
    margin-top: 0;
    font-size: 1.4em;
    font-weight: 600;
    margin-bottom: 1em;
}

.noteText {
    font-style: italic;
    color: #666;
    font-size: 0.9em;
    margin-top: 1em;
}

.noBullets {
    list-style: none;
    padding: 0;
}

.listItem {
    margin-bottom: 1em;
    padding-left: 1em;
    border-left: 3px solid #e0e0e0;
}

.serviceDescription p {
    color: var(--em-color-black);
}

.serviceDescription h3 {
    width: 100%;
    font-size: 1.4em;
    font-weight: 600;
    margin: 2em 0 1em 0;
    color: var(--em-color-black);
}

.serviceDescription h4 {
    font-size: 1.2em;
    font-weight: 600;
    margin: 1.5em 0 0.8em 0;
    color: var(--em-color-extra-accent);
}

.serviceDescription ul {
    margin: 1em 0;
    padding-left: 1.5em;
}

.serviceDescription li {
    margin-bottom: 0.5em;
}

/* Модальное окно заявки (форма) */
.request-modal {
    display: none;
    position: fixed;
    z-index: var(--em-modal-z-index);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--em-modal-backdrop-color);
    animation: fadeIn 0.3s ease-in-out;
}

.request-modal-content {
    background-color: var(--em-modal-bg-color);
    margin: 200px auto;
    padding: 0;
    border-radius: var(--em-modal-border-radius);
    width: 90%;
    max-width: var(--em-modal-max-width);
    height: max-content;
    box-shadow: var(--em-modal-shadow);
    animation: slideIn 0.3s ease-out;
}

.request-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
}

.request-modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
}

.request-close {
    font-size: 28px;
    font-weight: bold;
    color: var(--em-color-white);
    cursor: pointer;
    transition: color 0.3s;
}

.request-close:hover {
    color: #333;
}

.request-modal-form {
    padding: 10px 25px 25px 25px;
}

.request-form-group {
    width: 100%;
}

.request-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.optional {
    color: #666;
    font-weight: normal;
    font-size: 0.9em;
}

.request-form-group input,
.request-form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--em-input-border-color);
    border-radius: 8px;
    font-size: var(--em-font-size-base);
    transition: border-color 0.3s, box-shadow 0.3s;
    box-sizing: border-box;
}

.request-form-group input:focus,
.request-form-group textarea:focus {
    outline: none;
    border-color: var(--em-color-accent);
    box-shadow: var(--em-input-focus-shadow);
}

.request-form-group textarea {
    resize: none;
    min-height: 100px;
    font-family: inherit;
}

.request-submit-btn {
    width: 100%;
    padding: 15px;
    background-color: var(--em-color-accent);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: var(--em-font-size-base);
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.request-submit-btn:hover {
    background-color: var(--em-color-accent-hover);
    transform: translateY(-2px);
}

.request-submit-btn:active {
    transform: translateY(0);
}

/* Анимации для модального окна */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Стиль для кнопки вызова модального окна */
.headerBtnForm {
    cursor: pointer;
    transition: transform 0.2s;
}

.headerBtnForm:hover {
    transform: translateY(-2px);
}

/* Стили для состояния загрузки */
.request-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.request-submit-btn.loading {
    position: relative;
    color: transparent;
}

.request-submit-btn.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-right-color: transparent;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}