/* Базовые сбросы и шрифт */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Open Sans", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
}

body {
    color: #222;
    background-color: #fff;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Контейнер */
.container {
    max-width: 1240px;
    padding: 0 20px;
    margin: 0 auto;
}

/* Заголовки */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: #111;
    line-height: 1.3;
}

h1 {
    font-size: 42px;
}

h2 {
    font-size: 32px;
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 20px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

@media (max-width: 768px) {
    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 26px;
    }

    h3 {
        font-size: 22px;
    }
}

/* Текст */
p {
    margin-bottom: 1.2em;
    color: #555;
}

a {
    color: #111;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #0080d1;
    /* фирменный акцент Furnify */
}

/* Картинки */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Кнопки */
button, .btn {
    display: inline-block;
    background-color: #111;
    color: #fff;
    font-weight: 500;
    padding: 12px 28px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

button:hover, .btn:hover {
    background-color: #0080d1;
    color: #fff;
}

/* Списки */
ul, ol {
    margin-left: 20px;
    margin-bottom: 1em;
}

li {
    margin-bottom: 5px;
}

/* Формы */
input, textarea, select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    outline: none;
    transition: border-color 0.3s ease;
}

input:focus, textarea:focus, select:focus {
    border-color: #0080d1;
}

/* Текстовые утилиты */
.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

/* Flex-утилиты */
.flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}


.header-lvl1 {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 30px 0;
}

.header-lvl1>* {
    margin-top: auto;
    margin-bottom: auto;
}

.header-lvl1>a>img {
    height: 60px;
    width: auto;
}

.header-menu {
    margin-left: auto;
    display: flex;
    align-items: center;
    position: relative;
}

.header-menu>ul {
    display: flex;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-menu>ul>li {
    position: relative;
}

.header-menu>ul>li>a {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: #111;
    text-decoration: none;
    padding: 10px 0;
    display: block;
    transition: color 0.3s ease;
}

.header-menu>ul>li>a:hover {
    color: #0080d1;
}

/* --- Выпадающее меню --- */
.header-menu .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 200px;
    border: 1px solid #eee;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    list-style: none;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.header-menu .dropdown li {
    width: 100%;
}

.header-menu .dropdown li a {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    text-transform: none;
    padding: 10px 20px;
    display: block;
    transition: all 0.3s ease;
}

.header-menu .dropdown li a:hover {
    background: #f8f8f8;
    color: #0080d1;
}

/* Появление при ховере */
.header-menu>ul>li:hover>.dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown {
    margin: 0;
}


