.product_image img {
    width: 100%;
}
.catalog-page {
    background: #f4efe8;
}

.catalog-page .container {
    max-width: 1360px;
}

.catalog-hero {
    padding: 10px 0 12px;
}

.catalog-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(17, 24, 39, 0.06);
    color: #4b5563;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.catalog-hero__title {
    margin: 0;
    font-size: clamp(42px, 4vw, 72px);
    line-height: 1;
    font-weight: 800;
    color: #0f172a;
}

.catalog-hero__text {
    max-width: 820px;
    margin-top: 16px;
    color: #5b6472;
    line-height: 1.7;
}

.catalog-chipbar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 28px 0 30px;
}

.catalog-chip {
    display: inline-flex;
    align-items: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid rgba(17, 24, 39, 0.08);
    background: rgba(255,255,255,.75);
    color: #111827;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: .25s ease;
}

.catalog-chip:hover {
    color: #111827;
    background: #fff;
    border-color: rgba(17, 24, 39, 0.18);
    transform: translateY(-1px);
}

.catalog-categories-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.catalog-showcase {
    margin-top: 10px;
}

.catalog-block {
    margin-top: 44px;
    padding-top: 34px;
    border-top: 1px solid rgba(17, 24, 39, 0.08);
}

.catalog-block__head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

.catalog-block__kicker {
    display: inline-block;
    margin-bottom: 8px;
    color: #9a5b20;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.catalog-block__title {
    margin: 0;
    font-size: clamp(28px, 2.5vw, 44px);
    line-height: 1.06;
    font-weight: 800;
    color: #0f172a;
}

.catalog-block__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #0f172a;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.catalog-block__link:hover {
    color: #0f172a;
    opacity: .75;
}

.catalog-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    align-items: stretch;
}

.catalog-products-grid__item {
    min-width: 0;
    margin: 0;
}

.catalog-card {
    display: block;
    height: 100%;
    overflow: hidden;
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
    text-decoration: none;
    transition: transform .3s ease, box-shadow .3s ease;
}

.catalog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.12);
}

.catalog-media {
    position: relative;
    overflow: hidden;
    background: #e9e1d7;
    aspect-ratio: 4 / 3;
}
.catalog-media img {
    width: 100%;
}
.catalog-media--product {
    aspect-ratio: 4 / 4.2;
}

.catalog-media__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .45s ease;
}

.catalog-card:hover .catalog-media__img {
    transform: scale(1.03);
}

.catalog-media__empty {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #7c7c7c;
    font-size: 15px;
    font-weight: 600;
}

.catalog-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255,255,255,.9);
    color: #111827;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.catalog-body {
    padding: 22px;
}

.catalog-body--product {
    display: flex;
    flex-direction: column;
    min-height: 190px;
}

.catalog-meta {
    margin-bottom: 10px;
    color: #9a5b20;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.catalog-card__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.catalog-title {
    margin: 0;
    color: #0f172a;
    font-size: 28px;
    line-height: 1.12;
    font-weight: 800;
}

.catalog-title--product {
    font-size: 22px;
}

.catalog-title a {
    color: inherit;
    text-decoration: none;
}

.catalog-title a:hover {
    color: inherit;
    opacity: .8;
}

.catalog-card-arrow {
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #0f172a;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.catalog-price {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 10px;
    margin-top: 14px;
}

.catalog-price__current {
    color: #0f172a;
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
}

.catalog-price del {
    color: #97a0ad;
    font-size: 16px;
}

.catalog-actions {
    margin-top: auto;
    padding-top: 18px;
}

.catalog-btn {
    padding: 10px 22px;
    border-radius: 999px;
    font-weight: 700;
}

.hero-video-section {
    position: relative;
}

.hero-video-wrap {
    position: relative;
    width: 100%;
    min-height: calc(100dvh - var(--site-header-h));
    overflow: hidden;
    background: #000;
}

.hero-video-el {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.18);
    pointer-events: none;
    z-index: 1;
}

.hero-video-content {
    position: relative;
    z-index: 2;
    height: 100%;
}

.hero-video-inner {
    min-height: calc(100dvh - var(--site-header-h));
    display: flex;
    align-items: center;
}
.future-vision-section {
    position: relative;
    padding: 120px 0;
    background: #f4f4f2;
    overflow: hidden;
}

.future-vision-section::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(10, 20, 40, 0.045) 0%, rgba(10, 20, 40, 0) 72%);
    pointer-events: none;
}

