/* === Новый макет карточки модульной кухни === */

.kuhnya-card {
    padding: 40px 0 80px;
    font-family: inherit;
    color: #222;
}
/* .container наследует стандарт сайта — не переопределяем */

/* ---- Сетка ---- */
.kuhnya-card__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}
@media (max-width: 991px) {
    .kuhnya-card__grid { grid-template-columns: 1fr; gap: 30px; }
}

/* ---- Галерея ---- */
.kuhnya-gallery { position: relative; }
.kuhnya-gallery__badge {
    position: absolute; top: 14px; left: 14px; z-index: 5;
    background: #b9985d; color: #fff;
    padding: 6px 14px; border-radius: 4px;
    font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
}
.kuhnya-gallery__main {
    position: relative; aspect-ratio: 4 / 3; overflow: hidden;
    border-radius: 12px; background: #f5f5f5;
}
.kuhnya-gallery__main > a { display: block; width: 100%; height: 100%; cursor: zoom-in; }
.kuhnya-gallery__main img { width: 100%; height: 100%; object-fit: cover; display: block; }
.kuhnya-gallery__nav {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 4;
    width: 38px; height: 38px; border-radius: 50%; border: 0; cursor: pointer;
    background: rgba(255,255,255,.92); color: #222;
    display: flex; align-items: center; justify-content: center;
    transition: background .15s;
}
.kuhnya-gallery__nav:hover { background: #fff; }
.kuhnya-gallery__nav--prev { left: 12px; }
.kuhnya-gallery__nav--next { right: 12px; }
.kuhnya-gallery__thumbs {
    display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; margin-top: 12px;
}
.kuhnya-gallery__thumb {
    aspect-ratio: 1 / 1; border-radius: 8px; overflow: hidden;
    background: #f5f5f5; cursor: pointer; border: 2px solid transparent;
    transition: border-color .15s;
}
.kuhnya-gallery__thumb.is-active { border-color: #b9985d; }
.kuhnya-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---- Информация ---- */
.kuhnya-info__status {
    color: #4caf50; font-size: 13px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 14px;
}
.kuhnya-info__title { font-size: 32px; font-weight: 700; margin: 0 0 6px; line-height: 1.2; }
.kuhnya-info__subtitle { color: #888; font-size: 14px; margin-bottom: 16px; }
.kuhnya-info__rating { display: inline-flex; align-items: center; gap: 10px; font-size: 14px; margin-bottom: 22px; }
.kuhnya-info__rating .stars { color: #b9985d; }
.kuhnya-info__rating .reviews { color: #888; text-decoration: underline dotted; cursor: pointer; }
.kuhnya-price { display: flex; align-items: baseline; gap: 14px; margin-bottom: 18px; }
.kuhnya-price__current { font-size: 32px; font-weight: 700; color: #222; }
.kuhnya-price__old { font-size: 18px; color: #aaa; text-decoration: line-through; }
.kuhnya-price__discount {
    background: #ff5252; color: #fff; font-size: 13px; font-weight: 600;
    padding: 3px 8px; border-radius: 4px;
}
.kuhnya-info__desc { color: #555; line-height: 1.55; margin-bottom: 24px; font-size: 15px; }

/* ---- Опции ---- */
.kuhnya-option { margin-bottom: 10px; }
.kuhnya-option__label { font-size: 14px; color: #555; margin-bottom: 10px; }
.kuhnya-option__items { display: flex; flex-wrap: wrap; gap: 8px; }
.kuhnya-size-btn {
    padding: 10px 18px; border: 1px solid #d4d4d4; background: #fff;
    border-radius: 6px; font-size: 14px; cursor: pointer; transition: all .15s;
    min-width: 80px;
}
.kuhnya-size-btn:hover { border-color: #b9985d; }
.kuhnya-size-btn.is-active { background: #b9985d; border-color: #b9985d; color: #fff; }

.kuhnya-color-dot {
    width: 36px; height: 36px; border-radius: 50%; cursor: pointer;
    border: 2px solid #fff; box-shadow: 0 0 0 1px #d4d4d4; transition: box-shadow .15s;
}
.kuhnya-color-dot.is-active { box-shadow: 0 0 0 2px #b9985d; }

.kuhnya-tabletop {
    width: 92px; cursor: pointer; text-align: center;
}
.kuhnya-tabletop__img {
    aspect-ratio: 1 / 1; border-radius: 8px; overflow: hidden; background: #f5f5f5;
    border: 2px solid transparent; transition: border-color .15s; margin-bottom: 6px;
}
.kuhnya-tabletop__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.kuhnya-tabletop.is-active .kuhnya-tabletop__img { border-color: #b9985d; }
.kuhnya-tabletop__label { font-size: 12px; color: #666; line-height: 1.3; }

/* ---- Действия ---- */
.kuhnya-actions { display: flex; gap: 12px; margin-bottom: 28px; }
.kuhnya-btn-cart {
    flex: 1; padding: 16px 24px; background: #b9985d; color: #fff;
    border: 0; border-radius: 6px; font-size: 15px; font-weight: 600;
    cursor: pointer; transition: background .15s;
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
}
.kuhnya-btn-cart:hover { background: #a78449; }
.kuhnya-btn-fav {
    width: 56px; height: 56px; border-radius: 6px; border: 1px solid #d4d4d4; background: #fff;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: all .15s;
}
.kuhnya-btn-fav:hover { border-color: #b9985d; color: #b9985d; }
.kuhnya-btn-fav.inFavorite { color: #b9985d; border-color: #b9985d; background: #fff8ec; }
.kuhnya-btn-fav.inFavorite svg { fill: #b9985d; }
.kuhnya-btn-fav .textFavorite { display: none; }

/* ---- Преимущества (4 иконки) ---- */
.kuhnya-perks { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.kuhnya-perk { display: flex; align-items: flex-start; gap: 12px; }
.kuhnya-perk__icon {
    flex-shrink: 0; width: 38px; height: 38px;
    display: flex; align-items: center; justify-content: center;
    color: #b9985d;
}
.kuhnya-perk__title { font-size: 14px; color: #222; font-weight: 600; line-height: 1.3; }
.kuhnya-perk__desc { font-size: 13px; color: #888; }

/* === Блок: Фото фасада + Видео === */
.kuhnya-facade-video {
    margin-top: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
@media (max-width: 767px) { .kuhnya-facade-video { grid-template-columns: 1fr; } }
.kuhnya-facade-video__item {
    aspect-ratio: 16 / 10;
    background: #f5f1e8;
    border-radius: 0;
    overflow: hidden;
    position: relative;
}
.kuhnya-facade-video__item a { display: block; width: 100%; height: 100%; cursor: pointer; }
.kuhnya-facade-video__item img {
    width: 100%; height: 100%; display: block;
    transition: transform .25s;
    image-orientation: from-image;
}
.kuhnya-facade-video__item a:hover img { transform: scale(1.03); }
.kuhnya-facade-video__placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    color: #b9985d; opacity: .55;
    font-size: 18px; font-weight: 500;
}
.kuhnya-facade-video__overlay {
    position: absolute;
    inset: 0;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.32) 100%);
}
.kuhnya-facade-video__title {
    color: #fff;
    font-size: 36px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.1;
    text-shadow: 0 2px 14px rgba(0,0,0,0.35);
    padding: 0 20px;
}
.kuhnya-facade-video__badge {
    margin-top: 18px;
    background: #b9985d;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 10px 22px;
    border-radius: 50px;
}
@media (max-width: 767px) {
    .kuhnya-facade-video__title { font-size: 24px; }
    .kuhnya-facade-video__badge { font-size: 11px; padding: 8px 16px; }
}
.kuhnya-facade-video__play {
    position: relative;
    background: linear-gradient(135deg, #2a2a2a, #444);
}
.kuhnya-facade-video__poster { opacity: 1; transition: opacity .2s, transform .25s; }
.kuhnya-facade-video__playbtn {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 76px; height: 76px;
    background: rgba(255,255,255,.92);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #b9985d;
    transition: transform .2s, background .2s;
    pointer-events: none;
}
.kuhnya-facade-video__play:hover .kuhnya-facade-video__playbtn {
    transform: translate(-50%, -50%) scale(1.08);
    background: #fff;
}

/* === Секция "Мы производим мебель с..." === */
.kuhnya-experience {
    margin-top: 60px;
    padding: 50px 36px;
    background: #fff;
    border-radius: 0;
    border: 1px solid #ece6d6;
}
.kuhnya-experience__header {
    text-align: center;
    margin-bottom: 40px;
}
.kuhnya-experience__title {
    font-size: 26px;
    font-weight: 700;
    color: #222;
    margin: 0 0 10px;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}
.kuhnya-experience__title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: #b9985d;
    margin: 14px auto 0;
}
.kuhnya-experience__subtitle {
    font-size: 14px;
    color: #888;
}

/* Перки внутри секции — центрированно, иконки в круге */
.kuhnya-experience .kuhnya-perks--wide {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: transparent;
    padding: 0;
    margin: 0;
    border-radius: 0;
}
.kuhnya-experience .kuhnya-perk {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 24px;
    border-right: 1px solid #ece6d6;
}
.kuhnya-experience .kuhnya-perk:last-child { border-right: 0; }
.kuhnya-experience .kuhnya-perk__icon {
    width: 78px;
    height: 78px;
    border: 1.5px solid #ece6d6;
    border-radius: 50%;
    margin-bottom: 18px;
    color: #b9985d;
    overflow: hidden;
    padding: 0;
}
.kuhnya-experience .kuhnya-perk__icon img {
    width: 70%;
    height: 70%;
    object-fit: contain;
    display: block;
}
.kuhnya-experience .kuhnya-perk__title {
    font-size: 14px;
    font-weight: 700;
    color: #222;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.35;
    margin-bottom: 10px;
}
.kuhnya-experience .kuhnya-perk__desc {
    font-size: 13px;
    color: #888;
    line-height: 1.45;
}

@media (max-width: 991px) {
    .kuhnya-experience .kuhnya-perks--wide { grid-template-columns: repeat(2, 1fr); gap: 30px 0; }
    .kuhnya-experience .kuhnya-perk:nth-child(2) { border-right: 0; }
}
@media (max-width: 575px) {
    .kuhnya-experience { padding: 30px 20px; }
    .kuhnya-experience__title { font-size: 20px; }
    .kuhnya-experience .kuhnya-perks--wide { grid-template-columns: 1fr; gap: 30px; }
    .kuhnya-experience .kuhnya-perk { border-right: 0; }
}

/* ---- Большие секции ниже ---- */
.kuhnya-section {
    margin-top: 60px; padding: 36px;
    background: #f7f5f0; border-radius: 12px;
}
.kuhnya-section__title { font-size: 22px; font-weight: 700; margin: 0 0 20px; }
.kuhnya-section__grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 36px; align-items: center; }
@media (max-width: 767px) { .kuhnya-section__grid { grid-template-columns: 1fr; } }

/* Состав и размеры */
.composition-list { list-style: none; padding: 0; margin: 0 0 20px; }
.composition-list li { padding: 6px 0; font-size: 14px; color: #444; }
.composition-list li::before { content: '— '; color: #b9985d; }

.kuhnya-btn-outline {
    display: inline-block; padding: 12px 24px; border: 1px solid #222; color: #222;
    background: transparent; border-radius: 6px; font-size: 14px; cursor: pointer; text-decoration: none;
    transition: all .15s;
}
.kuhnya-btn-outline:hover { background: #222; color: #fff; text-decoration: none; }

/* ---- 4-колоночный блок преимуществ ---- */
.kuhnya-features {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
    margin-top: 60px;
}
@media (max-width: 767px) { .kuhnya-features { grid-template-columns: repeat(2, 1fr); } }
.kuhnya-feature { display: flex; gap: 14px; align-items: flex-start; }
.kuhnya-feature__icon { color: #b9985d; flex-shrink: 0; }
.kuhnya-feature__title { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.kuhnya-feature__desc { font-size: 13px; color: #777; line-height: 1.4; }

/* ---- Отзывы ---- */
.reviews-block { margin-top: 60px; }
.reviews-summary { display: flex; align-items: baseline; gap: 18px; margin-bottom: 24px; }
.reviews-summary__score { font-size: 56px; font-weight: 700; line-height: 1; }
.reviews-summary__stars { color: #b9985d; font-size: 18px; }
.reviews-summary__count { font-size: 13px; color: #888; }

.reviews-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 991px) { .reviews-cards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 575px) { .reviews-cards { grid-template-columns: 1fr; } }
.review-card { background: #fff; border: 1px solid #ececec; border-radius: 10px; padding: 18px; }
.review-card__header { display: flex; justify-content: space-between; margin-bottom: 8px; }
.review-card__author { font-weight: 600; }
.review-card__date { color: #999; font-size: 13px; }
.review-card__stars { color: #b9985d; font-size: 14px; margin-bottom: 8px; }
.review-card__text { font-size: 14px; color: #444; line-height: 1.5; margin-bottom: 12px; }
.review-card__photo { aspect-ratio: 4 / 3; border-radius: 6px; overflow: hidden; background: #f5f5f5; }
.review-card__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* === Блок описания столешниц === */
.kuhnya-tabletops-info { margin-top: 60px; }
.kuhnya-tabletops-info__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 20px;
}
@media (max-width: 991px) { .kuhnya-tabletops-info__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .kuhnya-tabletops-info__grid { grid-template-columns: 1fr; } }
.kuhnya-tabletop-card {
    background: #f2eeeb;
    border-radius: 0;
    overflow: hidden;
    padding: 0;
}
.kuhnya-tabletop-card a { display: block; cursor: zoom-in; }
.kuhnya-tabletop-card__img {
    display: block;
    width: 100%;
    height: auto;
    background-color: #e0e0d8;
    border-radius: 0;
    margin-bottom: 14px;
    transition: transform .2s;
}
.kuhnya-tabletop-card a:hover .kuhnya-tabletop-card__img { transform: scale(1.03); }
.kuhnya-tabletop-card__name {
    font-size: 16px;
    font-weight: 600;
    color: #222;
    margin-bottom: 12px;
    text-align: center;
}
.kuhnya-tabletop-card__desc {
    font-size: 13px;
    color: #666;
    line-height: 1.45;
}

/* === Модал zayavkaKuhnya (свои стили, не зависим от hystmodal.css) === */
#zayavkaKuhnya.hystmodal {
    display: none;
    position: fixed; inset: 0;
    z-index: 9999;
    overflow-y: auto;
}
#zayavkaKuhnya.hystmodal--active {
    display: block;
}
#zayavkaKuhnya .hystmodal__wrap {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.55);
    display: flex; align-items: center; justify-content: center;
    padding: 20px;
}
#zayavkaKuhnya .hystmodal__window {
    background: #fff;
    border-radius: 12px;
    padding: 32px 28px;
    width: 100%;
    max-width: 480px;
    position: relative;
    box-shadow: 0 8px 40px rgba(0,0,0,0.2);
    animation: kuhnyaModalIn .25s ease-out;
}
#zayavkaKuhnya .modalBody {
    padding: 0 !important;
}
#zayavkaKuhnya .zgSite {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: center;
    color: #222;
}
#zayavkaKuhnya .modalBody p {
    text-align: center;
    color: #777;
    font-size: 14px;
    margin-bottom: 20px;
}
#zayavkaKuhnya .comment-form__input-box { margin-bottom: 12px; }
#zayavkaKuhnya .form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d4d4d4;
    border-radius: 6px;
    font-size: 14px;
    box-sizing: border-box;
}
#zayavkaKuhnya .form-control:focus,
#zayavkaKuhnya .form-control:focus-visible {
    outline: none !important;
    border-color: #b9985d !important;
    box-shadow: none !important;
}
#zayavkaKuhnya .personalAccept {
    font-size: 11px;
    color: #888;
    line-height: 1.45;
    margin: 14px 0 16px;
}
#zayavkaKuhnya .personalAccept a { color: #b9985d; }
#zayavkaKuhnya .thm-btn {
    width: 100%;
    padding: 14px 24px;
    background: #b9985d;
    color: #fff;
    border: 0;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background .15s;
}
#zayavkaKuhnya .thm-btn:hover { background: #a78449; }
.zayavka-kuhnya-summary { font-size: 13px; color: #555; }
.zayavka-kuhnya-summary [data-summary] { color: #b9985d; font-weight: 600; }
@keyframes kuhnyaModalIn {
    from { transform: scale(.95); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
#zayavkaKuhnya .hystmodal__close {
    position: absolute; top: 12px; right: 12px;
    width: 32px; height: 32px;
    background: transparent; border: 0; cursor: pointer;
    color: #999;
    font-size: 0;
}
#zayavkaKuhnya .hystmodal__close::before,
#zayavkaKuhnya .hystmodal__close::after {
    content: ""; position: absolute; top: 50%; left: 50%;
    width: 18px; height: 2px; background: #555;
    transform-origin: center;
}
#zayavkaKuhnya .hystmodal__close::before { transform: translate(-50%, -50%) rotate(45deg); }
#zayavkaKuhnya .hystmodal__close::after { transform: translate(-50%, -50%) rotate(-45deg); }
#zayavkaKuhnya .hystmodal__close:hover::before,
#zayavkaKuhnya .hystmodal__close:hover::after { background: #b9985d; }

/* === Вместе с этим покупают === */
.kuhnya-buywith { margin-top: 60px; }
.kuhnya-buywith__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 24px;
}
@media (max-width: 991px) { .kuhnya-buywith__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .kuhnya-buywith__grid { grid-template-columns: 1fr; } }
.kuhnya-buywith-card {
    display: block;
    background: #f7f5f0;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform .2s, box-shadow .2s;
}
.kuhnya-buywith-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    color: inherit;
    text-decoration: none;
}
.kuhnya-buywith-card__img {
    aspect-ratio: 4 / 3;
    background: #ece6d6;
    overflow: hidden;
}
.kuhnya-buywith-card__img img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform .3s;
}
.kuhnya-buywith-card:hover .kuhnya-buywith-card__img img {
    transform: scale(1.05);
}
.kuhnya-buywith-card__name {
    padding: 14px 18px 16px;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    color: #222;
}

/* === Другие модульные кухни === */
.kuhnya-others { margin-top: 60px; }
.kuhnya-others__header { margin-bottom: 24px; }
.kuhnya-others__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
@media (max-width: 991px) { .kuhnya-others__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 767px) { .kuhnya-others__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .kuhnya-others__grid { grid-template-columns: 1fr; } }
.kuhnya-other-card {
    display: block;
    background: #f2eeeb;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    transition: transform .2s;
}
.kuhnya-other-card:hover { transform: translateY(-3px); text-decoration: none; color: inherit; }
.kuhnya-other-card__img {
    aspect-ratio: 4 / 3;
    background-color: #e8e3dc;
    background-size: cover;
    background-position: center;
}
.kuhnya-other-card__name {
    padding: 14px 18px;
    font-size: 15px;
    font-weight: 500;
    color: #222;
    text-align: center;
}
.kuhnya-others__more {
    text-align: center;
    margin-top: 30px;
}

/* === FAQ — стили подтягиваются от темы (ambed.css .faq-one-accrodion) === */
.kuhnya-faq { margin-top: 60px; }
.kuhnya-faq .accrodion-grp { margin-top: 24px; }

/* === Активный выбор + tooltip === */
.kuhnya-option__selected {
    color: #b9985d;
    font-weight: 600;
    margin-left: 4px;
}
.kuhnya-color-dot { position: relative; }
.kuhnya-color-dot:hover::after {
    content: attr(title);
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: #222;
    color: #fff;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 4px;
    white-space: nowrap;
    pointer-events: none;
    z-index: 10;
}
.kuhnya-color-dot:hover::before {
    content: "";
    position: absolute;
    bottom: calc(100% + 4px);
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #222;
    pointer-events: none;
    z-index: 10;
}

/* ---- Карточки фасада (как столешницы) ---- */
.kuhnya-facade { width: 92px; cursor: pointer; text-align: center; }
.kuhnya-facade__img {
    aspect-ratio: 1 / 1; border-radius: 8px; overflow: hidden; background: #f5f5f5;
    border: 2px solid transparent; transition: border-color .15s; margin-bottom: 6px;
}
.kuhnya-facade.is-active .kuhnya-facade__img { border-color: #b9985d; }
.kuhnya-facade__label { font-size: 12px; color: #666; line-height: 1.3; }

/* ---- Этапы заказа ---- */
.kuhnya-steps { margin: 50px 0 40px; }
.kuhnya-steps__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}
.kuhnya-step {
    background: #f8f6f1;
    padding: 30px 24px 28px;
    position: relative;
    transition: transform .2s, box-shadow .2s;
}
.kuhnya-step:hover { transform: translateY(-3px); box-shadow: 0 6px 18px rgba(185,152,93,0.15); }
.kuhnya-step__num {
    font-size: 48px;
    font-weight: 700;
    color: #b9985d;
    line-height: 1;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}
.kuhnya-step__title {
    font-size: 18px;
    font-weight: 600;
    color: #222;
    margin-bottom: 8px;
}
.kuhnya-step__desc {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}
@media (max-width: 991px) { .kuhnya-steps__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .kuhnya-steps__grid { grid-template-columns: 1fr; } }

/* ---- Отдельный видео-блок ---- */
.kuhnya-video-block { margin: 0 0 50px; }
.kuhnya-video-block .kuhnya-facade-video__play {
    display: block;
    position: relative;
    overflow: hidden;
}
.kuhnya-video-block .kuhnya-facade-video__poster { width: 100%; height: auto; display: block; }

/* ---- Мобильный: столешницы в один ряд с горизонтальным скроллом ---- */
@media (max-width: 575px) {
    .kuhnya-option__items[data-option="tabletop"] {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        padding-bottom: 6px;
    }
    .kuhnya-option__items[data-option="tabletop"] .kuhnya-tabletop {
        flex: 0 0 auto;
    }
}
