:root {
    --brand-blue: #0a77b8;
    --brand-orange: #f58634;
    --ink: #23405a;
    --muted: #74808a;
    --footer: #073872;
    --paper: #ffffff;
    --soft: #f3f3f1;
    --line: #e8ecef;
    --gold: #ad8a63;
    --shadow: 0 18px 42px rgba(18, 38, 63, .18);
    --op-header-height: 72px;
    --motion-fast: 160ms;
    --motion-base: 280ms;
    --motion-slow: 440ms;
    --motion-page: 520ms;
    --ease-standard: cubic-bezier(.22, .61, .36, 1);
    --ease-emphasis: cubic-bezier(.2, .8, .2, 1);
    --ease-exit: cubic-bezier(.4, 0, 1, 1);
}

* {
    box-sizing: border-box; 
}

body {
    margin: 0;
    font-family: "Be Vietnam Pro", "Segoe UI", Arial, Helvetica, sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
    color: var(--ink);
    background: var(--paper);
}

html {
    scroll-behavior: smooth;
    scrollbar-gutter: stable;
}

a {
    color: inherit;
    text-decoration: none;
}

.op-page {
    min-height: 100vh;
    overflow-x: hidden;
}

.op-page[data-customer-web-page] {
    animation: op-page-enter var(--motion-page) var(--ease-standard) both;
}

.op-page--home {
    --motion-page: 220ms;
}

.op-page[data-customer-web-page].is-leaving {
    pointer-events: none;
    animation: op-page-leave 220ms var(--ease-exit) both;
}

[data-motion] {
    opacity: 0;
    transform: translate3d(0, 28px, 0) scale(.985);
    transition:
        opacity var(--motion-slow) var(--ease-standard),
        transform var(--motion-slow) var(--ease-standard);
    transition-delay: var(--motion-delay, 0ms);
    will-change: opacity, transform;
}

[data-motion="fade"] {
    transform: translate3d(0, 0, 0);
}

[data-motion="scale"] {
    transform: translate3d(0, 18px, 0) scale(.94);
}

[data-motion="slide-left"] {
    transform: translate3d(-34px, 0, 0);
}

[data-motion="slide-right"] {
    transform: translate3d(34px, 0, 0);
}

[data-motion].is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

.op-shell {
    width: min(1420px, calc(100% - 36px));
    margin: 0 auto;
}

.op-hero {
    position: relative;
    min-height: 640px;
    padding-top: var(--op-header-height);
    color: #fff;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, .72) 0%, rgba(0, 85, 115, .55) 46%, rgba(245, 134, 52, .56) 100%),
        url("/img/customer-web/1.jpg") center / cover no-repeat,
        linear-gradient(135deg, #2e3c45, #9e6b38);
}

.op-page.is-buying .op-hero {
    background:
        linear-gradient(90deg, rgba(0, 69, 105, .78) 0%, rgba(0, 98, 132, .44) 46%, rgba(245, 134, 52, .46) 100%),
        url("/img/customer-web/3.png") center / cover no-repeat,
        linear-gradient(135deg, #185470, #b77932);
}

.op-hero::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, rgba(0, 0, 0, .18), rgba(0, 0, 0, .05));
    pointer-events: none;
}

.op-nav {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 44px;
    padding: 44px 0 26px;
}

.op-nav-panel {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 0;
    gap: 24px;
}

.op-nav-toggle {
    display: none;
    place-items: center;
    width: 44px;
    height: 44px;
    margin-left: auto;
    border: 1px solid rgba(7, 56, 114, .14);
    border-radius: 12px;
    background: #fff;
    color: var(--ink);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    transition: color .2s ease, border-color .2s ease, background .2s ease;
}

.op-nav-toggle__close {
    display: none;
}

.op-nav.is-menu-open .op-nav-toggle__open {
    display: none;
}

.op-nav.is-menu-open .op-nav-toggle__close {
    display: inline;
}

.op-nav.is-menu-open .op-nav-toggle {
    color: var(--brand-orange);
    border-color: rgba(245, 134, 52, .45);
}

.op-nav-actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.op-home-topbar .op-nav {
    padding: 14px 0;
    color: var(--ink);
}

.op-home-topbar .op-logo img {
    filter: none;
}

.op-home-topbar .op-menu a {
    color: var(--ink);
    opacity: 1;
}

.op-home-topbar .op-menu a:hover,
.op-home-topbar .op-menu a.is-active {
    color: var(--brand-orange);
}

.op-logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.op-logo img {
    display: block;
    height: 38px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .35));
}

.op-page--project .op-logo img {
    filter: none;
}

.op-menu {
    display: flex;
    align-items: center;
    gap: 42px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.op-menu a {
    opacity: .92;
}

.op-menu a.is-active {
    color: #ffd45e;
    opacity: 1;
}

.op-nav-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 20px;
    border-radius: 999px;
    border: 1px solid var(--brand-orange);
    background: var(--brand-orange);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .02em;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

.op-nav-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(245, 134, 52, .22);
}

.op-nav-button--ghost {
    border-color: rgba(7, 56, 114, .18);
    background: rgba(255, 255, 255, .92);
    color: var(--footer);
}

.op-nav-icon-btn {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(7, 56, 114, .14);
    background: #fff;
    color: var(--ink);
    font-size: 22px;
    line-height: 1;
    transition: transform .2s ease, box-shadow .2s ease, color .2s ease, border-color .2s ease;
}

.op-nav-icon-btn:hover {
    color: var(--brand-orange);
    border-color: rgba(245, 134, 52, .45);
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(245, 134, 52, .16);
}

.op-home-topbar .op-nav-icon-btn {
    background: rgba(255, 255, 255, .92);
}

.op-page--project .op-menu a.is-active {
    color: var(--brand-orange);
}

.op-hero-main {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(430px, 1fr) minmax(660px, 720px);
    align-items: center;
    gap: 44px;
    padding: 88px 0 142px;
}

.op-kicker {
    margin: 0 0 10px;
    font-size: 42px;
    line-height: 1.08;
    font-weight: 800;
    text-transform: uppercase;
    max-width: 460px;
}

.op-kicker strong {
    color: #ff9a2d;
}

.op-subtitle {
    margin: 18px 0 0;
    font-size: 25px;
    font-weight: 500;
}

.op-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.op-hero-login,
.op-hero-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.op-hero-login {
    background: var(--brand-orange);
    color: #fff;
    box-shadow: 0 14px 28px rgba(245, 134, 52, .24);
}

.op-hero-secondary {
    border: 1px solid rgba(255, 255, 255, .48);
    background: rgba(255, 255, 255, .08);
    color: #fff;
    backdrop-filter: blur(8px);
}

.op-search {
    justify-self: end;
    width: min(720px, 100%);
    margin-top: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .96);
    box-shadow: var(--shadow);
    color: var(--ink);
    overflow: hidden;
}

.op-tabs {
    display: flex;
    padding: 0 24px;
    border-bottom: 1px solid var(--line);
}

.op-tab {
    position: relative;
    padding: 17px 22px 15px 0;
    border: 0;
    background: transparent;
    color: #293746;
    font-weight: 700;
    font-size: 19px;
    cursor: pointer;
}

.op-tab.is-active::after {
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 42px;
    height: 3px;
    content: "";
    border-radius: 20px;
    background: var(--brand-orange);
}

.op-badge {
    display: inline-block;
    margin-left: 3px;
    color: #e64031;
    font-size: 16px;
    vertical-align: top;
}

.op-form {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 13px;
    padding: 22px 24px 14px;
}

.op-field {
    grid-column: span 2;
}

.op-panel {
    display: none;
}

.op-panel.is-active {
    display: grid;
}

.op-buy-form {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding-top: 16px;
}

.op-keyword {
    grid-column: 1 / 4;
    height: 44px;
    border: 1px solid #dfe5e9;
    border-radius: 5px;
    background: #f7f8f9;
    color: #586472;
    font-size: 18px;
    padding: 0 15px;
}

.op-buy-submit {
    align-self: end;
    height: 44px;
    border: 0;
    border-radius: 5px;
    background: var(--brand-orange);
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
}

.op-field label {
    display: block;
    margin-bottom: 7px;
    color: #70808f;
    font-size: 17px;
    font-weight: 700;
}

.op-field select,
.op-field input {
    width: 100%;
    height: 42px;
    border: 1px solid #dfe5e9;
    border-radius: 5px;
    background: #f7f8f9;
    color: #677481;
    font-size: 18px;
    padding: 0 14px;
}

.op-keyword:focus,
.op-field input:focus,
.op-field select:focus {
    border-color: rgba(245, 134, 52, .78);
    background: #fff;
    outline: 0;
    box-shadow: 0 0 0 3px rgba(245, 134, 52, .13);
}

.op-keyword::placeholder,
.op-field input::placeholder {
    color: #8b96a1;
}

.op-hot-tags {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #697786;
    font-size: 17px;
}

.op-hot-tags span {
    display: inline-flex;
    align-items: center;
    height: 24px;
    border-radius: 14px;
    background: #e8edf1;
    color: #5d6873;
    font-size: 16px;
    font-weight: 700;
    padding: 0 12px;
}

.op-hot-tags span:first-of-type {
    background: #1681c2;
    color: #fff;
}

.op-submit {
    grid-column: span 2;
    align-self: end;
    min-height: 44px;
    border: 0;
    border-radius: 5px;
    background: var(--brand-orange);
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.18;
    padding: 0 12px;
    white-space: nowrap;
    cursor: pointer;
}

.op-search-feedback {
    grid-column: 1 / -1;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
}

.op-search-feedback.is-info {
    background: rgba(10, 119, 184, .10);
    color: var(--brand-blue);
}

.op-search-feedback.is-success {
    background: rgba(34, 197, 94, .12);
    color: #15803d;
}

.op-search-feedback.is-error {
    background: rgba(230, 64, 49, .10);
    color: #c53030;
}

.op-note {
    padding: 0 22px 18px;
    color: #fff;
    font-size: 15px;
    opacity: .9;
    transform: translateY(34px);
}

.op-projects {
    padding: 52px 0 62px;
    background: #fff;
}

.op-section-title {
    margin: 0 0 22px;
    color: var(--ink);
    font-size: 30px;
    font-weight: 800;
    text-transform: uppercase;
}

.op-slider-wrap {
    position: relative;
}

.op-slider {
    display: flex;
    gap: 27px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 4px 2px 12px;
}

.op-slider::-webkit-scrollbar {
    display: none;
}

.op-arrow {
    position: absolute;
    top: 154px;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 12px 28px rgba(10, 55, 93, .2);
    color: #fff;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}

.op-arrow::before {
    width: 12px;
    height: 12px;
    content: "";
    border-top: 3px solid var(--brand-blue);
    border-left: 3px solid var(--brand-blue);
}

.op-arrow.left::before {
    transform: rotate(-45deg) translate(2px, 2px);
}

.op-arrow.right::before {
    transform: rotate(135deg) translate(2px, 2px);
}

.op-arrow:hover {
    box-shadow: 0 16px 34px rgba(10, 55, 93, .28);
    transform: translateY(-1px);
}

.op-arrow:disabled {
    opacity: .42;
    cursor: default;
    transform: none;
}

.op-arrow.left {
    left: -22px;
}

.op-arrow.right {
    right: -22px;
}

.op-card {
    flex: 0 0 calc((100% - 81px) / 4);
    min-width: 230px;
    scroll-snap-align: start;
}

.op-lead-card {
    padding: 14px;
    border: 1px solid rgba(35, 64, 90, .10);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(18, 38, 63, .08);
}

.op-photo {
    min-height: 155px;
    border-radius: 6px;
    background:
        linear-gradient(135deg, rgba(12, 43, 63, .12), rgba(255, 168, 82, .16)),
        url("/img/customer-web/2.jpg") center / cover no-repeat,
        linear-gradient(135deg, #c8d7de, #f6d6a7);
    box-shadow: 0 6px 16px rgba(24, 44, 60, .12);
}

.op-card-title {
    margin: 13px 0 5px;
    color: #1681c2;
    font-size: 21px;
    font-weight: 800;
}

.op-card-meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    color: #7a8792;
    font-size: 17px;
}

.op-outline {
    border: 1px solid var(--brand-orange);
    border-radius: 18px;
    background: #fff;
    color: var(--brand-orange);
    font-size: 16px;
    font-weight: 700;
    padding: 7px 13px;
}

.op-center {
    display: flex;
    justify-content: center;
    padding-top: 34px;
}

.op-primary {
    border: 0;
    border-radius: 4px;
    background: var(--brand-orange);
    color: #fff;
    font-size: 17px;
    font-weight: 800;
    padding: 12px 28px;
}

.op-buy-only {
    display: none;
}

.op-page.is-buying .op-buy-only {
    display: block;
}

.op-page.is-buying .op-consign-only {
    display: none;
}

.op-leads {
    padding: 8px 0 58px;
    background: #fff;
}

.op-leads h2 {
    margin: 0 0 22px;
    color: var(--brand-blue);
    font-size: 30px;
    font-weight: 800;
    text-transform: uppercase;
}

.op-lead-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 22px;
}

.op-lead-tabs button {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    color: #5b6570;
    font-size: 14px;
    font-weight: 800;
    padding: 7px 14px;
    cursor: pointer;
    transition: background .18s ease, color .18s ease, border-color .18s ease;
}

.op-lead-tabs button:hover,
.op-lead-tabs button.is-active {
    background: var(--brand-orange);
    color: #fff;
    border-color: var(--brand-orange);
}

.op-lead-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: 28px;
}

.op-lead-photo {
    min-height: 190px;
    border-radius: 10px;
    background:
        linear-gradient(135deg, rgba(12, 43, 63, .10), rgba(255, 168, 82, .10)),
        linear-gradient(135deg, #c8d7de, #f6d6a7);
    box-shadow: 0 6px 16px rgba(24, 44, 60, .12);
}

.op-lead-title {
    margin: 13px 0 8px;
    color: #3f464d;
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
}

.op-lead-info {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    color: #8b949c;
    font-size: 16px;
    margin-bottom: 10px;
}

.op-lead-price {
    margin: 0 0 12px;
    color: var(--brand-orange);
    font-size: 20px;
    font-weight: 800;
}

.op-lead-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    color: #67737e;
    font-size: 17px;
    line-height: 1.35;
}

.op-empty-featured {
    border: 1px dashed var(--line);
    border-radius: 6px;
    color: var(--muted);
    font-size: 17px;
    padding: 26px;
    text-align: center;
}

.op-intro {
    padding: 60px 0 70px;
    background: var(--soft);
}

.op-intro-grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 46px;
    align-items: center;
    width: min(1220px, calc(100% - 48px));
    margin: 0 auto;
}

.op-intro-photo {
    min-height: 200px;
    border-radius: 4px;
    background:
        linear-gradient(135deg, rgba(12, 43, 63, .10), rgba(255, 168, 82, .12)),
        linear-gradient(135deg, #c8d7de, #f6d6a7);
    box-shadow: 0 12px 24px rgba(24, 44, 60, .12);
}

.op-intro h2 {
    margin: 0 0 16px;
    color: #ef954d;
    font-size: 31px;
    line-height: 1.15;
}

.op-intro p,
.op-about p {
    margin: 0;
    color: #576573;
    font-size: 18px;
    line-height: 1.65;
}

.op-read {
    display: inline-flex;
    align-items: center;
    gap: 28px;
    margin-top: 24px;
    border-radius: 4px;
    background: var(--brand-orange);
    color: #fff;
    font-size: 17px;
    font-weight: 800;
    padding: 14px 28px;
}

.op-panorama {
    padding: 26px 0 42px;
    background: #fff;
}

.op-panorama-img {
    width: min(1320px, calc(100% - 48px));
    min-height: 620px;
    margin: 0 auto;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .12), rgba(248, 154, 61, .10)),
        linear-gradient(135deg, #d7e0e3, #ffd59d);
}