.future-vision-box {
    position: relative;
}

.future-vision-left {
    padding-right: 40px;
}

.future-vision-kicker {
    display: inline-block;
    margin-bottom: 22px;
    font-size: 12px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #707782;
}

.future-vision-title {
    margin: 0;
    color: #0e1320;
    font-size: clamp(44px, 6vw, 92px);
    line-height: 0.95;
    font-weight: 500;
    letter-spacing: -0.04em;
}

.future-vision-right {
    position: relative;
    padding-left: 46px;
}

.future-vision-right::before {
    content: "";
    position: absolute;
    top: 6px;
    left: 0;
    width: 1px;
    height: calc(100% - 12px);
    background: rgba(14, 19, 32, 0.12);
}

.future-vision-text {
    margin: 0;
    max-width: 560px;
    color: #20283a;
    font-size: 21px;
    line-height: 1.75;
    font-weight: 400;
}

.future-vision-bottom {
    margin-top: 42px;
}

.future-vision-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 18px;
    color: #0e1320;
    text-decoration: none;
    font-size: 13px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: opacity .25s ease;
}

.future-vision-link:hover {
    color: #0e1320;
    opacity: .72;
}

.future-vision-link-line {
    display: block;
    width: 82px;
    height: 1px;
    background: #0e1320;
    transition: width .25s ease;
}

.future-vision-link:hover .future-vision-link-line {
    width: 110px;
}
.catalog-preview-section {
    padding: 110px 0;
    background: #f5f5f3;
}

.catalog-preview-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 34px;
}

.catalog-preview-kicker {
    display: inline-block;
    margin-bottom: 10px;
    color: #7d838f;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.catalog-preview-title {
    margin: 0;
    color: #111827;
    font-size: clamp(34px, 4.5vw, 64px);
    line-height: .95;
    font-weight: 500;
    letter-spacing: -.04em;
}

.catalog-preview-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.catalog-preview-card {
    display: block;
    text-decoration: none;
    color: #111827;
}

.catalog-preview-card__media {
    position: relative;
    overflow: hidden;
    background: #ececea;
    aspect-ratio: 0.78 / 1;
}

.catalog-preview-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transition: transform .45s ease;
}

.catalog-preview-card:hover .catalog-preview-card__media img {
    transform: scale(1.03);
}

.catalog-preview-card__body {
    padding-top: 16px;
}

.catalog-preview-card__body h3 {
    margin: 0;
    color: #111827;
    font-size: 18px;
    line-height: 1.25;
    font-weight: 500;
    text-transform: lowercase;
}

.catalog-preview-card--accent .catalog-preview-card__body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.catalog-preview-card__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #111827;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    white-space: nowrap;
}

.catalog-preview-card:hover .catalog-preview-card__link {
    opacity: .75;
}
.promo-feature-section {
    padding: 110px 0;
    background: #f4f4f2;
}

.promo-feature-box {
    position: relative;
}

.promo-feature-media {
    position: relative;
    display: block;
    overflow: hidden;
    background: #ebeae7;
    min-height: 620px;
}

.promo-feature-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
    transition: transform .55s ease;
}

.promo-feature-media:hover img {
    transform: scale(1.025);
}

.promo-feature-content {
    max-width: 420px;
    margin-left: auto;
    padding: 48px 0 48px 56px;
}

.promo-feature-kicker {
    display: inline-block;
    margin-bottom: 18px;
    color: #707782;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.promo-feature-title {
    margin: 0;
    color: #111827;
    font-size: clamp(36px, 4vw, 64px);
    line-height: .96;
    font-weight: 500;
    letter-spacing: -.04em;
}

.promo-feature-text {
    margin: 28px 0 0;
    color: #2d3443;
    font-size: 17px;
    line-height: 1.85;
    max-width: 360px;
}

.promo-feature-link {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-top: 34px;
    color: #111827;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    transition: opacity .25s ease;
}

.promo-feature-link:hover {
    color: #111827;
    opacity: .75;
}

.promo-feature-link-line {
    width: 74px;
    height: 1px;
    background: #111827;
    transition: width .25s ease;
}

.promo-feature-link:hover .promo-feature-link-line {
    width: 98px;
}
.showroom-section {
    padding: 110px 0;
    background: #f4f4f2;
}

.showroom-box {
    overflow: hidden;
    background: #b7ba9d;
}

.showroom-content {
    min-height: 760px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
}

