@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:ital,wght@0,100..900;1,100..900&display=swap');
:root {
    --vh-sea: #00a6a6;
    --vh-sea-dark: #007f88;
    --vh-sky: #77d6ff;
    --vh-sand: #f4d9a4;
    --vh-sun: #f6b84b;
    --vh-coral: #ff7a59;
    --vh-ink: #113044;
    --vh-muted: #6b7b86;
    --vh-soft: #f4faf9;
    --vh-white: #fff;
    --vh-radius: 26px;
    --vh-shadow: 0 22px 60px rgba(17, 48, 68, .12);
    --vh-font-title: "Noto Serif", serif;
    --vh-font-body: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: var(--vh-font-body);
    color: var(--vh-ink);
    background: #fff;
    line-height: 1.65
}

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

img {
    max-width: 100%;
    display: block
}

.vh-container {
    width: min(1180px, calc(100% - 40px));
    margin: auto
}

.vh-section {
    padding: 92px 0
}

.vh-eyebrow {
    font-size: 12px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--vh-sea);
    font-weight: 800
}

.vh-title {
    font-family: var(--vh-font-title);
    font-size: clamp(38px, 5vw, 48px);
    line-height: .98;
    margin: 12px 0 18px;
    font-weight: 600
}

.vh-lead {
    font-size: 18px;
    color: var(--vh-muted);
    max-width: 720px
}

.vh-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 999px;
    padding: 13px 22px;
    font-weight: 800;
    border: 1px solid transparent;
    transition: .25s
}

.vh-btn-primary {
    background: linear-gradient(135deg, var(--vh-sea), var(--vh-sky));
    color: #fff;
    box-shadow: 0 16px 34px rgba(0, 166, 166, .25)
}

.vh-btn-light {
    background: rgba(255, 255, 255, .92);
    color: var(--vh-ink) !important;
}

.vh-btn-outline {
    border-color: rgba(17, 48, 68, .18);
    color: var(--vh-ink);
    background: white
}

.vh-btn:hover {
    transform: translateY(-2px)
}

.vh-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    padding: 22px 0;
    transition: .25s
}

.vh-nav.scrolled {
    background: rgba(255, 255, 255, .88);
    backdrop-filter: blur(18px);
    box-shadow: 0 12px 40px rgba(17, 48, 68, .08);
    padding: 12px 0
}

.vh-nav-inner {
    width: min(1300px, calc(100% - 36px));
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    margin: auto
}

.vh-nav-links {
    display: flex;
    gap: 28px;
    align-items: center
}

.vh-nav-links.right {
    justify-content: flex-end
}

.vh-nav a {
    font-size: 14px;
    font-weight: 800;
    color: white
}

.vh-nav.scrolled a {
    color: var(--vh-ink)
}

.vh-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff !important;
    letter-spacing: .36em;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 900
}

.vh-nav.scrolled .vh-logo-mark {
    filter: invert(0)
}

.vh-logo-mark {
    width: fit-content;
    max-width: 150px;
    filter: invert(1);
}

.vh-logo-footer {
    align-items: flex-start;
}

.vh-logo-footer .vh-logo-mark {
    filter: invert(0);
    width: fit-content;
    max-width: 150px;
    text-align: left;
}


.vh-menu-toggle {
    display: none;
    background: none;
    border: 0;
    color: white;
    font-size: 30px
}

.vh-nav.scrolled .vh-menu-toggle {
    color: var(--vh-ink)
}

.vh-mobile-menu {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 127, 136, .96), rgba(119, 214, 255, .94));
    z-index: 80;
    display: none;
    align-items: center;
    justify-content: center;
    text-align: center
}

.vh-mobile-menu.open {
    display: flex
}

.vh-mobile-menu button {
    position: absolute;
    top: 22px;
    left: 24px;
    background: none;
    border: 0;
    color: white;
    font-size: 42px
}

.vh-mobile-menu a {
    display: block;
    color: white;
    font-family: var(--vh-font-title);
    font-size: 44px;
    margin: 12px 0
}

.vh-lang {
    display: inline-flex;
    gap: 8px
}

.vh-lang a {
    font-size: 12px;
    border: 1px solid rgba(255, 255, 255, .35);
    padding: 5px 8px;
    border-radius: 20px
}

.vh-nav.scrolled .vh-lang a {
    border-color: rgba(17, 48, 68, .15)
}

.vh-hero {
    min-height: 100vh;
    position: relative;
    display: grid;
    align-items: end;
    overflow: hidden;
    background: #123
}

.vh-hero-grid {
    position: absolute;
    inset: 0;
    display: grid;
    opacity: 0.5;
    grid-template-columns: 1.15fr .85fr 1fr
}

.vh-hero-img {
    background-size: cover;
    background-position: center;
    filter: saturate(1.05)
}

.vh-hero-img:nth-child(1) {
    background-image: linear-gradient(rgba(0, 0, 0, .18), rgba(0, 0, 0, .18)), url('/assets/vivahomes/images/placeholder-property.svg')
}

.vh-hero-img:nth-child(2) {
    background-image: url('/assets/vivahomes/images/placeholder-property.svg')
}

.vh-hero-img:nth-child(3) {
    background-image: url('/assets/vivahomes/images/placeholder-property.svg')
}

.vh-hero:after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(17, 48, 68, .42), rgba(0, 166, 166, .1), rgba(17, 48, 68, .2))
}

.vh-hero-wave {
    position: absolute;
    left: -2%;
    right: -2%;
    bottom: -1px;
    height: 110px;
    background: white;
    clip-path: polygon(0 55%, 100% 25%, 100% 100%, 0 100%);
    z-index: 3
}