.op-about {
    padding: 76px 0 58px;
    text-align: center;
}

.op-about--has-bg {
    position: relative;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .94), rgba(248, 250, 251, .98)),
        var(--op-about-bg) center / cover no-repeat;
}

.op-about-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    gap: 48px;
    align-items: center;
    width: min(1320px, calc(100% - 48px));
    margin: 0 auto;
    text-align: left;
}

.op-about-copy {
    min-width: 0;
}

.op-about-visual {
    margin: 0;
}

.op-about-visual img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.op-about-copy .op-read {
    margin-top: 28px;
}

.op-eyebrow {
    margin: 0 0 6px;
    color: var(--gold);
    font-size: 17px;
    font-weight: 800;
    text-transform: uppercase;
}

.op-about h2,
.op-partners h2 {
    margin: 0;
    color: var(--ink);
    font-size: 30px;
    letter-spacing: 0;
    text-transform: uppercase;
}

.op-about-sub {
    margin: 9px 0 32px;
    color: #87827d;
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
}
.op-about-copy strong{
    color: var(--brand-orange);
}

.op-about p {
    width: min(860px, calc(100% - 48px));
    margin: 0 auto;
}

.op-partners {
    padding: 34px 0 84px;
    text-align: center;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .9), rgba(255, 255, 255, .94)),
        url("/img/customer-web/partners/background_partner.jpg") center / cover no-repeat;
}

.op-partner-sub {
    margin: 8px 0 0;
    color: #606e7b;
    font-size: 20px;
}

.op-partner-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(150px, 1fr));
    gap: 16px;
    justify-content: center;
    margin: 30px auto 0;
    max-width: 1180px;
}

.op-partner {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 106px;
    padding: 14px 18px;
    border: 1px solid #d9e0e8;
    border-radius: 6px;
    background: rgba(255, 255, 255, .95);
    box-shadow: 0 8px 20px rgba(18, 38, 63, .08);
}

.op-partner img {
    max-width: 100%;
    max-height: 62px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.op-partner:nth-child(6) {
    grid-column: 2 / span 2;
}

.op-partner:nth-child(7) {
    grid-column: 4 / span 2;
}

.op-floating-actions {
    position: fixed;
    right: 24px;
    bottom: 60px;
    z-index: 90;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    pointer-events: none;
}

.op-floating-actions__btn {
    pointer-events: auto;
    border: 0;
    cursor: pointer;
    text-decoration: none;
}

.op-floating-actions__btn--top {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--brand-blue);
    color: #fff;
    font-size: 22px;
    box-shadow: 0 10px 24px rgba(10, 55, 93, .28);
    transition: opacity .18s ease, transform .18s ease;
}

.op-floating-actions__btn--top:not([hidden]) {
    animation: opFadeIn .2s ease;
}

.op-floating-actions__btn--top:hover {
    transform: translateY(-2px);
}

.op-floating-actions__btn--contact,
.op-floating-actions__btn--zalo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #fff;
}

.op-floating-actions__icon--contact {
    border-color: #2ca3c8;
    color: #2ca3c8;
    box-shadow: 0 10px 24px rgba(44, 163, 200, .22);
}

.op-floating-actions__btn--contact:hover .op-floating-actions__icon--contact {
    transform: translateY(-2px);
    background: #2ca3c8;
    color: #fff;
}

.op-floating-actions__label {
    border-radius: 20px;
    background: #2ca3c8;
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.2;
    padding: 10px 14px;
    box-shadow: 0 10px 24px rgba(44, 163, 200, .28);
    white-space: nowrap;
}

.op-floating-actions__icon {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border: 7px solid #2ca3c8;
    border-radius: 50%;
    background: #fff;
    color: #2ca3c8;
    font-size: 24px;
    box-shadow: 0 10px 24px rgba(44, 163, 200, .22);
    transition: transform .18s ease;
}

.op-floating-actions__btn--zalo:hover .op-floating-actions__icon {
    transform: translateY(-2px);
}

.op-floating-chat {
    position: relative;
    pointer-events: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.op-floating-chat__menu {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 10px);
    translate: -50% 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 168px;
    padding: 10px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 14px 32px rgba(10, 55, 93, .18);
    border: 1px solid rgba(10, 55, 93, .08);
    animation: opFadeIn .18s ease;
    pointer-events: auto;
}

.op-floating-chat__menu[hidden] {
    display: none !important;
}

.op-floating-chat__item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    margin: 0;
    padding: 10px 12px;
    border: 0;
    border-radius: 12px;
    background: rgba(44, 163, 200, .08);
    color: var(--ink);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    cursor: pointer;
    transition: background .15s ease, color .15s ease, transform .15s ease;
}

.op-floating-chat__item > i {
    color: #2ca3c8;
    font-size: 16px;
}

.op-floating-chat__item:hover,
.op-floating-chat__item:focus-visible {
    background: #2ca3c8;
    color: #fff;
    outline: none;
    transform: translateY(-1px);
}

.op-floating-chat__item:hover > i,
.op-floating-chat__item:focus-visible > i {
    color: #fff;
}

.op-floating-chat.is-open .op-floating-actions__icon {
    transform: translateY(-2px);
    background: #2ca3c8;
    color: #fff;
}

@keyframes opFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.op-footer {
    background: var(--footer);
    color: #fff;
    padding: 32px 0;
}

.op-footer-inner {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px 40px;
    align-items: start;
    width: min(1420px, calc(100% - 36px));
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.55;
}

.op-footer-inner > div {
    min-width: 0;
}

.op-footer b {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .72);
}

.op-social {
    display: flex;
    gap: 10px;
}

.op-social span {
    display: grid;
    place-items: center;
    width: 12px;
    height: 12px;
    border-radius: 2px;
    background: #fff;
    color: var(--footer);
    font-size: 13px;
    font-weight: 800;
}

@media (max-width: 991px) {
    :root {
        --op-header-height: 64px;
    }

    .op-nav {
        flex-wrap: wrap;
        align-items: center;
        gap: 12px;
        padding: 12px 0;
    }

    .op-nav-toggle {
        display: inline-grid;
    }

    .op-nav-panel {
        display: none;
        flex: 1 0 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        order: 3;
        padding-top: 4px;
        border-top: 1px solid var(--line);
    }

    .op-nav.is-menu-open .op-nav-panel {
        display: flex;
    }

    .op-menu {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: 100%;
        padding: 4px 0 8px;
    }

    .op-menu a {
        padding: 14px 2px;
        border-bottom: 1px solid rgba(7, 56, 114, .08);
        font-size: 15px;
        text-transform: none;
        letter-spacing: 0;
    }

    .op-menu a:last-child {
        border-bottom: 0;
    }

    .op-nav-actions {
        margin-left: 0;
        width: 100%;
        padding: 12px 0 4px;
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 10px;
        border-top: 1px solid var(--line);
    }

    .op-nav-button {
        min-height: 42px;
        padding: 0 16px;
        font-size: 13px;
    }

    .op-home-topbar .op-nav {
        padding: 12px 0;
    }

    .op-project-topbar .op-nav {
        padding: 12px 0;
    }

    .op-footer {
        padding: 28px 0 calc(28px + env(safe-area-inset-bottom, 0px));
    }

    .op-footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 20px 24px;
        width: calc(100% - 28px);
    }

    .op-footer-inner > div {
        padding: 14px 16px;
        border-radius: 14px;
        background: rgba(255, 255, 255, .06);
    }
}

@media (max-width: 980px) {
    .op-shell {
        width: calc(100% - 28px);
    }

    .op-hero-main {
        grid-template-columns: 1fr;
        padding-top: 46px;
        padding-bottom: 96px;
    }

    .op-search {
        justify-self: start;
        margin-top: 0;
    }

    .op-slider {
        gap: 18px;
    }

    .op-card {
        flex-basis: calc((100% - 18px) / 2);
        min-width: 240px;
    }

    .op-arrow.left {
        left: -8px;
    }

    .op-arrow.right {
        right: -8px;
    }

    .op-intro-grid {
        grid-template-columns: 1fr;
    }

    .op-panorama-img {
        min-height: 430px;
        width: calc(100% - 32px);
    }
}

@media (max-width: 640px) {
    .op-hero {
        min-height: auto;
    }

    .op-project-360__frame {
        min-height: 360px;
        border-radius: 14px;
    }

    .op-project-360__actions {
        align-items: stretch;
    }

    .op-project-360__actions .op-primary {
        width: 100%;
        text-align: center;
    }

    .op-hero-main {
        padding-bottom: 72px;
    }

    .op-kicker {
        font-size: 30px;
    }

    .op-form {
        grid-template-columns: 1fr;
        padding: 18px 16px 14px;
    }

    .op-field,
    .op-submit {
        grid-column: auto;
    }

    .op-keyword {
        grid-column: auto;
        width: 100%;
    }

    .op-hot-tags {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .op-lead-grid {
        grid-template-columns: 1fr;
    }

    .op-note {
        transform: none;
        color: #7e8892;
    }

    .op-slider {
        gap: 16px;
        padding-inline: 2px;
    }

    .op-card {
        flex-basis: 82%;
        min-width: 250px;
    }

    .op-arrow {
        top: 162px;
        width: 38px;
        height: 38px;
    }

    .op-intro h2 {
        font-size: 27px;
    }

    .op-panorama-img {
        min-height: 300px;
    }

    .op-partner-sub {
        font-size: 17px;
    }

    .op-partner-grid {
        grid-template-columns: repeat(2, minmax(140px, 1fr));
        max-width: 420px;
        gap: 12px;
    }

    .op-partner:nth-child(6),
    .op-partner:nth-child(7) {
        grid-column: auto;
    }

    .op-partner {
        min-height: 88px;
        padding: 12px;
    }

    .op-partner img {
        max-height: 52px;
    }

    .op-footer-inner {
        grid-template-columns: 1fr;
        gap: 12px;
        width: calc(100% - 24px);
    }

    .op-footer-inner > div {
        padding: 16px 18px;
    }

    .op-footer b {
        margin-bottom: 6px;
    }

    .op-floating-actions {
        right: 16px;
        bottom: 16px;
    }
}

/* ── Project detail page ── */

.op-page--project {
    background: var(--soft);
}

.op-page--project {
    background: #fff;
}

.op-project-title-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    margin-top: 12px;
    color: var(--muted);
    font-size: 14px;
}

.op-project-title-meta strong {
    color: var(--ink);
}

.op-project-tab.is-active {
    color: var(--brand-orange);
}

.op-project-tab.is-active::after {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 0;
    height: 3px;
    content: "";
    border-radius: 20px;
    background: var(--brand-orange);
}

.op-project-media-content {
    margin-bottom: 20px;
    color: #576573;
    font-size: 16px;
    line-height: 1.7;
}

.op-project-media-image {
    display: block;
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    border-radius: 10px;
}

.op-project-overview-figure {
    margin: 0;
}

.op-project-overview-image {
    display: block;
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    border-radius: 10px;
}

.op-project-overview-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, .9fr);
    gap: 28px;
    align-items: start;
}

.op-project-overview-layout.is-single {
    grid-template-columns: 1fr;
}

.op-project-overview-copy {
    min-width: 0;
}

.op-project-overview-copy .op-project-section-sub {
    margin-top: 0;
}

.op-project-media-video {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: 10px;
    overflow: hidden;
}

.op-project-media-video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.op-project-360 {
    display: grid;
    gap: 18px;
}

.op-project-360__copy {
    max-width: 760px;
}

.op-project-360__frame {
    position: relative;
    width: 100%;
    min-height: 620px;
    border-radius: 18px;
    overflow: hidden;
    background: #0f172a;
    box-shadow: 0 18px 42px rgba(18, 38, 63, .18);
}

.op-project-360__frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    background: #0f172a;
}

.op-project-360__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px 18px;
}

.op-project-360__hint {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

a.op-project-product-card,
.op-project-product-card {
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 24px rgba(18, 38, 63, .08);
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease;
}

a.op-project-product-card:hover,
a.op-project-product-card:focus-visible {
    color: inherit;
    text-decoration: none;
}

.op-project-product-photo {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.op-project-product-card .op-project-product-inner {
    padding: 20px;
}

.op-project-product-card .op-project-product-inner h4 {
    text-transform: uppercase;
}

.op-project-product-features {
    color: #576573;
    font-size: 14px;
    line-height: 1.6;
}

.op-project-documents {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 14px;
}

.op-project-document-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
    transition: border-color .2s, box-shadow .2s;
}

.op-project-document-card:hover {
    border-color: var(--project-primary, var(--brand-orange));
    box-shadow: 0 8px 20px rgba(18, 38, 63, .08);
}

.op-project-document-seq {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
    border-radius: 8px;
    background: var(--brand-orange);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
}

.op-project-document-body {
    flex: 1;
    min-width: 0;
}

.op-project-document-name {
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--project-secondary, var(--ink));
}

.op-project-document-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
}

.op-project-document-action {
    color: var(--project-primary, var(--brand-orange));
    font-size: 14px;
    font-weight: 600;
}

.op-project-document-action.is-secondary {
    color: var(--muted);
}

.op-project-document-action:hover {
    color: var(--brand-orange);
}

.op-project-timeline {
    display: grid;
    gap: 16px;
}

.op-project-timeline-item {
    padding: 20px 24px;
    border-left: 4px solid var(--project-primary, var(--brand-orange));
    border-radius: 0 10px 10px 0;
    background: var(--soft);
}

.op-project-timeline-item h4 {
    margin: 0 0 8px;
    color: var(--project-secondary, var(--ink));
    font-size: 18px;
}

.op-project-timeline-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px;
    margin-top: 12px;
}

.op-project-timeline-gallery img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.op-project-amenity-photo {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.op-project-promo {
    background: linear-gradient(135deg, var(--footer), #0a5a94);
}

.op-project-promo .op-read {
    background: var(--brand-orange);
    color: #fff;
}

.op-project-promo .op-read:hover {
    background: #e07528;
    color: #fff;
}

.op-project-topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 100;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 4px 18px rgba(18, 38, 63, .08);
}

.op-home-topbar {
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(8px);
}

.op-page:not(.op-page--home) > main.op-shell {
    padding-top: calc(var(--op-header-height) + 8px);
}

.op-project-topbar .op-nav {
    padding: 14px 0;
    color: var(--ink);
}

.op-project-topbar .op-logo img {
    filter: none;
}

.op-project-topbar .op-menu a {
    color: var(--ink);
    opacity: 1;
}

.op-project-topbar .op-menu a:hover,
.op-project-topbar .op-menu a.is-active {
    color: var(--brand-orange);
}

.op-project-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 0 8px;
    color: var(--muted);
    font-size: 15px;
}

.op-project-breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.op-project-breadcrumb li + li::before {
    content: "/";
    margin-right: 8px;
    color: #b8c0c7;
}

.op-project-breadcrumb a:hover {
    color: var(--brand-blue);
}

.op-project-share {
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #fff;
    color: var(--ink);
    font-size: 14px;
    font-weight: 700;
    padding: 8px 16px;
    cursor: pointer;
}

.op-project-share:hover {
    border-color: var(--brand-orange);
    color: var(--brand-orange);
}

.op-project-title-card {
    margin-bottom: 24px;
    padding: 28px 32px;
    border-radius: 12px;
    background: #fff;
    box-shadow: var(--shadow);
}