.showroom-content__inner {
    width: 100%;
    max-width: 500px;
}

.showroom-kicker {
    display: inline-block;
    margin-bottom: 18px;
    color: rgba(17, 24, 39, 0.7);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.showroom-title {
    margin: 0;
    color: #111827;
    font-size: clamp(42px, 5vw, 78px);
    line-height: 0.95;
    font-weight: 500;
    letter-spacing: -0.04em;
}

.showroom-text {
    margin: 28px 0 0;
    max-width: 390px;
    color: #2a3241;
    font-size: 17px;
    line-height: 1.8;
}

.showroom-link {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-top: 34px;
    color: #111827;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    transition: opacity .25s ease;
}

.showroom-link:hover {
    color: #111827;
    opacity: .75;
}

.showroom-link-line {
    width: 72px;
    height: 1px;
    background: #111827;
    transition: width .25s ease;
}

.showroom-link:hover .showroom-link-line {
    width: 96px;
}

.showroom-media {
    display: block;
    height: 100%;
    min-height: 760px;
    overflow: hidden;
    background: #d8d8d2;
}

.showroom-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
    transition: transform .5s ease;
}

.showroom-media:hover img {
    transform: scale(1.03);
}
.home-gallery-section {
    padding: 90px 0 70px;
    background: #f4f4f2;
    overflow: hidden;
}

.home-gallery-head {
    margin-bottom: 26px;
}

.home-gallery-kicker {
    display: inline-block;
    color: #111827;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: lowercase;
}

.home-gallery-slider {
    overflow: visible;
}

.home-gallery-slider .swiper-slide {
    width: auto;
    transition: opacity .35s ease, transform .35s ease;
    opacity: .28;
}

.home-gallery-slider .swiper-slide-active {
    opacity: 1;
}

.home-gallery-card {
    position: relative;
    display: block;
    overflow: hidden;
    background: #ebe9e4;
    aspect-ratio: 1.72 / 1;
}

.home-gallery-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
    transition: transform .6s ease;
}

.home-gallery-slider .swiper-slide-active .home-gallery-card img:hover {
    transform: scale(1.02);
}

.home-gallery-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 18px;
    color: #4b5563;
    font-size: 18px;
    line-height: 1;
    font-weight: 400;
}

.home-gallery-current,
.home-gallery-total {
    min-width: 20px;
    text-align: center;
}

.home-gallery-sep {
    opacity: .7;
}
.order-drawer {
    width: min(460px, 100vw);
    max-width: none;
    height: 100dvh;
    max-height: 100dvh;
    margin: 0 0 0 auto;
    padding: 0;
    border: 0;
    background: transparent;
    overflow: visible;
}

.order-drawer[open] {
    display: flex;
    justify-content: flex-end;
}

.order-drawer::backdrop {
    background: rgba(16, 18, 24, 0.42);
    backdrop-filter: blur(2px);
}

.order-drawer__panel {
    position: relative;
    width: min(460px, 100vw);
    height: 100dvh;
    padding: 34px 38px;
    background: #fff;
    overflow-y: auto;
    box-shadow: -16px 0 40px rgba(0, 0, 0, 0.08);
    animation: orderDrawerIn .28s ease forwards;
}