.vh-hero-content {
    position: relative;
    z-index: 4;
    padding: 0 0 150px;
    color: #fff
}

.vh-hero h1 {
    font-family: var(--vh-font-title);
    font-size: clamp(48px, 8vw, 68px);
    line-height: .92;
    margin: 0 0 20px;
    text-shadow: 0 12px 40px rgba(0, 0, 0, .25)
}

.vh-hero p {
    font-size: 20px;
    max-width: 560px;
    color: rgba(255, 255, 255, .9)
}

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

.vh-hero-badge {
    position: absolute;
    right: 8%;
    bottom: 130px;
    z-index: 5;
    background: rgba(255, 255, 255, .88);
    backdrop-filter: blur(10px);
    padding: 22px;
    border-radius: 22px;
    box-shadow: var(--vh-shadow);
    max-width: 300px
}

.vh-hero-badge strong {
    font-family: var(--vh-font-title);
    font-size: 34px;
    display: block;
    color: var(--vh-sea-dark)
}

.vh-hero-badge span {
    color: var(--vh-muted);
    font-size: 14px
}

.vh-intro {
    text-align: center
}

.vh-intro .vh-logo-mark {
    margin: 0 auto 22px
}

.vh-feature-strip {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr;
    gap: 18px;
    margin-top: 42px
}

.vh-feature-card {
    min-height: 280px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    background: #ddd;
    box-shadow: var(--vh-shadow)
}

.vh-feature-card img {
    height: 100%;
    width: 100%;
    object-fit: cover
}

.vh-feature-card span {
    position: absolute;
    left: 20px;
    bottom: 20px;
    background: rgba(255, 255, 255, .9);
    border-radius: 999px;
    padding: 8px 14px;
    font-weight: 800;
    color: var(--vh-sea-dark)
}

.vh-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 66px;
    align-items: center
}

.vh-soft {
    background: linear-gradient(180deg, #fff, var(--vh-soft))
}

.vh-checkgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin-top: 34px
}

.vh-check {
    background: white;
    border: 1px solid rgba(17, 48, 68, .08);
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 12px 32px rgba(17, 48, 68, .06)
}

.vh-check b {
    display: block;
    margin-bottom: 6px
}

.vh-photo-stack {
    position: relative;
    min-height: 520px
}

.vh-photo-main,
.vh-photo-small {
    position: absolute;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--vh-shadow)
}

.vh-photo-main {
    right: 0;
    top: 0;
    width: 78%
}

.vh-photo-small {
    left: 0;
    bottom: 0;
    width: 58%;
    border: 10px solid white
}

.vh-photo-main img {
    height: 500px;
    width: 100%;
    object-fit: cover
}

.vh-photo-small img {
    height: 260px;
    width: 100%;
    object-fit: cover
}

.vh-property-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
    margin-bottom: 34px
}

.vh-property-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px
}

.vh-card {
    border-radius: 22px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(17, 48, 68, .08);
    box-shadow: 0 14px 40px rgba(17, 48, 68, .08);
    transition: .25s
}

.vh-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 70px rgba(17, 48, 68, .16)
}

.vh-card-img {
    height: 250px;
    position: relative;
    overflow: hidden
}

.vh-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .35s
}

.vh-card:hover img {
    transform: scale(1.05)
}

.vh-chip {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, var(--vh-sun), var(--vh-coral));
    color: #fff;
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 900
}

.vh-card-body {
    padding: 20px
}

.vh-card h3 {
    font-family: var(--vh-font-title);
    font-size: 24px;
    margin: 0 0 8px;
    text-align:left;
}

.vh-price {
    color: var(--vh-sea-dark);
    font-weight: 900
}

.vh-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    color: var(--vh-muted);
    font-size: 13px;
    margin-top: 15px
}

.vh-marquee {
    overflow: hidden;
    white-space: nowrap;
    color: rgba(0, 166, 166, .13);
    font-family: var(--vh-font-title);
    font-size: 64px;
    padding: 38px 0
}

.vh-marquee span {
    display: inline-block;
    animation: vh-marquee 28s linear infinite
}

@keyframes vh-marquee {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

.vh-stats {
    background: linear-gradient(rgba(17, 48, 68, .58), rgba(0, 127, 136, .5)), url('/assets/vivahomes/images/placeholder-property.svg') center/cover fixed;
    color: #fff;
    text-align: center
}

.vh-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 36px
}

.vh-stat strong {
    font-family: var(--vh-font-title);
    font-size: 58px;
    display: block
}

.vh-stat span {
    color: rgba(255, 255, 255, .8)
}

.vh-lifestyle {
    text-align: center
}

.vh-lifestyle-grid {
    display: grid;
    grid-template-columns: .8fr 1fr;
    gap: 54px;
    text-align: left;
    align-items: center;
    margin-top: 48px
}

.vh-collage {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 18px;
    align-items: center
}

.vh-collage img {
    border-radius: 24px;
    box-shadow: var(--vh-shadow);
    height: 380px;
    width: 100%;
    object-fit: cover
}

.vh-collage img:first-child {
    height: 260px
}

.vh-icons {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 22px;
    margin-top: 58px
}

.vh-icon {
    text-align: center;
    color: var(--vh-muted);
    font-size: 13px
}

.vh-icon i {
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    margin: 0 auto 10px;
    border-radius: 50%;
    background: var(--vh-soft);
    color: var(--vh-sea-dark);
    font-size: 22px
}