/* Мобильная адаптация */
@media (max-width: 768px) {
    .header-menu>ul {
        flex-direction: column;
        gap: 0;
    }

    .header-menu .dropdown {
        position: static;
        box-shadow: none;
        border: none;
        padding: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .header-menu .dropdown li a {
        padding-left: 30px;
    }
}


.home-slider {
    padding: 256px 0;
    background-position: center center;
    background-size: cover;
}

.home-slider p {
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 10px;
}

.home-slider h1 {
    font-size: 60px;
    font-weight: 400;
    line-height: 72px;
    margin-bottom: 25px;
}


.home-osn-cont {
    padding-top: 80px;
    padding-bottom: 80px;
}

.home-osn-cont-lvl1 {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 80px;
}

.home-osn-cont-lvl1>a {
    width: calc(100% / 2 - (20px * 1 / 2));
}

.home-osn-cont-lvl1>a>img {
    width: 100%;
}

.home-osn-cont-lvl2-title {
    display: flex;
    margin-bottom: 50px;
}

.home-osn-cont-lvl2-title>h2 {
    margin-left: auto;
    margin-right: auto;
    max-width: 700px;
    text-align: center;
    font-size: 38px;
    font-weight: 400;
    line-height: 45.6px;
}

.home-osn-cont-lvl2-product {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.home-osn-cont-lvl2-product>a {
    width: calc(100% / 4 - (20px * 3 / 4));
}

.home-osn-cont-lvl2-product-img {
    width: 100%;
    height: 300px;
    background-position: center center;
    background-size: cover;
    margin-bottom: 20px;
    border-radius: 18px;
}

.home-osn-cont-lvl2-product>a>p {
    font-size: 18px;
    font-weight: 500;
    line-height: 21.6px;
    text-align: center;
    transition: all 0.3s ease;
}

.home-osn-cont-lvl2-product>a:hover>p {
    color: #0080d1;
}

.home-osn-cont-lvl2-button {
    display: flex;
    gap: 20px;
    margin-bottom: 80px;
}

.home-osn-cont-lvl2-button>a:first-of-type {
    margin-left: auto;
}

.home-osn-cont-lvl2-button>a:last-of-type {
    margin-right: auto;
}

.button1 {
    display: inline-flex;
    padding: 15px 20px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    background-color: #0080d1;
    color: white;
    transition: all 0.3s ease;
    border-radius: 18px;
}

.button1:hover {
    background-color: rgb(36, 36, 36);
    color: white;
}

.product-card>button {
    justify-content: center;
    margin: 0 10px 0 10px;
}

.home-osn-cont-lvl3-form {
    display: flex;
    flex-wrap: wrap;
    background-color: #edeef0;
    border-radius: 18px;
}

.home-osn-cont-lvl3-form-left {
    width: 35%;
    background-position: center center;
    background-size: cover;
    border-radius: 18px;
}

.home-osn-cont-lvl3-form-right {
    width: 65%;
    padding: 40px;
}

.home-osn-cont-lvl3-form-right>p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 20px;
}

/* Форма связи */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-form label {
    font-size: 14px;
    font-weight: 600;
    color: #111;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    outline: none;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #0080d1;
}

.contact-form .button1 {
    align-self: flex-start;
    cursor: pointer;
}

/* Для адаптива */
@media (max-width: 768px) {
    .contact-form {
        gap: 15px;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 14px;
    }
}


.home-osn-cont-lvl3 {
    margin-bottom: 80px;
}

.home-osn-cont-lvl4 {
    margin-bottom: 80px;
}

/* FAQ / стекло-блок */
.home-osn-cont-lvl4-faq {
    margin-top: 40px;
}

.home-osn-cont-lvl4-faq-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: stretch;
}

/* Левая колонка с карточками */
.faq-left {
    width: calc(60% - 10px);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-card {
    background: #fff;
    border: 1px solid #e9ecef;
    padding: 18px 20px;
    border-radius: 18px;
}

.faq-card h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    color: #111;
    text-transform: uppercase;
    letter-spacing: .02em;
    margin-bottom: 6px;
}

.faq-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

/* Правая колонка с фоновым изображением */
.faq-right {
    width: calc(40% - 10px);
}

.faq-image {
    min-height: 420px;
    background-position: center center;
    background-size: cover;
    border-radius: 18px;
}

/* Адаптив */
@media (max-width: 992px) {
    .faq-left, .faq-right {
        width: 100%;
    }

    .faq-image {
        min-height: 300px;
    }
}

@media (max-width: 600px) {
    .faq-card {
        padding: 16px;
    }

    .faq-image {
        min-height: 220px;
    }
}

.otstyp {
    margin-bottom: 80px;
}

/* ====== Плитка галереи ====== */
.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.gallery-thumb {
    flex: 0 0 calc(25% - 15px);
    /* 4 в ряд */
    height: 25vw;
    /* визуально 1/4 экрана по ширине */
    background-position: center;
    background-size: cover;
    border: 0px;
    border-radius: 0px;
    cursor: zoom-in;
    transition: transform .25s ease, box-shadow .25s ease;
    border-radius: 18px;
}

.home-osn-cont-lvl3-map>iframe {
    border-radius: 18px;
}

.gallery-thumb:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .1);
}

@media (max-width:992px) {
    .gallery-thumb {
        flex: 0 0 calc(50% - 10px);
        height: 45vw;
    }
}

@media (max-width:600px) {
    .gallery-thumb {
        height: 60vw;
    }
}

/* ====== Лайтбокс ====== */
.lightbox[hidden] {
    display: none;
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, .8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Open Sans", sans-serif;
}

.lightbox__overlay {
    position: absolute;
    inset: 0;
    cursor: zoom-out;
}

/* Контент */
.lightbox__content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox__img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .3);
    opacity: 0;
    transform: scale(.985);
    transition: opacity .3s ease, transform .3s ease;
}

