/* refresh-cards */
/*
 * Hua Hin MM Group — мягкое обновление карточек и страницы объекта.
 * Файл подключается ПОСЛЕ старых style.css/responsive.css.
 * Для полного отката достаточно убрать его подключение из views/layouts/main.php.
 */

:root {
    --mm-orange: #d87925;
    --mm-orange-dark: #bd6418;
    --mm-blue: #249bd7;
    --mm-text: #20242a;
    --mm-muted: #737982;
    --mm-line: #e8eaed;
    --mm-surface: #ffffff;
    --mm-soft: #f6f7f8;
    --mm-radius: 16px;
    --mm-shadow: 0 12px 32px rgba(24, 31, 39, .10);
}

html {
    scroll-behavior: smooth;
}

/* ---------- Карточки объектов ---------- */

.product {
    overflow: hidden;
    border: 1px solid var(--mm-line);
    border-radius: var(--mm-radius);
    background: var(--mm-surface);
    box-shadow: var(--mm-shadow);
    text-align: left;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.product:before {
    display: none;
}

.product:hover {
    transform: translateY(-3px);
    border-color: rgba(216, 121, 37, .28);
    box-shadow: 0 18px 44px rgba(24, 31, 39, .14);
}

.product-img {
    padding-bottom: 62.5%;
    background-color: #eef0f2;
    background-size: 72px auto;
}

.product-img:hover {
    opacity: 1;
}

.product-img .product-slider,
.product-img .slick-list,
.product-img .slick-track,
.product-img .slick-slide,
.product-img .slick-slide > div,
.product-img .slick-slide a,
.product-img .slick-slide .js-href {
    height: 100%;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product .object-slider-left,
.product .object-slider-right {
    top: 50%;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, .90);
    background-size: 11px auto;
    box-shadow: 0 5px 18px rgba(0, 0, 0, .16);
    opacity: .92;
    transform: translateY(-50%);
}

.product .object-slider-left {
    left: 12px;
}

.product .object-slider-right {
    right: 12px;
}

.product .object-slider-left:hover,
.product .object-slider-right:hover {
    opacity: 1;
}

.product-info {
    padding: 19px 21px 17px;
}

.product-info > div:first-child {
    margin: 0 0 10px !important;
    color: #90959c !important;
    font-size: 12px;
    line-height: 1.35;
    letter-spacing: .035em;
}

.product-marker {
    min-height: 0;
    margin-bottom: 12px;
}

.product-marker > div {
    margin: 0 5px 0 0;
    padding: 5px 10px;
    border-radius: 7px;
    font-size: 11px;
    line-height: 1.2;
    letter-spacing: .035em;
}

.product-marker-rent {
    background: var(--mm-orange);
}

.product-name,
.product-name.tb,
.product-name .td {
    display: block;
    height: auto;
}

.product-name {
    min-height: 58px;
    margin: 0 0 17px;
    color: var(--mm-text);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.42;
}

.product-name a,
.product-name .js-href {
    color: var(--mm-text);
}

.product-line {
    display: none;
}

.product-price {
    margin: 0 0 4px !important;
    color: var(--mm-text);
    font-family: Roboto, Arial, sans-serif;
    font-size: 21px;
    font-weight: 700;
    line-height: 1.35;
}

.product-price + .product-price {
    margin: 0 !important;
    color: var(--mm-muted);
    font-size: 14px;
    font-weight: 400;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 21px;
    border-top: 1px solid var(--mm-line);
    background: var(--mm-surface);
    color: var(--mm-orange-dark);
    font-size: 14px;
    font-weight: 700;
    text-transform: none;
}

.product-footer:hover {
    background: #fff9f3;
}

.product-footer:after {
    margin-left: 12px;
}

/* ---------- Страница отдельного объекта ---------- */

#availability,
#consultation {
    scroll-margin-top: 82px;
}

#availability {
    background: #fafafa;
}

#availability .input input {
    border: 1px solid var(--mm-line);
    border-radius: 11px;
    background: var(--mm-surface);
}

#availability .button {
    border-radius: 11px;
    background: var(--mm-orange);
    box-shadow: 0 8px 20px rgba(189, 100, 24, .22);
}

#availability .button:hover {
    background: var(--mm-orange-dark);
}

.object > .column > div:first-child > .object-slider {
    overflow: hidden;
    border-radius: var(--mm-radius);
    background: #eef0f2;
    box-shadow: var(--mm-shadow);
}

.object > .column > div:first-child > .object-slider .slick-slide img {
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.object > .column > div:first-child > .object-slider > .object-slider-left,
.object > .column > div:first-child > .object-slider > .object-slider-right {
    top: 50%;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, .90);
    background-size: 13px auto;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .18);
    opacity: .92;
    transform: translateY(-50%);
}

.object > .column > div:first-child > .object-slider > .object-slider-left {
    left: 14px;
}

.object > .column > div:first-child > .object-slider > .object-slider-right {
    right: 14px;
}

.object-content {
    padding: 27px 30px;
    border: 1px solid var(--mm-line);
    border-radius: var(--mm-radius);
    background: var(--mm-surface);
    box-shadow: 0 10px 28px rgba(24, 31, 39, .08);
}

.object-section {
    margin-bottom: 24px;
    padding-bottom: 24px;
}

.object-price {
    color: var(--mm-text);
    font-family: Roboto, Arial, sans-serif;
    font-size: 28px;
    line-height: 1.25;
}

.object-param {
    margin: 0 15px 8px;
}

.object-content .text {
    color: #3f444b;
    text-align: left;
}

.object-content .text h2,
.object-content .text h3 {
    color: var(--mm-text);
    text-align: left;
}

.object-content .text p,
.object-content .text ul,
.object-content .text ol {
    line-height: 1.68;
}

/*
 * Описания из старого редактора проходят через nl2br(). Из-за этого
 * форматирующие переводы строк вокруг HTML-блоков становятся настоящими
 * <br> и накапливаются в большие пустые промежутки. Скрываем только такие
 * служебные переносы внутри контейнера .mm-rent; переносы в тексте остаются.
 */
.object-content .text .mm-rent > br,
.object-content .text .mm-rent > ul > br,
.object-content .text .mm-rent > ol > br {
    display: none;
}

.object-content .text .mm-rent > p > br:first-child,
.object-content .text .mm-rent > p > br:last-child {
    display: none;
}

.object-content .text .mm-rent h2 {
    margin: 0 0 14px !important;
}

.object-content .text .mm-rent h3 {
    margin: 22px 0 10px !important;
}

.object-content .text .mm-rent p {
    margin: 8px 0 !important;
}

.object-content .text .mm-rent ul,
.object-content .text .mm-rent ol {
    margin: 8px 0 16px !important;
    padding-left: 22px !important;
}

.object-content .text .mm-rent li {
    margin: 5px 0 !important;
}

/* По умолчанию новые мобильные элементы скрыты. Без этого CSS сработает hidden. */
.object-mobile-actions[hidden] {
    display: none;
}

/* ---------- Телефоны ---------- */

@media screen and (max-width: 767px) {
    body:has(.object-mobile-actions) {
        padding-bottom: calc(78px + env(safe-area-inset-bottom));
    }

    .catalog-full .column,
    .catalog .column {
        margin-left: 0;
        margin-right: 0;
    }

    .catalog-full .column > div,
    .catalog .column > div {
        padding: 11px 0;
    }

    .catalog .product,
    .catalog-full .product {
        max-width: none;
        margin: 0;
        border-radius: 14px;
    }

    .product:hover {
        transform: none;
    }

    .product-img {
        padding-bottom: 66%;
    }

    .product-info {
        padding: 17px 18px 15px;
    }

    .product-name {
        min-height: 0;
        margin-bottom: 15px;
        font-size: 16px;
    }

    .product-price {
        font-size: 20px;
    }

    .product-footer {
        min-height: 48px;
        box-sizing: border-box;
        padding: 13px 18px;
    }

    #availability {
        padding: 20px 0;
        scroll-margin-top: 72px;
    }

    #availability .column {
        margin: -6px;
    }

    #availability .column > div {
        padding: 6px;
    }

    #availability .input input,
    #availability .button {
        min-height: 50px;
        font-size: 16px;
    }

    .object {
        margin-top: 24px;
    }

    .object > .column {
        margin: 0;
    }

    .object > .column > div {
        padding: 0;
    }

    .object > .column > div + div {
        margin-top: 18px;
    }

    .object > .column > div:first-child > .object-slider {
        border-radius: 13px;
    }

    .object > .column > div:first-child > .object-slider > .object-slider-left,
    .object > .column > div:first-child > .object-slider > .object-slider-right {
        width: 38px;
        height: 38px;
        background-size: 11px auto;
    }

    .object-slider-dots[data-total] {
        margin-top: 11px;
        color: var(--mm-muted);
        font-size: 13px;
        font-weight: 700;
        line-height: 24px;
    }

    .object-slider-dots[data-total] ul {
        display: inline;
        counter-reset: mm-photo;
    }

    .object-slider-dots[data-total] li {
        display: inline;
        counter-increment: mm-photo;
    }

    .object-slider-dots[data-total] li button {
        display: none;
    }

    .object-slider-dots[data-total] li.slick-active:before {
        content: counter(mm-photo) " / ";
    }

    .object-slider-dots[data-total]:after {
        content: attr(data-total);
    }

    .object-content {
        padding: 21px 19px;
        border-radius: 13px;
        box-shadow: none;
    }

    .object-section {
        margin-bottom: 20px;
        padding-bottom: 20px;
        text-align: left;
    }

    .object-price {
        font-size: 25px;
    }

    .object-param {
        margin: 0 7px 8px 0;
        padding: 9px 11px;
        border-radius: 9px;
        background: var(--mm-soft);
        font-size: 14px;
    }

    .order-button,
    .order-button2 {
        display: none;
    }

    .object-mobile-actions[hidden] {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 70;
        display: flex !important;
        gap: 9px;
        padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
        border-top: 1px solid rgba(0, 0, 0, .08);
        background: rgba(255, 255, 255, .96);
        box-shadow: 0 -7px 24px rgba(24, 31, 39, .12);
        -webkit-backdrop-filter: blur(12px);
        backdrop-filter: blur(12px);
    }

    .object-mobile-action {
        display: flex;
        min-height: 50px;
        flex: 1 1 50%;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
        border-radius: 11px;
        color: #fff;
        font-size: 14px;
        font-weight: 700;
        line-height: 1.2;
        text-align: center;
        text-decoration: none;
    }

    .object-mobile-action:hover {
        color: #fff;
    }

    .object-mobile-action-telegram {
        background: var(--mm-blue);
    }

    .object-mobile-action-availability {
        background: var(--mm-orange);
    }
}

@media screen and (max-width: 374px) {
    .object-mobile-action {
        font-size: 13px;
    }
}

/* refresh-site */
/*
 * HuaHin MM Group — visual refresh, stage 2.
 * This file is deliberately isolated: remove its link from main.php to roll back.
 */

:root {
    --mm-orange: #d97822;
    --mm-orange-dark: #b95f16;
    --mm-blue: #149bd5;
    --mm-ink: #20262d;
    --mm-muted: #6e7781;
    --mm-line: #e8ebee;
    --mm-soft: #f6f7f8;
    --mm-white: #ffffff;
    --mm-radius: 16px;
    --mm-shadow: 0 14px 40px rgba(28, 36, 44, 0.08);
}

html {
    scroll-behavior: smooth;
}

body,
button,
input,
select,
textarea,
.select-item,
.select select,
.input input,
.textarea textarea {
    font-family: "Manrope", Arial, sans-serif;
}

body {
    color: var(--mm-ink);
    padding-top: 82px;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.wrap {
    padding: 72px 0;
}

.title-h,
.title,
.product-price,
.contacts-text,
.social {
    font-family: "Manrope", Arial, sans-serif;
}

.title-h {
    margin-bottom: 42px;
    font-size: clamp(30px, 3.2vw, 42px);
    line-height: 1.18;
    letter-spacing: -0.035em;
    text-transform: none;
    font-weight: 800;
}

.title-h:before {
    display: none;
}

.title {
    letter-spacing: -0.02em;
    text-transform: none;
}

/* Buttons */

.button,
.filter-button {
    border: 0;
    border-radius: 12px;
    color: #fff;
    background: var(--mm-orange);
    box-shadow: 0 8px 22px rgba(185, 95, 22, 0.22);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.25;
    text-transform: none;
    transition: background-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.button:hover,
.filter-button:hover {
    background: var(--mm-orange-dark);
    box-shadow: 0 10px 24px rgba(185, 95, 22, 0.25);
    transform: translateY(-1px);
}

.button:active,
.filter-button:active {
    box-shadow: 0 4px 12px rgba(185, 95, 22, 0.2);
    transform: translateY(0);
}

.button-big {
    padding: 18px 30px;
    font-size: 17px;
}

.button-on-background {
    box-shadow: 0 12px 30px rgba(84, 41, 8, 0.3);
}

/* Header */

header > div {
    border-bottom-color: rgba(255, 255, 255, 0.24);
}

header .wrap-cont {
    display: flex;
    align-items: center;
    min-height: 60px;
    padding: 11px 15px;
}

header .logo {
    flex: 0 0 250px;
    width: 250px;
    height: 56px;
    float: none;
    background-position: 0 50%;
    background-size: contain;
}

header .header-right {
    height: 56px;
    float: none;
}

.header-menu-wrap {
    order: 2;
    margin-left: auto;
}

.header-contacts {
    order: 3;
    padding-left: 18px;
}

.wrap-lang {
    order: 4;
    padding-left: 22px;
}

.menu-mobile {
    order: 5;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    margin: 0 0 0 18px;
    background-position: 50% 50%;
    background-size: 34px auto;
    border-radius: 10px;
}

.header-messengers {
    order: 3;
}

.menu li {
    margin-right: 22px;
    font-size: 13px;
    font-weight: 600;
    line-height: 56px;
}

.menu li.active:after {
    top: -22px;
    height: 3px;
    border-radius: 0 0 3px 3px;
    background: var(--mm-orange);
}

.switch-lang {
    line-height: 56px;
    font-weight: 700;
}

.header-page {
    box-shadow: 0 6px 22px rgba(26, 31, 36, 0.08);
}

/* Home hero */

.home-hero {
    display: flex;
    align-items: center;
    box-sizing: border-box;
    min-height: 700px;
    margin-top: -82px;
    padding: 170px 0 100px;
    overflow: hidden;
}

.home-hero:after {
    content: "";
    position: absolute;
    z-index: 0;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 91, 139, 0.04) 0%, rgba(5, 91, 139, 0.08) 55%, rgba(8, 64, 96, 0.16) 100%);
}