.vh-testimonial {
    background: linear-gradient(rgba(17, 48, 68, .15), rgba(17, 48, 68, .12)), url('/assets/vivahomes/images/placeholder-property.svg') center/cover;
    color: white
}

.vh-testimonial-card {
    margin-left: auto;
    background: linear-gradient(135deg, rgba(0, 166, 166, .94), rgba(119, 214, 255, .92));
    padding: 42px;
    border-radius: 28px;
    max-width: 650px;
    box-shadow: var(--vh-shadow)
}

.vh-testimonial-card p {
    font-size: 22px
}

.vh-platforms {
    display: flex;
    gap: 42px;
    justify-content: center;
    flex-wrap: wrap;
    color: var(--vh-muted);
    font-weight: 900;
    margin-top: 28px
}

.vh-contact {
    background: #EEF5F6 url(/assets/vivahomes/images/contact-bg.png) right bottom no-repeat;
    background-size: 50em;
}

.vh-contact-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 70px;
    align-items: start
}

.vh-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

.vh-form .full {
    grid-column: 1/-1
}

.vh-form input,
.vh-form textarea,
.vh-form select {
    width: 100%;
    border: 1px solid rgba(17, 48, 68, .12);
    border-radius: 12px;
    padding: 16px;
    background: white;
    outline: none;
    color: var(--vh-ink)
}

.vh-form textarea {
    min-height: 130px
}

.vh-form button {
    justify-content: center;
    border: 0
}

.vh-footer {
    background: #0573bd;
    color: white;
    padding: 56px 0 20px
}

.vh-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr .7fr 1fr .7fr;
    gap: 36px
}

.vh-footer a,
.vh-footer p {
    color: rgba(255, 255, 255, .82);
    font-size: 14px
}

.vh-footer h4 {
    font-size: 13px;
    letter-spacing: .16em;
    text-transform: uppercase
}

.vh-copy {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, .18);
    padding-top: 18px;
    margin-top: 32px;
    color: rgba(255, 255, 255, .75)
}

.vh-page-hero {
    height: 430px;
    display: grid;
    place-items: center;
    text-align: center;
    color: white;
    background: linear-gradient(rgba(17, 48, 68, .5), rgba(0, 127, 136, .35)), var(--hero-img) center/cover;
    position: relative
}

.vh-page-hero:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 76px;
    background: #fff;
    clip-path: polygon(0 45%, 100% 0, 100% 100%, 0 100%)
}

.vh-page-hero h1 {
    font-family: var(--vh-font-title);
    font-size: clamp(44px, 6vw, 68px);
    position: relative;
    z-index: 2
}

.vh-filter {
    background: white;
    border-radius: 22px;
    box-shadow: var(--vh-shadow);
    padding: 22px;
    margin-top: -45px;
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: 1.2fr repeat(4, 1fr) auto;
    gap: 12px
}

.vh-filter input,
.vh-filter select {
    border: 1px solid rgba(17, 48, 68, .12);
    border-radius: 12px;
    padding: 13px
}

.vh-detail-gallery {
    display: grid;
    grid-template-columns: 1.3fr .85fr .85fr;
    height: 560px
}

.vh-detail-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.vh-detail-info {
    padding: 70px 0
}

.vh-detail-meta {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    color: var(--vh-muted);
    font-size: 18px
}

.vh-content {
    font-size: 18px;
    color: var(--vh-muted)
}

.vh-team-list {
    display: grid;
    gap: 28px
}

.vh-team-member {
    display: grid;
    grid-template-columns: 210px 1fr;
    gap: 36px;
    align-items: center;
    background: #f5f5f5;
    padding: 28px;
    border-radius: 26px
}

.vh-team-member img {
    width: 210px;
    height: 260px;
    object-fit: cover;
    filter: grayscale(1);
    border-radius: 14px;
    box-shadow: 0 16px 40px rgba(17, 48, 68, .12);
    transform: rotate(-2deg)
}

@media(max-width:920px) {
    .vh-nav-inner {
        grid-template-columns: auto 1fr auto
    }

    .vh-nav-links {
        display: none
    }

    .vh-menu-toggle {
        display: block
    }

    .vh-logo {
        justify-self: center
    }

    .vh-hero-grid {
        grid-template-columns: 1fr
    }

    .vh-hero-img:nth-child(2),
    .vh-hero-img:nth-child(3) {
        display: none
    }

    .vh-hero-badge {
        display: none
    }

    .vh-feature-strip,
    .vh-split,
    .vh-property-grid,
    .vh-stats-grid,
    .vh-lifestyle-grid,
    .vh-contact-grid,
    .vh-footer-grid,
    .vh-filter {
        grid-template-columns: 1fr
    }

    .vh-checkgrid,
    .vh-icons {
        grid-template-columns: 1fr 1fr
    }

    .vh-detail-gallery {
        height: auto;
        grid-template-columns: 1fr
    }

    .vh-detail-gallery img {
        height: 280px
    }

    .vh-team-member {
        grid-template-columns: 1fr
    }

    .vh-photo-stack {
        min-height: auto
    }

    .vh-photo-main,
    .vh-photo-small {
        position: relative;
        width: 100%;
        margin-bottom: 18px
    }

    .vh-photo-main img,
    .vh-photo-small img {
        height: 320px
    }

    .vh-form {
        grid-template-columns: 1fr
    }

    .vh-section {
        padding: 64px 0
    }
}