.lightbox--visible .lightbox__img {
    opacity: 1;
    transform: scale(1);
}

.lightbox__img.fade-out {
    opacity: 0;
    transform: scale(.985);
}

/* ====== Кнопки (строго круглые, иконки по центру) ====== */
.lightbox__btn {
    position: fixed;
    z-index: 10001;
    width: 48px;
    height: 48px;
    /* фиксированный круг */
    border: none;
    border-radius: 50%;
    background: #111;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    /* центр иконки */
    padding: 0;
    cursor: pointer;
    transition: background-color .25s ease;
    /* только цвет — без scale/translate */
    outline: none;
}

.lightbox__btn:hover {
    background: #0080d1;
}

/* SVG — крупнее и строго по центру */
.lightbox__btn svg {
    width: 26px;
    height: 26px;
    display: block;
    stroke: #fff;
    stroke-width: 2.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    pointer-events: none;
}

/* Позиции кнопок */
.lightbox__close {
    top: 16px;
    right: 16px;
}

.lightbox__prev {
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox__next {
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
}

/* Счётчик */
.lightbox__counter {
    position: fixed;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(17, 17, 17, .95);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 999px;
    letter-spacing: .05em;
    z-index: 10001;
}

.home-osn-cont-lvl-slider {
    margin-bottom: 80px;
}

.home-osn-cont-lvl-slider-sam-gol.gallery-grid {
    margin-bottom: 40px;
}

.footer-lvl1-pre-lvl {
    background-color: #f6f7f8;
    padding: 100px 0 60px 0;
}

.footer-lvl2 {
    background-color: #ebebeb;
    padding: 25px 0;
}

.footer-lvl1 {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-lvl1-element {
    width: calc(100% / 3 - (20px * 2 / 3));
}

.footer-lvl1-element-title {
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 20px;
    color: #000000;
}

.footer-menu>ul {
    list-style-type: none;
    margin: 0px;
}

.footer-menu>ul>li>a {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    color: #242424;
}

.footer-menu>ul>li>a:hover {
    color: #0080d1;
}

.footer-lvl2 p {
    text-align: center;
    color: #242424;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 0px;
}

@media (min-width:800px) {
    .mobil-menu-button {
        display: none;
    }
}

@media (max-width:800px) {
    .header-menu {
        display: none;
    }

    .home-slider h1 {
        font-size: 44px;
        line-height: 52.8px;
    }

    .home-slider {
        padding: 150px 0;
        background-position: center right;
    }

    .home-osn-cont-lvl2-title>h2 {
        font-size: 26px;
        line-height: 36px;
    }

    .home-osn-cont-lvl3-form-left {
        display: none;
    }

    .home-osn-cont-lvl3-form-right {
        width: 100%;
        padding: 20px;
    }

    .footer-lvl1-element {
        width: 100%;
    }

    .home-osn-cont-lvl3-map>iframe {
        height: 450px;
    }

    .mobil-menu-button {
        display: flex;
        margin-top: auto;
        margin-bottom: auto;
        margin-left: auto;
    }

    .mobil-menu-button {
        z-index: 99999;
    }

    .mobil-menu-button>img {
        height: 40px !important;
        width: auto;
        filter: invert(0%) sepia(0%) saturate(7500%) hue-rotate(314deg) brightness(102%) contrast(103%);
        cursor: pointer;
    }
}

@media (max-width:500px) {
    .home-osn-cont-lvl2-product>a {
        width: calc(100% / 2 - (20px * 1 / 2));
    }

    .home-osn-cont-lvl2-product-img {
        height: 180px;
    }

    .home-slider h1 {
        font-size: 30px;
        line-height: 40px;
    }


    .home-osn-cont-lvl2-product>a>p {
        font-size: 14px;
        line-height: 18px;
    }

    .home-osn-cont-lvl2-button {
        display: flex;
        flex-wrap: wrap;
    }

    .home-osn-cont-lvl2-button>a {
        width: 100%;
        justify-content: center;
    }
}





/* ===== Мобильное меню ===== */
.mobile-menu-overlay {
    position: fixed;
    top: 80px;
    /* меню под header */
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    z-index: 999;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 30px;
    animation: fadeIn 0.3s ease forwards;
}

.mobile-menu-overlay.active {
    display: flex;
}

.mobile-menu-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    text-align: center;
}

.mobile-menu-nav ul li {
    margin-bottom: 15px;
    position: relative;
}

.mobile-menu-nav ul li a {
    font-size: 18px;
    font-weight: 600;
    color: #111;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: color 0.3s ease;
}

.mobile-menu-nav ul li a:hover {
    color: #0080d1;
}

/* Подменю */
.mobile-menu-nav .submenu {
    display: none;
    flex-direction: column;
    margin-top: 10px;
}

.mobile-menu-nav .submenu li a {
    font-size: 16px;
    font-weight: 500;
    text-transform: none;
    color: #333;
}

.mobile-menu-nav .submenu li a:hover {
    color: #0080d1;
}

.mobile-menu-nav .has-submenu.open>.submenu {
    display: flex;
    animation: fadeIn 0.3s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}








/* ===== 404 ===== */
.error-404 {
    padding: 100px 0 80px;
    background-color: #fff;
}

.error-404__wrap {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.error-404__code {
    font-weight: 700;
    font-size: 140px;
    line-height: 1;
    color: #111;
    margin-bottom: 10px;
}

.error-404__title {
    font-weight: 600;
    font-size: 32px;
    line-height: 1.3;
    color: #111;
    margin-bottom: 15px;
}

.error-404__text {
    font-size: 16px;
    color: #555;
    margin: 0 auto 30px;
    max-width: 620px;
}

.error-404__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.error-404__actions .button1 {
    text-decoration: none;
    font-weight: 600;
    padding: 14px 28px;
}

/* 404 — адаптив */
@media (max-width: 768px) {
    .error-404 {
        padding: 70px 0 60px;
    }

    .error-404__code {
        font-size: 100px;
    }

    .error-404__title {
        font-size: 26px;
    }

    .error-404__actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 500px) {
    .error-404__code {
        font-size: 84px;
    }
}

/* ===== Общий HERO + крошки (для категорий/товара) ===== */
.cat-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 110px 0;
    color: #000000;
}

.cat-hero__overlay {
    position: absolute;
    inset: 0;
}

.cat-hero .container {
    position: relative;
    z-index: 1;
}

.cat-hero__content {
    text-align: center;
}

.cat-hero__content h1 {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 8px;
    color: #000000;
}

/* крошки */
.breadcrumbs {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.breadcrumbs a {
    color: #000000;
    opacity: .95;
    text-decoration: none;
    transition: opacity .25s ease;
}

.breadcrumbs a:hover {
    opacity: 1;
    color: #0080d1;
}

.breadcrumbs .sep {
    color: #000000;
    opacity: .6;
}

.breadcrumbs .current {
    color: #000000;
    opacity: .85;
}

/* Адаптив HERO */
@media (max-width: 992px) {
    .cat-hero {
        padding: 90px 0;
    }

    .cat-hero__content h1 {
        font-size: 36px;
    }
}

@media (max-width: 600px) {
    .cat-hero {
        padding: 70px 0;
    }

    .cat-hero__content h1 {
        font-size: 28px;
    }

    .breadcrumbs {
        font-size: 13px;
    }
}

/* ===== Категории (grid + SEO блок) ===== */
.cat-grid-section {
    padding: 60px 0 40px;
}

.cat-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.cat-card {
    width: calc(25% - 15px);
    /* 4 в ряд */
    display: flex;
    flex-direction: column;
    gap: 14px;
    text-decoration: none;
}

.cat-card__img {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 0;
    border: 0;
    transition: transform .3s ease, box-shadow .3s ease;
    border-radius: 18px;
}

.cat-card__title {
    display: block;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2;
    color: #111;
    transition: color .3s ease;
}

.cat-card:hover .cat-card__img {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .1);
}

.cat-card:hover .cat-card__title {
    color: #0080d1;
}

.cat-seo {
    padding: 20px 0 80px;
}

.cat-seo__wrap {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.cat-seo h2 {
    font-size: 32px;
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 14px;
    color: #111;
}

.cat-seo p {
    color: #555;
    margin-bottom: 14px;
}

.cat-seo__list {
    list-style: none;
    padding: 0;
    margin: 10px auto 22px;
    display: grid;
    gap: 8px;
}

.cat-seo__list li {
    position: relative;
    padding-left: 18px;
    color: #333;
}

.cat-seo__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #0080d1;
}

.cat-seo__cta {
    margin-top: 10px;
}

/* Категории — адаптив */
@media (max-width: 992px) {
    .cat-card {
        width: calc(50% - 10px);
    }

    .cat-card__img {
        height: 240px;
    }
}

@media (max-width: 600px) {
    .cat-card {
        width: 100%;
    }

    .cat-card__img {
        height: 200px;
    }
}

/* ===== Товар ===== */
.product {
    padding: 60px 0 30px;
}

.product__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

/* Медиа товара */
.product__media {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.product__photo {
    width: 100%;
    height: 520px;
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    transition: opacity .2s ease;
    box-shadow: 0 16px 40px rgba(0, 0, 0, .08);
}

.product__thumbs {
    display: flex;
    gap: 12px;
}

.product__thumb {
    flex: 1 1 0;
    height: 120px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    border: 1px solid #eee;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease;
}

.product__thumb:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, .06);
}