.home-hero .main-bg {
    inset: 0;
    width: auto;
    height: auto;
    padding: 0;
    background-position: 50% 50%;
    background-size: cover;
    transform: scale(1.01);
}

.home-hero .wrap-cont {
    z-index: 1;
    width: 100%;
}

.home-hero h1,
.home-hero h1 span {
    font-family: "Manrope", Arial, sans-serif;
    font-weight: 800;
    letter-spacing: -0.04em;
    text-transform: none;
}

.home-hero h1 {
    max-width: 970px;
    margin: 0 auto;
    font-size: clamp(22px, 2.5vw, 32px);
    line-height: 1.25;
}

.home-hero h1 span {
    margin-top: 8px;
    font-size: clamp(52px, 7vw, 86px);
    line-height: 1;
}

.home-hero p {
    max-width: 800px;
    margin: 24px auto 0;
    font-size: 19px;
    line-height: 1.55;
}

.home-hero .button {
    margin-top: 36px;
}

.home-book {
    padding: 34px 0 !important;
    background: var(--mm-white);
}

.home-book img {
    display: block;
    border-radius: var(--mm-radius);
    box-shadow: var(--mm-shadow);
}

.home-content > .wrap:first-child {
    padding-top: 42px;
}

/* Home advantages */

.home-usps {
    max-width: 1200px;
    padding: 0;
}

.home-usps .column {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin: 0;
}

.home-usps .column > div {
    width: auto;
    padding: 0;
}

.home-usps .utp {
    display: flex;
    align-items: center;
    box-sizing: border-box;
    height: 100%;
    min-height: 116px;
    margin: 0;
    padding: 20px;
    border: 1px solid var(--mm-line);
    border-radius: 14px;
    background: var(--mm-white);
}

.home-usps .utp-img {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    margin: 0;
    float: none;
    box-shadow: none;
}

.home-usps .utp-content {
    height: auto;
    min-height: 0;
    padding-left: 15px;
    font-size: 14px;
    font-weight: 600;
}

.home-usps .utp .td {
    line-height: 1.5;
}

.home-catalog {
    margin-top: 54px;
}

.home-catalog .catalog-bg {
    display: none;
}

.home-catalog + div {
    margin-top: 0;
}

.home-points .title-h {
    margin-bottom: 42px;
    text-align: center;
}

.home-points .column {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin: 0;
}

.home-points .column > div {
    width: auto;
    padding: 0;
}

.home-points .point {
    box-sizing: border-box;
    height: 100%;
    margin: 0;
    padding: 26px;
    border: 1px solid var(--mm-line);
    border-radius: var(--mm-radius);
    background: var(--mm-white);
}

.home-points .point-name {
    height: 90px;
    margin: 0 0 18px;
    padding: 0 0 0 108px;
    background-position: 0 50%;
    background-size: 82px auto;
}

.home-points .point-wave {
    height: 100%;
    padding: 0;
    background: none;
    font-size: 18px;
    line-height: 1.4;
}

.home-points .point-content p {
    color: var(--mm-muted);
    line-height: 1.65;
}

.home-points .point .button {
    margin-top: 20px;
    padding: 12px 18px;
    border: 1px solid rgba(217, 120, 34, 0.36);
    color: var(--mm-orange-dark);
    background: transparent;
    box-shadow: none;
}

.home-points .point .button:hover {
    color: #fff;
    background: var(--mm-orange);
}

/* Catalog heading and filter */

.catalog-page {
    padding-top: 0;
}

.catalog-page .page-title {
    margin-top: 0;
    padding: 54px 0;
    background-size: cover;
    background-position: 50% 42%;
}

.catalog-page .page-title:after {
    opacity: .56;
    background: #13202b;
}

.catalog-page .page-title .title {
    margin-bottom: 14px;
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 800;
}

.catalog-page .filter {
    margin: 28px 0 14px;
    padding: 0 15px;
    border: 0;
}

.catalog-page .filter .wrap-cont {
    box-sizing: border-box;
    max-width: 1140px;
    padding: 20px;
    border: 1px solid var(--mm-line);
    border-radius: var(--mm-radius);
    background: var(--mm-white);
    box-shadow: var(--mm-shadow);
}

.filter-mobile-title {
    display: none;
}

.catalog-filter-form .filter-row {
    display: grid;
    align-items: stretch;
    gap: 12px;
}

.catalog-filter-form .filter-row-main {
    grid-template-columns: 1.08fr 1fr 2fr;
}

.catalog-filter-form .filter-row-details {
    grid-template-columns: minmax(170px, 1fr) minmax(0, 4fr);
    margin-top: 12px;
}

.catalog-filter-form .filter-details-group {
    display: grid !important;
    grid-template-columns: 1fr 1fr 1fr minmax(150px, .9fr) 42px;
    gap: 12px;
}

.catalog-filter-form .filter-section,
.catalog-filter-form .filter-left,
.catalog-filter-form .filter-right,
.catalog-filter-form .filter-wide {
    box-sizing: border-box;
    width: auto;
    margin: 0;
    padding: 0 !important;
    float: none;
    text-align: left;
}

.catalog-filter-form .clear {
    display: none;
}

.catalog-filter-form .filter-section .select,
.catalog-filter-form .filter-section .select-item,
.catalog-filter-form .filter-section .input,
.catalog-filter-form .filter-section .button {
    display: block;
    box-sizing: border-box;
    width: 100%;
    min-width: 0;
}

.catalog-filter-form .select,
.catalog-filter-form .select-item,
.catalog-filter-form .input input {
    min-height: 54px;
    border: 1px solid var(--mm-line);
    border-radius: 10px;
    background-color: #f8f9fa;
}

.catalog-filter-form .select select,
.catalog-filter-form .select-item,
.catalog-filter-form .input input {
    font-size: 14px;
}

.catalog-filter-form .select select,
.catalog-filter-form .select-item-selected,
.catalog-filter-form .filter-section .input input {
    padding: 17px 38px 17px 14px;
}

.catalog-filter-form .select-item ul {
    z-index: 10;
    margin-top: 6px;
    border: 1px solid var(--mm-line);
    border-radius: 10px;
    box-shadow: var(--mm-shadow);
}

.catalog-filter-form .filter-left {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 7px 12px !important;
    border: 1px solid var(--mm-line);
    border-radius: 10px;
    background: #f8f9fa;
}

.catalog-filter-form .filter-left > label {
    display: flex;
    align-items: center;
    margin: 0 !important;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
}

.catalog-filter-form .checkbox {
    flex: 0 0 19px;
    margin-right: 8px;
}

.catalog-filter-form .filter-section .placeholder {
    top: 4px;
    left: 14px;
    font-size: 10px;
}

.catalog-filter-form .filter-section .button {
    min-height: 54px;
    padding: 17px 15px;
}

.catalog-filter-form .filter-reset {
    display: flex;
    align-items: center;
    justify-content: center;
}

.catalog-filter-form .filter-reset > div {
    width: 42px;
    height: 54px;
    border: 1px solid var(--mm-line);
    border-radius: 10px;
    background-color: #fff;
    background-size: 18px auto;
}

.catalog-page .catalog-full {
    margin-top: 22px;
}

.catalog-page .catalog-more {
    max-width: 320px;
    margin: 40px auto 0;
    padding: 16px 22px;
    border: 1px solid var(--mm-line);
    border-radius: 12px;
    background: var(--mm-white);
    font-weight: 700;
}

/* Card actions */

.product-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    border-top: 1px solid var(--mm-line);
}

.product-actions .product-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    min-height: 54px;
    padding: 13px 12px;
    border-top: 0;
    background: var(--mm-white);
    font-size: 13px;
    line-height: 1.25;
    text-align: center;
    text-decoration: none;
}

.product-actions .product-footer + .product-footer {
    border-left: 1px solid var(--mm-line);
}

.product-actions .product-footer-dates {
    color: #fff;
    background: var(--mm-orange);
}

.product-actions .product-footer-dates:hover {
    color: #fff;
    background: var(--mm-orange-dark);
}

.product-actions .product-footer-dates:after {
    display: none;
}

.bed-label-short {
    display: none;
}

/* Tablet navigation and mobile filter */

@media screen and (max-width: 1229px) {
    .header-menu-wrap {
        width: 0;
        height: 0 !important;
        margin-left: auto;
    }

    header .menu ul {
        width: min(88vw, 360px);
        padding: 58px 30px 30px;
        box-shadow: -18px 0 50px rgba(22, 28, 34, .15);
    }

    header .menu ul li {
        padding: 12px 0;
        font-size: 15px;
    }

    header .menu .close-menu {
        right: min(91vw, 375px);
    }
}