@media(max-width:900px) {
    .vh-nav-inner {
        display: flex;
        justify-content: space-between
    }

    .vh-menu-toggle {
        display: inline-flex !important;
        align-items: center;
        justify-content: center
    }

    .vh-nav-links a:not(.vh-btn),
    .vh-nav-links.right {
        display: none
    }

    .vh-logo-mark {
        max-width: 120px
    }

    .vh-filter {
        grid-template-columns: 1fr !important
    }

    .vh-page-hero {
        min-height: 330px
    }

    .vh-property-grid {
        grid-template-columns: 1fr !important
    }

    .vh-map-canvas {
        height: 330px
    }
}

.vh-map-canvas {
    height: 430px;
    border-radius: 28px;
    overflow: hidden;
    background: #eaf5f4;
    border: 1px solid rgba(17, 48, 68, .12);
    position: relative
}

.vh-map-pin {
    position: absolute;
    transform: translate(-50%, -100%);
    background: #00a6a6;
    color: white;
    border-radius: 999px;
    padding: 7px 10px;
    font-size: 12px;
    font-weight: 800;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .18);
    white-space: nowrap
}

.vh-map-pin:after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6px;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #00a6a6
}

.vh-empty {
    padding: 30px;
    border-radius: 24px;
    background: #f4faf9;
    color: #6b7b86;
    z-index: -1;
}

.vh-filter {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    background: #fff;
    padding: 18px;
    border-radius: 28px;
    box-shadow: 0 22px 60px rgba(17, 48, 68, .12);
    margin-top: -44px;
    position: relative;
    z-index: 3
}

.vh-filter input,
.vh-filter select {
    height: 48px;
    border: 1px solid rgba(17, 48, 68, .14);
    border-radius: 999px;
    padding: 0 15px
}



.vh-menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(0, 0, 0, .12);
    border-radius: 999px;
    background: rgba(255, 255, 255, .92);
    color: #111;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    z-index: 30;
}

.vh-menu-toggle-lines {
    width: 18px;
    height: 14px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.vh-menu-toggle-lines span {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

@media(max-width: 991px) {
    .vh-menu-toggle {
        display: inline-flex !important;
    }

    .vh-nav-links>a {
        display: none;
    }

    .vh-nav-links.right {
        display: none;
    }
}

/* Scroll polish effects */
.vh-scroll-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .75s ease, transform .75s ease
}

.vh-scroll-reveal.in-view {
    opacity: 1;
    transform: none
}

.vh-card,
.vh-feature-card,
.vh-stat,
.vh-team-member,
.vh-check,
.vh-photo-main,
.vh-photo-small {
    transition: transform .35s ease, box-shadow .35s ease, filter .35s ease
}

.vh-card:hover,
.vh-feature-card:hover,
.vh-team-member:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 70px rgba(17, 48, 68, .14)
}

.vh-photo-main:hover img,
.vh-photo-small:hover img,
.vh-card:hover img {
    transform: scale(1.045)
}

.vh-photo-main img,
.vh-photo-small img,
.vh-card img {
    transition: transform 1s ease
}

.vh-btn {
    transition: transform .25s ease, box-shadow .25s ease, filter .25s ease
}

.vh-btn:hover {
    transform: translateY(-2px);
    filter: saturate(1.05)
}


/* Property detail styles moved from Blade */
.vh-property-detail-page {
    padding: 0px 0 10px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfcfd 100%)
}

.vh-property-detail-shell {
    width: min(1280px, calc(100% - 48px));
    margin: 0 auto
}

.vh-pd-banner {
    position: relative;
    min-height: 290px;
    background-size: cover;
    background-position: center;
    overflow: hidden
}

.vh-pd-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 22, 34, .58) 0%, rgba(8, 22, 34, .26) 45%, rgba(8, 22, 34, .08) 100%)
}

.vh-pd-banner-inner {
    position: relative;
    z-index: 1;
    width: min(1280px, calc(100% - 48px));
    margin: 0 auto;
    padding: 112px 0 54px;
    color: #fff
}

.vh-pd-breadcrumbs {
    font-size: 13px;
    font-weight: 700;
    opacity: .88;
    margin-bottom: 14px
}

.vh-pd-breadcrumbs a {
    opacity: .9
}

.vh-pd-banner-title {
    margin: 0;
    font-family: var(--vh-font-title);
    font-size: clamp(38px, 4.4vw, 64px);
    line-height: 1;
    color: #fff;
    font-weight: 600;
    max-width: 760px;
    text-shadow: 0 8px 30px rgba(0, 0, 0, .25)
}

.vh-pd-content-wrap {
    position: relative;
    z-index: 2
}

.vh-pd-gallery {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(320px, .88fr);
    gap: 18px;
    margin-bottom: 26px
}

.vh-pd-gallery-main,
.vh-pd-gallery-side-item {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    box-shadow: 0 18px 48px rgba(17, 48, 68, .10);
    background: #eaf1f4
}

.vh-pd-gallery-main {
    min-height: 420px
}

.vh-pd-gallery-side {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 18px
}

.vh-pd-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.vh-pd-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .92);
    color: #4f6372;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 10px 22px rgba(17, 48, 68, .10)
}

.vh-pd-badge::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #1bb8cc
}

.vh-pd-gallery-button {
    position: absolute;
    left: 18px;
    bottom: 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 14px;
    background: rgba(17, 17, 17, .58);
    border: 1px solid rgba(255, 255, 255, .24);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    backdrop-filter: blur(6px);
    cursor: pointer
}

.vh-pd-gallery-button i {
    font-size: 16px
}