/* Форма */
.product__form {
    align-self: start;
}

.product__title {
    font-size: 24px;
    font-weight: 600;
    color: #111;
    margin-bottom: 12px;
}

.pform {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pform__row {
    display: flex;
    gap: 16px;
}

.pform__col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pform__col--full {
    flex-basis: 100%;
}

.pform label {
    font-size: 14px;
    font-weight: 600;
    color: #111;
}

.pform input,
.pform select,
.pform textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    outline: none;
    transition: border-color .3s ease;
}

.pform input:focus,
.pform select:focus,
.pform textarea:focus {
    border-color: #0080d1;
}

/* Согласие — слева, в одну линию */
.pform__agree {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #555;
    margin-top: 2px;
}

.pform__agree input {
    width: 16px;
    height: 16px;
}

.pform .button1 {
    align-self: flex-start;
}

/* Описание товара */
.product__desc {
    margin-top: 18px;
}

.product__desc p {
    color: #555;
}

/* Витрина стекла */
.glass-grid {
    padding: 30px 0 50px;
}

.glass-grid__title {
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 18px;
    color: #111;
}

.glass-grid__list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.glass-card {
    width: calc(33.333% - 14px);
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.glass-card__img {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    border-radius: 0;
    border: 1px solid #eee;
    transition: transform .25s ease, box-shadow .25s ease;
    border-radius: 18px;
}

.glass-card__title {
    font-weight: 600;
    color: #111;
    text-transform: uppercase;
    font-size: 14px;
    text-align: center;
}

.glass-card:hover .glass-card__img {
    transform: translateY(-3px);
    box-shadow: 0 10px 26px rgba(0, 0, 0, .08);
}

/* Фурнитура */
.hw {
    padding: 20px 0 70px;
}

.hw__title {
    text-align: center;
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 22px;
    color: #111;
}

.hw__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: start;
}