@media screen and (max-width: 1139px) {
    .catalog-page .filter {
        position: fixed;
        z-index: 100;
        inset: 0;
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0;
        overflow: hidden;
        background: rgba(19, 27, 34, .42);
        backdrop-filter: blur(3px);
    }

    .catalog-page .filter .wrap-cont {
        width: min(92vw, 440px);
        height: 100%;
        margin: 0;
        padding: 28px 22px 36px;
        overflow: auto;
        border: 0;
        border-radius: 0 20px 20px 0;
        box-shadow: 18px 0 50px rgba(22, 28, 34, .18);
    }

    .catalog-page .filter-close {
        top: 21px;
        right: calc(100% - min(92vw, 440px) + 18px);
        left: auto;
        z-index: 2;
    }

    .filter-mobile-title {
        display: block;
        margin: 0 44px 24px 0;
        font-size: 23px;
        font-weight: 800;
        letter-spacing: -0.025em;
        text-align: left;
    }

    .catalog-filter-form .filter-row,
    .catalog-filter-form .filter-details-group {
        display: block !important;
        margin: 0;
    }

    .catalog-filter-form .filter-section,
    .catalog-filter-form .filter-left,
    .catalog-filter-form .filter-right,
    .catalog-filter-form .filter-wide {
        width: 100%;
        margin-bottom: 11px;
        padding: 0 !important;
    }

    .catalog-filter-form .filter-left {
        padding: 10px 12px !important;
    }

    .catalog-filter-form .filter-bedrooms .select-item {
        min-height: 0;
        border: 0;
        background: transparent;
    }

    .catalog-filter-form .filter-bedrooms .select-item:after {
        display: none;
    }

    .catalog-filter-form .filter-bedrooms .select-item-selected {
        height: auto;
        padding: 0 0 9px;
        color: var(--mm-muted);
        font-size: 12px;
        font-weight: 700;
        cursor: default;
    }

    .catalog-filter-form .filter-bedrooms .select-item ul {
        position: static;
        display: grid !important;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 7px;
        width: auto;
        margin: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    .catalog-filter-form .filter-bedrooms .select-item li {
        padding: 0;
    }

    .catalog-filter-form .filter-bedrooms .select-item label {
        display: flex;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
        min-height: 44px;
        padding: 7px 5px;
        border: 1px solid var(--mm-line);
        border-radius: 9px;
        background: #f8f9fa;
        font-size: 14px;
        font-weight: 700;
        cursor: pointer;
    }

    .catalog-filter-form .filter-bedrooms .checkbox {
        flex-basis: 18px;
        width: 18px;
        height: 18px;
        margin: 0 6px 0 0;
    }

    .catalog-filter-form .filter-bedrooms .bed-label-short {
        display: inline;
    }

    .catalog-filter-form .filter-bedrooms .bed-label-full {
        display: none;
    }

    .catalog-filter-form .filter-reset > div {
        width: 100%;
        height: auto;
        padding: 10px;
        border: 0;
        background: none;
        text-align: center;
    }

    .catalog-filter-form .filter-reset span {
        display: inline;
        color: var(--mm-muted);
        font-size: 14px;
        text-decoration: none;
    }

    .catalog-page .filter-button {
        display: block;
        max-width: 340px;
        margin: 24px auto 12px;
        padding: 16px 25px;
    }
}

@media screen and (max-width: 979px) {
    .home-usps .column {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-usps .utp {
        max-width: none;
    }

    .home-points .point {
        max-width: none;
        text-align: left;
    }

    .home-points .point-name {
        padding-left: 100px;
        background-position: 0 50%;
    }

    .home-points .point-wave {
        padding: 0;
        text-align: left;
    }

    .home-points .point-wave .td span:after {
        display: none;
    }

    .home-catalog {
        margin-top: 44px;
    }
}

@media screen and (max-width: 710px) {
    body {
        padding-top: 74px;
    }

    header {
        background: transparent;
        box-shadow: none;
        transition: background-color .22s ease, box-shadow .22s ease;
    }

    header.header-page {
        background: #fff;
        box-shadow: 0 5px 20px rgba(25, 31, 37, .1);
    }

    header > div {
        border-bottom: 0;
    }

    header .wrap-cont {
        min-height: 56px;
        padding: 9px 14px;
    }

    header .logo {
        flex-basis: 56px;
        width: 56px;
        height: 56px;
        background-image: url(/img/logo-white.svg);
        background-position: 0 50%;
        background-size: auto 100%;
    }

    header.header-page .logo {
        background-image: url(/img/logo-orange-head.svg);
        background-position: 0 50%;
        background-size: auto 100%;
    }

    .header-messengers {
        display: block !important;
        height: 38px !important;
    }

    .header-messengers .messengers {
        display: flex;
        align-items: center;
        gap: 9px;
    }

    .header-messengers .messengers a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        box-sizing: border-box;
        border-radius: 50%;
        background: rgba(255, 255, 255, .94);
    }

    .header-messengers .messengers svg {
        display: block;
        width: 29px;
        height: 29px;
    }

    .header-messengers .telegram svg {
        fill: var(--mm-blue);
    }

    .header-messengers .whatsapp svg {
        fill: #18b968;
    }

    .wrap-lang {
        height: 40px !important;
        padding-left: 12px;
    }

    .switch-lang {
        line-height: 40px;
    }

    .switch-lang a {
        color: rgba(255, 255, 255, .78);
        font-size: 14px;
    }

    .header-page .switch-lang a {
        color: #aeb4ba;
    }

    .menu-mobile {
        flex-basis: 42px;
        width: 42px;
        height: 42px;
        margin-left: 10px;
        background-color: rgba(3, 50, 78, .16);
        background-image: url(/img/menu-mobile.svg);
        background-position: 50% 50%;
        background-size: 28px auto;
    }

    .header-page .menu-mobile {
        background-color: #fff7ef;
        background-image: url(/img/menu-mobile-orange.svg);
    }

    .home-hero {
        min-height: 600px;
        margin-top: -74px;
        padding: 150px 0 76px;
    }

    .home-hero .main-bg {
        height: auto;
        background-position: 56% 50%;
        background-size: cover;
    }

    .home-hero h1 {
        max-width: 540px;
        font-size: 20px;
        line-height: 1.28;
    }

    .home-hero h1 span {
        margin-top: 8px;
        font-size: clamp(38px, 12vw, 58px);
    }

    .home-hero p {
        max-width: 520px;
        margin-top: 20px;
        font-size: 16px;
    }

    .home-hero .button {
        margin-top: 30px;
    }

    .home-book {
        padding: 20px 0 !important;
    }

    .home-book img {
        border-radius: 12px;
    }

    .home-content > .wrap:first-child {
        padding-top: 30px;
    }

    .home-usps .column,
    .home-points .column {
        grid-template-columns: 1fr;
    }

    .home-usps .column {
        gap: 10px;
    }

    .home-usps .utp {
        min-height: 92px;
        padding: 16px;
        text-align: left;
    }

    .home-usps .utp-img {
        flex-basis: 46px;
        width: 46px;
        height: 46px;
        margin: 0;
    }

    .home-usps .utp-content {
        padding-left: 14px;
        text-align: left;
    }

    .home-points .column {
        gap: 14px;
    }

    .home-points .point {
        padding: 20px;
    }

    .catalog-page .page-title {
        padding: 38px 0;
    }

    .catalog-page .page-title .title {
        font-size: 28px;
    }

    .catalog-page .catalog {
        margin-top: 22px;
    }
}

@media screen and (max-width: 567px) {
    .wrap {
        padding: 50px 0;
    }

    .title-h,
    .bonus .title-h,
    .form-box .title-h {
        margin-bottom: 30px;
        font-size: 27px;
    }

    .button,
    .button-big {
        padding: 15px 22px;
        font-size: 15px;
    }

    .home-hero {
        min-height: 560px;
        padding: 138px 0 64px;
    }

    .home-hero h1 {
        font-size: 17px;
    }

    .home-hero h1 span {
        font-size: 38px;
    }

    .home-hero p {
        font-size: 14px;
    }

    .home-hero .button {
        display: block;
        width: 100%;
        max-width: 310px;
        margin: 26px auto 0;
    }

    .home-catalog {
        margin-top: 34px;
    }

    .home-catalog > div[style] {
        margin-top: 36px !important;
    }

    .home-points .point-name {
        height: 74px;
        padding-left: 82px;
        background-size: 66px auto;
    }

    .home-points .point-wave {
        font-size: 16px;
    }

    .catalog-page .page-title {
        padding: 30px 0;
    }

    .catalog-page .page-title .title {
        margin-bottom: 10px;
        font-size: 24px;
    }

    .catalog-page .breadcrumbs {
        font-size: 12px;
    }

    .catalog-page > .wrap-cont {
        padding: 0 10px;
    }

    .catalog-page .filter-button {
        width: 100%;
        max-width: none;
        margin: 18px 0 10px;
    }

    .product-actions .product-footer {
        min-height: 52px;
        padding: 12px 8px;
        font-size: 12px;
    }
}

/* refresh-header */
/* Hua Hin MM Group — unified desktop and mobile navigation */

.mm-main-menu {
    white-space: nowrap;
}

.menu .mm-menu-section,
.menu .mm-mobile-contact-block {
    display: none !important;
}

.menu .mm-menu-item {
    margin-right: 18px;
}

.mm-main-menu > .mm-menu-item:nth-last-child(2) {
    margin-right: 0;
}

.menu .mm-menu-item a {
    white-space: nowrap;
}

@media screen and (max-width: 1229px) {
    header .menu ul.mm-main-menu {
        width: min(90vw, 380px);
        padding: 34px 28px 30px;
        white-space: normal;
    }

    .menu .mm-menu-section {
        display: block !important;
        margin: 20px 0 7px;
        padding: 0 !important;
        color: #9a632f;
        font-size: 10px !important;
        font-weight: 800;
        line-height: 1.3;
        letter-spacing: .13em;
        text-transform: uppercase;
    }

    .menu .mm-menu-section:first-child {
        margin-top: 0;
    }

    header .menu ul li.mm-menu-item {
        margin: 0;
        padding: 0;
        border-bottom: 1px solid #edf0f2;
        font-size: 16px;
        font-weight: 650;
    }

    header .menu ul li.mm-menu-item a {
        display: block;
        padding: 12px 4px;
        color: #26313a;
        line-height: 1.25;
    }

    header .menu ul li.mm-menu-item.active {
        border-bottom-color: #ecd1b6;
        background: linear-gradient(90deg, #fff7ef 0%, rgba(255,247,239,0) 100%);
    }

    header .menu ul li.mm-menu-item.active a {
        color: #bd681f;
    }

    header .menu ul li.mm-menu-item.active:after {
        display: none;
    }

    .menu .mm-mobile-contact-block {
        display: block !important;
        margin: 26px -8px 0;
        padding: 20px 18px 18px !important;
        border: 1px solid #e8ecef;
        border-radius: 14px;
        background: #f7f9fa;
    }

    .mm-mobile-contact-title {
        display: block;
        margin-bottom: 10px;
        color: #697580;
        font-size: 10px;
        font-weight: 800;
        line-height: 1.3;
        letter-spacing: .12em;
        text-transform: uppercase;
    }

    .mm-mobile-contact-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 7px;
    }

    .menu .mm-mobile-contact-grid a {
        display: flex;
        min-height: 38px;
        padding: 8px 5px;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
        border: 1px solid #e1e6e9;
        border-radius: 9px;
        color: #33414b;
        background: #fff;
        font-size: 12px;
        font-weight: 700;
        line-height: 1.2;
        text-align: center;
    }

    .mm-mobile-channels-title {
        margin-top: 18px;
    }

    .mm-mobile-channel-links {
        display: flex;
        flex-wrap: wrap;
        gap: 7px 14px;
    }

    .menu .mm-mobile-channel-links a {
        color: #b86621;
        font-size: 12px;
        font-weight: 700;
        line-height: 1.4;
    }

    header .menu .close-menu {
        right: min(93vw, 395px);
    }
}

@media screen and (max-width: 420px) {
    header .menu ul.mm-main-menu {
        padding-right: 22px;
        padding-left: 22px;
    }

    .menu .mm-mobile-contact-block {
        margin-right: -4px;
        margin-left: -4px;
        padding-right: 13px !important;
        padding-left: 13px !important;
    }

    .menu .mm-mobile-contact-grid a {
        font-size: 11px;
    }
}

/* refresh-home-trust */
/*
 * HuaHin MM Group — homepage trust layer
 * Added as a separate, removable stylesheet.
 */

.home-proof-strip {
    position: relative;
    z-index: 5;
    margin: -34px 0 6px;
    padding: 0 15px;
    background: transparent;
}

.home-proof-strip .wrap-cont {
    max-width: 1140px;
    padding: 0;
}

.home-proof-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(18, 48, 75, .08);
    border-radius: 18px;
    box-shadow: 0 16px 42px rgba(24, 58, 87, .14);
}

.home-proof-item {
    position: relative;
    min-height: 112px;
    padding: 22px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.home-proof-item + .home-proof-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 24px;
    bottom: 24px;
    width: 1px;
    background: #e5ebef;
}

.home-proof-item strong {
    display: block;
    color: #db7f2d;
    font-size: 26px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -.04em;
}

.home-proof-item span {
    display: block;
    margin-top: 9px;
    color: #354b5d;
    font-size: 13px;
    line-height: 1.35;
    font-weight: 600;
}

.home-assurance,
.home-sansiri,
.home-expertise {
    padding: 82px 0;
}

.home-assurance {
    margin-top: 60px;
    background: #f4f8fb;
}

.home-section-heading {
    max-width: 850px;
    margin: 0 auto 40px;
    text-align: center;
}

.home-section-kicker {
    margin-bottom: 12px;
    color: #db7f2d;
    font-size: 13px;
    line-height: 1.3;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.home-section-heading h2,
.home-sansiri-copy h2 {
    margin: 0;
    color: #18384f;
    font-size: 42px;
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: -.035em;
}

.home-section-heading p {
    max-width: 740px;
    margin: 18px auto 0;
    color: #5e7180;
    font-size: 18px;
    line-height: 1.65;
}

.home-assurance-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.home-assurance-card {
    min-width: 0;
    padding: 28px;
    background: #fff;
    border: 1px solid #e5edf2;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(25, 58, 85, .07);
}

.home-assurance-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    color: #fff;
    background: #db7f2d;
    border-radius: 13px;
    font-size: 13px;
    font-weight: 800;
}

.home-assurance-card h3 {
    margin: 0 0 11px;
    color: #18384f;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 800;
}

.home-assurance-card p {
    margin: 0;
    color: #667987;
    font-size: 15px;
    line-height: 1.65;
}

.home-service-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: 28px;
}

.home-service-column {
    min-width: 0;
    padding: 34px;
    border-radius: 20px;
}

.home-service-rent {
    background: linear-gradient(145deg, #e7f4fb, #f7fbfd);
    border: 1px solid #d4e9f4;
}

.home-service-buy {
    background: linear-gradient(145deg, #fff3e7, #fffaf5);
    border: 1px solid #f3dfca;
}

.home-service-label {
    display: inline-flex;
    padding: 7px 12px;
    color: #fff;
    background: #1987c5;
    border-radius: 999px;
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.home-service-buy .home-service-label {
    background: #db7f2d;
}

.home-service-column h3 {
    margin: 18px 0 20px;
    color: #18384f;
    font-size: 25px;
    line-height: 1.28;
    font-weight: 800;
    letter-spacing: -.02em;
}

.home-service-column ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.home-service-column li {
    position: relative;
    margin-top: 12px;
    padding-left: 26px;
    color: #435c6e;
    font-size: 15px;
    line-height: 1.5;
}

.home-service-column li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #1987c5;
    font-weight: 800;
}

.home-service-buy li::before {
    color: #db7f2d;
}

.home-zero-response {
    display: grid;
    grid-template-columns: minmax(260px, .7fr) minmax(0, 1.3fr);
    gap: 44px;
    align-items: center;
    margin-top: 28px;
    padding: 30px 34px;
    color: #fff;
    background: #18384f;
    border-radius: 20px;
}

.home-zero-response span {
    color: #8ed2f4;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.home-zero-response h3 {
    margin: 7px 0 0;
    color: #fff;
    font-size: 26px;
    line-height: 1.2;
    font-weight: 800;
}

.home-zero-response p {
    margin: 0;
    padding-left: 28px;
    border-left: 3px solid #db7f2d;
    color: rgba(255, 255, 255, .86);
    font-size: 17px;
    line-height: 1.6;
}

.home-trust-link {
    margin-top: 34px;
    text-align: center;
}

.home-sansiri {
    background: #fff;
}

.home-sansiri-card {
    display: grid;
    grid-template-columns: minmax(340px, .85fr) minmax(0, 1.15fr);
    min-height: 500px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e5ebef;
    border-radius: 22px;
    box-shadow: 0 18px 50px rgba(24, 56, 79, .12);
}

.home-sansiri-photos {
    display: grid;
    grid-template-rows: 1.04fr .96fr;
    min-width: 0;
    overflow: hidden;
    gap: 2px;
    background: #fff;
}

.home-sansiri-photo {
    display: block;
    min-width: 0;
    overflow: hidden;
    background: #151515;
}

.home-sansiri-photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center 36%;
    transition: transform .45s ease;
}

.home-sansiri-photo-award img {
    object-position: center center;
}

.home-sansiri-photo:hover img {
    transform: scale(1.025);
}

.home-sansiri-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 54px 58px;
}