.vh-pd-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 370px;
    gap: 24px;
    align-items: start
}

.vh-pd-main {
    min-width: 0
}

.vh-pd-sidebar {
    position: sticky;
    top: 90px;
    display: grid;
    gap: 16px
}

.vh-pd-title-block {
    padding: 4px 6px 8px 6px
}

.vh-pd-title {
    margin: 0 0 10px;
    font-family: var(--vh-font-title);
    font-weight: 600;
    font-size: clamp(42px, 5vw, 42px);
    line-height: .97;
    color: #163754
}

.vh-pd-price {
    color: #14a9b7;
    font-size: 28px;
    font-weight: 900;
    margin: 0 0 24px
}

.vh-pd-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 30px;
    margin: 0 0 18px;
    padding: 0;
    list-style: none
}

.vh-pd-meta li {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #5f7080;
    font-size: 16px;
    font-weight: 700
}

.vh-pd-meta i {
    color: #6482a0;
    font-size: 18px;
    width: 20px;
    text-align: center
}

.vh-pd-description {
    color: #6a7b8b;
    font-size: 16px;
    line-height: 1.8;
    max-width: 760px;
    margin: 0
}

.vh-pd-divider {
    margin: 26px 0 28px;
    height: 1px;
    background: rgba(17, 48, 68, .10)
}

.vh-pd-section-title {
    margin: 0 0 18px;
    color: #173959;
    font-size: 20px;
    font-weight: 900
}

.vh-pd-overview-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px
}

.vh-pd-overview-card {
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 92px;
    padding: 18px 20px;
    background: #fbfdff;
    border: 1px solid #e7edf2;
    border-radius: 18px;
    box-shadow: 0 6px 20px rgba(17, 48, 68, .03)
}

.vh-pd-overview-icon {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: #4579b0;
    font-size: 18px
}

.vh-pd-overview-icon.status-dot {
    color: #18b5c0;
    font-size: 16px
}

.vh-pd-overview-text small {
    display: block;
    color: #7e8ea0;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 5px
}

.vh-pd-overview-text strong {
    display: block;
    color: #183754;
    font-size: 18px;
    font-weight: 800
}

.vh-pd-about {
    margin-top: 28px
}

.vh-pd-about p {
    color: #5c6f80;
    font-size: 16px;
    line-height: 1.85;
    margin: 0 0 18px
}

.vh-pd-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px
}

.vh-pd-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 13px;
    border-radius: 12px;
    background: #f7fafc;
    border: 1px solid #e8eef3;
    color: #576c82;
    font-size: 13px;
    font-weight: 800
}

.vh-pd-chip i {
    color: #6b88a5;
    font-size: 14px
}

.vh-pd-location {
    margin-top: 30px
}

.vh-pd-location-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 16px
}

.vh-pd-location-line {
    margin: 0 0 14px;
    color: #617383;
    font-size: 15px
}

.vh-pd-open-map {
    font-size: 14px;
    font-weight: 800;
    color: #255a88
}

.vh-pd-map-card {
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid #e5edf1;
    background: #eef6f7
}

.vh-pd-map-card iframe {
    width: 100%;
    height: 250px;
    border: 0;
    display: block
}

.vh-pd-summary-strip {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    border: 1px solid #e7edf2;
    border-radius: 16px;
    overflow: hidden;
    margin-top: 14px;
    background: #fff
}

.vh-pd-summary-item {
    padding: 18px 16px;
    border-right: 1px solid #edf1f4
}

.vh-pd-summary-item:last-child {
    border-right: 0
}

.vh-pd-summary-item strong {
    display: block;
    color: #173754;
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 6px
}

.vh-pd-summary-item span {
    color: #77889a;
    font-size: 14px;
    font-weight: 600
}

.vh-pd-side-card {
    background: #fff;
    border: 1px solid #e6edf2;
    border-radius: 20px;
    box-shadow: 0 12px 32px rgba(17, 48, 68, .05);
    overflow: hidden
}

.vh-pd-side-card-body {
    padding: 24px
}

.vh-pd-side-price {
    color: #14a9b7;
    font-size: 26px;
    font-weight: 900;
    margin: 0 0 10px
}

.vh-pd-side-list {
    margin: 0;
    padding: 0;
    list-style: none
}

.vh-pd-side-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 0;
    border-bottom: 1px solid #e9eff3;
    color: #556c80;
    font-size: 16px;
    font-weight: 700
}

.vh-pd-side-list li:last-child {
    border-bottom: 0
}

.vh-pd-side-list i {
    width: 20px;
    text-align: center;
    color: #607f98
}

.vh-pd-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 56px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 16px;
    transition: .2s ease
}

.vh-pd-btn+.vh-pd-btn {
    margin-top: 12px
}

.vh-pd-btn-primary {
    background: linear-gradient(90deg, #08a9b5, #69c9ff);
    color: #fff;
    box-shadow: 0 10px 22px rgba(0, 166, 166, .20)
}

.vh-pd-btn-outline {
    border: 2px solid #74b3df;
    color: #22456a;
    background: #fff
}

.vh-pd-help-card {
    background: #f7fbfd
}

.vh-pd-help-title {
    margin: 0 0 10px;
    color: #193a57;
    font-size: 18px;
    font-weight: 900
}

.vh-pd-help-text {
    color: #6d7d8d;
    font-size: 15px;
    line-height: 1.7;
    margin: 0 0 18px
}

.vh-pd-advisor {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: #fff;
    border: 1px solid #e8eef3;
    border-radius: 18px;
    padding: 18px;
    margin-top: 14px
}

.vh-pd-advisor-name {
    margin: 0;
    color: #1b3a59;
    font-size: 18px;
    font-weight: 900
}

.vh-pd-advisor-role {
    display: block;
    color: #6fa7dd;
    font-size: 14px;
    font-weight: 700;
    margin: 3px 0 10px
}

.vh-pd-advisor-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #4e667d;
    font-size: 15px;
    font-weight: 700;
    margin-top: 10px
}