.op-project-title-card h1 {
    margin: 0 0 10px;
    color: var(--ink);
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .02em;
}

.op-project-title-card p {
    margin: 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.55;
    max-width: 820px;
}

.op-project-tabs-wrap {
    position: sticky;
    top: var(--op-header-height);
    z-index: 15;
    margin-bottom: 28px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(18, 38, 63, .1);
}

.op-project-tabs {
    display: flex;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
    border-bottom: 1px solid var(--line);
}

.op-project-tabs::-webkit-scrollbar {
    display: none;
}

.op-project-tab {
    flex: 0 0 auto;
    position: relative;
    border: 0;
    background: transparent;
    color: var(--muted);
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
    padding: 16px 20px;
    cursor: pointer;
    transition: color .18s ease;
}

.op-project-tab:hover {
    color: var(--brand-orange);
}

.op-project-hero-wrap {
    position: relative;
    margin-bottom: 32px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.op-project-hero {
    display: flex;
    overflow: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.op-project-hero::-webkit-scrollbar {
    display: none;
}

.op-project-hero-slide {
    flex: 0 0 100%;
    min-height: 520px;
    scroll-snap-align: start;
    background: center / cover no-repeat #dfe6ee;
}

.op-project-hero-btn {
    position: absolute;
    top: 50%;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 8px 20px rgba(10, 55, 93, .22);
    color: var(--brand-blue);
    font-size: 22px;
    line-height: 1;
    transform: translateY(-50%);
    cursor: pointer;
}

.op-project-hero-btn:hover {
    background: #fff;
}

.op-project-hero-btn.prev {
    left: 16px;
}

.op-project-hero-btn.next {
    right: 16px;
}

.op-project-hero-dots {
    position: absolute;
    left: 50%;
    bottom: 16px;
    z-index: 2;
    display: flex;
    gap: 8px;
    transform: translateX(-50%);
}

.op-project-hero-dot {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .55);
    cursor: pointer;
}

.op-project-hero-dot.is-active {
    background: var(--brand-orange);
    transform: scale(1.15);
}

.op-project-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-bottom: 36px;
}

.op-project-stat {
    padding: 24px 22px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(18, 38, 63, .1);
    text-align: center;
}

.op-project-stat-label {
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
}

.op-project-stat-value {
    color: var(--brand-orange);
    font-size: 32px;
    font-weight: 800;
    line-height: 1.1;
}

.op-project-panels {
    padding-bottom: 48px;
}

.op-project-panel {
    display: block;
    transform-origin: top center;
}

.op-project-panel[hidden] {
    display: none !important;
}

.op-project-panel.is-entering {
    animation: op-panel-enter var(--motion-base) var(--ease-standard) both;
}

.op-project-panel.is-leaving {
    animation: op-panel-leave 200ms var(--ease-exit) both;
}

.op-project-section {
    margin-bottom: 36px;
    padding: 32px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(18, 38, 63, .08);
}

.op-project-section--soft {
    background: var(--soft);
    box-shadow: none;
}

.op-project-section h2 {
    margin: 0 0 8px;
    color: var(--ink);
    font-size: 28px;
    font-weight: 800;
    text-transform: uppercase;
}

.op-project-section-sub {
    margin: 0 0 24px;
    color: var(--muted);
    font-size: 16px;
}

.op-project-overview-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 28px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.op-project-overview-list li {
    position: relative;
    padding-left: 18px;
    color: #576573;
    font-size: 16px;
    line-height: 1.6;
}

.op-project-overview-list li::before {
    position: absolute;
    left: 0;
    top: .55em;
    width: 7px;
    height: 7px;
    content: "";
    border-radius: 50%;
    background: var(--brand-orange);
}

.op-project-subdivision-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.op-project-subdivision-tabs button {
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    color: #5b6570;
    font-size: 14px;
    font-weight: 800;
    padding: 7px 14px;
    cursor: pointer;
    text-transform: uppercase;
}

.op-project-subdivision-tabs button:hover {
    border-color: var(--brand-orange);
    color: var(--brand-orange);
}

.op-project-subdivision-tabs button.is-active {
    border-color: var(--brand-orange);
    background: var(--brand-orange);
    color: #fff;
}

.op-project-masterplan {
    border-radius: 10px;
    overflow: hidden;
    background: #f8fafb;
    box-shadow: inset 0 0 0 1px rgba(18, 38, 63, .08);
}

.op-project-masterplan img {
    display: block;
    width: 100%;
    height: auto;
}

.op-project-subdivisions .op-project-subdivision-card {
    padding: 0;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

a.op-project-subdivision-card:hover,
a.op-project-subdivision-card:focus-visible {
    color: inherit;
    text-decoration: none;
}

.op-project-subdivision-photo {
    display: block;
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.op-project-subdivisions .op-project-product-inner {
    padding: 16px 18px 20px;
    color: var(--ink);
}

.op-project-subdivisions .op-project-product-inner h4 {
    color: var(--brand-blue);
    text-transform: uppercase;
}

.op-subdivision-detail {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding-bottom: 28px;
}

.op-subdivision-detail-back {
    align-self: flex-start;
    border: 0;
    background: transparent;
    color: var(--brand-blue);
    font-size: 14px;
    font-weight: 700;
    padding: 0;
    cursor: pointer;
}

.op-subdivision-detail-back:hover {
    text-decoration: underline;
}

.op-subdivision-detail-heading {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(18, 38, 63, .08);
    padding: 22px 24px;
}

.op-subdivision-detail-heading h2 {
    margin: 0 0 8px;
    font-size: 28px;
    font-weight: 800;
    color: #243447;
    text-transform: uppercase;
}

.op-subdivision-detail-heading p {
    margin: 0;
    color: #6b7785;
    font-size: 15px;
    line-height: 1.5;
}

.op-subdivision-detail-list-wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.op-subdivision-detail-list-label {
    font-size: 14px;
    font-weight: 700;
    color: #576573;
}

.op-subdivision-detail-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.op-subdivision-chip {
    border: 1px solid rgba(245, 134, 52, .35);
    background: #fff;
    color: var(--brand-orange);
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    cursor: pointer;
    text-transform: uppercase;
    transition: background .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease;
}

.op-subdivision-chip:hover {
    border-color: var(--brand-orange);
    background: rgba(245, 134, 52, .08);
    color: var(--brand-orange);
}

.op-subdivision-chip.is-active,
.op-subdivision-chip[aria-current="true"] {
    background: var(--brand-orange);
    border-color: var(--brand-orange);
    color: #fff;
    box-shadow: 0 6px 14px rgba(245, 134, 52, .22);
}

.op-subdivision-detail-tabs {
    display: flex;
    gap: 18px;
    border-bottom: 1px solid #e6ebf0;
}

.op-subdivision-detail-tab {
    border: 0;
    background: transparent;
    color: #7a8694;
    font-size: 15px;
    font-weight: 700;
    padding: 10px 2px 12px;
    cursor: pointer;
    position: relative;
}

.op-subdivision-detail-tab.is-active {
    color: #f08a24;
}

.op-subdivision-detail-tab.is-active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 2px;
    background: #f08a24;
}

.op-subdivision-overview-title {
    margin: 0 0 14px;
    font-size: 18px;
    font-weight: 800;
    color: #243447;
    text-transform: uppercase;
    letter-spacing: .02em;
}

.op-subdivision-stats {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 14px 24px;
    margin-bottom: 22px;
}

.op-subdivision-stat-label {
    color: #8a949e;
    font-size: 13px;
    margin-bottom: 4px;
}

.op-subdivision-stat-value {
    color: #243447;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
}

.op-subdivision-stats-empty,
.op-subdivision-overview-body {
    color: #576573;
    font-size: 15px;
    line-height: 1.7;
}

.op-subdivision-overview-body img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 12px 0;
}

@media (max-width: 640px) {
    .op-subdivision-detail-heading h2 {
        font-size: 22px;
    }

    .op-subdivision-detail-tabs {
        gap: 14px;
        overflow-x: auto;
    }
}

.op-project-products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 18px;
}

.op-project-product {
    padding: 22px 20px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid var(--line);
    transition: transform .18s ease, box-shadow .18s ease;
}

.op-project-product:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(18, 38, 63, .12);
}

.op-project-product h4 {
    margin: 0 0 10px;
    color: var(--brand-blue);
    font-size: 18px;
    font-weight: 800;
}

.op-project-product p {
    margin: 0 0 6px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.45;
}

.op-project-promo {
    position: relative;
    min-height: 320px;
    margin-bottom: 36px;
    border-radius: 12px;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(7, 56, 114, .82) 0%, rgba(7, 56, 114, .45) 55%, rgba(245, 134, 52, .35) 100%),
        url("/img/customer-web/1.jpg") center / cover no-repeat;
    box-shadow: var(--shadow);
}

.op-project-promo-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 320px;
    padding: 48px;
    color: #fff;
}

.op-project-promo h2 {
    margin: 0 0 14px;
    color: #fff;
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 800;
    text-transform: uppercase;
    max-width: 640px;
}

.op-project-promo p {
    margin: 0;
    max-width: 560px;
    font-size: 17px;
    line-height: 1.65;
    opacity: .95;
}

.op-project-amenities {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.op-project-amenity {
    padding: 20px 16px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid var(--line);
    text-align: center;
    transition: transform .18s ease, box-shadow .18s ease;
}

.op-project-amenity:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(18, 38, 63, .08);
}

.op-project-amenity-icon {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    border-radius: 50%;
    background: rgba(10, 119, 184, .12);
    color: var(--brand-blue);
    font-size: 22px;
}

.op-project-amenity h4 {
    margin: 0;
    color: var(--ink);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
}

.op-project-amenity-photo,
.op-project-overview-image,
.op-project-overview-html img {
    cursor: zoom-in;
}

.op-project-location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: start;
}

.op-project-location-text {
    color: #576573;
    font-size: 16px;
    line-height: 1.65;
}

.op-project-distances {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.op-project-distances li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 8px;
    background: var(--soft);
    color: var(--ink);
    font-size: 15px;
    font-weight: 600;
}

.op-project-distances li span:first-child {
    min-width: 52px;
    color: var(--brand-orange);
    font-weight: 800;
}

.op-project-map {
    min-height: 280px;
    border-radius: 10px;
    background:
        linear-gradient(135deg, rgba(10, 119, 184, .08), rgba(245, 134, 52, .08)),
        url("/img/customer-web/3.png") center / cover no-repeat;
}

.op-page--project main.op-shell {
    padding-bottom: 48px;
}

.op-project-units .op-arrow {
    top: 50%;
    transform: translateY(-50%);
}

.op-project-units .op-arrow:hover {
    transform: translateY(calc(-50% - 1px));
}

.op-project-units .op-arrow:disabled {
    transform: translateY(-50%);
}

.op-project-unit-card {
    flex: 0 0 calc((100% - 54px) / 3);
    min-width: 260px;
}

.op-project-unit-photo {
    min-height: 180px;
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(12, 43, 63, .10), rgba(255, 168, 82, .10)),
        url("/img/customer-web/2.jpg") center / cover no-repeat;
}

.op-project-contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.op-project-contact-card {
    padding: 24px;
    border-radius: 12px;
    background: var(--soft);
    border: 1px solid var(--line);
}

.op-project-contact-card h4 {
    margin: 0 0 8px;
    color: var(--brand-blue);
    font-size: 20px;
    font-weight: 800;
}

.op-project-contact-card p {
    margin: 0 0 16px;
    color: var(--muted);
    font-size: 15px;
}

.op-project-contact-phone {
    display: block;
    margin-bottom: 12px;
    color: var(--brand-orange);
    font-size: 22px;
    font-weight: 800;
}

.op-project-contact-card .op-primary {
    display: inline-block;
}

.op-project-empty {
    padding: 32px;
    border: 1px dashed var(--line);
    border-radius: 8px;
    color: var(--muted);
    text-align: center;
}

@media (max-width: 980px) {
    .op-project-overview-layout {
        grid-template-columns: 1fr;
    }

    .op-project-360__frame {
        min-height: 520px;
    }

    .op-project-tabs-wrap {
        top: var(--op-header-height);
    }

    .op-floating-actions__label {
        font-size: 13px;
        padding: 8px 12px;
    }

    .op-floating-actions__icon {
        width: 52px;
        height: 52px;
        font-size: 22px;
    }

    .op-project-stats {
        grid-template-columns: 1fr;
    }

    .op-project-overview-list,
    .op-project-location-grid,
    .op-project-contact-grid {
        grid-template-columns: 1fr;
    }

    .op-project-amenities {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .op-project-unit-card {
        flex-basis: calc((100% - 18px) / 2);
    }

    .op-project-hero-slide {
        min-height: 360px;
    }

    .op-project-promo-inner {
        padding: 32px 24px;
    }
}

@media (max-width: 640px) {
    .op-project-title-card {
        padding: 22px 18px;
    }

    .op-project-section {
        padding: 22px 18px;
    }

    .op-project-tab {
        padding: 14px 16px;
        font-size: 14px;
    }

    .op-project-amenities {
        grid-template-columns: 1fr;
    }

    .op-project-unit-card {
        flex-basis: 85%;
    }

    .op-floating-actions__btn--top {
        width: 42px;
        height: 42px;
        font-size: 20px;
    }
}

/* ── Inventory (Bảng hàng) ── */

.op-inventory {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 28px rgba(18, 38, 63, .08);
    padding: 24px 28px 28px;
}

.op-inventory-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
    position: relative;
    z-index: 30;
}

.op-inventory-title {
    margin: 0;
    font-size: 28px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--ink);
}

.op-inventory-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.op-inventory-sort {
    min-width: 180px;
    height: 40px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    color: var(--ink);
    font-size: 14px;
    padding: 0 12px;
}

.op-inventory-filter-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 40px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    color: var(--ink);
    font-size: 14px;
    font-weight: 700;
    padding: 0 16px;
    cursor: pointer;
}

.op-inventory-filter-btn:hover {
    border-color: var(--brand-blue);
    color: var(--brand-blue);
}

.op-inventory-filter-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #e64031;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    line-height: 18px;
    text-align: center;
}

.op-inventory-applied {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    padding: 12px 14px;
    border-radius: 8px;
    background: var(--soft);
    position: relative;
    z-index: 30;
}

.op-inventory-applied-label {
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
}

.op-inventory-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    flex: 1;
}

.op-inventory-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 0;
    border-radius: 16px;
    background: #fff;
    color: var(--ink);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 12px;
    cursor: pointer;
    box-shadow: 0 1px 4px rgba(18, 38, 63, .08);
}

.op-inventory-chip span:last-child {
    color: var(--muted);
    font-size: 16px;
}

.op-inventory-clear-all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 0;
    border-radius: 16px;
    background: #fde8ea;
    color: #c0392b;
    font-size: 13px;
    font-weight: 700;
    padding: 7px 14px;
    cursor: pointer;
}

.op-inventory-filter-panel {
    margin-bottom: 20px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8);
    position: relative;
    z-index: 40;
    isolation: isolate;
}

.op-inventory-filter-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px 14px;
}