.hw__media {
    width: 100%;
    height: 420px;
    border-radius: 18px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 18px 42px rgba(0, 0, 0, .08);
}

.hw__cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.hw-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 16px;
    padding: 18px 20px;
}

.hw-card h3 {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    color: #111;
    margin-bottom: 6px;
}

.hw-card p {
    margin: 0;
    color: #555;
}

/* Свотчи покрытий */
.hw-swatches {
    margin-top: 26px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

.hw-swatch {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 120px;
}

.hw-swatch__color {
    width: 100%;
    height: 64px;
    border-radius: 16px;
    border: 1px solid #e5e5e5;
}

.hw-swatch span {
    font-size: 13px;
    color: #333;
}

/* Товар — адаптив */
@media (max-width: 1100px) {
    .product__photo {
        height: 460px;
    }
}

@media (max-width: 992px) {
    .product__grid {
        grid-template-columns: 1fr;
    }

    .product__photo {
        height: 420px;
    }

    .glass-card {
        width: calc(50% - 10px);
    }

    .hw__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .product__photo {
        height: 320px;
    }

    .product__thumb {
        height: 90px;
    }

    .pform__row {
        flex-direction: column;
    }

    .glass-card {
        width: calc(50% - 10px);
    }

    .glass-card__img {
        height: 180px;
    }
}









/* Контакты — секция */
.contacts {
    padding: 60px 0 40px;
}

.contacts__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

/* Левая колонка */
.contacts__left {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.c-card {
    display: flex;
    gap: 14px;
    align-items: center;
    background: #fff;
    border: 1px solid #e9ecef;
    padding: 14px 16px;
    border-radius: 8px;
}

.c-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #111;
    display: grid;
    place-items: center;
    flex: 0 0 44px;
}

.c-card__icon svg {
    width: 24px;
    height: 24px;
    stroke: #fff;
    fill: none;
    stroke-width: 2;
}

.c-card__label {
    font-size: 12px;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #777;
    margin-bottom: 2px;
}

.c-card__link {
    color: #111;
    font-weight: 600;
}

.c-card__link:hover {
    color: #0080d1;
}

.c-card__text {
    margin: 0;
    color: #333;
}

.c-note {
    background: #f6f7f8;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 14px;
    color: #333;
}

/* Правая колонка — форма (реиспользуем .contact-form из style.css) */
.contacts__right {
    align-self: start;
}

.contacts__title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #111;
}