.vh-pd-advisor-contact i {
    width: 18px;
    text-align: center;
    color: #5d83aa
}

.vh-pd-trust-list {
    display: grid;
    gap: 16px
}

.vh-pd-trust-item {
    display: flex;
    gap: 14px;
    align-items: flex-start
}

.vh-pd-trust-icon {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    border-radius: 50%;
    background: #eff7fb;
    border: 1px solid #dbe9f4;
    display: grid;
    place-items: center;
    color: #6aa2d8
}

.vh-pd-trust-item strong {
    display: block;
    color: #173855;
    font-size: 16px;
    margin-bottom: 4px
}

.vh-pd-trust-item span {
    display: block;
    color: #748596;
    font-size: 14px;
    line-height: 1.5
}

.vh-gallery-modal {
    position: fixed;
    inset: 0;
    background: rgba(4, 12, 18, .88);
    z-index: 120;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 30px
}

.vh-gallery-modal.open {
    display: flex
}

.vh-gallery-modal-dialog {
    width: min(1120px, 100%);
    max-height: 92vh;
    background: #0d1822;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .45)
}

.vh-gallery-modal-main {
    position: relative;
    background: #0d1822;
    height: min(70vh, 760px);
    display: flex;
    align-items: center;
    justify-content: center
}

.vh-gallery-modal-main img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain
}

.vh-gallery-modal-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 18px;
    color: #fff
}

.vh-gallery-modal-title {
    font-weight: 800
}

.vh-gallery-modal-close {
    border: 0;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer
}

.vh-gallery-modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 0;
    background: rgba(255, 255, 255, .14);
    color: #fff;
    font-size: 20px;
    cursor: pointer
}

.vh-gallery-modal-prev {
    left: 18px
}

.vh-gallery-modal-next {
    right: 18px
}

.vh-gallery-modal-thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(86px, 1fr));
    gap: 10px;
    padding: 14px 18px 18px;
    background: #0f1d29
}

.vh-gallery-thumb {
    height: 72px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    opacity: .76
}

.vh-gallery-thumb.active {
    border-color: #6ad2ff;
    opacity: 1
}

.vh-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

@media (max-width:1200px) {
    .vh-pd-layout {
        grid-template-columns: minmax(0, 1fr) 340px
    }
}

@media (max-width:1024px) {

    .vh-pd-gallery,
    .vh-pd-layout {
        grid-template-columns: 1fr
    }

    .vh-pd-sidebar {
        position: static
    }

    .vh-pd-banner {
        min-height: 240px
    }

    .vh-pd-content-wrap {
        margin-top: -40px
    }
}

@media (max-width:768px) {

    .vh-property-detail-shell,
    .vh-pd-banner-inner {
        width: min(100% - 24px, 1280px)
    }

    .vh-pd-gallery-side {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: none
    }

    .vh-pd-gallery-main {
        min-height: 300px
    }

    .vh-pd-title {
        font-size: 42px
    }

    .vh-pd-overview-grid {
        grid-template-columns: 1fr
    }

    .vh-pd-summary-strip {
        grid-template-columns: 1fr 1fr
    }

    .vh-gallery-modal {
        padding: 16px
    }

    .vh-gallery-modal-main {
        height: 52vh
    }
}

@media (max-width:560px) {
    .vh-pd-gallery-side {
        grid-template-columns: 1fr
    }

    .vh-pd-summary-strip {
        grid-template-columns: 1fr
    }

    .vh-pd-summary-item {
        border-right: 0;
        border-bottom: 1px solid #edf1f4
    }

    .vh-pd-summary-item:last-child {
        border-bottom: 0
    }

    .vh-pd-meta {
        gap: 14px
    }

    .vh-pd-meta li {
        width: 100%
    }

    .vh-pd-banner-inner {
        padding: 104px 0 42px
    }

    .vh-pd-location-head {
        flex-direction: column;
        align-items: flex-start
    }
}

/* Demirağ front-end polish, filters, MapLibre pins and 3D cards */
.vh-filter-clean {
    display: grid;
    grid-template-columns: repeat(4, minmax(160px, 1fr));
    gap: 18px;
    padding: 30px;
    margin-top: 28px;
    border: 1px solid rgba(17, 48, 68, .08);
    border-radius: 34px;
    background: linear-gradient(145deg, rgba(255, 255, 255, .98), rgba(244, 250, 249, .92));
    box-shadow: 0 30px 70px rgba(17, 48, 68, .10), inset 0 1px 0 rgba(255, 255, 255, .8);
    transform-style: preserve-3d;
}

.vh-filter-clean input,
.vh-filter-clean select {
    width: 100%;
    height: 58px;
    border: 1px solid rgba(17, 48, 68, .13);
    border-radius: 999px;
    background: #fff;
    padding: 0 24px;
    font: inherit;
    font-weight: 700;
    color: var(--vh-ink);
    outline: none;
    transition: .22s ease;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8);
}

.vh-filter-clean input:focus,
.vh-filter-clean select:focus {
    border-color: rgba(0, 166, 166, .55);
    box-shadow: 0 0 0 5px rgba(0, 166, 166, .10)
}