.op-inventory-field label {
    display: block;
    margin-bottom: 6px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.op-inventory-field input[type="search"],
.op-inventory-field input[type="number"],
.op-inventory-select {
    width: 100%;
    height: 40px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    color: var(--ink);
    font-size: 14px;
    padding: 0 12px;
}

.op-inventory-select {
    text-align: left;
    cursor: pointer;
}

.op-inventory-select.has-value {
    border-color: var(--brand-blue);
    color: var(--brand-blue);
}

.op-inventory-field {
    position: relative;
}

.op-inventory-field--filter.dropdown.show {
    z-index: 50;
}

.op-inventory-field--filter .dropdown-menu {
    width: min(320px, calc(100vw - 40px));
    max-height: 320px;
    overflow: auto;
    border: 1px solid var(--line);
    border-radius: 10px;
    box-shadow: var(--shadow);
    z-index: 1050;
}

.op-inventory-dropdown-toolbar {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
}

.op-inventory-dropdown-apply,
.op-inventory-numeric-apply {
    min-width: 80px;
    border: 0;
    border-radius: 8px;
    background: var(--footer);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.op-inventory-numeric-title {
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.op-inventory-range-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin: 12px 0;
}

.op-inventory-numeric-actions {
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

.op-inventory-numeric-reset {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    color: var(--ink);
    font-size: 13px;
    padding: 6px 12px;
    cursor: pointer;
}

.op-inventory-date {
    width: 100%;
    min-height: 42px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 0 12px;
    font: inherit;
}

.filter-options-scroll {
    max-height: 220px;
    overflow: auto;
}

body.op-house-modal-open {
    overflow: hidden;
}

.op-inventory-range {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.op-inventory-dropdown {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 4px);
    z-index: 12;
    max-height: 240px;
    overflow: auto;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(18, 38, 63, .16);
    padding: 10px;
}

.op-inventory-dropdown-search {
    width: 100%;
    margin-bottom: 8px;
    height: 34px;
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 0 10px;
    font-size: 13px;
}

.op-inventory-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 4px;
    font-size: 14px;
    cursor: pointer;
}

.op-inventory-dropdown-empty {
    color: var(--muted);
    font-size: 13px;
    padding: 8px 4px;
}

.op-inventory-filter-submit {
    display: flex;
    justify-content: center;
    margin-top: 18px;
}

.op-inventory-apply {
    min-width: 220px;
    height: 44px;
    border: 0;
    border-radius: 8px;
    background: var(--footer);
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
}

.op-inventory-apply:hover {
    background: var(--brand-blue);
}

.op-inventory-results {
    position: relative;
    z-index: 1;
}

.op-product-units-heading {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    min-width: 0;
}

.op-product-units-back {
    border: 0;
    background: transparent;
    color: var(--brand-blue);
    font-size: 14px;
    font-weight: 700;
    padding: 0;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.op-product-units-back:hover {
    text-decoration: underline;
}

.op-product-units-type:not(:empty)::before {
    content: "· ";
}

.op-unit-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}

.op-unit-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 28px rgba(18, 38, 63, .1);
    overflow: hidden;
    padding: 14px;
}

.op-unit-card[data-house-detail-trigger],
.op-unit-card[data-auth-gate-trigger] {
    cursor: pointer;
}

.op-unit-card[data-house-detail-trigger]:hover,
.op-unit-card[data-auth-gate-trigger]:hover {
    box-shadow: 0 14px 34px rgba(18, 38, 63, .14);
}

.op-unit-card__media {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, #8fa4b8 0%, #d9b39a 100%);
}

.op-unit-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.op-unit-card__body {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 14px 4px 4px;
    flex: 1;
}

.op-unit-card__code {
    margin: 0;
    font-size: 22px;
    font-weight: 800;
    color: #2f3a45;
    line-height: 1.2;
}

.op-unit-card__attrs {
    margin: 0;
    color: #8a949e;
    font-size: 13px;
    line-height: 1.4;
}

.op-unit-card__price {
    margin: 4px 0 0;
    color: #f08a24;
    font-size: 18px;
    font-weight: 800;
}

.op-unit-card__footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    padding-top: 14px;
}

.op-unit-card__meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    color: #8a949e;
    font-size: 13px;
    line-height: 1.35;
    min-width: 0;
}

.op-unit-card__cta {
    flex-shrink: 0;
    border: 1.5px solid #f08a24;
    background: transparent;
    color: #f08a24;
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.op-unit-card[data-house-detail-trigger]:hover .op-unit-card__cta:not(.is-disabled),
.op-unit-card[data-auth-gate-trigger]:hover .op-unit-card__cta:not(.is-disabled) {
    background: rgba(240, 138, 36, .08);
}

.op-unit-card__cta.is-disabled {
    opacity: .55;
    cursor: default;
}

@media (max-width: 640px) {
    .op-unit-cards {
        grid-template-columns: 1fr;
    }
}

.op-inventory-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: 10px;
}

.op-inventory-table {
    width: 100%;
    min-width: 920px;
    border-collapse: collapse;
    font-size: 14px;
}

.op-inventory-table thead th {
    position: sticky;
    top: 0;
    z-index: 2;
    background: #f8fafb;
    color: var(--ink);
    font-size: 13px;
    font-weight: 800;
    text-align: left;
    padding: 14px 12px;
    border-bottom: 1px solid var(--line);
    white-space: nowrap;
}

.op-inventory-table tbody td {
    padding: 14px 12px;
    border-bottom: 1px solid #eef2f5;
    vertical-align: middle;
}

.op-inventory-table tbody tr:nth-child(even) {
    background: #fafbfc;
}

.op-inventory-table tbody tr:hover {
    background: #f3f8fc;
}

.op-inventory-code {
    font-weight: 800;
    text-transform: uppercase;
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
    font: inherit;
}

.op-inventory-code:hover {
    text-decoration: underline;
}

.op-inventory-code.is-available {
    color: #e64031;
}

.op-inventory-code.is-sold {
    color: #9aa3ad;
}

.op-inventory-code.is-pending {
    color: #d4a017;
}

.op-inventory-status {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    border-radius: 14px;
    background: #eef2f5;
    color: #5d6873;
    font-size: 12px;
    font-weight: 800;
    padding: 0 12px;
    text-transform: uppercase;
}

.op-inventory-status.is-stock {
    background: #22c55e;
    color: #fff;
}

.op-inventory-check {
    text-align: center;
}

.op-inventory-check input {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.op-inventory-cart {
    text-align: center;
    width: 56px;
}

.op-inventory-cart-btn {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 1px solid var(--brand-orange);
    border-radius: 50%;
    background: transparent;
    color: var(--brand-orange);
    font-size: 16px;
    cursor: pointer;
    transition: background .2s ease, color .2s ease, opacity .2s ease;
}

.op-inventory-cart-btn:hover,
.op-inventory-cart-btn.is-in-cart {
    background: var(--brand-orange);
    color: #fff;
}

.op-inventory-empty,
.op-inventory-loading {
    padding: 40px 20px;
    text-align: center;
    color: var(--muted);
    font-size: 16px;
}

.op-inventory-pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 18px;
    padding: 12px 0 0;
    border-top: 1px solid rgba(35, 64, 90, .08);
    border-radius: 0;
    background: #fff;
    box-shadow: none;
}

.op-inventory-selection-summary {
    flex: 0 0 auto;
    color: var(--muted);
    font-size: 13px;
    white-space: nowrap;
}

.op-inventory-selection-summary strong {
    color: var(--ink);
    font-size: 15px;
}

.op-inventory-page-summary {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
    color: var(--muted);
    font-size: 13px;
    white-space: nowrap;
}

.op-inventory-page-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 auto;
    min-width: 0;
    gap: 6px;
}

.op-inventory-page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 6px;
    min-width: 0;
}

.op-inventory-page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 30px;
    border: 1px solid transparent;
    border-radius: 999px;
    background: #fff;
    color: var(--ink);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    padding: 0 9px;
    transition: background-color var(--motion-fast) var(--ease-standard),
        color var(--motion-fast) var(--ease-standard),
        border-color var(--motion-fast) var(--ease-standard),
        box-shadow var(--motion-fast) var(--ease-standard),
        transform var(--motion-fast) var(--ease-standard);
}

.op-inventory-page-btn:hover:not(:disabled) {
    border-color: rgba(35, 64, 90, .12);
    background: #f8fafc;
}

.op-inventory-page-btn.is-active {
    background: var(--brand-orange);
    border-color: var(--brand-orange);
    color: #fff;
    box-shadow: 0 6px 16px rgba(245, 134, 52, .18);
}

.op-inventory-page-btn:disabled {
    opacity: .38;
    cursor: default;
}

.op-inventory-page-ellipsis {
    color: var(--muted);
    padding: 0 4px;
}

.op-inventory-page-size select {
    min-width: 58px;
    height: 32px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    color: var(--ink);
    font-size: 13px;
    font-weight: 600;
    padding: 0 26px 0 10px;
}

.op-inventory-page-total {
    color: var(--muted);
    font-size: 13px;
}

.op-inventory-compare {
    position: fixed;
    left: 50%;
    bottom: 16px;
    z-index: 60;
    width: min(1240px, calc(100vw - 32px));
    margin-top: 0;
    padding: 18px 20px;
    border: 1px solid rgba(245, 134, 52, .22);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 250, 245, .96), rgba(255, 255, 255, .98));
    box-shadow: 0 16px 34px rgba(245, 134, 52, .10);
    transform: translateX(-50%);
    backdrop-filter: blur(14px);
}

.op-inventory-compare__header,
.op-inventory-compare__body,
.op-inventory-compare__title,
.op-inventory-compare__actions {
    display: flex;
    align-items: center;
}

.op-inventory-compare__header {
    justify-content: space-between;
    gap: 12px;
}

.op-inventory-compare__title {
    gap: 10px;
    color: var(--ink);
    font-size: 17px;
    font-weight: 800;
}

.op-inventory-compare__title input {
    width: 18px;
    height: 18px;
    accent-color: var(--brand-orange);
}

.op-inventory-compare__info {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border: 1px solid rgba(35, 64, 90, .12);
    border-radius: 50%;
    background: #fff;
    color: var(--brand-orange);
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
}

.op-inventory-compare__body {
    gap: 16px;
    margin-top: 14px;
    align-items: center;
}

.op-inventory-compare__list {
    display: flex;
    flex: 1 1 auto;
    flex-wrap: nowrap;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
}

.op-inventory-compare__item {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 220px;
    min-width: 220px;
    padding: 12px 14px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid rgba(35, 64, 90, .08);
    box-shadow: 0 10px 22px rgba(18, 38, 63, .06);
}

.op-inventory-compare__item-order {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(245, 134, 52, .12);
    color: var(--brand-orange);
    font-size: 14px;
    font-weight: 800;
}

.op-inventory-compare__item-main {
    flex: 1 1 auto;
    min-width: 0;
}

.op-inventory-compare__item-code {
    color: var(--ink);
    font-size: 15px;
    font-weight: 800;
}

.op-inventory-compare__item-price {
    margin-top: 2px;
    color: var(--muted);
    font-size: 13px;
}

.op-inventory-compare__item-remove {
    border: 0;
    background: transparent;
    color: #98a2ad;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}

.op-inventory-compare__actions {
    flex: 0 0 auto;
    gap: 12px;
}

.op-inventory-compare__clear,
.op-inventory-compare__go,
.op-compare-back-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    padding: 0 20px;
    text-decoration: none;
    transition: transform var(--motion-fast) var(--ease-standard),
        box-shadow var(--motion-fast) var(--ease-standard),
        background-color var(--motion-fast) var(--ease-standard),
        color var(--motion-fast) var(--ease-standard),
        border-color var(--motion-fast) var(--ease-standard);
}

.op-inventory-compare__clear {
    border: 1px solid rgba(35, 64, 90, .12);
    background: #fff;
    color: var(--ink);
}

.op-inventory-compare__go,
.op-compare-back-btn {
    border: 0;
    background: linear-gradient(135deg, var(--brand-orange), #ff9f4d);
    color: #fff;
    box-shadow: 0 12px 26px rgba(245, 134, 52, .24);
}

.op-inventory-compare__go.is-disabled,
.op-inventory-compare__go:disabled {
    background: #d6dde5;
    color: #fff;
    box-shadow: none;
    cursor: not-allowed;
}

.op-inventory-compare__clear:hover,
.op-inventory-compare__go:hover,
.op-compare-back-btn:hover {
    transform: translateY(-1px);
}

.op-inventory-compare__note {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 13px;
}

body.op-inventory-compare-open .op-page--project main.op-shell {
    padding-bottom: 240px;
}

.op-page--compare {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.op-page--compare main.op-shell {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    padding-bottom: 120px;
}

.op-page--compare .op-footer {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 50;
    width: 100%;
}

.op-page--compare .op-floating-actions {
    bottom: 120px;
}

.op-compare-hero {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
    padding: 28px 30px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(7, 56, 114, .98), rgba(7, 56, 114, .84) 62%, rgba(245, 134, 52, .82));
    color: #fff;
    box-shadow: 0 20px 48px rgba(7, 56, 114, .20);
}

.op-compare-hero__eyebrow,
.op-compare-card__eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, .76);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.op-compare-hero h1 {
    margin: 0 0 10px;
    color: #fff;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 900;
}

.op-compare-hero p {
    margin: 0;
    max-width: 640px;
    color: rgba(255, 255, 255, .86);
    font-size: 15px;
    line-height: 1.7;
}

.op-compare-hero__actions {
    flex: 0 0 auto;
}

.op-compare-alert,
.op-compare-empty {
    margin-bottom: 24px;
    padding: 18px 20px;
    border-radius: 16px;
    border: 1px solid rgba(245, 134, 52, .2);
    background: rgba(255, 248, 241, .92);
    color: var(--ink);
}

.op-page--compare .op-compare-empty {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 0;
}

.op-compare-empty h2 {
    margin: 0 0 8px;
    font-size: 24px;
    font-weight: 800;
}

.op-compare-empty p {
    margin: 0 0 16px;
    color: var(--muted);
}

.op-compare-selector {
    width: min(760px, 100%);
    margin: 0 auto;
    text-align: left;
}

.op-page--compare .op-compare-selector {
    width: auto;
    text-align: center;
}

.op-compare-selector__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.op-compare-selector__field {
    display: grid;
    gap: 8px;
}

.op-compare-selector__field span {
    color: #5f6f7d;
    font-size: 14px;
    font-weight: 700;
}

.op-compare-selector__field select {
    width: 100%;
    min-height: 46px;
    border: 1px solid #dfe5e9;
    border-radius: 12px;
    background: #fff;
    color: #556371;
    font-size: 15px;
    padding: 10px 14px;
}

.op-compare-selector__list {
    display: grid;
    gap: 10px;
    min-height: 220px;
    max-height: 320px;
    padding: 14px;
    border: 1px solid #dfe5e9;
    border-radius: 12px;
    background: #fff;
    overflow-y: auto;
}

.op-compare-selector__placeholder {
    display: grid;
    place-items: center;
    min-height: 180px;
    color: #7f8c98;
    font-size: 14px;
    text-align: center;
}

.op-compare-selector__option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border: 1px solid #e3eaf0;
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.op-compare-selector__option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.op-compare-selector__option.is-selected {
    border-color: rgba(245, 134, 52, .55);
    background: rgba(255, 247, 239, .96);
    box-shadow: 0 8px 18px rgba(245, 134, 52, .10);
}

.op-compare-selector__checkbox {
    position: relative;
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    border: 2px solid #cdd8e2;
    border-radius: 6px;
    background: #fff;
}

.op-compare-selector__option.is-selected .op-compare-selector__checkbox {
    border-color: var(--brand-orange);
    background: var(--brand-orange);
}

.op-compare-selector__option.is-selected .op-compare-selector__checkbox::after {
    position: absolute;
    left: 5px;
    top: 1px;
    width: 6px;
    height: 11px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    content: "";
    transform: rotate(45deg);
}