@keyframes orderDrawerIn {
    from {
        transform: translateX(44px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.order-drawer__close {
    position: absolute;
    top: 22px;
    right: 22px;
    width: 34px;
    height: 34px;
    border: 0;
    background: transparent;
    color: #9ca3af;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    transition: .2s ease;
}

.order-drawer__close:hover {
    color: #111827;
}

.order-drawer__head {
    padding-right: 34px;
    margin-bottom: 28px;
}

.order-drawer__title {
    margin: 0 0 10px;
    color: #111827;
    font-size: 36px;
    line-height: 1;
    font-weight: 400;
    text-transform: lowercase;
}

.order-drawer__desc {
    margin: 0;
    color: #6b7280;
    font-size: 13px;
    line-height: 1.7;
}

.order-drawer__product {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 22px;
    margin-bottom: 22px;
    border-bottom: 1px solid #e5e7eb;
}

.order-drawer__product-image {
    flex: 0 0 72px;
    width: 72px;
    height: 52px;
    background: #f3f4f6;
    overflow: hidden;
}

.order-drawer__product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.order-drawer__product-name {
    color: #111827;
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 6px;
}

.order-drawer__product-prices {
    display: flex;
    align-items: center;
    gap: 10px;
}

.order-drawer__product-price {
    color: #111827;
    font-size: 26px;
    line-height: 1;
    font-weight: 500;
}

.order-drawer__product-old-price {
    color: #9ca3af;
    font-size: 15px;
}

.order-drawer__field {
    margin-bottom: 18px;
}

.order-drawer__field input[type="text"],
.order-drawer__field input[type="email"] {
    width: 100%;
    height: 48px;
    border: 0;
    border-bottom: 1px solid #d1d5db;
    background: transparent;
    color: #111827;
    font-size: 15px;
    padding: 0;
    outline: none;
    transition: border-color .2s ease;
}

.order-drawer__field input:focus {
    border-color: #111827;
}

.order-drawer__field input::placeholder {
    color: #9ca3af;
}

.order-drawer__label {
    margin-bottom: 10px;
    color: #111827;
    font-size: 14px;
    font-weight: 500;
}

.order-drawer__radio {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    color: #4b5563;
    font-size: 14px;
    cursor: pointer;
}

.order-drawer__submit {
    margin-top: 10px;
    border: 0;
    background: transparent;
    color: #111827;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .12em;
    padding: 0;
    border-bottom: 1px solid #111827;
    cursor: pointer;
    transition: .2s ease;
}

.order-drawer__submit:hover {
    opacity: .7;
}

.order-drawer__policy {
    margin-top: 18px;
    color: #9ca3af;
    font-size: 12px;
    line-height: 1.6;
}

.order-drawer__policy a {
    color: inherit;
    text-decoration: underline;
}
.search-page-block {
    padding: 72px 0 96px;
    background: #f6f4ef;
}

.search-page-top {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 32px;
    margin-bottom: 34px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(17, 24, 39, 0.08);
}

.search-page-top__right {
    width: 100%;
    max-width: 420px;
}

.search-page-title {
    margin: 0;
    color: #111827;
    font-size: clamp(34px, 4vw, 58px);
    line-height: .96;
    font-weight: 500;
    letter-spacing: -0.04em;
}

.search-page-found {
    margin-bottom: 28px;
    color: #6b7280;
    font-size: 15px;
    line-height: 1.4;
}

.search-page-found span {
    color: #111827;
    font-weight: 600;
}

.search-page-form__label {
    display: inline-block;
    margin-bottom: 10px;
    color: #6b7280;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.search-page-form__field {
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(17, 24, 39, 0.16);
}

.search-page-form__field input {
    width: 100%;
    height: 52px;
    border: 0;
    background: transparent;
    color: #111827;
    font-size: 16px;
    outline: none;
    padding: 0;
}

.search-page-form__field input::placeholder {
    color: #9ca3af;
}

.search-page-form__field button {
    width: 40px;
    height: 40px;
    border: 0;
    background: transparent;
    color: #111827;
    font-size: 18px;
    cursor: pointer;
    transition: opacity .2s ease;
}

.search-page-form__field button:hover {
    opacity: .65;
}

.search-results-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.search-card {
    background: #fff;
    border: 1px solid rgba(17, 24, 39, 0.06);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.search-card:hover {
    transform: translateY(-3px);
    border-color: rgba(17, 24, 39, 0.12);
    box-shadow: 0 12px 30px rgba(17, 24, 39, 0.06);
}

.search-card__image {
    display: block;
    aspect-ratio: 1 / 1.04;
    overflow: hidden;
    background: #ece8df;
}

.search-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}

.search-card:hover .search-card__image img {
    transform: scale(1.02);
}

.search-card__body {
    padding: 18px 18px 22px;
}

.search-card__meta {
    margin-bottom: 10px;
    color: #8b5e3c;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.search-card__price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 10px;
    color: #111827;
    font-size: 20px;
    line-height: 1.1;
    font-weight: 600;
}

.search-card__price del {
    color: #9ca3af;
    font-size: 14px;
    font-weight: 400;
}

.search-card__title {
    margin: 0;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 400;
}

.search-card__title a {
    color: #111827;
    text-decoration: none;
}

.search-card__title a:hover {
    opacity: .72;
}

.search-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 42px;
}

.search-pagination__item {
    min-width: 44px;
    height: 44px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid rgba(17, 24, 39, 0.08);
    color: #111827;
    text-decoration: none;
    font-size: 15px;
    transition: .2s ease;
}

.search-pagination__item:hover {
    background: #f0ede7;
    border-color: rgba(17, 24, 39, 0.16);
}

.search-pagination__item.is-active {
    background: #111827;
    border-color: #111827;
    color: #fff;
}

.search-empty {
    padding: 52px 0 20px;
    text-align: center;
}

.search-empty__title {
    margin: 0 0 12px;
    color: #111827;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1;
    font-weight: 500;
}

.search-empty__text {
    margin: 0;
    color: #6b7280;
    font-size: 16px;
    line-height: 1.6;
}

.ui-autocomplete.ui-menu {
    padding: 10px !important;
    margin: 10px 0 0 !important;
    border: 1px solid rgba(17, 24, 39, 0.08) !important;
    background: #fff !important;
    box-shadow: 0 16px 40px rgba(17, 24, 39, 0.10) !important;
    border-radius: 0 !important;
    overflow: hidden !important;
    z-index: 9999 !important;
    max-height: 420px !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    list-style: none !important;
}

.ui-autocomplete .ui-menu-item,
.ui-autocomplete .mse2-ac-wrapper {
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    list-style: none !important;
}

.ui-autocomplete .ui-menu-item-wrapper,
.ui-autocomplete .mse2-ac-link {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    color: inherit !important;
}

.ui-autocomplete .mse2-ac-item {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    padding: 12px !important;
    text-decoration: none !important;
    background: #fff !important;
    transition: background .2s ease, transform .2s ease !important;
}

.ui-autocomplete .ui-menu-item-wrapper.ui-state-active,
.ui-autocomplete .ui-state-active .mse2-ac-item,
.ui-autocomplete .mse2-ac-item:hover {
    background: #f5f1ea !important;
    margin: 0 !important;
    border: 0 !important;
    color: #111827 !important;
}

.ui-autocomplete .mse2-ac-item__image {
    flex: 0 0 64px !important;
    width: 64px !important;
    height: 64px !important;
    overflow: hidden !important;
    background: #f3f4f6 !important;
}

.ui-autocomplete .mse2-ac-item__image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}

.ui-autocomplete .mse2-ac-item__name {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    color: #111827 !important;
    font-size: 15px !important;
    line-height: 1.35 !important;
    font-weight: 500 !important;
    white-space: normal !important;
}

.ui-autocomplete .ui-menu-divider {
    margin: 6px 0 !important;
    height: 1px !important;
    border: 0 !important;
    background: rgba(17, 24, 39, 0.08) !important;
}

.ui-autocomplete.ui-menu::-webkit-scrollbar {
    width: 8px;
}

.ui-autocomplete.ui-menu::-webkit-scrollbar-thumb {
    background: rgba(17, 24, 39, 0.18);
}

.ui-autocomplete.ui-menu::-webkit-scrollbar-track {
    background: transparent;
}
.ui-autocomplete .mse2-ac-item__content {
    flex: 1 1 auto !important;
    min-width: 0 !important;
}

.ui-autocomplete .mse2-ac-item__price {
    margin-top: 4px !important;
    color: #6b7280 !important;
    font-size: 13px !important;
    line-height: 1.3 !important;
}
@media (max-width: 1199.98px) {
    .future-vision-section {
        padding: 96px 0;
    }
    .future-vision-text {
        font-size: 19px;
    }
    .catalog-products-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .catalog-preview-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .promo-feature-media {
        min-height: 560px;
    }

    .promo-feature-content {
        padding-left: 40px;
    }
    .showroom-content,
    .showroom-media {
        min-height: 640px;
    }
    .search-results-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 991.98px) {
    .catalog-block__head {
        flex-direction: column;
        align-items: flex-start;
    }

    .catalog-title {
        font-size: 22px;
    }

    .catalog-title--product {
        font-size: 19px;
    }

    .catalog-body {
        padding: 18px;
    }

    .catalog-products-grid,
    .catalog-categories-grid {
        grid-template-columns: 1fr;
    }
    .catalog-categories-grid,
    .catalog-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .hero-video-wrap {
        min-height: calc(50svh - (var(--site-header-h) * 0.5));
    }

    .hero-video-inner {
        min-height: calc(50svh - (var(--site-header-h) * 0.5));
    }
    .future-vision-section {
        padding: 72px 0;
    }

    .future-vision-left {
        padding-right: 0;
    }

    .future-vision-right {
        padding-left: 0;
    }

    .future-vision-right::before {
        display: none;
    }

    .future-vision-text {
        max-width: none;
        font-size: 18px;
        line-height: 1.7;
    }

    .future-vision-bottom {
        margin-top: 30px;
    }
    .catalog-preview-section {
        padding: 80px 0;
    }

    .catalog-preview-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .catalog-preview-head {
        margin-bottom: 26px;
    }
    .promo-feature-section {
        padding: 80px 0;
    }

    .promo-feature-media {
        min-height: 440px;
    }

    .promo-feature-content {
        max-width: none;
        padding: 36px 0 0;
        margin-left: 0;
    }

    .promo-feature-text {
        max-width: none;
    }
    .showroom-section {
        padding: 80px 0;
    }

    .showroom-content,
    .showroom-media {
        min-height: auto;
    }

    .showroom-media {
        height: 420px;
    }

    .showroom-content {
        padding: 48px 28px;
        justify-content: flex-start;
    }

    .showroom-content__inner {
        max-width: none;
    }

    .showroom-text {
        max-width: none;
    }
    .home-gallery-section {
        padding: 70px 0 54px;
    }

    .home-gallery-card {
        aspect-ratio: 1.45 / 1;
    }

    .home-gallery-counter {
        margin-top: 14px;
        font-size: 16px;
    }
    .search-page-block {
        padding: 56px 0 72px;
    }

    .search-page-top {
        flex-direction: column;
        align-items: stretch;
    }

    .search-page-top__right {
        max-width: none;
    }
}

@media (max-width: 767.98px) {
    .catalog-categories-grid,
    .catalog-products-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 575.98px) {
    .future-vision-title {
        font-size: clamp(38px, 12vw, 58px);
        line-height: 0.98;
    }

    .future-vision-kicker {
        margin-bottom: 16px;
        font-size: 11px;
    }

    .future-vision-text {
        font-size: 16px;
        line-height: 1.65;
    }

    .future-vision-link {
        gap: 12px;
        font-size: 11px;
        letter-spacing: 0.16em;
    }

    .future-vision-link-line {
        width: 56px;
    }
    .catalog-preview-grid {
        grid-template-columns: 1fr;
    }

    .catalog-preview-card__body h3 {
        font-size: 17px;
    }

    .catalog-preview-card--accent .catalog-preview-card__body {
        align-items: flex-start;
        flex-direction: column;
    }
    .promo-feature-media {
        min-height: 300px;
    }

    .promo-feature-title {
        font-size: clamp(30px, 10vw, 46px);
    }

    .promo-feature-text {
        font-size: 15px;
        line-height: 1.7;
    }

    .promo-feature-link {
        gap: 12px;
        font-size: 11px;
    }

    .promo-feature-link-line {
        width: 52px;
    }
    .showroom-media {
        height: 300px;
    }

    .showroom-content {
        padding: 36px 20px;
    }

    .showroom-title {
        font-size: clamp(34px, 12vw, 52px);
    }

    .showroom-text {
        font-size: 15px;
        line-height: 1.7;
    }

    .showroom-link {
        gap: 12px;
        font-size: 11px;
    }

    .showroom-link-line {
        width: 52px;
    }
    .home-gallery-section {
        padding: 56px 0 44px;
    }

    .home-gallery-head {
        margin-bottom: 18px;
    }

    .home-gallery-card {
        aspect-ratio: 1.18 / 1;
    }
    .order-drawer__panel {
        padding: 26px 20px;
    }

    .order-drawer__title {
        font-size: 28px;
    }

    .order-drawer__product-price {
        font-size: 22px;
    }
    .search-results-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .search-card__body {
        padding: 16px 16px 20px;
    }

    .search-card__price {
        font-size: 18px;
    }

    .search-card__title {
        font-size: 16px;
    }

    .search-pagination {
        flex-wrap: wrap;
        gap: 8px;
    }

    .search-pagination__item {
        min-width: 40px;
        height: 40px;
        font-size: 14px;
    }
    .ui-autocomplete.ui-menu {
        width: calc(100vw - 32px) !important;
        left: 16px !important;
        right: 16px !important;
        z-index: 999999 !important;
    }

    .ui-autocomplete .mse2-ac-item {
        padding: 10px !important;
        gap: 12px !important;
    }

    .ui-autocomplete .mse2-ac-item__image {
        flex-basis: 56px !important;
        width: 56px !important;
        height: 56px !important;
    }

    .ui-autocomplete .mse2-ac-item__name {
        font-size: 14px !important;
    }
}