.vh-filter-clean .vh-btn {
    height: 58px;
    justify-content: center;
    padding-inline: 26px
}

.vh-project-filter {
    grid-template-columns: 1.4fr repeat(3, minmax(160px, 1fr)) auto auto
}

.vh-map-filter {
    width: 100%;
    height: 520px;
    margin-top: 28px;
    border-radius: 32px;
    overflow: hidden;
    border: 1px solid rgba(17, 48, 68, .10);
    background: #eef5f7;
    position: relative;
    isolation: isolate
}

.vh-map-filter-3d {
    box-shadow: 0 34px 80px rgba(17, 48, 68, .14), 0 4px 0 rgba(255, 255, 255, .85) inset;
    transform: perspective(1200px) rotateX(.6deg);
}

.vh-map-filter-small {
    height: 360px;
    margin-top: 10px;
    border-radius: 22px;
    box-shadow: 0 18px 44px rgba(17, 48, 68, .08)
}

.vh-map-canvas {
    width: 100%;
    height: 100%;
    min-height: inherit;
    position: relative;
    z-index: 1
}

.maplibregl-canvas {
    outline: none
}

.maplibregl-popup {
    z-index: 20
}

.vh-map-marker {
    width: 52px;
    height: 62px;
    display: grid;
    place-items: center;
    text-decoration: none;
    filter: drop-shadow(0 16px 18px rgba(10, 26, 36, .28));
    transition: .2s ease;
    cursor: pointer
}

.vh-map-marker:hover {
    transform: translateY(-5px) scale(1.04)
}

.vh-map-marker-dot {
    width: 48px;
    height: 48px;
    border-radius: 18px 18px 18px 4px;
    background: linear-gradient(135deg, #0aa6ad, #73d2ff);
    transform: rotate(-45deg);
    display: grid;
    place-items: center;
    border: 4px solid #fff;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .28)
}

.vh-map-marker-dot i {
    transform: rotate(45deg);
    color: #fff;
    font-size: 18px
}

.vh-map-marker-project .vh-map-marker-dot {
    background: linear-gradient(135deg, #163754, #13b2bd)
}

.vh-map-popup {
    min-width: 230px;
    font-family: inherit
}

.vh-map-popup-title {
    font-size: 15px;
    font-weight: 900;
    color: #111;
    margin-bottom: 6px
}

.vh-map-popup-location {
    font-size: 13px;
    color: #66717b;
    margin-bottom: 6px
}

.vh-map-popup-price {
    font-size: 14px;
    font-weight: 900;
    color: #0aa6ad;
    margin-bottom: 10px
}

.vh-map-popup-link {
    display: inline-flex;
    padding: 9px 13px;
    border-radius: 999px;
    background: #111;
    color: #fff !important;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none
}

.vh-card-3d {
    position: relative;
    transform-style: preserve-3d;
    transition: transform .28s ease, box-shadow .28s ease
}

.vh-card-3d:hover {
    transform: translateY(-8px) perspective(900px) rotateX(2deg);
    box-shadow: 0 34px 80px rgba(17, 48, 68, .16)
}

.vh-side-3d {
    transform-style: preserve-3d;
    box-shadow: 0 30px 80px rgba(17, 48, 68, .11) !important
}

.vh-project-content {
    margin-top: 28px
}

.vh-project-gallery {
    margin-bottom: 34px
}

.vh-project-summary-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr))
}

.vh-project-detail .vh-pd-layout {
    align-items: start
}

@media(max-width:1100px) {

    .vh-filter-clean,
    .vh-project-filter {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }

    .vh-project-filter input {
        grid-column: 1/-1
    }
}

@media(max-width:720px) {

    .vh-filter-clean,
    .vh-project-filter {
        grid-template-columns: 1fr;
        padding: 20px;
        border-radius: 24px
    }

    .vh-map-filter {
        height: 390px;
        border-radius: 22px
    }

    .vh-map-filter-small {
        height: 300px
    }

    .vh-project-summary-strip {
        grid-template-columns: 1fr 1fr
    }

    .vh-map-marker {
        width: 46px;
        height: 56px
    }

    .vh-map-marker-dot {
        width: 42px;
        height: 42px
    }
}

.vh-blog-category-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 28px
}

.vh-blog-category-bar a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(15, 23, 42, .12);
    background: #fff;
    border-radius: 999px;
    padding: 12px 18px;
    color: #13233a;
    text-decoration: none;
    font-weight: 800;
    box-shadow: 0 12px 28px rgba(15, 23, 42, .06);
    transition: .22s ease
}

.vh-blog-category-bar a:hover,
.vh-blog-category-bar a.active {
    transform: translateY(-2px);
    background: #10233f;
    color: #fff;
    border-color: #10233f;
    box-shadow: 0 18px 40px rgba(16, 35, 63, .18)
}


.vh-whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, #25D366, #1ebe5d);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 15px 35px rgba(37, 211, 102, .35);
    transition: all .25s ease;
    backdrop-filter: blur(10px);
}

.vh-whatsapp-float:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 20px 40px rgba(37, 211, 102, .45);
    color: #fff;
}

.vh-whatsapp-float i {
    font-size: 26px;
}

.vh-whatsapp-float span {
    font-size: 15px;
    line-height: 1;
}

@media(max-width:768px) {
    .vh-whatsapp-float {
        width: 58px;
        height: 58px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }

    .vh-whatsapp-float span {
        display: none;
    }

    .vh-whatsapp-float i {
        font-size: 30px;
    }
}