.op-compare-selector__code {
    color: var(--ink);
    font-size: 15px;
    font-weight: 700;
}

.op-compare-selector__field select:focus {
    border-color: rgba(245, 134, 52, .78);
    outline: 0;
    box-shadow: 0 0 0 3px rgba(245, 134, 52, .13);
}

.op-compare-selector__note {
    margin: 14px 0 0;
    color: #768594;
    font-size: 14px;
    line-height: 1.6;
}

.op-compare-selector__feedback {
    margin-top: 14px;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
}

.op-compare-selector__actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 20px;
}

.op-page--compare .op-compare-selector__actions {
    justify-content: center;
    margin-top: 24px;
}

.op-compare-selector__submit {
    min-height: 46px;
    border: 0;
    border-radius: 999px;
    background: var(--brand-orange);
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    padding: 0 24px;
    cursor: pointer;
}

.op-compare-selector__steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.op-compare-selector__step {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #8a98a5;
    font-size: 14px;
}

.op-compare-selector__step span {
    display: inline-grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    border: 2px solid #d7e0e8;
    background: #fff;
    font-size: 13px;
    font-weight: 800;
}

.op-compare-selector__step.is-active {
    color: var(--footer);
}

.op-compare-selector__step.is-active span {
    border-color: var(--brand-orange);
    background: var(--brand-orange);
    color: #fff;
}

body.op-compare-modal-open {
    overflow: hidden;
}

.op-compare-toast {
    position: fixed;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    z-index: 1400;
}

.op-compare-project-modal,
.op-compare-unit-modal {
    position: fixed;
    inset: 0;
    z-index: 1300;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
}

.op-compare-project-modal.is-open,
.op-compare-unit-modal.is-open {
    display: flex;
}

.op-compare-project-modal[hidden],
.op-compare-unit-modal[hidden] {
    display: none !important;
}

.op-compare-project-modal__backdrop,
.op-compare-unit-modal__backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(7, 24, 42, .62);
    cursor: pointer;
}

.op-compare-project-modal__panel {
    position: relative;
    z-index: 1;
    width: min(920px, 100%);
    max-height: min(86vh, 760px);
    display: flex;
    flex-direction: column;
    padding: 28px 28px 22px;
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--shadow);
}

.op-compare-project-modal__close,
.op-compare-unit-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 999px;
    background: #fff1f1;
    color: #d64545;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.op-compare-project-modal__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    padding-right: 42px;
    margin-bottom: 18px;
}

.op-compare-project-modal__header h2 {
    margin: 0;
    color: var(--footer);
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.op-compare-project-modal__header p {
    margin: 6px 0 0;
    color: var(--muted);
    font-size: 15px;
}

.op-compare-project-modal__search,
.op-compare-unit-modal__search {
    position: relative;
    flex: 0 0 min(280px, 100%);
}

.op-compare-project-modal__search input,
.op-compare-unit-modal__search input {
    width: 100%;
    min-height: 44px;
    border: 1px solid #dfe5e9;
    border-radius: 999px;
    background: #fff;
    color: #556371;
    font-size: 14px;
    padding: 10px 14px 10px 38px;
}

.op-compare-project-modal__search-icon,
.op-compare-unit-modal__search-icon {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    color: #8a98a5;
    font-size: 14px;
    pointer-events: none;
}

.op-compare-project-modal__body {
    flex: 1 1 auto;
    overflow: auto;
    padding-right: 4px;
}

.op-compare-project-modal__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.op-compare-project-modal__item {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 58px;
    padding: 14px 16px;
    border: 1px solid rgba(7, 56, 114, .12);
    border-radius: 14px;
    background: #fff;
    color: var(--footer);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .03em;
    text-align: left;
    text-transform: uppercase;
    cursor: pointer;
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.op-compare-project-modal__item:hover {
    border-color: rgba(245, 134, 52, .55);
    box-shadow: 0 10px 24px rgba(7, 56, 114, .08);
    transform: translateY(-1px);
}

.op-compare-project-modal__item-icon {
    flex: 0 0 auto;
    font-size: 18px;
}

.op-compare-project-modal__item-name {
    line-height: 1.35;
}

.op-compare-project-modal__empty {
    padding: 28px 12px;
    color: var(--muted);
    text-align: center;
}

.op-compare-project-modal__footer {
    display: flex;
    justify-content: center;
    padding-top: 16px;
}

.op-compare-project-modal__more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 0;
    background: transparent;
    color: var(--footer);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}

.op-compare-project-modal__more-icon {
    display: inline-grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    border: 1px solid #d7e0e8;
    font-size: 14px;
}

.op-compare-unit-modal__panel {
    position: relative;
    z-index: 1;
    width: min(1180px, 100%);
    height: min(92vh, 900px);
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.op-compare-unit-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 22px 56px 16px 24px;
    border-bottom: 1px solid #e8edf2;
}

.op-compare-unit-modal__header h2 {
    margin: 0;
    color: var(--footer);
    font-size: clamp(18px, 2.4vw, 24px);
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.op-compare-unit-modal__body {
    flex: 1 1 auto;
    overflow: auto;
    padding: 0 16px 16px;
}

.op-compare-unit-modal__results .op-inventory-table-wrap {
    margin-top: 8px;
}

.op-compare-unit-modal__tray.op-inventory-compare {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    transform: none;
    z-index: 1;
    width: 100%;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
    border-top: 1px solid #e8edf2;
    backdrop-filter: none;
}

.op-compare-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    margin-bottom: 24px;
}

.op-compare-card {
    overflow: hidden;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(35, 64, 90, .08);
    box-shadow: 0 18px 40px rgba(18, 38, 63, .08);
}

.op-compare-card__media {
    position: relative;
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, rgba(7, 56, 114, .12), rgba(245, 134, 52, .14));
}

.op-compare-card__media img,
.op-compare-card__placeholder {
    width: 100%;
    height: 100%;
}

.op-compare-card__media img {
    object-fit: cover;
    display: block;
}

.op-compare-card__placeholder {
    display: grid;
    place-items: center;
    color: var(--brand-blue);
    font-size: 16px;
    font-weight: 800;
}

.op-compare-card__body {
    padding: 18px;
}

.op-compare-card__body .op-compare-card__eyebrow {
    margin-bottom: 8px;
    color: var(--brand-orange);
}

.op-compare-card__body h2 {
    margin: 0 0 6px;
    color: var(--ink);
    font-size: 24px;
    font-weight: 900;
}

.op-compare-card__body > p {
    margin: 0 0 14px;
    color: var(--muted);
    font-size: 14px;
}

.op-compare-card__body dl {
    display: grid;
    gap: 12px;
    margin: 0;
}

.op-compare-card__body dl div {
    display: grid;
    gap: 3px;
}

.op-compare-card__body dt {
    color: #8b97a3;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.op-compare-card__body dd {
    margin: 0;
    color: var(--ink);
    font-size: 14px;
    font-weight: 700;
}

.op-compare-table-wrap {
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid rgba(35, 64, 90, .08);
    background: #fff;
    box-shadow: 0 20px 46px rgba(18, 38, 63, .08);
}

.op-compare-table-scroll {
    overflow-x: auto;
}

.op-compare-table {
    width: 100%;
    min-width: 860px;
    border-collapse: separate;
    border-spacing: 0;
}

.op-compare-table th,
.op-compare-table td {
    padding: 16px 18px;
    border-bottom: 1px solid #edf1f4;
    vertical-align: top;
}

.op-compare-table th[scope="row"] {
    position: sticky;
    left: 0;
    z-index: 1;
    width: 220px;
    min-width: 220px;
    background: #f9fbfc;
    color: var(--ink);
    font-size: 14px;
    font-weight: 800;
}

.op-compare-table td {
    min-width: 180px;
    color: #52606d;
    font-size: 14px;
    line-height: 1.6;
    background: #fff;
}

.op-compare-table td + td,
.op-compare-table tr:not(.op-compare-table__section) th[scope="row"] + td {
    border-left: 1px solid #e3eaf0;
}

.op-compare-table__section th {
    position: sticky;
    left: 0;
    z-index: 2;
    background: linear-gradient(90deg, rgba(7, 56, 114, .96), rgba(7, 56, 114, .84) 72%, rgba(245, 134, 52, .92));
    color: #fff;
    font-size: 15px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 980px) {
    .op-inventory-filter-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .op-inventory-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .op-inventory-actions {
        justify-content: space-between;
    }

    .op-inventory-pagination {
        flex-wrap: wrap;
        gap: 12px;
    }

    .op-inventory-selection-summary,
    .op-inventory-page-summary,
    .op-inventory-page-controls {
        width: 100%;
    }

    .op-inventory-selection-summary,
    .op-inventory-page-summary {
        text-align: center;
        justify-content: center;
    }

    .op-inventory-compare__body,
    .op-compare-hero {
        flex-direction: column;
        align-items: stretch;
    }

    .op-inventory-compare__actions {
        width: 100%;
        justify-content: flex-end;
    }

    body.op-inventory-compare-open .op-page--project main.op-shell {
        padding-bottom: 284px;
    }
}

@media (max-width: 640px) {
    .op-inventory {
        padding: 18px 14px 22px;
    }

    .op-inventory-filter-grid {
        grid-template-columns: 1fr;
    }

    .op-inventory-title {
        font-size: 22px;
    }

    .op-inventory-compare {
        bottom: 10px;
        width: calc(100vw - 20px);
        padding: 16px 14px;
        border-radius: 16px;
    }

    .op-inventory-compare__item {
        flex-basis: 190px;
        min-width: 190px;
    }

    .op-inventory-compare__actions {
        flex-direction: column;
    }

    .op-inventory-compare__clear,
    .op-inventory-compare__go,
    .op-compare-back-btn {
        width: 100%;
    }

    .op-compare-hero {
        padding: 22px 18px;
    }

    .op-compare-selector__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .op-page--compare .op-compare-selector__actions {
        align-items: center;
    }

    .op-page--compare main.op-shell {
        padding-bottom: 180px;
    }

    .op-page--compare .op-floating-actions {
        bottom: 170px;
    }

    .op-compare-project-modal__header,
    .op-compare-unit-modal__header {
        flex-direction: column;
        align-items: stretch;
    }

    .op-compare-project-modal__search,
    .op-compare-unit-modal__search {
        flex-basis: auto;
        width: 100%;
    }

    .op-compare-project-modal__grid {
        grid-template-columns: 1fr;
    }

    .op-compare-unit-modal__panel {
        height: min(94vh, 900px);
    }

    .op-compare-cards {
        grid-template-columns: 1fr;
    }

    .op-compare-table th,
    .op-compare-table td {
        padding: 14px 12px;
    }

    .op-compare-table th[scope="row"] {
        width: 164px;
        min-width: 164px;
    }

    body.op-inventory-compare-open .op-page--project main.op-shell {
        padding-bottom: 340px;
    }
}

/* House detail modal */
.op-house-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
    overflow: hidden;
    overscroll-behavior: contain;
}

.op-house-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, .55);
}

.op-house-modal__panel {
    position: relative;
    z-index: 1;
    width: min(1120px, 100%);
    max-height: calc(100vh - 48px);
    margin: auto;
    overflow: auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.op-house-modal__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 24px 12px;
    border-bottom: 1px solid var(--line);
}

.op-house-modal__header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
    flex-shrink: 0;
}

.op-house-modal__header-meta {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    text-align: right;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.op-house-modal__source {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.4;
    white-space: nowrap;
}

.op-house-modal__source strong {
    color: var(--footer);
    font-weight: 700;
}

.op-house-modal__compare {
    border: 1px solid var(--brand-orange);
    background: var(--brand-orange);
    color: #fff;
    border-radius: 999px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: background .2s ease, border-color .2s ease, color .2s ease, opacity .2s ease;
}

.op-house-modal__compare:hover {
    border-color: var(--brand-orange);
    background: var(--brand-orange);
    opacity: .9;
}

.op-house-modal__compare.is-selected {
    border-color: var(--brand-orange);
    background: #fff;
    color: var(--brand-orange);
}

.op-house-modal__cart {
    display: inline-grid;
    place-items: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 1px solid var(--brand-orange);
    background: transparent;
    color: var(--brand-orange);
    border-radius: 50%;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    flex-shrink: 0;
    transition: background .2s ease, border-color .2s ease, color .2s ease, opacity .2s ease, transform .2s ease;
}

.op-house-modal__cart:hover {
    border-color: var(--brand-orange);
    background: var(--brand-orange);
    color: #fff;
}

.op-house-modal__cart.is-in-cart {
    border-color: var(--brand-orange);
    background: var(--brand-orange);
    color: #fff;
}

.op-house-modal__cart.is-in-cart:hover {
    opacity: .9;
}

.op-nav-cart-btn {
    position: relative;
}

.op-nav-cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: var(--brand-orange);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    line-height: 18px;
    text-align: center;
}

.op-nav-cart-badge[hidden] {
    display: none !important;
}

.op-cart-modal {
    position: fixed;
    inset: 0;
    z-index: 1350;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
}

.op-cart-modal.is-open {
    display: flex;
}

.op-cart-modal[hidden] {
    display: none !important;
}

.op-cart-modal__backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(7, 24, 42, .62);
    cursor: pointer;
}

.op-cart-modal__panel {
    position: relative;
    z-index: 1;
    width: min(1180px, 100%);
    max-height: min(90vh, 860px);
    display: flex;
    flex-direction: column;
    padding: 24px 24px 18px;
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--shadow);
}

.op-cart-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 999px;
    background: #fff1f1;
    color: #d64545;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.op-cart-modal__header {
    padding-right: 42px;
    margin-bottom: 16px;
}

.op-cart-modal__header h2 {
    margin: 0;
    color: var(--footer);
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 900;
    letter-spacing: .03em;
}

.op-cart-modal__body {
    flex: 1 1 auto;
    overflow: auto;
    min-height: 0;
}

.op-cart-modal__results .op-inventory-table-wrap {
    margin: 0;
}

.op-cart-modal__tray.op-inventory-compare {
    margin-top: 14px;
    border-top: 1px solid var(--line);
    padding-top: 14px;
}

.op-cart-remove-cell {
    text-align: center;
    width: 52px;
}

.op-cart-remove-btn {
    border: 0;
    background: transparent;
    color: #d64545;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    padding: 6px;
    border-radius: 8px;
    transition: background .2s ease, color .2s ease;
}

.op-cart-remove-btn:hover {
    background: #fff1f1;
    color: #b52f2f;
}

body.op-cart-modal-open {
    overflow: hidden;
}

.op-house-modal__title-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px 28px;
}

.op-house-modal__code {
    margin: 0;
    font-size: clamp(28px, 4vw, 38px);
    color: var(--footer);
    letter-spacing: .02em;
}

.op-house-modal__price-block {
    text-align: left;
}

.op-house-modal__price-label {
    color: #e64031;
    font-size: clamp(18px, 2.5vw, 24px);
}

.op-house-modal__price-note {
    color: var(--muted);
    font-size: 13px;
}

.op-house-modal__close {
    border: 0;
    background: transparent;
    font-size: 32px;
    line-height: 1;
    color: var(--muted);
    cursor: pointer;
}

.op-house-modal__body {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    gap: 0;
}

.op-house-modal__media {
    padding: 18px 22px 22px;
    border-right: 1px solid var(--line);
    display: flex;
    flex-direction: column;
}