/* Чекбокс согласия слева, одной линией */
.c-agree {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #555;
}

.c-agree input {
    width: 16px;
    height: 16px;
}

/* Карта */
.contacts-map {
    padding: 10px 0 80px;
}

.contacts-map__wrap {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 26px rgba(0, 0, 0, .04);
    display: flex;
}

/* Адаптив */
@media (max-width: 992px) {
    .contacts__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .contacts {
        padding: 40px 0 30px;
    }
}







/* ===== О нас — общие отступы ===== */
.about-intro {
    padding: 80px 0 60px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-text h2 {
    font-size: 32px;
    font-weight: 600;
    color: #111;
    margin-bottom: 18px;
}

.about-text p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 14px;
}

.about-image {
    width: 100%;
    height: 420px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

/* ===== Принципы ===== */
.about-values {
    background: #fafafa;
    padding: 80px 0 60px;
}

.about-values h2 {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    color: #111;
    margin-bottom: 40px;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.value-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 16px;
    width: calc(33.333% - 16px);
    padding: 30px 24px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: #111;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin: 0 auto 14px;
}

.value-icon svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: #fff;
    stroke-width: 2;
}

.value-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #111;
}

.value-card p {
    color: #555;
    font-size: 15px;
    line-height: 1.5;
}

/* ===== CTA ===== */
.about-cta {
    padding: 100px 0;
    background: linear-gradient(to right, #0080d1, #f6f7f8);
    text-align: center;
    color: #111;
}

.cta-inner h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.cta-inner p {
    color: #333;
    margin-bottom: 20px;
    font-size: 16px;
}

/* ===== Адаптив ===== */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-image {
        height: 300px;
    }

    .value-card {
        width: calc(50% - 10px);
    }
}

@media (max-width: 600px) {
    .about-intro {
        padding: 50px 0 30px;
    }

    .about-text h2 {
        font-size: 26px;
    }

    .value-card {
        width: 100%;
    }

    .about-cta {
        padding: 70px 0;
    }

    .cta-inner h2 {
        font-size: 26px;
    }
}



/* ===== GRID товаров ===== */
.products-section {
    padding: 60px 0 40px;
}

.products-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.product-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    width: calc(25% - 15px);
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
}

.product-card__img {
    border-radius: 18px;
}

.product-card__img {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
}

.product-card__info {
    padding: 18px 16px;
}

.product-card__title {
    font-size: 16px;
    font-weight: 600;
    color: #111;
    margin-bottom: 8px;
}

.product-card__price {
    font-size: 15px;
    font-weight: 500;
    color: #0080d1;
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .06);
}

/* ===== ПАГИНАЦИЯ ===== */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
}

.pagination a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    border: 1px solid #ddd;
    border-radius: 50%;
    color: #111;
    text-decoration: none;
    transition: all .3s ease;
}