/* Demirağ final fixes: visible interactive map markers + controlled detail gallery ratios */
.maplibregl-marker .vh-map-marker,
.vh-map-marker {
    appearance: none;
    -webkit-appearance: none;
    border: 0;
    background: transparent;
    padding: 0;
    margin: 0;
    z-index: 25;
}

.vh-map-marker:focus-visible {
    outline: 3px solid rgba(13, 183, 196, .35);
    outline-offset: 5px;
    border-radius: 18px;
}

.maplibregl-popup-content {
    border-radius: 18px;
    padding: 16px 16px 14px;
    box-shadow: 0 22px 56px rgba(12, 32, 46, .22);
    border: 1px solid rgba(17, 48, 68, .08);
}

.maplibregl-popup-close-button {
    font-size: 20px;
    right: 8px;
    top: 6px;
    color: #687789;
}

.vh-pd-gallery {
    align-items: stretch;
    min-height: 0;
}

.vh-pd-gallery-main,
.vh-pd-gallery-side {
    height: clamp(480px, 62vh, 720px);
    max-height: 720px;
}

.vh-pd-gallery-main {
    min-height: 0;
}

.vh-pd-gallery-side-item {
    min-height: 0;
}

.vh-pd-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media(max-width:1024px) {

    .vh-pd-gallery-main,
    .vh-pd-gallery-side {
        height: auto;
        max-height: none;
    }

    .vh-pd-gallery-main {
        aspect-ratio: 16/11;
    }

    .vh-pd-gallery-side {
        display: grid;
    }

    .vh-pd-gallery-side-item {
        aspect-ratio: 16/10;
    }
}

@media(max-width:560px) {

    .vh-pd-gallery-main,
    .vh-pd-gallery-side-item {
        aspect-ratio: 4/3;
    }
}

/* Property detail: gallery counter, amenities and video tour */
.vh-pd-gallery-side-item {
    cursor: pointer
}

.vh-pd-gallery-more {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: grid;
    place-items: center;
    background: rgba(6, 18, 29, .48);
    color: #fff;
    font-size: clamp(28px, 4vw, 52px);
    font-weight: 900;
    letter-spacing: .02em;
    text-shadow: 0 8px 26px rgba(0, 0, 0, .34);
    backdrop-filter: blur(2px)
}

.vh-pd-amenities {
    padding-top: 4px
}

.vh-pd-video {
    margin-top: 30px
}

.vh-pd-video-card {
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid #e5edf1;
    background: #0d1822;
    box-shadow: 0 18px 48px rgba(17, 48, 68, .08)
}

.vh-pd-video-card iframe,
.vh-pd-video-card video {
    width: 100%;
    aspect-ratio: 16/9;
    min-height: 320px;
    border: 0;
    display: block;
    background: #0d1822
}

.vh-pd-video-card video {
    height: auto;
    object-fit: contain
}

@media(max-width:768px) {

    .vh-pd-video-card iframe,
    .vh-pd-video-card video {
        min-height: 220px
    }
}

/* Property detail gallery and rich content fixes */
.vh-pd-gallery-main-trigger {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    padding: 0;
    border: 0;
    margin: 0;
    background: transparent;
    cursor: pointer;
    appearance: none;
}

.vh-pd-gallery-main-trigger img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.vh-pd-gallery-side-item {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    margin: 0;
    text-align: inherit;
    appearance: none;
    cursor: pointer;
}

.vh-pd-gallery-button {
    z-index: 4;
}

.vh-gallery-thumb {
    padding: 0;
    margin: 0;
    background: transparent;
    appearance: none;
}

.vh-pd-rich-content {
    color: #5c6f80;
    font-size: 16px;
    line-height: 1.85;
    overflow-x: auto;
}

.vh-pd-rich-content> :first-child {
    margin-top: 0;
}

.vh-pd-rich-content> :last-child {
    margin-bottom: 0;
}

.vh-pd-rich-content p,
.vh-pd-rich-content div {
    color: #5c6f80;
    font-size: 16px;
    line-height: 1.85;
}

.vh-pd-rich-content p {
    margin: 0 0 18px;
}

.vh-pd-rich-content h1,
.vh-pd-rich-content h2,
.vh-pd-rich-content h3,
.vh-pd-rich-content h4 {
    color: #173959;
    line-height: 1.25;
    margin: 24px 0 12px;
}

.vh-pd-rich-content ul,
.vh-pd-rich-content ol {
    margin: 0 0 18px 22px;
    padding: 0;
}

.vh-pd-rich-content li {
    margin: 6px 0;
}

.vh-pd-rich-content table {
    width: 100%;
    min-width: 560px;
    border-collapse: separate;
    border-spacing: 0;
    margin: 20px 0;
    background: #fff;
    border: 1px solid #e5edf1;
    border-radius: 16px;
    overflow: hidden;
}

.vh-pd-rich-content th,
.vh-pd-rich-content td {
    padding: 13px 15px;
    border-right: 1px solid #e5edf1;
    border-bottom: 1px solid #e5edf1;
    text-align: left;
    vertical-align: top;
}

.vh-pd-rich-content th {
    color: #173959;
    background: #f4f9fb;
    font-weight: 900;
}

.vh-pd-rich-content tr:last-child td {
    border-bottom: 0;
}

.vh-pd-rich-content th:last-child,
.vh-pd-rich-content td:last-child {
    border-right: 0;
}

.vh-pd-rich-content img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
}

.vh-pd-rich-content iframe {
    max-width: 100%;
}