.op-house-modal__gallery-main {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #eef2f5;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

.op-house-modal__hero {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.op-house-modal__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 1;
    background: #e64031;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    padding: 6px 10px;
    border-radius: 6px;
}

.op-house-modal__thumbs {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    overflow-x: auto;
}

.op-house-modal__thumb {
    flex: 0 0 88px;
    height: 64px;
    border: 2px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    padding: 0;
    cursor: pointer;
    background: #eef2f5;
}

.op-house-modal__thumb.is-active {
    border-color: var(--brand-blue);
}

.op-house-modal__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.op-house-modal__quick {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    padding: 14px;
    background: #f8fafb;
    border-radius: 10px;
    margin: 0;
}

.op-house-modal__quick dt {
    margin: 0 0 4px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.op-house-modal__quick dd {
    margin: 0;
    font-size: 14px;
    font-weight: 800;
    color: var(--ink);
}

.op-house-modal__actions {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.op-house-modal__action {
    flex: 1;
    min-height: 42px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    color: var(--ink);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}

.op-house-modal__info {
    padding: 18px 22px 22px;
}

.op-house-modal__section {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
}

.op-house-modal__section--quick {
    padding-top: 0;
}

.op-house-modal__section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.op-house-modal__section-head h3 {
    margin: 0;
    font-size: 16px;
    color: var(--footer);
}

.op-house-modal__section-tools a {
    color: var(--brand-blue);
    font-size: 13px;
    font-weight: 700;
}

.op-house-modal__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 16px;
    margin: 0;
}

.op-house-modal__grid > div {
    min-width: 0;
}

.op-house-modal__grid dt {
    margin: 0 0 4px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 600;
}

.op-house-modal__grid dd {
    margin: 0;
    font-size: 14px;
    font-weight: 800;
}

.op-house-modal__agent {
    padding-top: 16px;
}

.op-house-modal__agent-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fafbfc;
}

.op-house-modal__agent-avatar img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.op-house-modal__agent-meta {
    flex: 1;
    min-width: 0;
}

.op-house-modal__agent-meta strong {
    display: block;
    font-size: 15px;
}

.op-house-modal__agent-meta span {
    color: var(--muted);
    font-size: 13px;
}

.op-house-modal__agent-call {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #22c55e;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.op-house-modal__footer {
    padding: 16px 22px 22px;
    border-top: 1px solid var(--line);
}

.op-house-modal__footer-actions {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
}

.op-house-modal__action--icon {
    padding: 0 12px;
    font-size: 18px;
}

.op-house-modal__booking {
    width: 100%;
    min-height: 46px;
    border: 0;
    border-radius: 10px;
    background: var(--brand-orange);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.op-house-modal__action--footer {
    min-height: 46px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

.op-house-modal__toast {
    position: fixed;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    z-index: 1300;
    background: rgba(7, 56, 114, .95);
    color: #fff;
    padding: 12px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: var(--shadow);
}

.op-house-comment-history {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: rgba(15, 23, 42, .55);
}

.op-house-modal.is-comment-open .op-house-modal__panel {
    overflow: hidden;
}

.op-house-comment-history[hidden] {
    display: none !important;
}

.op-house-comment-history__panel {
    position: relative;
    width: min(560px, 100%);
    max-height: min(620px, calc(100vh - 48px));
    overflow: auto;
    padding: 24px 22px 22px;
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--shadow);
}

.op-house-comment-history__close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    background: var(--soft);
    color: var(--ink);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}

.op-house-comment-history__title {
    margin: 0 36px 6px 0;
    font-size: 20px;
    color: var(--footer);
}

.op-house-comment-history__subtitle {
    margin: 0 0 16px;
    color: var(--muted);
    font-size: 14px;
}

.op-house-comment-history__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.op-house-comment-history__item {
    display: flex;
    gap: 12px;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
}

.op-house-comment-history__avatar {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--soft);
}

.op-house-comment-history__body {
    flex: 1;
    min-width: 0;
}

.op-house-comment-history__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
}

.op-house-comment-history__author {
    font-size: 14px;
    color: var(--footer);
}

.op-house-comment-history__time {
    flex-shrink: 0;
    font-size: 12px;
    color: var(--muted);
}

.op-house-comment-history__content {
    font-size: 14px;
    line-height: 1.55;
    color: var(--ink);
    white-space: pre-wrap;
    word-break: break-word;
}

.op-house-comment-history__empty {
    padding: 28px 16px;
    border: 1px dashed var(--line);
    border-radius: 12px;
    text-align: center;
    color: var(--muted);
    font-size: 14px;
}

.op-house-contact-form {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: rgba(15, 23, 42, .55);
}

.op-house-modal.is-contact-open .op-house-modal__panel {
    overflow: hidden;
}

.op-house-contact-form[hidden] {
    display: none !important;
}

.op-house-contact-form__panel {
    position: relative;
    width: min(520px, 100%);
    max-height: min(560px, calc(100vh - 48px));
    overflow: auto;
    margin: auto;
    padding: 28px 26px 24px;
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--shadow);
    flex-shrink: 0;
}

.op-house-contact-form__close {
    position: absolute;
    top: 14px;
    right: 14px;
    border: 0;
    background: transparent;
    color: var(--muted);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.op-house-contact-form__eyebrow {
    color: var(--brand-orange);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.op-house-contact-form__title {
    margin: 10px 0 8px;
    color: var(--footer);
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 900;
}

.op-house-contact-form__subtitle {
    margin: 0 0 10px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

.op-house-contact-form__hint {
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
}

.op-house-contact-form__hint a {
    color: var(--brand-orange);
    font-weight: 700;
    text-decoration: none;
}

.op-house-contact-form__hint a:hover {
    text-decoration: underline;
}

.op-house-contact-form__fields {
    display: grid;
    gap: 14px;
}

.op-house-contact-form__field {
    display: grid;
    gap: 6px;
}

.op-house-contact-form__field span {
    color: #5f6f7d;
    font-size: 13px;
    font-weight: 700;
}

.op-house-contact-form__field input {
    width: 100%;
    min-height: 44px;
    border: 1px solid #dfe5e9;
    border-radius: 12px;
    background: #fff;
    color: #334155;
    font-size: 14px;
    padding: 10px 14px;
}

.op-house-contact-form__field input:focus {
    border-color: rgba(245, 134, 52, .78);
    outline: 0;
    box-shadow: 0 0 0 3px rgba(245, 134, 52, .13);
}

.op-house-contact-form__feedback {
    margin-top: 4px;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
}

.op-house-contact-form__feedback.is-error {
    background: rgba(214, 69, 69, .10);
    color: #b42318;
}

.op-house-contact-form__actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 6px;
}

.op-house-contact-form__cancel,
.op-house-contact-form__submit {
    min-height: 44px;
    border-radius: 999px;
    padding: 0 20px;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
}

.op-house-contact-form__cancel {
    border: 1px solid rgba(7, 56, 114, .14);
    background: #fff;
    color: var(--footer);
}

.op-house-contact-form__submit {
    border: 0;
    background: var(--brand-orange);
    color: #fff;
}

.op-house-contact-form__submit:disabled {
    opacity: .65;
    cursor: not-allowed;
}

.op-page--profile {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.op-profile {
    padding: 8px 0 48px;
}

.op-profile__header {
    max-width: 640px;
    margin-bottom: 24px;
}

.op-profile__header h1 {
    margin: 8px 0 10px;
    color: var(--footer);
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 900;
}

.op-profile__header p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.op-profile__card {
    max-width: 640px;
    padding: 28px 26px;
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--shadow);
}

.op-profile__alert {
    margin-bottom: 18px;
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
}

.op-profile__alert--success {
    background: rgba(34, 197, 94, .12);
    color: #15803d;
}

.op-profile__alert--error {
    background: rgba(214, 69, 69, .10);
    color: #b42318;
}

.op-profile__form {
    display: grid;
    gap: 16px;
}

.op-profile__field {
    display: grid;
    gap: 8px;
}

.op-profile__field span {
    color: #5f6f7d;
    font-size: 14px;
    font-weight: 700;
}

.op-profile__field input {
    width: 100%;
    height: 44px;
    border: 1px solid #dfe5e9;
    border-radius: 12px;
    background: #fff;
    color: #334155;
    font-size: 14px;
    padding: 10px 14px;
}

.op-profile__field input:focus {
    border-color: rgba(245, 134, 52, .78);
    background: #fff;
    outline: 0;
    box-shadow: 0 0 0 3px rgba(245, 134, 52, .13);
}

.op-profile__field--readonly input {
    background: #f8fafc;
    color: #64748b;
    cursor: not-allowed;
}

.op-profile__field small {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.5;
}

.op-profile__actions {
    margin-top: 8px;
}

.op-profile__submit {
    min-height: 46px;
    border: 0;
    border-radius: 999px;
    padding: 0 24px;
    background: var(--brand-orange);
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
}

.op-profile__submit:hover {
    filter: brightness(.98);
}

body.op-nav-menu-open {
    overflow: hidden;
}

body.op-auth-gate-open,
body.op-house-modal-open,
body.op-consign-modal-open {
    overflow: hidden;
}

.op-auth-gate {
    position: fixed;
    inset: 0;
    z-index: 1250;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
}

.op-auth-gate__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(7, 24, 42, .62);
}

.op-auth-gate__panel {
    position: relative;
    z-index: 1;
    width: min(520px, 100%);
    padding: 34px 30px 28px;
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--shadow);
    text-align: center;
}

.op-auth-gate__close {
    position: absolute;
    top: 16px;
    right: 16px;
    border: 0;
    background: transparent;
    color: var(--muted);
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
}

.op-auth-gate__eyebrow {
    color: var(--brand-orange);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.op-auth-gate__title {
    margin: 14px 0 10px;
    color: var(--footer);
    font-size: clamp(26px, 4vw, 34px);
    line-height: 1.15;
}

.op-auth-gate__message {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
}

.op-auth-gate__actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.op-auth-gate__login,
.op-auth-gate__cancel {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
}

.op-auth-gate__login {
    background: var(--brand-orange);
    color: #fff;
}

.op-auth-gate__cancel {
    border: 1px solid rgba(7, 56, 114, .14);
    background: #fff;
    color: var(--footer);
}

.op-consign-modal {
    position: fixed;
    inset: 0;
    z-index: 1250;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
}

.op-consign-modal__backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(7, 24, 42, .62);
}

.op-consign-modal__panel {
    position: relative;
    z-index: 1;
    width: min(560px, 100%);
    padding: 34px 30px 28px;
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--shadow);
}

.op-consign-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: rgba(7, 56, 114, .08);
    color: var(--muted);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.op-consign-modal__eyebrow {
    color: var(--brand-orange);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.op-consign-modal__title {
    margin: 14px 0 10px;
    color: var(--footer);
    font-size: clamp(26px, 4vw, 34px);
    line-height: 1.15;
}

.op-consign-modal__subtitle {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
}

.op-consign-modal__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 22px;
}

.op-consign-modal__field {
    display: grid;
    gap: 8px;
}

.op-consign-modal__field span {
    color: #5f6f7d;
    font-size: 14px;
    font-weight: 700;
}

.op-consign-modal__field input {
    width: 100%;
    height: 44px;
    border: 1px solid #dfe5e9;
    border-radius: 10px;
    background: #f7f8f9;
    color: #677481;
    font-size: 16px;
    padding: 0 14px;
}

.op-consign-modal__field input:focus {
    border-color: rgba(245, 134, 52, .78);
    background: #fff;
    outline: 0;
    box-shadow: 0 0 0 3px rgba(245, 134, 52, .13);
}

.op-consign-modal__feedback {
    margin-top: 16px;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
}

.op-consign-modal__feedback.is-info {
    background: rgba(10, 119, 184, .10);
    color: var(--brand-blue);
}

.op-consign-modal__feedback.is-error {
    background: rgba(230, 64, 49, .10);
    color: #c53030;
}

.op-consign-modal__actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 24px;
}

.op-consign-modal__cancel,
.op-consign-modal__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
}

.op-consign-modal__cancel {
    border: 1px solid rgba(7, 56, 114, .14);
    background: #fff;
    color: var(--footer);
}

.op-consign-modal__submit {
    border: 0;
    background: var(--brand-orange);
    color: #fff;
}

body.op-contact-modal-open {
    overflow: hidden;
    overscroll-behavior: none;
}

.op-contact-modal {
    position: fixed;
    inset: 0;
    z-index: 1260;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 12px;
}

.op-contact-modal[hidden] {
    display: none !important;
}

.op-contact-modal__backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(7, 24, 42, .62);
}

.op-contact-modal__panel {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    width: min(720px, 100%);
    max-height: min(92vh, 880px);
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.op-contact-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 22px 0;
}

.op-contact-modal__title {
    margin: 0;
    color: var(--footer);
    font-size: clamp(20px, 3vw, 24px);
    font-weight: 800;
    line-height: 1.25;
}

.op-contact-modal__close {
    flex: 0 0 auto;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: rgba(7, 56, 114, .08);
    color: var(--muted);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    transition: background .15s ease, color .15s ease;
}

.op-contact-modal__close:hover,
.op-contact-modal__close:focus-visible {
    background: rgba(220, 53, 69, .12);
    color: #dc3545;
    outline: none;
}

.op-contact-modal__tabs {
    display: flex;
    gap: 0;
    margin: 14px 22px 0;
    border-bottom: 1px solid rgba(7, 56, 114, .12);
}

.op-contact-modal__tab {
    position: relative;
    padding: 12px 4px;
    margin-right: 28px;
    border: 0;
    background: transparent;
    color: var(--muted);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
}

.op-contact-modal__tab.is-active {
    color: var(--brand-blue);
}

.op-contact-modal__tab.is-active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 3px;
    border-radius: 3px 3px 0 0;
    background: var(--brand-blue);
}

.op-contact-modal__body {
    flex: 1 1 auto;
    overflow: auto;
    padding: 18px 22px 8px;
}

.op-contact-modal__section + .op-contact-modal__section {
    margin-top: 22px;
}

.op-contact-modal__section-title {
    margin: 0 0 12px;
    color: var(--footer);
    font-size: 16px;
    font-weight: 800;
}

.op-contact-modal__optional {
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
}

.op-contact-modal__hint {
    margin: -4px 0 14px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
}

.op-contact-modal__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.op-contact-modal__field {
    display: grid;
    gap: 6px;
}

.op-contact-modal__field-label {
    color: #6b7785;
    font-size: 12px;
    font-weight: 700;
}

.op-contact-modal__field input,
.op-contact-modal__field select {
    width: 100%;
    height: 44px;
    border: 1px solid #dfe5e9;
    border-radius: 8px;
    background: #fff;
    color: var(--ink);
    font-size: 14px;
    padding: 0 12px;
}

.op-contact-modal__field input:focus,
.op-contact-modal__field select:focus {
    border-color: rgba(10, 119, 184, .7);
    outline: 0;
    box-shadow: 0 0 0 3px rgba(10, 119, 184, .12);
}

.op-contact-modal__field select:disabled {
    background: #f4f6f8;
    color: #98a2ad;
}

.op-contact-modal__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.op-contact-modal__pill {
    border: 1px solid #dfe5e9;
    border-radius: 999px;
    background: #fff;
    color: var(--ink);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    padding: 9px 14px;
    cursor: pointer;
    transition: border-color .15s ease, color .15s ease, background .15s ease;
}

.op-contact-modal__pill.is-active {
    border-color: var(--brand-blue);
    color: var(--brand-blue);
    background: rgba(10, 119, 184, .06);
}

.op-contact-modal__trust {
    display: grid;
    gap: 8px;
    margin-top: 18px;
}

.op-contact-modal__trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #3d4b59;
    font-size: 13px;
    font-weight: 600;
}

.op-contact-modal__trust-item > i {
    color: #22a06b;
    font-size: 16px;
}