.home-sansiri-copy h2 {
    max-width: 640px;
    font-size: 35px;
}

.home-sansiri-copy p {
    margin: 22px 0 28px;
    color: #607482;
    font-size: 17px;
    line-height: 1.7;
}

.home-sansiri-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 22px;
}

.home-sansiri-facts span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 12px;
    color: #18384f;
    background: #edf6fb;
    border: 1px solid #d7e9f2;
    border-radius: 999px;
    font-size: 12px;
    line-height: 1.35;
    font-weight: 800;
}

.home-sansiri-facts span:last-child {
    color: #9a531b;
    background: #fff3e8;
    border-color: #f0dbc8;
}

.home-expertise {
    background: #f4f8fb;
}

.home-expert-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.home-expert-card {
    position: relative;
    min-width: 0;
    min-height: 310px;
    display: flex;
    flex-direction: column;
    padding: 30px;
    overflow: hidden;
    color: inherit;
    background: #fff;
    border: 1px solid #e2ebf0;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(25, 58, 85, .06);
    text-decoration: none;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.home-expert-card:hover {
    transform: translateY(-4px);
    border-color: #c9dce7;
    box-shadow: 0 18px 42px rgba(25, 58, 85, .12);
    text-decoration: none;
}

.home-expert-number {
    position: absolute;
    right: 24px;
    top: 18px;
    color: rgba(24, 56, 79, .08);
    font-size: 58px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -.06em;
}

.home-expert-label {
    position: relative;
    z-index: 1;
    align-self: flex-start;
    margin-bottom: 20px;
    padding: 7px 11px;
    color: #fff;
    background: #1987c5;
    border-radius: 999px;
    font-size: 11px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.home-expert-card:nth-child(even) .home-expert-label {
    background: #db7f2d;
}

.home-expert-card h3 {
    position: relative;
    z-index: 1;
    max-width: 520px;
    margin: 0 0 13px;
    color: #18384f;
    font-size: 23px;
    line-height: 1.3;
    font-weight: 800;
    letter-spacing: -.02em;
}

.home-expert-card p {
    position: relative;
    z-index: 1;
    margin: 0 0 24px;
    color: #647986;
    font-size: 15px;
    line-height: 1.6;
}

.home-expert-card strong {
    position: relative;
    z-index: 1;
    margin-top: auto;
    color: #db7f2d;
    font-size: 14px;
    font-weight: 800;
}

.home-expert-all {
    margin-top: 32px;
    text-align: center;
}

@media (max-width: 960px) {
    .home-proof-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .home-proof-item:nth-child(4),
    .home-proof-item:nth-child(5) {
        border-top: 1px solid #e5ebef;
    }

    .home-proof-item:nth-child(4)::before {
        display: none;
    }

    .home-assurance-grid {
        grid-template-columns: 1fr;
    }

    .home-expert-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-assurance-card {
        display: grid;
        grid-template-columns: 52px minmax(0, 1fr);
        column-gap: 18px;
    }

    .home-assurance-icon {
        grid-row: 1 / span 2;
        margin: 0;
    }

    .home-assurance-card h3,
    .home-assurance-card p {
        grid-column: 2;
    }

    .home-service-grid,
    .home-sansiri-card {
        grid-template-columns: 1fr;
    }

    .home-sansiri-card {
        min-height: 0;
    }

    .home-sansiri-photos {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: none;
        height: 390px;
    }

    .home-sansiri-photo {
        height: 390px;
    }
}

@media (max-width: 700px) {
    .home-proof-strip {
        margin-top: -22px;
        padding: 0 12px;
    }

    .home-proof-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        border-radius: 16px;
    }

    .home-proof-item {
        min-height: 96px;
        padding: 17px 10px;
    }

    .home-proof-item:nth-child(odd)::before {
        display: none;
    }

    .home-proof-item:nth-child(n+3) {
        border-top: 1px solid #e5ebef;
    }

    .home-proof-item:last-child {
        grid-column: 1 / -1;
    }

    .home-proof-item strong {
        font-size: 22px;
    }

    .home-proof-item span {
        max-width: 150px;
        font-size: 12px;
    }

    .home-assurance,
    .home-sansiri,
    .home-expertise {
        padding: 56px 0;
    }

    .home-assurance {
        margin-top: 35px;
    }

    .home-section-heading {
        margin-bottom: 28px;
        text-align: left;
    }

    .home-section-heading h2,
    .home-sansiri-copy h2 {
        font-size: 30px;
        line-height: 1.17;
    }

    .home-section-heading p,
    .home-sansiri-copy p {
        font-size: 16px;
    }

    .home-assurance-card {
        display: block;
        padding: 23px;
    }

    .home-assurance-icon {
        margin-bottom: 18px;
    }

    .home-service-column {
        padding: 26px 22px;
    }

    .home-service-column h3 {
        font-size: 22px;
    }

    .home-zero-response {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 26px 22px;
    }

    .home-zero-response h3 {
        font-size: 23px;
    }

    .home-zero-response p {
        padding: 0 0 0 18px;
        font-size: 15px;
    }

    .home-sansiri-photos {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        height: auto;
    }

    .home-sansiri-photos .home-sansiri-photo-main {
        height: 300px;
    }

    .home-sansiri-photos .home-sansiri-photo-award {
        height: 190px;
    }

    .home-sansiri-copy {
        padding: 32px 24px 36px;
    }

    .home-sansiri-copy .button,
    .home-trust-link .button,
    .home-expert-all .button {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        text-align: center;
    }

    .home-sansiri-facts {
        margin-top: 18px;
    }

    .home-sansiri-facts span {
        width: 100%;
        box-sizing: border-box;
        justify-content: center;
        text-align: center;
    }

    .home-expert-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .home-expert-card {
        min-height: 0;
        padding: 25px 22px;
    }

    .home-expert-card h3 {
        font-size: 21px;
    }
}

@media (max-width: 380px) {
    .home-proof-item strong {
        font-size: 20px;
    }

    .home-proof-item span {
        font-size: 11px;
    }

    .home-sansiri-photos .home-sansiri-photo-main {
        height: 270px;
    }

    .home-sansiri-photos .home-sansiri-photo-award {
        height: 170px;
    }
}

/* refresh-catalog-landing */
/* Hua Hin MM Group — catalog landing pages, 2026-08-06. */

.catalog-landing,
.catalog-landing * {
    box-sizing: border-box;
}

.catalog-landing-intro {
    padding: 38px 15px 4px;
    background: #fff;
}

.catalog-landing-lead {
    max-width: 900px;
    margin: 0 auto 28px;
    color: var(--mm-ink, #20262d);
    font-size: clamp(17px, 1.8vw, 21px);
    font-weight: 500;
    line-height: 1.65;
    text-align: center;
}

.catalog-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1140px;
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid var(--mm-line, #e8ebee);
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 10px 32px rgba(28, 36, 44, .07);
}

.catalog-trust-grid > div {
    min-width: 0;
    padding: 18px 20px;
    border-right: 1px solid var(--mm-line, #e8ebee);
}

.catalog-trust-grid > div:last-child {
    border-right: 0;
}

.catalog-trust-grid strong,
.catalog-trust-grid span {
    display: block;
}

.catalog-trust-grid strong {
    margin-bottom: 4px;
    color: var(--mm-orange-dark, #b95f16);
    font-size: 14px;
    font-weight: 800;
}

.catalog-trust-grid span {
    color: var(--mm-muted, #6e7781);
    font-size: 12px;
    line-height: 1.45;
}

.catalog-choice-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    max-width: 1140px;
    margin: 22px auto 2px;
}

.catalog-choice {
    position: relative;
    display: block;
    min-height: 250px;
    padding: 30px;
    overflow: hidden;
    border: 1px solid var(--mm-line, #e8ebee);
    border-radius: 18px;
    color: var(--mm-ink, #20262d);
    background: #f7f8f9;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.catalog-choice:before {
    position: absolute;
    top: -85px;
    right: -65px;
    width: 210px;
    height: 210px;
    border-radius: 50%;
    background: rgba(216, 121, 34, .10);
    content: "";
}

.catalog-choice-sale:before {
    background: rgba(20, 155, 213, .12);
}

.catalog-choice:hover {
    transform: translateY(-3px);
    border-color: rgba(216, 121, 34, .35);
    box-shadow: 0 18px 42px rgba(28, 36, 44, .11);
}

.catalog-choice-label,
.catalog-section-heading > span,
.catalog-award-panel > div > span,
.catalog-general-grid article > span,
.catalog-article-grid a > span {
    color: var(--mm-orange, #d97822);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.catalog-choice h2 {
    max-width: 440px;
    margin: 15px 0 12px;
    font-size: clamp(24px, 2.5vw, 32px);
    line-height: 1.2;
}

.catalog-choice p {
    max-width: 470px;
    margin: 0 0 22px;
    color: var(--mm-muted, #6e7781);
    font-size: 14px;
    line-height: 1.65;
}

.catalog-choice strong {
    color: var(--mm-orange-dark, #b95f16);
    font-size: 14px;
}

/* Make the filter follow the compact introduction without a large gap. */
.catalog-landing-intro + .filter {
    margin-top: 24px;
}

.catalog-selection-cta {
    padding: 28px 15px 66px;
    background: #fff;
}

.catalog-selection-cta .wrap-cont > div {
    max-width: 1140px;
    margin: 0 auto;
    padding: 32px 36px;
    border: 1px solid rgba(216, 121, 34, .20);
    border-radius: 18px;
    background: linear-gradient(125deg, #fff8f1 0%, #f4f9fc 100%);
    text-align: center;
}

.catalog-selection-cta h2,
.catalog-section-heading h2,
.catalog-process > h2,
.catalog-article-section > h2,
.catalog-faq > h2,
.catalog-freehold-panel h2,
.catalog-award-panel h2 {
    margin: 0;
    color: var(--mm-ink, #20262d);
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -.035em;
}

.catalog-selection-cta p {
    max-width: 760px;
    margin: 13px auto 22px;
    color: var(--mm-muted, #6e7781);
    line-height: 1.65;
}

.catalog-cta-actions,
.catalog-final-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.catalog-landing .catalog-cta-button.order-button,
.catalog-landing .catalog-cta-button.order-button2,
.catalog-cta-button,
.catalog-outline-button {
    position: static;
    right: auto;
    top: auto;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: auto;
    min-height: 50px;
    margin: 0;
    padding: 14px 23px;
    transform: none;
    border: 0;
    border-radius: 11px;
    color: #fff;
    background: var(--mm-orange, #d97822);
    box-shadow: 0 8px 20px rgba(185, 95, 22, .20);
    font: 800 14px/1.3 "Manrope", Arial, sans-serif;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}

.catalog-outline-button {
    border: 1px solid var(--mm-line, #e8ebee);
    color: var(--mm-ink, #20262d);
    background: #fff;
    box-shadow: none;
}

.catalog-content-section {
    padding: 72px 15px;
    background: var(--mm-soft, #f6f7f8);
}

.catalog-content-section .wrap-cont {
    max-width: 1140px;
}

.catalog-section-heading {
    max-width: 860px;
    margin: 0 auto 38px;
    text-align: center;
}

.catalog-section-heading h2 {
    margin-top: 10px;
}

.catalog-section-heading p {
    margin: 18px 0 0;
    color: var(--mm-muted, #6e7781);
    font-size: 16px;
    line-height: 1.75;
}

.catalog-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.catalog-feature-grid-sale {
    grid-template-columns: repeat(5, 1fr);
}

.catalog-feature-grid article,
.catalog-info-grid article,
.catalog-step-grid article,
.catalog-general-grid article,
.catalog-article-grid a {
    min-width: 0;
    padding: 24px;
    border: 1px solid var(--mm-line, #e8ebee);
    border-radius: 15px;
    background: #fff;
}

.catalog-feature-grid article > b {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    margin-bottom: 18px;
    border-radius: 50%;
    color: #fff;
    background: var(--mm-orange, #d97822);
    font-size: 11px;
}

.catalog-feature-grid h3,
.catalog-info-grid h3,
.catalog-step-grid h3,
.catalog-general-grid h3,
.catalog-article-grid h3 {
    margin: 0 0 10px;
    color: var(--mm-ink, #20262d);
    font-size: 18px;
    line-height: 1.35;
}

.catalog-feature-grid p,
.catalog-info-grid p,
.catalog-step-grid p,
.catalog-general-grid p {
    margin: 0;
    color: var(--mm-muted, #6e7781);
    font-size: 13px;
    line-height: 1.65;
}

.catalog-process,
.catalog-info-grid,
.catalog-freehold-panel,
.catalog-award-panel,
.catalog-article-section,
.catalog-faq,
.catalog-final-actions,
.catalog-general-grid,
.catalog-award-strip {
    margin-top: 55px;
}

.catalog-process > h2,
.catalog-article-section > h2,
.catalog-faq > h2 {
    margin-bottom: 24px;
    text-align: center;
}

.catalog-step-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.catalog-step-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.catalog-step-grid article > span {
    display: block;
    margin-bottom: 18px;
    color: var(--mm-orange, #d97822);
    font-size: 34px;
    font-weight: 800;
    line-height: 1;
}

.catalog-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.catalog-freehold-panel {
    display: grid;
    grid-template-columns: 180px 1fr;
    align-items: center;
    gap: 28px;
    padding: 34px;
    border-radius: 18px;
    color: #fff;
    background: linear-gradient(130deg, #08745f, #0c9a7d);
    box-shadow: 0 18px 45px rgba(8, 116, 95, .20);
}

.catalog-freehold-mark {
    padding: 18px 12px;
    border: 1px solid rgba(255, 255, 255, .45);
    border-radius: 13px;
    background: rgba(255, 255, 255, .10);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: .10em;
    text-align: center;
}

.catalog-freehold-panel h2,
.catalog-freehold-panel p {
    color: #fff;
}

.catalog-freehold-panel h2 {
    font-size: clamp(24px, 2.7vw, 34px);
}

.catalog-freehold-panel p {
    margin: 11px 0 0;
    line-height: 1.65;
}

.catalog-award-panel {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 32px;
    align-items: center;
    padding: 30px;
    border: 1px solid var(--mm-line, #e8ebee);
    border-radius: 18px;
    background: #fff;
}

.catalog-award-photos {
    display: grid;
    grid-template-columns: 1.35fr .85fr;
    gap: 9px;
}

.catalog-award-photos img {
    display: block;
    width: 100%;
    height: 285px;
    object-fit: cover;
    border-radius: 12px;
}

.catalog-award-panel h2 {
    margin-top: 10px;
    font-size: clamp(27px, 3vw, 38px);
}

.catalog-award-panel p {
    margin: 16px 0;
    color: var(--mm-muted, #6e7781);
    line-height: 1.7;
}

.catalog-award-panel a,
.catalog-general-grid a,
.catalog-award-strip a,
.catalog-article-grid strong {
    color: var(--mm-orange-dark, #b95f16);
    font-weight: 800;
    text-decoration: none;
}

.catalog-article-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.catalog-article-grid a {
    display: flex;
    min-height: 210px;
    flex-direction: column;
    color: inherit;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease;
}

.catalog-article-grid a:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(28, 36, 44, .10);
}

.catalog-article-grid h3 {
    margin-top: 16px;
    font-size: 20px;
}

.catalog-article-grid strong {
    margin-top: auto;
}

.catalog-faq {
    max-width: 900px;
    margin-right: auto;
    margin-left: auto;
}

.catalog-faq details {
    margin-bottom: 10px;
    overflow: hidden;
    border: 1px solid var(--mm-line, #e8ebee);
    border-radius: 12px;
    background: #fff;
}

.catalog-faq summary {
    position: relative;
    padding: 18px 50px 18px 20px;
    color: var(--mm-ink, #20262d);
    font-weight: 800;
    line-height: 1.45;
    cursor: pointer;
    list-style: none;
}

.catalog-faq summary::-webkit-details-marker {
    display: none;
}

.catalog-faq summary:after {
    position: absolute;
    top: 15px;
    right: 19px;
    color: var(--mm-orange, #d97822);
    content: "+";
    font-size: 24px;
    font-weight: 500;
}

.catalog-faq details[open] summary:after {
    content: "−";
}

.catalog-faq details p {
    margin: 0;
    padding: 0 20px 19px;
    color: var(--mm-muted, #6e7781);
    line-height: 1.7;
}

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

.catalog-general-grid article {
    padding: 30px;
}

.catalog-general-grid h3 {
    margin-top: 12px;
    font-size: 24px;
}

.catalog-general-grid a {
    display: inline-block;
    margin-top: 20px;
}

.catalog-award-strip {
    display: grid;
    grid-template-columns: 1fr 1.6fr auto;
    gap: 22px;
    align-items: center;
    padding: 25px 28px;
    border-radius: 15px;
    color: #fff;
    background: #1f2933;
}

.catalog-award-strip strong {
    font-size: 20px;
    line-height: 1.3;
}

.catalog-award-strip span {
    color: rgba(255, 255, 255, .75);
    font-size: 13px;
    line-height: 1.55;
}

.catalog-award-strip a {
    color: #fff;
    white-space: nowrap;
}

.catalog-yandex-reviews {
    display: grid;
    grid-template-columns: minmax(260px, .72fr) minmax(0, 560px);
    gap: 34px;
    align-items: center;
    max-width: 980px;
    margin: 58px auto 0;
    padding: 34px;
    border: 1px solid var(--mm-line, #e8ebee);
    border-radius: 18px;
    background: linear-gradient(145deg, #f5fbfe 0%, #fff 52%);
    box-shadow: 0 16px 42px rgba(26, 49, 64, .08);
}

.catalog-reviews-copy > span {
    display: block;
    margin-bottom: 10px;
    color: #0b78a8;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.catalog-reviews-copy h2 {
    margin: 0 0 15px;
    color: var(--mm-dark, #1f2933);
    font-size: clamp(27px, 3vw, 38px);
    line-height: 1.14;
}

.catalog-reviews-copy p {
    margin: 0 0 14px;
    color: var(--mm-muted, #6e7781);
    font-size: 15px;
    line-height: 1.7;
}

.catalog-reviews-copy .catalog-reviews-note {
    padding-top: 13px;
    border-top: 1px solid var(--mm-line, #e8ebee);
    color: #53616d;
    font-size: 13px;
}

.catalog-yandex-external {
    display: inline-block;
    margin-top: 6px;
    color: #0b78a8;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.4;
    text-decoration: none;
}

.catalog-yandex-external:hover {
    color: var(--mm-orange, #d97822);
}

.catalog-yandex-widget {
    position: relative;
    width: 100%;
    height: 720px;
    overflow: hidden;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(26, 49, 64, .10);
}

.catalog-yandex-widget iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 1px solid #e6e6e6;
    border-radius: 12px;
    box-sizing: border-box;
}

.catalog-yandex-credit {
    position: absolute;
    right: 0;
    bottom: 8px;
    left: 0;
    display: block;
    max-height: 14px;
    overflow: hidden;
    padding: 0 16px;
    box-sizing: border-box;
    color: #9299a0;
    font-family: Arial, sans-serif;
    font-size: 10px;
    line-height: 14px;
    text-align: center;
    text-decoration: none;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.catalog-final-actions {
    padding-top: 6px;
}

/* Property markers: deal type, project and ownership. */
.product-marker {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 7px;
}

.product-marker > div {
    margin: 0 !important;
}

.product-marker-sale:after {
    display: none;
    content: none;
}

.product-project-badge,
.product-freehold-badge {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 10px;
    border-radius: 7px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .035em;
    line-height: 1.15;
}

.product-project-badge {
    max-width: 100%;
    overflow: hidden;
    color: #fff;
    border: 1px solid #075a80;
    background: #0b78a8;
    box-shadow: 0 6px 14px rgba(4, 80, 116, .25);
    text-shadow: 0 1px 1px rgba(0, 0, 0, .16);
    text-overflow: ellipsis;
    white-space: nowrap;
}

.product-freehold-badge {
    color: #fff;
    background: #07836b;
    box-shadow: 0 5px 12px rgba(7, 131, 107, .20);
    letter-spacing: .07em;
    white-space: nowrap;
}

/* Global useful navigation before the compact legacy footer. */
.site-map {
    position: relative;
    overflow: hidden;
    padding: 68px 15px 34px;
    color: #fff;
    background:
        radial-gradient(circle at 88% 8%, rgba(25, 149, 198, .18), transparent 31%),
        linear-gradient(135deg, #17212b 0%, #202f3c 100%);
}

.site-map:before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, #f7a833, #f2c267 44%, #1796c4 100%);
    content: "";
}

.site-map .wrap-cont {
    position: relative;
    z-index: 1;
}

.site-map-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 38px;
    align-items: end;
    padding-bottom: 34px;
    border-bottom: 1px solid rgba(255, 255, 255, .13);
}

.site-map-kicker {
    display: block;
    margin-bottom: 11px;
    color: #f3ae47;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .15em;
}

.site-map-head h2 {
    margin: 0 0 10px;
    color: #fff;
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 700;
    line-height: 1.12;
}

.site-map-head p {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, .68);
    font-size: 15px;
    line-height: 1.6;
}

.site-map-head-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.site-map .site-map-button.order-button,
.site-map .site-map-button.order-button2 {
    position: static;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    display: inline-flex !important;
    min-width: 0;
    min-height: 44px;
    margin: 0;
    padding: 11px 17px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 8px;
    color: #fff;
    background: rgba(255, 255, 255, .08);
    box-shadow: none;
    cursor: pointer;
    font: inherit;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    opacity: 1;
    transform: none;
    transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.site-map .site-map-button.order-button:hover,
.site-map .site-map-button.order-button2:hover {
    border-color: #f3ae47;
    background: rgba(243, 174, 71, .15);
    transform: translateY(-1px);
}

.site-map .site-map-button-blue.order-button2 {
    border-color: #168fbe;
    background: #168fbe;
}

.site-map .site-map-button-blue.order-button2:hover {
    border-color: #23a7d7;
    background: #23a7d7;
}

.site-map-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 34px;
    padding: 40px 0 36px;
}

.site-map-column h3 {
    margin: 0 0 16px;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .04em;
    line-height: 1.3;
    text-transform: uppercase;
}

.site-map-column a {
    display: block;
    margin-top: 11px;
    color: rgba(255, 255, 255, .68);
    font-size: 13px;
    line-height: 1.45;
    text-decoration: none;
    transition: color .2s ease, transform .2s ease;
}

.site-map-column a:hover {
    color: #f3ae47;
    transform: translateX(3px);
}

.site-map-contact-row {
    display: flex;
    flex-wrap: wrap;
    gap: 11px 22px;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .13);
}

.site-map-contact-row span {
    margin-right: 4px;
    color: rgba(255, 255, 255, .47);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.site-map-contact-row a {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.site-map-contact-row a:hover {
    color: #f3ae47;
}

@media screen and (max-width: 1024px) {
    .catalog-feature-grid,
    .catalog-feature-grid-sale,
    .catalog-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .catalog-step-grid,
    .catalog-step-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .catalog-award-panel {
        grid-template-columns: 1fr;
    }

    .catalog-award-strip {
        grid-template-columns: 1fr 1fr;
    }

    .catalog-award-strip a {
        grid-column: 1 / -1;
    }

    .site-map-head {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .site-map-head-actions {
        justify-content: flex-start;
    }

    .site-map-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media screen and (max-width: 760px) {
    .catalog-landing-intro {
        padding: 26px 12px 0;
    }

    .catalog-landing-lead {
        margin-bottom: 20px;
        font-size: 16px;
        line-height: 1.6;
        text-align: left;
    }

    .catalog-trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .catalog-trust-grid > div {
        padding: 15px;
        border-bottom: 1px solid var(--mm-line, #e8ebee);
    }

    .catalog-trust-grid > div:nth-child(2) {
        border-right: 0;
    }

    .catalog-trust-grid > div:nth-child(3),
    .catalog-trust-grid > div:nth-child(4) {
        border-bottom: 0;
    }

    .catalog-choice-grid,
    .catalog-general-grid,
    .catalog-article-grid {
        grid-template-columns: 1fr;
    }

    .catalog-choice {
        min-height: 0;
        padding: 23px;
    }

    .catalog-selection-cta {
        padding: 20px 12px 48px;
    }

    .catalog-selection-cta .wrap-cont > div {
        padding: 26px 20px;
    }

    .catalog-content-section {
        padding: 54px 12px;
    }

    .catalog-feature-grid,
    .catalog-feature-grid-sale,
    .catalog-info-grid,
    .catalog-step-grid,
    .catalog-step-grid-4 {
        grid-template-columns: 1fr;
    }

    .catalog-feature-grid article,
    .catalog-info-grid article,
    .catalog-step-grid article {
        padding: 21px;
    }

    .catalog-process,
    .catalog-info-grid,
    .catalog-freehold-panel,
    .catalog-award-panel,
    .catalog-article-section,
    .catalog-faq,
    .catalog-final-actions,
    .catalog-general-grid,
    .catalog-award-strip {
        margin-top: 42px;
    }

    .catalog-freehold-panel {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 25px 21px;
    }

    .catalog-freehold-mark {
        max-width: 180px;
    }

    .catalog-award-panel {
        gap: 23px;
        padding: 20px;
    }

    .catalog-award-photos img {
        height: 190px;
    }

    .catalog-award-strip {
        grid-template-columns: 1fr;
        gap: 13px;
        padding: 23px;
    }

    .catalog-award-strip a {
        grid-column: auto;
    }

    .catalog-cta-actions,
    .catalog-final-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .catalog-landing .catalog-cta-button.order-button,
    .catalog-landing .catalog-cta-button.order-button2,
    .catalog-outline-button {
        width: 100%;
    }

    .catalog-yandex-reviews {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 44px;
        padding: 23px;
    }

    .catalog-yandex-widget {
        height: 1450px;
    }

    .site-map {
        padding: 54px 12px 28px;
    }

    .site-map-head {
        gap: 24px;
        padding-bottom: 28px;
    }

    .site-map-head-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        width: 100%;
    }

    .site-map .site-map-button.order-button,
    .site-map .site-map-button.order-button2 {
        width: 100%;
    }

    .site-map-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 32px 24px;
        padding: 34px 0 30px;
    }
}

@media screen and (max-width: 420px) {
    .catalog-trust-grid {
        grid-template-columns: 1fr;
    }

    .catalog-trust-grid > div {
        border-right: 0;
        border-bottom: 1px solid var(--mm-line, #e8ebee) !important;
    }

    .catalog-trust-grid > div:last-child {
        border-bottom: 0 !important;
    }

    .catalog-award-photos {
        grid-template-columns: 1fr;
    }

    .catalog-award-photos img {
        height: 210px;
    }

    .catalog-yandex-reviews {
        padding: 18px;
    }

    .catalog-yandex-widget {
        height: 1550px;
    }

    .site-map-head-actions,
    .site-map-grid {
        grid-template-columns: 1fr;
    }

    .site-map-grid {
        gap: 28px;
    }

    .site-map-contact-row {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* refresh-blog */
.blog-page {
    --blog-orange: var(--mm-orange, #d97822);
    --blog-blue: #0b78a8;
    --blog-dark: var(--mm-dark, #1f2933);
    --blog-muted: var(--mm-muted, #697580);
    --blog-line: var(--mm-line, #e6eaed);
    color: var(--blog-dark);
    font-family: inherit;
    padding: 0;
}

.blog-page a {
    text-decoration: none;
}

.blog-page > .blog-hero {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    z-index: auto;
    width: auto;
    overflow: hidden;
    padding: 70px 15px 64px;
    color: #fff;
    background:
        radial-gradient(circle at 84% 10%, rgba(34, 160, 207, .25), transparent 32%),
        linear-gradient(135deg, #17212b 0%, #263b4b 100%);
}

.blog-hero:after {
    position: absolute;
    right: -90px;
    bottom: -170px;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 50%;
    content: "";
}

.blog-hero .wrap-cont {
    position: relative;
    z-index: 1;
}

.blog-kicker,
.blog-section-label,
.blog-feed-head > div > span,
.blog-path > span,
.blog-final-cta > .wrap-cont > span {
    display: block;
    color: #f2a13a;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.blog-hero h1 {
    max-width: 850px;
    margin: 14px 0 16px;
    color: #fff;
    font-size: clamp(38px, 5vw, 68px);
    font-weight: 700;
    line-height: 1.04;
}

.blog-hero p {
    max-width: 790px;
    margin: 0;
    color: rgba(255, 255, 255, .74);
    font-size: 17px;
    line-height: 1.7;
}

.blog-hero-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.blog-hero-links a {
    display: inline-flex;
    min-height: 42px;
    padding: 9px 15px;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, .23);
    border-radius: 8px;
    color: #fff;
    background: rgba(255, 255, 255, .07);
    font-size: 13px;
    font-weight: 700;
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.blog-hero-links a:hover {
    border-color: #f2a13a;
    background: rgba(242, 161, 58, .14);
    transform: translateY(-1px);
}

.blog-latest {
    padding: 62px 15px 70px;
    background: #fff;
}

.blog-section-label {
    margin-bottom: 18px;
    color: var(--blog-orange);
}

.blog-latest-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.48fr) minmax(370px, .92fr);
    gap: 22px;
}

.blog-lead-card,
.blog-top-card,
.blog-feed-card {
    overflow: hidden;
    border: 1px solid var(--blog-line);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(25, 45, 58, .08);
    transition: box-shadow .22s ease, transform .22s ease;
}

.blog-lead-card:hover,
.blog-top-card:hover,
.blog-feed-card:hover {
    box-shadow: 0 18px 42px rgba(25, 45, 58, .13);
    transform: translateY(-3px);
}

.blog-card-cover {
    display: block;
    color: inherit;
}

.blog-lead-media,
.blog-top-media,
.blog-feed-media {
    position: relative;
    overflow: hidden;
    background: #edf1f3;
}

.blog-lead-media {
    height: 410px;
}

.blog-top-media {
    width: 145px;
    min-width: 145px;
    height: 145px;
}

.blog-feed-media {
    height: 225px;
}

.blog-lead-media img,
.blog-top-media img,
.blog-feed-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.blog-card-cover:hover img {
    transform: scale(1.035);
}

.blog-media-placeholder {
    display: flex;
    padding: 18px;
    box-sizing: border-box;
    align-items: flex-start;
    justify-content: space-between;
    color: #fff;
    background: linear-gradient(145deg, #263b4b, #0b78a8);
}

.blog-media-placeholder span,
.blog-media-placeholder strong {
    position: relative;
    z-index: 1;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .09em;
}

.blog-media-placeholder strong {
    align-self: flex-end;
}

.blog-media-sale { background: linear-gradient(145deg, #1f2933, #087d67); }
.blog-media-rent { background: linear-gradient(145deg, #1b617e, #18a1c9); }
.blog-media-project { background: linear-gradient(145deg, #2c2f4a, #aa6b25); }
.blog-media-huahin { background: linear-gradient(145deg, #0d7e91, #35a58d); }
.blog-media-thailand { background: linear-gradient(145deg, #7c4a1d, #d97822); }
.blog-media-company { background: linear-gradient(145deg, #272f38, #776242); }

.blog-lead-content {
    padding: 30px 32px 32px;
}

.blog-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    align-items: center;
    color: #8a949c;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .04em;
    line-height: 1.3;
    text-transform: uppercase;
}

.blog-card-meta span {
    padding: 5px 8px;
    border-radius: 6px;
    color: #0b6f9b;
    background: #e9f5fa;
}

.blog-lead-content h2 {
    margin: 16px 0 13px;
    font-size: clamp(29px, 3.2vw, 43px);
    line-height: 1.16;
}

.blog-lead-content h2 a,
.blog-top-content h3 a,
.blog-feed-content h3 a {
    color: var(--blog-dark);
}

.blog-lead-content p {
    margin: 0 0 19px;
    color: var(--blog-muted);
    font-size: 15px;
    line-height: 1.7;
}

.blog-read-link {
    color: var(--blog-orange);
    font-size: 13px;
    font-weight: 800;
}

.blog-latest-side {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.blog-top-card {
    display: grid;
    grid-template-columns: 145px minmax(0, 1fr);
    min-height: 145px;
}

.blog-top-content {
    padding: 17px 17px 15px;
}

.blog-top-content h3 {
    margin: 10px 0 0;
    font-size: 16px;
    line-height: 1.35;
}

.blog-paths {
    padding: 0 15px 72px;
    background: #fff;
}

.blog-paths .wrap-cont {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.blog-path {
    padding: 31px;
    border-radius: 16px;
}

.blog-path-rent {
    border: 1px solid #cde7f1;
    background: linear-gradient(145deg, #ecf8fc, #fff);
}

.blog-path-sale {
    color: #fff;
    background: linear-gradient(145deg, #1f2933, #2f4657);
}

.blog-path h2 {
    margin: 11px 0 12px;
    color: inherit;
    font-size: 25px;
    line-height: 1.25;
}

.blog-path p {
    max-width: 560px;
    margin: 0;
    color: var(--blog-muted);
    font-size: 14px;
    line-height: 1.65;
}

.blog-path-sale p {
    color: rgba(255, 255, 255, .69);
}

.blog-path > div {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 17px;
    align-items: center;
    margin-top: 22px;
}

.blog-path > div > a {
    color: var(--blog-orange);
    font-size: 13px;
    font-weight: 800;
}

.blog-page .blog-path-button.order-button,
.blog-page .blog-path-button.order-button2,
.blog-page .blog-final-button.order-button,
.blog-page .blog-final-button.order-button2 {
    position: static;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    display: inline-flex !important;
    width: auto;
    min-width: 0;
    min-height: 42px;
    margin: 0;
    padding: 9px 15px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 8px;
    color: #fff;
    background: var(--blog-orange);
    box-shadow: none;
    cursor: pointer;
    font: inherit;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.2;
    opacity: 1;
    transform: none;
}

.blog-page .blog-path-sale .blog-path-button.order-button2,
.blog-page .blog-final-button.order-button2 {
    background: var(--blog-blue);
}

.blog-feed-section {
    padding: 70px 15px 80px;
    background: #f4f6f7;
}

.blog-feed-head {
    display: grid;
    grid-template-columns: 1fr minmax(250px, 350px);
    gap: 26px;
    align-items: end;
}

.blog-feed-head h2 {
    margin: 8px 0 0;
    font-size: clamp(30px, 3.2vw, 44px);
    line-height: 1.15;
}

.blog-search > span {
    display: block;
    margin-bottom: 7px;
    color: #7c8790;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.blog-search input {
    width: 100%;
    height: 46px;
    padding: 0 15px;
    border: 1px solid #dbe1e5;
    border-radius: 9px;
    box-sizing: border-box;
    color: var(--blog-dark);
    background: #fff;
    font: inherit;
    font-size: 14px;
    outline: none;
}

.blog-search input:focus {
    border-color: var(--blog-blue);
    box-shadow: 0 0 0 3px rgba(11, 120, 168, .11);
}

.blog-filter {
    display: flex;
    gap: 8px;
    margin: 27px 0 28px;
    padding-bottom: 3px;
    overflow-x: auto;
    scrollbar-width: thin;
}

.blog-filter button {
    min-height: 36px;
    padding: 7px 12px;
    border: 1px solid #dce2e5;
    border-radius: 18px;
    color: #52606b;
    background: #fff;
    cursor: pointer;
    font: inherit;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.blog-filter button:hover,
.blog-filter button.is-active {
    border-color: var(--blog-blue);
    color: #fff;
    background: var(--blog-blue);
}

.blog-feed-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.blog-feed-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.blog-feed-card[hidden] {
    display: none !important;
}

.blog-feed-content {
    display: flex;
    padding: 21px 22px 24px;
    flex: 1;
    flex-direction: column;
}

.blog-feed-content h3 {
    margin: 13px 0 10px;
    font-size: 20px;
    line-height: 1.34;
}

.blog-feed-content p {
    display: -webkit-box;
    overflow: hidden;
    margin: 0 0 20px;
    color: var(--blog-muted);
    font-size: 13px;
    line-height: 1.65;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

.blog-feed-content .blog-read-link {
    margin-top: auto;
}

.blog-more {
    display: block;
    min-width: 180px;
    min-height: 46px;
    margin: 31px auto 0;
    padding: 10px 20px;
    border: 1px solid var(--blog-orange);
    border-radius: 9px;
    color: var(--blog-orange);
    background: transparent;
    cursor: pointer;
    font: inherit;
    font-size: 13px;
    font-weight: 800;
}

.blog-more:hover {
    color: #fff;
    background: var(--blog-orange);
}

.blog-more[hidden],
.blog-empty[hidden] {
    display: none !important;
}

.blog-empty {
    margin: 34px 0 0;
    padding: 24px;
    border-radius: 12px;
    color: var(--blog-muted);
    background: #fff;
    text-align: center;
}

.blog-final-cta {
    padding: 75px 15px;
    color: #fff;
    background: linear-gradient(135deg, #202d38, #17212b);
    text-align: center;
}

.blog-final-cta .wrap-cont {
    max-width: 850px;
}

.blog-final-cta h2 {
    margin: 12px 0 13px;
    color: #fff;
    font-size: clamp(29px, 3.6vw, 45px);
    line-height: 1.17;
}

.blog-final-cta p {
    max-width: 700px;
    margin: 0 auto;
    color: rgba(255, 255, 255, .68);
    font-size: 15px;
    line-height: 1.7;
}

.blog-final-cta > .wrap-cont > div {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 25px;
}

.blog-page .blog-final-button.order-button,
.blog-page .blog-final-button.order-button2 {
    min-height: 46px;
    padding: 11px 18px;
}

@media screen and (max-width: 1080px) {
    .blog-latest-layout {
        grid-template-columns: 1fr;
    }

    .blog-latest-side {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .blog-feed-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media screen and (max-width: 760px) {
    .blog-hero {
        padding: 53px 12px 49px;
    }

    .blog-hero h1 {
        font-size: 40px;
    }

    .blog-hero p {
        font-size: 15px;
    }

    .blog-latest {
        padding: 46px 12px 52px;
    }

    .blog-lead-media {
        height: 260px;
    }

    .blog-lead-content {
        padding: 24px 22px 25px;
    }

    .blog-latest-side,
    .blog-paths .wrap-cont,
    .blog-feed-grid {
        grid-template-columns: 1fr;
    }

    .blog-paths {
        padding: 0 12px 54px;
    }

    .blog-path {
        padding: 25px 22px;
    }

    .blog-feed-section {
        padding: 54px 12px 62px;
    }

    .blog-feed-head {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .blog-search {
        width: 100%;
    }

    .blog-filter {
        margin-right: -12px;
        margin-left: -12px;
        padding-right: 12px;
        padding-left: 12px;
    }

    .blog-feed-media {
        height: 240px;
    }

    .blog-final-cta {
        padding: 58px 12px;
    }
}

@media screen and (max-width: 480px) {
    .blog-hero-links {
        align-items: stretch;
        flex-direction: column;
    }

    .blog-hero-links a {
        justify-content: center;
    }

    .blog-top-card {
        display: block;
    }

    .blog-top-media {
        width: 100%;
        height: 210px;
    }

    .blog-top-content {
        padding: 19px 20px 21px;
    }

    .blog-top-content h3 {
        font-size: 19px;
    }

    .blog-path > div {
        align-items: stretch;
        flex-direction: column;
    }

    .blog-page .blog-path-button.order-button,
    .blog-page .blog-path-button.order-button2 {
        width: 100%;
    }

    .blog-feed-content h3 {
        font-size: 19px;
    }

    .blog-final-cta > .wrap-cont > div {
        align-items: stretch;
        flex-direction: column;
    }

    .blog-page .blog-final-button.order-button,
    .blog-page .blog-final-button.order-button2 {
        width: 100%;
    }
}

/* refresh-reviews */
.reviews-page {
	padding: 0;
	background: #f6f8fb;
	color: #182231;
	overflow: hidden;
}

.reviews-page * {
	box-sizing: border-box;
}

.reviews-hero {
	position: relative;
	padding: 92px 0 82px;
	background:
		radial-gradient(circle at 84% 15%, rgba(87, 184, 220, .24), transparent 36%),
		linear-gradient(135deg, #10283c 0%, #123f5b 56%, #0c6e89 100%);
	color: #fff;
}

.reviews-hero:after {
	content: "";
	position: absolute;
	right: -90px;
	bottom: -140px;
	width: 360px;
	height: 360px;
	border: 1px solid rgba(255, 255, 255, .15);
	border-radius: 50%;
	box-shadow: 0 0 0 55px rgba(255, 255, 255, .035), 0 0 0 110px rgba(255, 255, 255, .025);
}

.reviews-hero .wrap-cont {
	position: relative;
	z-index: 1;
}

.reviews-kicker,
.reviews-section-head > div > span,
.reviews-yandex-copy > span,
.reviews-final-cta span {
	display: block;
	margin-bottom: 14px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .16em;
	text-transform: uppercase;
}

.reviews-kicker {
	color: #8de2f5;
}

.reviews-hero h1 {
	max-width: 850px;
	margin: 0 0 24px;
	font-size: 48px;
	line-height: 1.08;
	font-weight: 700;
	letter-spacing: -.025em;
}

.reviews-hero p {
	max-width: 800px;
	margin: 0;
	font-size: 19px;
	line-height: 1.65;
	color: rgba(255, 255, 255, .84);
}

.reviews-source-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 34px;
}

.reviews-source-nav a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 112px;
	height: 42px;
	padding: 0 22px;
	border: 1px solid rgba(255, 255, 255, .28);
	border-radius: 999px;
	background: rgba(255, 255, 255, .08);
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.reviews-source-nav a:hover {
	border-color: rgba(255, 255, 255, .7);
	background: rgba(255, 255, 255, .16);
	transform: translateY(-1px);
}

.reviews-source {
	padding: 78px 0;
	scroll-margin-top: 95px;
}

.reviews-google {
	background: #fff;
}

.reviews-section-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 48px;
	margin-bottom: 36px;
}

.reviews-section-head > div {
	flex: 0 1 570px;
}

.reviews-section-head > div > span,
.reviews-yandex-copy > span {
	color: #0a7897;
}

.reviews-section-head h2,
.reviews-yandex-copy h2,
.reviews-final-cta h2 {
	margin: 0;
	font-size: 36px;
	line-height: 1.16;
	font-weight: 700;
	letter-spacing: -.02em;
}

.reviews-section-head > p {
	flex: 0 1 500px;
	margin: 0;
	font-size: 16px;
	line-height: 1.7;
	color: #5d6977;
}

.reviews-google-widget {
	min-height: 430px;
	padding: 22px;
	border: 1px solid #e6ebf0;
	border-radius: 22px;
	background: #fff;
	box-shadow: 0 15px 48px rgba(22, 52, 73, .09);
	overflow: hidden;
}

.reviews-google-widget .es-widget-title-container {
	display: none !important;
}

.reviews-yandex {
	background: #eef6f9;
}

.reviews-yandex-layout {
	display: flex;
	align-items: flex-start;
	gap: 56px;
}

.reviews-yandex-copy {
	position: sticky;
	top: 110px;
	flex: 1 1 42%;
	padding: 38px 0;
}

.reviews-yandex-copy h2 {
	margin-bottom: 22px;
}

.reviews-yandex-copy p {
	margin: 0 0 18px;
	font-size: 17px;
	line-height: 1.72;
	color: #52616f;
}

.reviews-yandex-copy .reviews-source-note {
	padding-left: 18px;
	border-left: 3px solid #43a9c4;
	font-size: 14px;
	color: #697582;
}

.reviews-external-link {
	display: inline-block;
	margin-top: 8px;
	color: #087b99;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
}

.reviews-external-link:hover {
	text-decoration: underline;
}

.reviews-yandex-widget {
	position: relative;
	flex: 1 1 58%;
	height: 720px;
	border-radius: 20px;
	background: #fff;
	box-shadow: 0 16px 50px rgba(22, 68, 86, .13);
	overflow: hidden;
}

.reviews-yandex-widget iframe {
	display: block;
	width: 100%;
	height: 100%;
	border: 1px solid #dfe7eb;
	border-radius: 20px;
}

.reviews-yandex-credit {
	position: absolute;
	left: 16px;
	right: 16px;
	bottom: 8px;
	display: block;
	max-height: 14px;
	overflow: hidden;
	color: #9aa3aa;
	font-family: Arial, sans-serif;
	font-size: 10px;
	line-height: 14px;
	text-align: center;
	text-overflow: ellipsis;
	text-decoration: none;
	white-space: nowrap;
}

.reviews-instagram {
	background: #f6f8fb;
}

.reviews-instagram-grid {
	column-count: 2;
	column-gap: 24px;
	max-width: 1050px;
	margin: 0 auto;
}

.reviews-instagram-item {
	display: inline-block;
	width: 100%;
	margin: 0 0 24px;
	padding: 12px;
	break-inside: avoid;
	-webkit-column-break-inside: avoid;
	page-break-inside: avoid;
	border: 1px solid #e4e9ee;
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 10px 34px rgba(23, 46, 64, .08);
	overflow: hidden;
	font-size: 15px;
	line-height: 1.65;
	overflow-wrap: anywhere;
}

.reviews-instagram-item > * {
	max-width: 100% !important;
}

.reviews-instagram-item .instagram-media {
	width: 100% !important;
	min-width: 0 !important;
	max-width: 100% !important;
	margin: 0 !important;
}

.reviews-more {
	display: block;
	min-width: 250px;
	height: 52px;
	margin: 20px auto 0;
	padding: 0 26px;
	border: 1px solid #0a7897;
	border-radius: 999px;
	background: transparent;
	color: #0a7897;
	font-size: 15px;
	font-weight: 700;
	cursor: pointer;
	transition: color .2s ease, background .2s ease, transform .2s ease;
}

.reviews-more:hover {
	background: #0a7897;
	color: #fff;
	transform: translateY(-1px);
}

.reviews-more span {
	font-weight: 500;
	opacity: .72;
}

.reviews-empty {
	padding: 30px;
	border-radius: 16px;
	background: #fff;
	text-align: center;
	color: #697582;
}

.reviews-final-cta {
	padding: 70px 0;
	background: linear-gradient(125deg, #102b40, #075d78);
	color: #fff;
}

.reviews-final-cta .wrap-cont {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 50px;
}

.reviews-final-cta .wrap-cont > div:first-child {
	max-width: 720px;
}

.reviews-final-cta span {
	color: #8de2f5;
}

.reviews-final-cta p {
	margin: 18px 0 0;
	font-size: 16px;
	line-height: 1.65;
	color: rgba(255, 255, 255, .8);
}

.reviews-final-actions {
	display: flex;
	flex-direction: column;
	gap: 12px;
	min-width: 240px;
}

.reviews-action {
	height: 50px;
	padding: 0 24px;
	border: 1px solid rgba(255, 255, 255, .44);
	border-radius: 999px;
	background: #fff;
	color: #12465e;
	font: inherit;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
}

.reviews-action + .reviews-action {
	background: transparent;
	color: #fff;
}

@media (max-width: 900px) {
	.reviews-hero {
		padding: 72px 0 68px;
	}

	.reviews-hero h1 {
		font-size: 41px;
	}

	.reviews-section-head,
	.reviews-yandex-layout,
	.reviews-final-cta .wrap-cont {
		flex-direction: column;
		align-items: stretch;
	}

	.reviews-section-head {
		gap: 20px;
	}

	.reviews-section-head > div,
	.reviews-section-head > p,
	.reviews-yandex-copy,
	.reviews-yandex-widget {
		flex-basis: auto;
	}

	.reviews-yandex-layout {
		gap: 28px;
	}

	.reviews-yandex-copy {
		position: static;
		padding: 0;
	}

	.reviews-final-actions {
		flex-direction: row;
		min-width: 0;
	}
}

@media (max-width: 760px) {
	.reviews-hero {
		padding: 58px 0 54px;
	}

	.reviews-hero:after {
		display: none;
	}

	.reviews-hero h1 {
		font-size: 34px;
		line-height: 1.12;
	}

	.reviews-hero p {
		font-size: 16px;
		line-height: 1.6;
	}

	.reviews-source-nav {
		gap: 8px;
		margin-top: 28px;
	}

	.reviews-source-nav a {
		flex: 1 1 30%;
		min-width: 0;
		padding: 0 12px;
	}

	.reviews-source {
		padding: 56px 0;
	}

	.reviews-section-head h2,
	.reviews-yandex-copy h2,
	.reviews-final-cta h2 {
		font-size: 29px;
	}

	.reviews-google-widget {
		min-height: 520px;
		padding: 10px;
		border-radius: 16px;
	}

	.reviews-yandex-widget {
		height: 1450px;
		border-radius: 16px;
	}

	.reviews-yandex-widget iframe {
		border-radius: 16px;
	}

	.reviews-instagram-grid {
		column-count: 1;
	}

	.reviews-instagram-item {
		margin-bottom: 18px;
		padding: 8px;
		border-radius: 14px;
	}

	.reviews-final-cta {
		padding: 54px 0;
	}

	.reviews-final-cta .wrap-cont {
		gap: 30px;
	}

	.reviews-final-actions {
		flex-direction: column;
	}
}

@media (max-width: 420px) {
	.reviews-hero h1 {
		font-size: 30px;
	}

	.reviews-source-nav a {
		font-size: 13px;
	}

	.reviews-yandex-widget {
		height: 1550px;
	}
}

/* refresh-google-reviews */
.mm-google-reviews {
	--mm-google-blue: #0b95cf;
	--mm-google-orange: #df7d21;
	--mm-google-ink: #153447;
	--mm-google-muted: #71858f;
	margin: 30px 0 10px;
	color: var(--mm-google-ink);
}

.mm-google-reviews__summary {
	display: flex;
	align-items: center;
	gap: 18px;
	margin-bottom: 22px;
	padding: 20px 22px;
	background: #fff;
	border: 1px solid #e1ebef;
	border-radius: 20px;
	box-shadow: 0 12px 36px rgba(21,52,71,.08);
}

.mm-google-reviews__brand {
	display: grid;
	place-items: center;
	width: 56px;
	height: 56px;
	flex: 0 0 56px;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 4px 18px rgba(21,52,71,.14);
	font: 700 30px/1 Arial,sans-serif;
}

.mm-google-reviews__brand span {
	background: linear-gradient(135deg,#4285f4 8%,#34a853 40%,#fbbc05 67%,#ea4335 88%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.mm-google-reviews__rating { display: grid; grid-template-columns: auto auto; align-items: center; gap: 2px 12px; }
.mm-google-reviews__rating strong { grid-row: span 2; font-size: 34px; line-height: 1; }
.mm-google-reviews__rating span { color: var(--mm-google-muted); font-size: 14px; }
.mm-google-reviews__stars,.mm-google-review__stars { color: #f4b400; letter-spacing: 2px; }
.mm-google-reviews__source { margin-left: auto; padding: 11px 17px; border: 1px solid #cfe0e7; border-radius: 999px; color: var(--mm-google-ink); font-weight: 700; text-decoration: none; transition: .2s ease; }
.mm-google-reviews__source:hover { color: #fff; background: var(--mm-google-blue); border-color: var(--mm-google-blue); }

.mm-google-reviews__grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 16px; }
.mm-google-review { min-width: 0; padding: 21px; background: #fff; border: 1px solid #e1ebef; border-radius: 20px; box-shadow: 0 10px 30px rgba(21,52,71,.07); }
.mm-google-review[hidden] { display: none !important; }
.mm-google-review__head { display: flex; align-items: center; gap: 12px; min-width: 0; }
.mm-google-review__head img,.mm-google-review__avatar { width: 48px; height: 48px; flex: 0 0 48px; border-radius: 50%; object-fit: cover; }
.mm-google-review__avatar { display: grid; place-items: center; background: #e7f5fb; color: var(--mm-google-blue); font-weight: 800; }
.mm-google-review__head>div { min-width: 0; }
.mm-google-review__head strong { display: block; overflow: hidden; color: var(--mm-google-ink); font-size: 16px; white-space: nowrap; text-overflow: ellipsis; }
.mm-google-review__date { display: block; margin-top: 2px; color: var(--mm-google-muted); font-size: 12px; }
.mm-google-review__google { margin-left: auto; color: #4285f4; font: 700 20px/1 Arial,sans-serif; }
.mm-google-review__stars { margin: 15px 0 10px; font-size: 16px; }
.mm-google-review__stars span { color: #d9e1e4; }
.mm-google-review>p { margin: 0; color: #496572; font-size: 15px; line-height: 1.65; white-space: pre-line; }
.mm-google-review__reply { margin-top: 16px; padding: 14px; border-radius: 12px; background: #f2f7f9; }
.mm-google-review__reply strong { display: block; margin-bottom: 4px; font-size: 13px; }
.mm-google-review__reply p { margin: 0; color: #607780; font-size: 13px; line-height: 1.55; }
.mm-google-reviews__more { display: block; min-width: 230px; margin: 22px auto 0; padding: 13px 22px; border: 0; border-radius: 999px; background: var(--mm-google-blue); color: #fff; font: 700 15px/1.2 Manrope,Arial,sans-serif; cursor: pointer; }
.mm-google-reviews__updated { margin: 14px 0 0; color: #8ca0a8; font-size: 11px; text-align: center; }

.mm-google-reviews--compact { margin: 22px 0 34px; }
.mm-google-reviews--compact .mm-google-review>p { display: -webkit-box; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 5; }
.mm-google-reviews--compact .mm-google-reviews__updated { display: none; }

@media (max-width: 900px) {
	.mm-google-reviews__grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media (max-width: 620px) {
	.mm-google-reviews { margin-top: 20px; }
	.mm-google-reviews__summary { flex-wrap: wrap; gap: 13px; padding: 17px; border-radius: 16px; }
	.mm-google-reviews__brand { width: 48px; height: 48px; flex-basis: 48px; font-size: 26px; }
	.mm-google-reviews__rating strong { font-size: 29px; }
	.mm-google-reviews__source { width: 100%; margin-left: 0; text-align: center; }
	.mm-google-reviews__grid { grid-template-columns: 1fr; }
	.mm-google-review { padding: 18px; border-radius: 16px; }
	.mm-google-reviews__more { width: 100%; }
}


/* refresh-rental-cta-v2 */
/* Persistent rental CTA. Kept separate from the shared .order-button styles. */
.mm-rental-rail.order-button {
    position: fixed;
    top: 50%;
    right: 0;
    bottom: auto;
    left: auto;
    z-index: 75;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 48px;
    min-width: 48px;
    min-height: 174px;
    margin: 0;
    padding: 16px 11px;
    border: 0;
    border-radius: 0 14px 14px 0;
    background: #db7f2d;
    box-shadow: 0 12px 30px rgba(91, 48, 13, .28);
    color: #fff;
    font-family: "Manrope", Arial, sans-serif;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: .02em;
    text-align: center;
    text-transform: none;
    white-space: nowrap;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    opacity: 1;
    cursor: pointer;
    transform: translateY(-50%) rotate(180deg);
    transition: background-color .2s ease, box-shadow .2s ease, transform .2s ease;
    -webkit-appearance: none;
    appearance: none;
}

.mm-rental-rail.order-button:hover,
.mm-rental-rail.order-button:focus-visible {
    background: #c96f21;
    box-shadow: 0 15px 36px rgba(91, 48, 13, .36);
    outline: 0;
    transform: translate(-3px, -50%) rotate(180deg);
}

.mm-rental-rail.order-button:focus-visible {
    box-shadow: 0 0 0 4px rgba(255, 255, 255, .9), 0 0 0 7px rgba(219, 127, 45, .42), 0 15px 36px rgba(91, 48, 13, .36);
}

@media screen and (max-width: 767px) {
    .mm-rental-rail.order-button {
        top: 50%;
        right: 0;
        bottom: auto;
        left: auto;
        width: 42px;
        min-width: 42px;
        min-height: 154px;
        padding: 14px 9px;
        border-radius: 0 12px 12px 0;
        box-shadow: 0 10px 26px rgba(91, 48, 13, .3);
        font-size: 12px;
        line-height: 1.15;
        writing-mode: vertical-rl;
        transform: translateY(-50%) rotate(180deg);
    }

    .mm-rental-rail.order-button:hover,
    .mm-rental-rail.order-button:focus-visible {
        transform: translate(-2px, -50%) rotate(180deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    .mm-rental-rail.order-button {
        transition: none;
    }
}

/* refresh-telegram-widget */
.mm-telegram-widget {
    position: fixed;
    right: 18px;
    bottom: calc(18px + env(safe-area-inset-bottom));
    z-index: 76;
    font-family: "Manrope", Arial, sans-serif;
}

.mm-telegram-trigger {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 56px;
    padding: 0 23px;
    border: 0;
    border-radius: 999px;
    background: #149bd3;
    box-shadow: 0 12px 30px rgba(9, 94, 135, .3);
    color: #fff;
    font: inherit;
    font-size: 16px;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
    transition: background-color .2s ease, box-shadow .2s ease, transform .2s ease;
    -webkit-appearance: none;
    appearance: none;
}

.mm-telegram-trigger svg,
.mm-telegram-start svg {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    fill: currentColor;
}

.mm-telegram-trigger:hover,
.mm-telegram-trigger:focus-visible {
    background: #078bc3;
    box-shadow: 0 15px 35px rgba(9, 94, 135, .38);
    outline: 0;
    transform: translateY(-2px);
}

.mm-telegram-notice {
    position: absolute;
    top: 1px;
    right: 4px;
    width: 13px;
    height: 13px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: #f0162f;
}

.mm-telegram-widget.is-seen .mm-telegram-notice {
    display: none;
}

.mm-telegram-panel[hidden] {
    display: none !important;
}

.mm-telegram-panel {
    position: absolute;
    right: 0;
    bottom: calc(100% + 13px);
    width: min(360px, calc(100vw - 24px));
    overflow: hidden;
    border: 1px solid rgba(12, 97, 134, .12);
    border-radius: 22px;
    background: #e4f1df;
    box-shadow: 0 22px 60px rgba(20, 48, 62, .3);
    animation: mmTelegramOpen .2s ease-out both;
}

.mm-telegram-panel-head {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 88px;
    padding: 15px 46px 15px 18px;
    background: #109bd3;
    color: #fff;
}

.mm-telegram-avatar {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, .82);
    border-radius: 50%;
    background: #fff;
}

.mm-telegram-avatar::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 2px;
    width: 10px;
    height: 10px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: #35d04f;
}

.mm-telegram-avatar img {
    width: 43px;
    height: 43px;
    object-fit: contain;
}

.mm-telegram-person {
    min-width: 0;
    padding-left: 13px;
}

.mm-telegram-person strong,
.mm-telegram-person span {
    display: block;
}

.mm-telegram-person strong {
    margin-bottom: 4px;
    font-size: 18px;
    line-height: 1.15;
}

.mm-telegram-person span {
    color: rgba(255, 255, 255, .84);
    font-size: 13px;
    line-height: 1.35;
}

.mm-telegram-close {
    position: absolute;
    top: 10px;
    right: 12px;
    width: 32px;
    height: 32px;
    padding: 0;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, .68);
    font: 400 30px/30px Arial, sans-serif;
    cursor: pointer;
}

.mm-telegram-close:hover,
.mm-telegram-close:focus-visible {
    color: #fff;
    outline: 0;
}

.mm-telegram-panel-body {
    padding: 16px 18px 20px;
    background-color: #dff0dc;
    background-image: radial-gradient(circle at 20% 25%, rgba(17, 155, 211, .06) 0 2px, transparent 3px), radial-gradient(circle at 75% 70%, rgba(219, 127, 45, .07) 0 2px, transparent 3px);
    background-size: 42px 42px, 54px 54px;
}

.mm-telegram-time {
    margin-bottom: 8px;
    color: #7d9a83;
    font-size: 11px;
    text-align: center;
}

.mm-telegram-message {
    max-width: 285px;
    margin-bottom: 18px;
    padding: 16px 18px;
    border-radius: 7px 19px 19px 19px;
    background: #fff;
    box-shadow: 0 5px 18px rgba(40, 82, 63, .1);
    color: #26343c;
    font-size: 14px;
    line-height: 1.55;
}

.mm-telegram-message strong {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
}

.mm-telegram-message p {
    margin: 0;
}

.mm-telegram-start {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: fit-content;
    min-height: 50px;
    margin: 0 auto;
    padding: 0 22px;
    border-radius: 999px;
    background: #149bd3;
    box-shadow: 0 9px 22px rgba(9, 94, 135, .23);
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    transition: background-color .2s ease, transform .2s ease;
}

.mm-telegram-start:hover,
.mm-telegram-start:focus-visible {
    background: #078bc3;
    color: #fff;
    outline: 0;
    transform: translateY(-2px);
}

@keyframes mmTelegramOpen {
    from { opacity: 0; transform: translateY(10px) scale(.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@media screen and (max-width: 767px) {
    .mm-telegram-widget {
        right: 12px;
        bottom: calc(14px + env(safe-area-inset-bottom));
    }

    .mm-telegram-trigger {
        min-height: 52px;
        padding: 0 19px;
        font-size: 15px;
    }

    .mm-telegram-panel {
        bottom: calc(100% + 10px);
        border-radius: 19px;
    }

    .mm-telegram-panel-head {
        min-height: 80px;
        padding: 13px 42px 13px 15px;
    }

    .mm-telegram-avatar {
        width: 52px;
        height: 52px;
        flex-basis: 52px;
    }

    .mm-telegram-avatar img {
        width: 39px;
        height: 39px;
    }

    .mm-telegram-panel-body {
        padding: 14px 15px 18px;
    }

    .mm-telegram-message {
        max-width: 270px;
        padding: 14px 16px;
    }

    body:has(.object-mobile-actions) .mm-telegram-widget {
        display: none;
    }
}

@media screen and (max-width: 420px) {
    .mm-telegram-trigger span {
        font-size: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .mm-telegram-trigger,
    .mm-telegram-start,
    .mm-telegram-panel {
        animation: none;
        transition: none;
    }
}

/* mm-foundation */
.mm-pagination{display:flex;flex-wrap:wrap;justify-content:center;gap:8px;margin:28px 0;clear:both}.mm-pagination a,.mm-pagination span{padding:10px 14px;border:1px solid #ddd;border-radius:8px;background:#fff;color:#343434}.mm-pagination [aria-current=page]{background:#dc812d;color:#fff;border-color:#dc812d}.mm-info-page{padding:35px 0 65px}.mm-info-page .wrap-cont{max-width:1050px}.mm-info-page h1{font-size:clamp(26px,4vw,40px);line-height:1.25;margin:0 0 22px}.mm-info-page h2{font-size:25px;margin:30px 0 14px}.mm-info-page p,.mm-info-page li,.mm-info-page address{font-size:17px;line-height:1.65;margin-bottom:14px}.mm-info-page ul,.mm-info-page ol{padding-left:25px}.mm-info-page address{font-style:normal}.mm-info-page a:not(.button){color:#126888;text-decoration:underline}.mm-request-form{max-width:650px}.mm-request-form>label{display:block;margin:15px 0 7px}.mm-request-form>input,.mm-request-form>textarea{box-sizing:border-box;width:100%;padding:12px;border:1px solid #b8b8b8;border-radius:6px;font:inherit}.mm-honeypot{position:absolute!important;left:-10000px!important;top:auto!important;width:1px!important;height:1px!important;overflow:hidden!important}.mm-form-status{font-size:15px;line-height:1.5;clear:both;text-align:left}.mm-contact-help{font-size:13px!important;line-height:1.4!important;clear:both}.mm-input-label{display:block;text-align:left;font-size:13px;margin-bottom:5px;line-height:1.3}.form-box button.button,.overlay-form button.button,.mm-request-form button.button{border:0;font-family:inherit;cursor:pointer;box-sizing:border-box}.mm-inline-button{display:inline-block;padding:12px 20px;background:#d9812e;color:#fff;border-radius:8px;text-decoration:none}.mm-author{font-size:14px;line-height:1.6;color:#555;margin:15px 0 25px}.mm-editorial-links{padding:20px;background:#faf7f1;border-radius:10px;margin-top:30px}.mm-skip-link{position:absolute;left:-10000px;top:8px;z-index:99999;background:#fff;padding:12px;color:#222}.mm-skip-link:focus{left:10px}.mm-noscript{padding:15px;background:#fff7e8}.menu-mobile{border:0;cursor:pointer}.mm-foundation-footer{margin:15px 0;font-size:14px;line-height:1.6}.mm-foundation-footer a{margin-right:14px}button:disabled{opacity:.65;cursor:wait}a:focus-visible,button:focus-visible,input:focus-visible,textarea:focus-visible{outline:3px solid #139ccb;outline-offset:3px}.product-img img,.object-slider img{max-width:100%;height:auto}.mm-article-body img{max-width:100%;height:auto}
@media(max-width:767px){.mm-info-page .wrap-cont{padding:0 20px}.mm-input-label{font-size:12px}.mm-pagination a,.mm-pagination span{padding:9px 11px}}
[data-mm-lead] .input:after{top:auto;bottom:0;height:60px;pointer-events:none}.form-consult .textarea{margin-top:25px}.form-consult textarea{margin-top:0}.mm-request-form .button{padding:16px 24px;background:#d9812e;color:#fff;border-radius:8px}
@media(prefers-reduced-motion:reduce){html{scroll-behavior:auto!important}.mm-telegram-widget *{animation:none!important;transition:none!important}}