.pagination a.active,
.pagination a:hover {
    background: #0080d1;
    border-color: #0080d1;
    color: #fff;
}




/* ===== АДАПТИВ ===== */
@media (max-width: 992px) {
    .product-card {
        width: calc(50% - 10px);
    }

    .product-card__img {
        height: 240px;
    }
}

@media (max-width: 600px) {
    .product-card {
        width: calc(50% - 10px);
    }

    .product-card__img {
        height: 140px;

    }

    .product-card__title {
        text-align: center;
    }

    .product-card__price {
        text-align: center;
    }

    .product-card__img {
        background-position: center center;
        background-size: cover;
    }

    .product-card__info {
        padding: 10px 10px 0 10px;
    }

    .product-card__title {
        font-size: 14px;
    }
}


































/* =========================
   HEADER CONTACTS (SCOPED)
   ========================= */

/* Контейнер действий */
.header-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-left: 24px;
    /* отступ от меню */
    flex-wrap: nowrap;
    min-width: 0;
    /* чтобы элементы могли сжиматься */
}

/* Телефон — кнопка-пилюля */
.header-actions .call-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    line-height: 1.2;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
    background: #0080d1;
    border: 1px solid #0080d1;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color .25s ease, color .25s ease, transform .2s ease, box-shadow .25s ease;
    white-space: nowrap;
    /* номер целиком в одну строку */
    max-width: 100%;
}

.header-actions .call-btn:hover {
    background: rgb(36, 36, 36);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(241, 164, 170, .35);
}

/* Почта — спокойная ссылка */
.header-actions .mail-link {
    font-size: 14px;
    font-weight: 600;
    color: #111;
    opacity: .9;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color .25s ease, border-color .25s ease, opacity .25s ease;
}

.header-actions .mail-link:hover {
    color: #0080d1;
    border-bottom-color: #0080d1;
    opacity: 1;
}

/* Соцсети — кружки */
.header-actions .social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-actions .social .soc {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    display: grid;
    place-items: center;
    text-decoration: none;
    transition: background-color .25s ease, transform .2s ease, box-shadow .25s ease;
}

.header-actions .social .soc:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(241, 164, 170, .35);
}

/* Размеры SVG — фиксируем, чтобы не были огромными */
.header-actions .social .soc svg {
    width: 100%;
    height: 100%;
    display: block;
    fill: #fff;
    stroke: #fff;
}

/* Тонкий разделитель (если понадобится — уберите display:none) */
.header-actions::after {
    content: "";
    width: 1px;
    height: 18px;
    background: #e9ecef;
    margin-left: 2px;
    display: none;
}

/* =================
   А Д А П Т И В
   ================= */

/* Средние экраны — прячем почту для экономии места */
@media (max-width:1100px) {
    .header-actions .mail-link {
        display: none;
    }
}

/* Планшеты — немного компактнее */
@media (max-width:800px) {
    .header-actions {
        gap: 12px;
        margin-left: auto;
        /* дотягиваем блок вправо */
    }

    .header-actions .call-btn {
        padding: 8px 12px;
        font-size: 13px;
    }

    .header-actions .social {
        gap: 8px;
    }

    .header-actions .social .soc {
        width: 30px;
        height: 30px;
        flex: 0 0 30px;
    }

    .header-actions .social .soc svg {
        width: 16px !important;
        height: 16px !important;
    }
}

/* Мобайл — оставляем номер целиком, скрываем почту и соцсети */
@media (max-width:600px) {
    .header-actions {
        gap: 8px;
        margin-left: auto;
    }

    .header-actions .call-btn {
        padding: 8px 12px;
        font-size: 14px;
        /* можно 13px, если тесно */
        border-radius: 6px;
        white-space: nowrap;
        /* не переносить номер */
        flex: 0 1 auto;
        /* может слегка сжиматься, но не ломаться */
        max-width: 100%;
    }

    .header-actions .mail-link {
        display: none;
    }

    .header-actions .social {
        display: none;
    }

    .header-lvl1>a>img {
        height: 30px;
    }

    .header-actions .call-btn {
        font-size: 12px;
    }

    .faq-right.faq-image {
        order: 1;
    }

    .faq-left {
        order: 2;
    }
}