.op-contact-modal__feedback {
    margin-top: 14px;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
}

.op-contact-modal__feedback.is-info {
    background: rgba(10, 119, 184, .10);
    color: var(--brand-blue);
}

.op-contact-modal__feedback.is-error {
    background: rgba(230, 64, 49, .10);
    color: #c53030;
}

.op-contact-modal__feedback.is-success {
    background: rgba(34, 160, 107, .10);
    color: #1f7a52;
}

.op-contact-modal__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 22px 18px;
    border-top: 1px solid rgba(7, 56, 114, .10);
    background: #fff;
}

.op-contact-modal__hotline {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 16px;
    border: 1px solid var(--brand-blue);
    border-radius: 8px;
    color: var(--brand-blue);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
}

.op-contact-modal__hotline-badge {
    position: absolute;
    top: -9px;
    left: 12px;
    padding: 2px 8px;
    border-radius: 999px;
    background: #22a06b;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.op-contact-modal__submit {
    flex: 1 1 auto;
    min-height: 46px;
    max-width: 280px;
    margin-left: auto;
    border: 0;
    border-radius: 8px;
    background: var(--brand-blue);
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
}

.op-contact-modal__submit:disabled {
    opacity: .7;
    cursor: wait;
}

.op-contact-modal.is-open .op-contact-modal__backdrop {
    animation: opFadeIn .18s ease;
}

.op-contact-modal.is-open .op-contact-modal__panel {
    animation: opFadeIn .2s ease;
}

@media (max-width: 640px) {
    .op-contact-modal__grid {
        grid-template-columns: 1fr;
    }

    .op-contact-modal__footer {
        flex-direction: column;
        align-items: stretch;
    }

    .op-contact-modal__submit {
        max-width: none;
        margin-left: 0;
    }

    .op-contact-modal__tab {
        margin-right: 18px;
        font-size: 14px;
    }
}

/* Login page */
.op-login-page {
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(245, 134, 52, .22), transparent 32%),
        linear-gradient(135deg, #06284f 0%, #0a77b8 52%, #f3f3f1 52%, #f8fafb 100%);
}

.op-login-shell {
    min-height: 100vh;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
}

.op-login-brand {
    display: flex;
    flex-direction: column;
    padding: 42px min(6vw, 88px);
    color: #fff;
}

.op-login-logo img {
    height: 42px;
    width: auto;
}

.op-login-copy {
    max-width: 560px;
}

.op-login-kicker {
    display: inline-flex;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, .8);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.op-login-copy h1 {
    margin: 0 0 18px;
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1.08;
}

.op-login-copy p {
    margin: 0;
    color: rgba(255, 255, 255, .88);
    font-size: 17px;
    line-height: 1.8;
}

.op-login-highlights {
    display: grid;
    gap: 16px;
    margin-top: 36px;
}

.op-login-highlights > div {
    padding: 18px 20px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 18px;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(10px);
}

.op-login-highlights strong,
.op-login-highlights span {
    display: block;
}

.op-login-highlights strong {
    margin-bottom: 6px;
    font-size: 16px;
}

.op-login-highlights span {
    color: rgba(255, 255, 255, .74);
    font-size: 14px;
    line-height: 1.6;
}

.op-login-panel {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 36px 22px;
}

.op-login-card {
    width: min(480px, 100%);
    padding: 34px 32px;
    border-radius: 26px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 26px 50px rgba(9, 27, 54, .14);
}

.op-login-heading h2 {
    margin: 0 0 8px;
    color: var(--footer);
    font-size: 30px;
}

.op-login-heading p {
    margin: 0 0 24px;
    color: var(--muted);
    font-size: 15px;
}

.op-login-alert {
    margin-bottom: 18px;
}

.op-login-form {
    display: grid;
    gap: 18px;
}

.op-login-field label {
    display: block;
    margin-bottom: 8px;
    color: var(--footer);
    font-size: 14px;
    font-weight: 700;
}

.op-login-input {
    min-height: 50px;
    border-radius: 14px;
    border: 1px solid #d8e1e8;
    padding: 0 16px;
}

.op-login-input:focus {
    border-color: rgba(245, 134, 52, .7);
    box-shadow: 0 0 0 .2rem rgba(245, 134, 52, .16);
}

.op-login-error:empty {
    display: none;
}

.op-login-error ul {
    margin: 0;
    padding-left: 18px;
    color: #b42318;
    font-size: 14px;
}

.op-login-submit,
.op-login-google {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 52px;
    border-radius: 16px;
    font-size: 15px;
    font-weight: 800;
}

.op-login-submit {
    border: 0;
    background: linear-gradient(135deg, var(--brand-orange), #ff9a2d);
    color: #fff;
    box-shadow: 0 16px 26px rgba(245, 134, 52, .22);
}

.op-login-google {
    border: 1px solid #d8e1e8;
    background: #fff;
    color: var(--footer);
}

.op-login-links {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin: 18px 0 20px;
    font-size: 14px;
    color: var(--brand-blue);
}

.op-login-divider {
    position: relative;
    margin: 8px 0 18px;
    text-align: center;
}

.op-login-divider::before {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    content: "";
    background: #e5edf2;
}

.op-login-divider span {
    position: relative;
    z-index: 1;
    display: inline-block;
    padding: 0 12px;
    background: #fff;
    color: var(--muted);
    font-size: 13px;
}

@media (max-width: 900px) {
    .op-house-modal__body {
        grid-template-columns: 1fr;
    }

    .op-house-modal__header {
        flex-wrap: wrap;
    }

    .op-house-modal__header-actions {
        width: 100%;
        justify-content: space-between;
    }

    .op-house-modal__header-meta {
        align-items: center;
        justify-content: flex-start;
        text-align: left;
    }

    .op-house-modal__media {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .op-house-modal__gallery-main {
        min-height: 340px;
    }

    .op-login-shell {
        grid-template-columns: 1fr;
    }

    .op-login-brand {
        padding-bottom: 16px;
    }
}

@media (max-width: 640px) {
    .op-house-modal {
        padding: 0;
        align-items: stretch;
    }

    .op-house-modal__panel {
        max-height: 100vh;
        border-radius: 0;
    }

    .op-house-modal__grid {
        grid-template-columns: 1fr;
    }

    .op-house-modal__quick {
        grid-template-columns: 1fr;
    }

    .op-house-modal__footer-actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .op-auth-gate__panel,
    .op-consign-modal__panel,
    .op-login-card {
        padding: 26px 18px;
        border-radius: 20px;
    }

    .op-auth-gate__actions,
    .op-consign-modal__actions,
    .op-login-links {
        flex-direction: column;
    }

    .op-consign-modal__grid {
        grid-template-columns: 1fr;
    }

    .op-hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ── Projects list page ── */

.op-page--projects,
.op-page--about,
.op-page--news {
    background: var(--soft);
}

.op-projects-page-header {
    margin-bottom: 28px;
    padding: 28px 32px;
    border-radius: 12px;
    background: #fff;
    box-shadow: var(--shadow);
}

.op-projects-page-header h1 {
    margin: 0 0 10px;
    color: var(--ink);
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 800;
    text-transform: uppercase;
}

.op-projects-page-header p {
    margin: 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.55;
    max-width: 720px;
}

.op-projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    padding-bottom: 48px;
}

.op-project-card {
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow);
    color: inherit;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease;
}

.op-project-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 48px rgba(18, 38, 63, .22);
    color: inherit;
}

.op-project-card-photo {
    display: block;
    width: 100%;
    min-height: 200px;
    object-fit: cover;
    background: #dfe6ee center / cover no-repeat;
}

.op-project-card-body {
    position: relative;
    padding: 20px 22px 24px;
}

.op-project-card-badge {
    display: inline-block;
    margin-bottom: 8px;
    padding: 4px 10px;
    border-radius: 20px;
    background: var(--brand-orange);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.op-project-card h2 {
    margin: 0 0 8px;
    color: var(--ink);
    font-size: 18px;
    font-weight: 800;
    line-height: 1.3;
}

.op-project-card-investor {
    color: var(--brand-orange);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.op-project-card-address {
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 8px;
}

.op-project-card-slogan {
    margin: 0;
    color: var(--ink);
    font-size: 14px;
    line-height: 1.5;
    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ── News pages ── */

.op-news-hero,
.op-news-article,
.op-news-related {
    margin-bottom: 24px;
    padding: 28px 32px;
    border-radius: 12px;
    background: #fff;
    box-shadow: var(--shadow);
}

.op-news-hero__copy {
    max-width: 860px;
}

.op-news-hero h1,
.op-news-article h1 {
    margin: 0 0 14px;
    color: var(--ink);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    line-height: 1.18;
}

.op-news-hero p:not(.op-eyebrow) {
    margin: 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
}

.op-news-list {
    padding-bottom: 48px;
}

.op-news-feed {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.op-news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.op-news-grid--compact {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 18px;
}

.op-news-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow);
    border: 1px solid rgba(232, 236, 239, .9);
}

.op-news-card--list {
    flex-direction: row;
    align-items: stretch;
    overflow: hidden;
}

.op-news-card__media {
    display: block;
    position: relative;
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, #dbe6ef, #f4f7fa);
    overflow: hidden;
}

.op-news-card--list .op-news-card__media {
    flex: 0 0 340px;
    width: 340px;
    aspect-ratio: auto;
    min-height: 240px;
}

.op-news-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.op-news-card__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: var(--brand-blue);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.op-news-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 22px 24px;
}

.op-news-card__meta,
.op-news-article__info {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.op-news-card h2,
.op-news-card h3 {
    margin: 10px 0 12px;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.35;
}

.op-news-card h3 {
    font-size: 18px;
}

.op-news-card h2 a,
.op-news-card h3 a {
    color: var(--ink);
    text-decoration: none;
}

.op-news-card h2 a:hover,
.op-news-card h3 a:hover {
    color: var(--brand-orange);
}

.op-news-card p {
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.65;
}

.op-news-card .op-read {
    margin-top: auto;
}

.op-news-card--list h2 {
    font-size: 24px;
    margin-bottom: 14px;
}

.op-news-card--list p {
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 20px;
}

.op-news-article__hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 460px);
    gap: 32px;
    align-items: start;
    margin-bottom: 28px;
}

.op-news-article__lead {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
}

.op-news-article__cover {
    margin: 0;
}

.op-news-article__cover img {
    display: block;
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 18px 40px rgba(18, 38, 63, .18);
}

.op-news-article__body {
    color: var(--ink);
    font-size: 16px;
    line-height: 1.85;
}

.op-news-article__body > *:first-child {
    margin-top: 0;
}

.op-news-article__body h2,
.op-news-article__body h3,
.op-news-article__body h4 {
    margin: 28px 0 14px;
    color: var(--ink);
    font-weight: 800;
    line-height: 1.35;
}

.op-news-article__body p,
.op-news-article__body li {
    color: var(--ink);
    line-height: 1.85;
}

.op-news-article__body ul,
.op-news-article__body ol {
    padding-left: 24px;
}

.op-news-article__body img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 24px auto;
    border-radius: 12px;
    box-shadow: 0 16px 32px rgba(18, 38, 63, .12);
}

.op-news-article__body a {
    color: var(--brand-blue);
    text-decoration: underline;
}

.op-news-article__body a:hover {
    color: var(--brand-orange);
}

.op-news-article__body table {
    width: 100%;
    display: block;
    overflow-x: auto;
    border-collapse: collapse;
    margin: 24px 0;
}

.op-news-article__body iframe {
    width: 100%;
    max-width: 100%;
    min-height: 320px;
    border: 0;
    border-radius: 12px;
}

.op-news-related__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.op-news-related__head h2 {
    margin: 0;
    color: var(--ink);
    font-size: 26px;
    font-weight: 800;
}

.op-news-related__head a {
    color: var(--brand-orange);
    font-weight: 700;
    text-decoration: none;
}

.op-news-related__head a:hover {
    color: var(--brand-blue);
}

/* ── About page ── */

.op-about-hero,
.op-about-section,
.op-about-cta {
    margin-bottom: 24px;
    padding: 28px 32px;
    border-radius: 12px;
    background: #fff;
    box-shadow: var(--shadow);
}

.op-about-hero--split {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 460px);
    gap: 32px;
    align-items: center;
}

.op-about-hero-copy {
    min-width: 0;
}

.op-about-hero-media {
    margin: 0;
}

.op-about-hero-media img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

.op-about-section--media {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
    gap: 28px;
    align-items: center;
}

.op-about-section-copy {
    min-width: 0;
}

.op-about-section-media {
    margin: 0;
}

.op-about-section-media img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

.op-about-gallery-lead {
    margin: -6px 0 20px;
    color: #576573;
}

.op-about-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
}

.op-about-gallery-item {
    margin: 0;
    overflow: hidden;
    border-radius: 10px;
    background: #fff;
    border: 1px solid var(--line);
}

.op-about-gallery-item img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.op-about-gallery-item figcaption {
    padding: 10px 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
}

.op-about-section--soft {
    background: #f8fafb;
}

.op-about-hero h1 {
    margin: 0 0 16px;
    color: var(--ink);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
}

.op-about-hero-lead {
    font-size: 18px;
    line-height: 1.6;
    color: var(--ink);
}

.op-about-offices {
    margin: 16px 0 0;
    padding-left: 20px;
    color: var(--ink);
    line-height: 1.7;
}

.op-about-section h2 {
    margin: 0 0 16px;
    color: var(--ink);
    font-size: 24px;
    font-weight: 800;
}

.op-about-section p,
.op-about-section li {
    color: var(--ink);
    line-height: 1.7;
}

.op-about-services {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
}

.op-about-services article {
    padding: 20px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid var(--line);
}

.op-about-services h3 {
    margin: 0;
    color: var(--brand-blue);
    font-size: 16px;
    font-weight: 700;
}

.op-about-values {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 18px;
}

.op-about-values article {
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--brand-orange);
    background: #fff;
}

.op-about-values h3 {
    margin: 0 0 10px;
    color: var(--brand-blue);
    font-size: 17px;
}

.op-about-values p {
    margin: 0;
    font-size: 15px;
}

.op-about-cta {
    text-align: center;
}

.op-about-cta a {
    color: var(--brand-blue);
    font-weight: 700;
}

.op-about-cta a:hover {
    color: var(--brand-orange);
}

/* ── Dynamic project content ── */

.op-project-overview-html ul {
    margin: 0;
    padding-left: 20px;
    line-height: 1.8;
    color: var(--ink);
}

.op-project-overview-html img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.op-project-overview-html img.is-zoomable,
.op-project-amenity-photo.is-zoomable,
.op-project-overview-image.is-zoomable {
    cursor: zoom-in;
}

.op-project-location-text img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.op-project-map-embed iframe {
    width: 100%;
    min-height: 420px;
    border: 0;
    border-radius: 12px;
}

.op-project-product.has-image {
    position: relative;
    background-size: cover;
    background-position: center;
    min-height: 220px;
    color: #fff;
}

.op-project-product.has-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 56, 114, .15), rgba(7, 56, 114, .82));
    border-radius: inherit;
}

.op-project-product-inner {
    position: relative;
    z-index: 1;
}

.op-project-product-price {
    font-weight: 700;
    color: var(--brand-orange);
}

.op-project-product.has-image .op-project-product-price {
    color: #ffd45e;
}

body.op-image-lightbox-open {
    overflow: hidden;
}

.op-image-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1400;
}

.op-image-lightbox__backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(10, 18, 28, .78);
    cursor: zoom-out;
}

.op-image-lightbox__dialog {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 32px;
}

.op-image-lightbox__image {
    display: block;
    max-width: min(1200px, 100%);
    max-height: calc(100vh - 64px);
    border-radius: 12px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .35);
    background: #fff;
}

.op-image-lightbox__close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .18);
    color: #fff;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
}

.op-image-lightbox__close:hover {
    background: rgba(255, 255, 255, .28);
}

@keyframes op-page-enter {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes op-page-leave {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@keyframes op-panel-enter {
    from {
        opacity: 0;
        transform: translate3d(0, 22px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes op-panel-leave {
    from {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
    to {
        opacity: 0;
        transform: translate3d(0, 14px, 0);
    }
}

@keyframes op-overlay-fade {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes op-dialog-enter {
    from {
        opacity: 0;
        transform: translate3d(0, 20px, 0) scale(.96);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }
}

@keyframes op-dialog-leave {
    from {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }
    to {
        opacity: 0;
        transform: translate3d(0, 14px, 0) scale(.975);
    }
}

@keyframes op-pulse-dot {
    0%, 80%, 100% {
        transform: scale(.72);
        opacity: .4;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes op-toast-enter {
    from {
        opacity: 0;
        transform: translate3d(-50%, 14px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(-50%, 0, 0);
    }
}

.op-menu a,
.op-tab,
.op-arrow,
.op-read,
.op-outline,
.op-project-tab,
.op-project-card,
.op-card,
.op-project-product-card,
.op-project-document-card,
.op-project-timeline-item,
.op-about-services article,
.op-about-values article,
.op-project-share,
.op-inventory-filter-btn,
.op-inventory-chip,
.op-inventory-clear-all,
.op-inventory-page-btn,
.op-house-modal__action,
.op-house-modal__booking,
.op-house-modal__thumb,
.op-project-document-action,
.op-project-document-seq,
.op-auth-gate__login,
.op-auth-gate__cancel,
.op-login-submit,
.op-login-google {
    transition:
        transform var(--motion-base) var(--ease-standard),
        box-shadow var(--motion-base) var(--ease-standard),
        border-color var(--motion-fast) var(--ease-standard),
        background-color var(--motion-fast) var(--ease-standard),
        color var(--motion-fast) var(--ease-standard),
        opacity var(--motion-fast) var(--ease-standard);
}

.op-menu a:hover,
.op-project-document-action:hover {
    transform: translateY(-1px);
}

.op-nav-button:active,
.op-hero-login:active,
.op-hero-secondary:active,
.op-submit:active,
.op-buy-submit:active,
.op-outline:active,
.op-read:active,
.op-project-share:active,
.op-inventory-filter-btn:active,
.op-inventory-chip:active,
.op-inventory-clear-all:active,
.op-inventory-page-btn:active,
.op-house-modal__action:active,
.op-house-modal__booking:active,
.op-arrow:active,
.op-auth-gate__login:active,
.op-auth-gate__cancel:active,
.op-login-submit:active,
.op-login-google:active {
    transform: scale(.97);
}

.op-card,
.op-project-card,
.op-project-product-card,
.op-project-document-card,
.op-about-services article,
.op-about-values article,
.op-project-timeline-item {
    transform: translate3d(0, 0, 0);
}

.op-card:hover,
.op-project-card:hover,
.op-project-product-card:hover,
.op-project-document-card:hover,
.op-about-services article:hover,
.op-about-values article:hover,
.op-project-timeline-item:hover {
    transform: translate3d(0, -7px, 0);
    box-shadow: 0 20px 44px rgba(18, 38, 63, .14);
}

.op-arrow:hover,
.op-project-share:hover,
.op-inventory-filter-btn:hover,
.op-inventory-chip:hover,
.op-inventory-clear-all:hover,
.op-house-modal__action:hover,
.op-house-modal__booking:hover,
.op-house-modal__thumb:hover,
.op-auth-gate__login:hover,
.op-auth-gate__cancel:hover,
.op-login-submit:hover,
.op-login-google:hover {
    transform: translate3d(0, -2px, 0);
}

.op-project-tab {
    transition:
        color var(--motion-fast) var(--ease-standard),
        background-color var(--motion-fast) var(--ease-standard),
        transform var(--motion-base) var(--ease-standard),
        box-shadow var(--motion-base) var(--ease-standard);
}

.op-project-tab:hover,
.op-project-tab.is-active {
    transform: translate3d(0, -2px, 0);
}

.op-project-tab::after {
    transition:
        transform var(--motion-base) var(--ease-standard),
        opacity var(--motion-fast) var(--ease-standard),
        background-color var(--motion-fast) var(--ease-standard);
    transform: scaleX(.6);
    opacity: .72;
}

.op-project-tab.is-active::after,
.op-project-tab:hover::after {
    transform: scaleX(1);
    opacity: 1;
}

.op-about-gallery-item img,
.op-project-card-photo,
.op-house-modal__hero {
    transition:
        transform var(--motion-slow) var(--ease-standard),
        opacity var(--motion-base) var(--ease-standard),
        filter var(--motion-base) var(--ease-standard);
}

.op-project-masterplan-image.is-swapping,
.op-house-modal__hero.is-swapping {
    opacity: .28;
    transform: scale(.985);
}

.op-about-gallery-item:hover img,
.op-project-card:hover .op-project-card-photo {
    transform: scale(1.04);
}

.op-auth-gate__backdrop,
.op-consign-modal__backdrop,
.op-house-modal__backdrop,
.op-image-lightbox__backdrop {
    animation: op-overlay-fade var(--motion-base) var(--ease-standard) both;
}

.op-auth-gate__panel,
.op-consign-modal__panel,
.op-house-modal__panel,
.op-image-lightbox__dialog {
    animation: op-dialog-enter var(--motion-base) var(--ease-standard) both;
    transform-origin: center;
}

.op-auth-gate.is-closing .op-auth-gate__backdrop,
.op-consign-modal.is-closing .op-consign-modal__backdrop,
.op-house-modal.is-closing .op-house-modal__backdrop,
.op-image-lightbox.is-closing .op-image-lightbox__backdrop {
    animation: op-overlay-fade 180ms var(--ease-exit) reverse both;
}

.op-auth-gate.is-closing .op-auth-gate__panel,
.op-consign-modal.is-closing .op-consign-modal__panel,
.op-house-modal.is-closing .op-house-modal__panel,
.op-image-lightbox.is-closing .op-image-lightbox__dialog {
    animation: op-dialog-leave 180ms var(--ease-exit) both;
}

.op-house-modal__toast {
    animation: op-toast-enter 220ms var(--ease-standard) both;
}

.op-loading-state {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 62px;
    width: 100%;
    padding: 18px 20px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(248, 250, 251, .94));
    color: var(--muted);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .85);
}

.op-loading-state--modal {
    min-height: 180px;
    background: transparent;
    box-shadow: none;
}

.op-loading-state__dots {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.op-loading-state__dots span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--brand-orange);
    animation: op-pulse-dot .9s infinite var(--ease-standard);
}

.op-loading-state__dots span:nth-child(2) {
    animation-delay: .12s;
}

.op-loading-state__dots span:nth-child(3) {
    animation-delay: .24s;
}

.op-loading-state__label {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .01em;
}

.op-inventory-loading {
    color: transparent;
}

.op-project-panel.is-active .op-project-section:nth-of-type(1),
.op-project-panel.is-active .op-project-section:nth-of-type(2),
.op-project-panel.is-active .op-project-section:nth-of-type(3),
.op-project-panel.is-active .op-project-section:nth-of-type(4),
.op-project-panel.is-active .op-project-section:nth-of-type(5) {
    animation: op-panel-enter var(--motion-slow) var(--ease-standard) both;
}

.op-project-panel.is-active .op-project-section:nth-of-type(2) {
    animation-delay: 50ms;
}

.op-project-panel.is-active .op-project-section:nth-of-type(3) {
    animation-delay: 100ms;
}

.op-project-panel.is-active .op-project-section:nth-of-type(4) {
    animation-delay: 150ms;
}

.op-project-panel.is-active .op-project-section:nth-of-type(5) {
    animation-delay: 200ms;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 1ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 1ms !important;
        scroll-behavior: auto !important;
    }

    [data-motion] {
        opacity: 1 !important;
        transform: none !important;
    }
}

.op-project-amenities-embed {
    min-height: 600px;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

.op-project-amenities-embed iframe {
    width: 100%;
    min-height: 600px;
    border: 0;
}

.op-project-amenity-photo {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    margin: 0 auto 12px;
    background: center / cover no-repeat;
}

.op-project-policy-gallery {
    display: grid;
    gap: 16px;
}

.op-project-policy-gallery img,
.op-project-policy-html img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.op-footer a {
    color: inherit;
    text-decoration: none;
}

.op-footer a:hover {
    color: #ffd45e;
}

.op-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
}

@media (max-width: 768px) {
    .op-projects-grid {
        grid-template-columns: 1fr;
    }

    .op-about-inner,
    .op-about-hero--split,
    .op-about-section--media,
    .op-news-article__hero {
        grid-template-columns: 1fr;
    }

    .op-about-inner {
        text-align: center;
    }

    .op-about-copy .op-read {
        margin-left: auto;
        margin-right: auto;
    }

    .op-about-hero,
    .op-about-section,
    .op-about-cta,
    .op-projects-page-header,
    .op-news-hero,
    .op-news-article,
    .op-news-related {
        padding: 20px;
    }

    .op-news-grid,
    .op-news-grid--compact {
        grid-template-columns: 1fr;
    }

    .op-news-card--list {
        flex-direction: column;
    }

    .op-news-card--list .op-news-card__media {
        width: 100%;
        flex-basis: auto;
        aspect-ratio: 16 / 10;
        min-height: 0;
    }

    .op-news-article__info,
    .op-news-related__head {
        flex-direction: column;
        align-items: flex-start;
    }

    .op-news-card__body {
        padding: 18px;
    }

    .op-inventory-page-controls {
        justify-content: center;
        overflow-x: auto;
        padding-bottom: 4px;
        scrollbar-width: none;
    }

    .op-inventory-page-controls::-webkit-scrollbar {
        display: none;
    }

    .op-inventory-page-numbers {
        justify-content: center;
    }

    .op-inventory-page-btn {
        min-width: 26px;
        height: 28px;
        font-size: 12px;
        padding: 0 8px;
    }
}

/* Customer Web global toast (top-right) */
.op-cw-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 12000;
    max-width: min(360px, calc(100vw - 32px));
    padding: 12px 16px;
    border-radius: 10px;
    background: #0c2b3f;
    color: #fff;
    font-size: 14px;
    line-height: 1.45;
    box-shadow: 0 10px 28px rgba(12, 43, 63, 0.28);
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
    pointer-events: none;
}

.op-cw-toast.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.op-cw-toast.is-error {
    background: #8b2e2e;
}

.op-submit.is-loading,
.op-buy-submit.is-loading,
.op-consign-modal__submit.is-loading,
.op-contact-modal__submit.is-loading {
    pointer-events: none;
    opacity: 0.78;
    position: relative;
}

.op-submit.is-loading .op-btn-label,
.op-buy-submit.is-loading .op-btn-label,
.op-consign-modal__submit.is-loading .op-btn-label,
.op-contact-modal__submit.is-loading .op-btn-label {
    opacity: 0.35;
}

.op-submit.is-loading::after,
.op-buy-submit.is-loading::after,
.op-consign-modal__submit.is-loading::after,
.op-contact-modal__submit.is-loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1.05em;
    height: 1.05em;
    margin: -0.525em 0 0 -0.525em;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top-color: #fff;
    border-radius: 50%;
    animation: op-cw-btn-spin 0.7s linear infinite;
}

@keyframes op-cw-btn-spin {
    to { transform: rotate(360deg); }
}

/* ── Projects list hero ── */

.op-projects-hero {
    margin: 8px 0 8px;
    padding: 8px 0 4px;
}

.op-projects-hero h1 {
    margin: 0 0 8px;
    font-size: clamp(1.6rem, 2.4vw, 2.1rem);
    font-weight: 800;
    color: var(--ink, #12263a);
}

.op-projects-hero p {
    margin: 0;
    max-width: 46rem;
    color: rgba(18, 38, 58, 0.78);
}

/* ── Contact page ── */

.op-contact-page {
    margin-top: 8px;
    margin-bottom: 40px;
}

.op-contact-page__intro {
    margin-bottom: 20px;
}

.op-contact-page__intro h1 {
    margin: 0 0 10px;
    font-size: clamp(1.7rem, 2.5vw, 2.2rem);
    font-weight: 800;
}

.op-contact-page__intro p {
    margin: 0;
    max-width: 46rem;
    color: rgba(18, 38, 58, 0.78);
}

.op-contact-page__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: 20px;
    align-items: start;
}

.op-contact-page__card {
    padding: 28px 28px 24px;
    border-radius: 12px;
    background: #fff;
    box-shadow: var(--shadow);
}

.op-contact-page__card h2 {
    margin: 0 0 16px;
    font-size: 1.15rem;
    font-weight: 700;
}

.op-contact-page__nap {
    margin: 0;
    display: grid;
    gap: 14px;
}

.op-contact-page__nap > div {
    margin: 0;
}

.op-contact-page__nap dt {
    margin: 0 0 4px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: rgba(18, 38, 58, 0.55);
}

.op-contact-page__nap dd {
    margin: 0;
    line-height: 1.5;
}

.op-contact-page__nap a {
    color: inherit;
    text-decoration: none;
    font-weight: 600;
}

.op-contact-page__nap a:hover {
    color: var(--brand-blue, #0b5cab);
}

.op-contact-page__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.op-contact-page__hint {
    margin: -4px 0 16px;
    color: rgba(18, 38, 58, 0.7);
}

.op-contact-page__form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.op-contact-page__field {
    display: grid;
    gap: 6px;
    margin: 0;
}

.op-contact-page__field--full {
    grid-column: 1 / -1;
}

.op-contact-page__field span {
    font-size: 0.9rem;
    font-weight: 600;
}

.op-contact-page__field input,
.op-contact-page__field textarea {
    width: 100%;
    border: 1px solid rgba(18, 38, 58, 0.16);
    border-radius: 10px;
    padding: 10px 12px;
    font: inherit;
    background: #fff;
}

.op-contact-page__field input:focus,
.op-contact-page__field textarea:focus {
    outline: 2px solid rgba(11, 92, 171, 0.35);
    border-color: rgba(11, 92, 171, 0.55);
}

.op-contact-page__feedback {
    margin: 14px 0 0;
    padding: 10px 12px;
    border-radius: 8px;
    background: rgba(11, 92, 171, 0.08);
    color: #0b5cab;
}

.op-contact-page__feedback.is-error {
    background: rgba(180, 35, 24, 0.08);
    color: #b42318;
}

.op-contact-page__feedback.is-success {
    background: rgba(12, 116, 70, 0.1);
    color: #0c7446;
}

.op-contact-page__submit {
    margin-top: 16px;
    position: relative;
}

.op-contact-page__submit.is-loading .op-btn-label {
    opacity: 0.35;
}

.op-contact-page__submit.is-loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1.05em;
    height: 1.05em;
    margin: -0.525em 0 0 -0.525em;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top-color: #fff;
    border-radius: 50%;
    animation: op-cw-btn-spin 0.7s linear infinite;
}

.op-about-legal-name {
    margin: 0 0 12px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: rgba(18, 38, 58, 0.72);
}

@media (max-width: 991.98px) {
    .op-contact-page__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .op-contact-page__card {
        padding: 20px 16px;
    }

    .op-contact-page__form-grid {
        grid-template-columns: 1fr;
    }
}
