:root {
    --admin-bg: #061c24
}

.admin-body {
    background: #071b23;
    color: #eaf5f7;
    min-height: 100vh
}

.login-shell {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px;
    background: radial-gradient(circle at 80% 15%, rgba(20, 184, 207, .18), transparent 32%), #061a22
}

.login-card {
    width: min(460px, 100%);
    padding: 42px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 28px;
    background: rgba(255, 255, 255, .07);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .35)
}

.login-card img {
    width: 180px;
    height: 70px;
    object-fit: cover;
    margin-bottom: 24px
}

.login-card h1 {
    color: #fff;
    font-size: 2.1rem
}

.login-card p,
.login-card a {
    color: #b9d1d7
}

.admin-form {
    display: grid;
    gap: 18px
}

.admin-form label {
    display: grid;
    gap: 8px;
    font-weight: 700;
    color: #cfe2e6
}

.admin-form input,
.admin-form select,
.admin-form textarea,
.admin-table select {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 12px;
    background: #0c2731;
    color: #fff;
    padding: 13px 14px;
    font: inherit
}

.admin-top {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 3vw;
    background: rgba(4, 22, 29, .94);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    backdrop-filter: blur(16px)
}

.admin-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    text-decoration: none;
    font-weight: 800
}

.admin-brand img {
    width: 110px;
    height: 45px;
    object-fit: cover
}

.admin-top nav {
    display: flex;
    gap: 9px;
    flex-wrap: wrap
}

.admin-top nav a {
    color: #d4e5e8;
    text-decoration: none;
    padding: 9px 12px;
    border-radius: 9px
}

.admin-top nav a:hover {
    background: rgba(255, 255, 255, .08)
}

.admin-main {
    width: min(1450px, 94%);
    margin: auto;
    padding: 45px 0 80px
}

.admin-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    margin-bottom: 30px
}

.admin-heading h1 {
    color: #fff
}

.admin-heading p {
    color: #a9c4ca
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 28px
}

.admin-stats article {
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 20px;
    background: rgba(255, 255, 255, .055)
}

.admin-stats strong {
    display: block;
    color: #fff;
    font-size: 2.2rem
}

.admin-stats span {
    color: #9dbac1
}

.admin-panel {
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 22px;
    background: rgba(255, 255, 255, .045);
    overflow: hidden
}

.property-editor {
    padding: 28px
}

.property-editor section {
    padding: 25px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .09)
}

.property-editor section:first-of-type {
    padding-top: 0
}

.property-editor h2 {
    color: #fff;
    font-size: 1.3rem
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 17px
}

.form-grid.specs {
    grid-template-columns: repeat(4, 1fr)
}

.form-grid .wide {
    grid-column: 1/-1
}

.checkbox {
    grid-template-columns: auto 1fr !important;
    align-items: center
}

.checkbox input {
    width: auto
}

.upload-zone {
    padding: 30px !important;
    border: 1px dashed #19b7cf;
    border-radius: 16px;
    text-align: center;
    background: rgba(25, 183, 207, .06)
}

.upload-zone input {
    margin-top: 10px
}

.image-manager {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    margin-top: 18px
}

.image-manager figure {
    margin: 0;
    position: relative
}

.image-manager img {
    width: 100%;
    aspect-ratio: 1.3;
    object-fit: cover;
    border-radius: 12px
}

.image-manager a {
    position: absolute;
    bottom: 7px;
    right: 7px;
    background: #8d2530;
    color: #fff;
    padding: 5px 8px;
    border-radius: 7px;
    text-decoration: none;
    font-size: .75rem
}

.editor-actions {
    display: flex;
    gap: 12px;
    padding-top: 26px
}

.notice {
    padding: 14px 16px;
    border-radius: 12px;
    margin: 0 0 18px
}

.notice.error {
    background: #5e2429;
    color: #ffdfe2
}

.notice.success {
    background: #154c42;
    color: #d8fff5
}

.admin-table-wrap {
    overflow: auto
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 850px
}

.admin-table th,
.admin-table td {
    text-align: left;
    padding: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    vertical-align: middle
}

.admin-table th {
    color: #8fb3bc;
    font-size: .78rem;
    text-transform: uppercase
}

.admin-table td {
    color: #dcecef
}

.admin-table small {
    display: block;
    color: #8da9b0;
    margin-top: 4px
}

.table-property {
    display: flex;
    align-items: center;
    gap: 12px
}

.table-property img,
.table-placeholder {
    width: 64px;
    height: 48px;
    object-fit: cover;
    border-radius: 9px
}

.table-placeholder {
    display: grid;
    place-items: center;
    background: #123945;
    color: #1fc1da;
    font-weight: 900
}

.table-action {
    color: #44d5ea
}

.status {
    padding: 6px 9px;
    border-radius: 999px;
    background: #243d46;
    text-transform: capitalize;
    font-size: .78rem
}

.status-active {
    background: #175144;
    color: #cffff5
}

.status-draft {
    background: #4b4430;
    color: #fff3c0
}

.status-sold,
.status-rented {
    background: #3a3157;
    color: #e9ddff
}

.listing-page {
    background: #f5f9fa
}

.listing-hero {
    padding: 180px 0 110px;
    color: #fff;
    background: linear-gradient(90deg, rgba(1, 20, 27, .9), rgba(2, 35, 45, .45)), url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?auto=format&fit=crop&w=2400&q=88') center/cover
}

.listing-hero h1 {
    color: #fff
}

.listing-hero h1 span {
    color: var(--cyan)
}

.listing-hero p {
    color: #d5e8ec;
    font-size: 1.1rem
}

.listing-filter-shell {
    position: relative;
    margin-top: -50px;
    z-index: 4
}

.listing-filter {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 12px;
    padding: 22px;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 25px 70px rgba(3, 39, 51, .16)
}

.listing-filter label {
    display: grid;
    gap: 6px;
    font-size: .72rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #668089
}

.listing-filter input,
.listing-filter select {
    height: 48px;
    border: 1px solid #dbe5e8;
    border-radius: 11px;
    padding: 0 12px;
    font: inherit;
    color: #17343d;
    background: #f9fbfc
}

.filter-search {
    grid-column: span 2
}

.filter-clear {
    align-self: center;
    color: #537079;
    text-align: center
}

.listing-results-head {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px
}

.live-property-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px
}

.live-property-card {
    overflow: hidden;
    border-radius: 22px;
    background: #fff;
    border: 1px solid #e3ecee;
    box-shadow: 0 20px 50px rgba(3, 39, 51, .09);
    transition: .25s
}

.live-property-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 28px 65px rgba(3, 39, 51, .14)
}

.live-property-image {
    display: block;
    position: relative
}

.live-property-image img {
    width: 100%;
    aspect-ratio: 1.38;
    object-fit: cover
}

.listing-badge,
.listing-state {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 7px 10px;
    border-radius: 999px;
    background: var(--cyan);
    color: #02232d;
    font-size: .72rem;
    font-weight: 900;
    text-transform: uppercase
}

.listing-state {
    left: auto;
    right: 14px;
    background: #fff
}

.live-property-body {
    padding: 22px
}

.property-ref {
    color: var(--cyan2);
    font-size: .75rem;
    font-weight: 900;
    text-transform: uppercase
}

.live-property-body h3 {
    margin: 8px 0
}

.live-property-body h3 a {
    color: var(--ink);
    text-decoration: none
}

.property-location {
    color: #748991
}

.property-quick-specs {
    display: flex;
    gap: 16px;
    padding: 14px 0;
    border-top: 1px solid #e7edef;
    border-bottom: 1px solid #e7edef;
    color: #70858c;
    font-size: .83rem
}

.property-card-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 17px
}

.property-card-foot strong {
    color: var(--ink);
    font-size: 1.2rem
}

.property-card-foot a {
    color: var(--cyan2);
    font-weight: 800;
    text-decoration: none
}

.empty-listings {
    text-align: center;
    padding: 70px 25px;
    border: 1px dashed #bfd0d4;
    border-radius: 24px;
    background: #fff
}

.property-detail-page {
    background: #f7fafb
}

.property-detail-top {
    padding: 150px 0 45px;
    background: #062733;
    color: #fff
}

.back-link {
    color: #7addec
}

.property-detail-title {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
    margin-top: 28px
}

.property-detail-title h1 {
    color: #fff;
    margin: 7px 0
}

.property-detail-title p {
    color: #bfd5da
}

.detail-price {
    text-align: right
}

.detail-price span {
    display: block;
    color: #91b4bc
}

.detail-price strong {
    display: block;
    color: #fff;
    font-size: 2rem
}

.property-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 230px 230px;
    gap: 10px;
    padding-top: 30px
}

.gallery-item {
    padding: 0;
    border: 0;
    overflow: hidden;
    cursor: pointer;
    border-radius: 14px
}

.gallery-item:first-child {
    grid-row: 1/3
}

.gallery-item img,
.gallery-fallback {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.property-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 45px;
    align-items: start
}

.detail-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    padding: 20px;
    border-radius: 19px;
    background: #fff;
    border: 1px solid #e1eaec
}

.detail-specs div {
    min-width: 120px;
    flex: 1;
    text-align: center
}

.detail-specs i {
    display: block;
    color: var(--cyan2);
    font-style: normal
}

.detail-specs strong {
    font-size: 1.35rem;
    color: var(--ink)
}

.detail-specs span {
    display: block;
    color: #71868d;
    font-size: .78rem
}

.property-copy,
.property-features,
.property-costs {
    padding: 32px 0;
    border-bottom: 1px solid #dae5e8
}

.property-copy p {
    font-size: 1.03rem;
    line-height: 1.85;
    color: #526b73
}

.property-features>div {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px
}

.property-features span {
    padding: 13px;
    border-radius: 11px;
    background: #eaf7f9;
    color: #21444d
}

.property-costs p {
    display: flex;
    justify-content: space-between
}

.property-enquiry-card {
    position: sticky;
    top: 110px;
    padding: 26px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid #dfeaec;
    box-shadow: 0 25px 60px rgba(3, 39, 51, .12)
}

.agent-mini {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-bottom: 18px
}

.agent-mini img {
    width: 75px;
    height: 75px;
    object-fit: cover;
    border-radius: 50%
}

.agent-mini span,
.agent-mini a {
    display: block;
    color: #70878e;
    font-size: .8rem
}

.agent-mini strong {
    display: block;
    color: var(--ink)
}

.full {
    width: 100%;
    justify-content: center
}

.public-enquiry-form {
    display: grid;
    gap: 12px
}

.public-enquiry-form label {
    display: grid;
    gap: 6px;
    font-size: .8rem;
    font-weight: 800;
    color: #31505a
}

.public-enquiry-form input,
.public-enquiry-form textarea {
    border: 1px solid #d7e3e6;
    border-radius: 10px;
    padding: 11px;
    font: inherit
}

@media(max-width:900px) {
    .admin-top {
        align-items: flex-start;
        flex-direction: column
    }

    .admin-stats {
        grid-template-columns: 1fr 1fr
    }

    .form-grid,
    .form-grid.specs {
        grid-template-columns: 1fr
    }

    .listing-filter {
        grid-template-columns: 1fr 1fr
    }

    .filter-search {
        grid-column: 1/-1
    }

    .live-property-grid {
        grid-template-columns: 1fr 1fr
    }

    .property-detail-grid {
        grid-template-columns: 1fr
    }

    .property-enquiry-card {
        position: static
    }

    .property-gallery {
        grid-template-rows: 180px 180px
    }
}

@media(max-width:620px) {

    .admin-heading,
    .property-detail-title {
        align-items: flex-start;
        flex-direction: column
    }

    .admin-stats,
    .live-property-grid,
    .listing-filter {
        grid-template-columns: 1fr
    }

    .filter-search {
        grid-column: auto
    }

    .image-manager {
        grid-template-columns: 1fr 1fr
    }

    .property-gallery {
        display: flex;
        overflow: auto
    }

    .gallery-item {
        min-width: 88%;
        height: 280px
    }

    .detail-price {
        text-align: left
    }

    .property-features>div {
        grid-template-columns: 1fr
    }
}

/* Simple listing manager actions */
.table-actions {
    display: flex;
    align-items: center;
    gap: .55rem;
    flex-wrap: wrap
}

.table-actions form {
    margin: 0
}

.table-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 8px;
    padding: .48rem .7rem;
    background: transparent;
    color: inherit;
    font: inherit;
    cursor: pointer;
    text-decoration: none
}

.table-action:hover {
    border-color: var(--accent, #12b8c4)
}

.table-action.danger {
    color: #ff9c9c;
    border-color: rgba(255, 90, 90, .32)
}

.table-action.danger:hover {
    background: rgba(255, 70, 70, .1);
    border-color: #ff7777
}

.danger-zone {
    margin-top: 1.25rem;
    padding: 1.15rem 1.25rem;
    border: 1px solid rgba(255, 90, 90, .3);
    border-radius: 14px;
    background: rgba(120, 15, 15, .08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem
}

.danger-zone p {
    margin: .25rem 0 0;
    color: var(--muted, #9da9ae)
}

.btn-danger {
    background: #a92e2e !important;
    border-color: #c74a4a !important;
    color: #fff !important
}

@media(max-width:680px) {
    .danger-zone {
        align-items: flex-start;
        flex-direction: column
    }

    .admin-table th:nth-child(2),
    .admin-table td:nth-child(2),
    .admin-table th:nth-child(5),
    .admin-table td:nth-child(5) {
        display: none
    }
}

/* Property image manager controls */
.image-manager figure {
    border: 2px solid transparent;
    border-radius: 14px;
    padding: 5px;
    background: rgba(255, 255, 255, .03)
}

.image-manager figure.is-primary {
    border-color: #19b7cf
}

.primary-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #19b7cf;
    color: #02232d;
    padding: 5px 8px;
    border-radius: 999px;
    font-size: .7rem;
    font-weight: 900
}

.image-actions {
    position: static;
    margin-top: 7px
}

.image-actions form {
    display: flex;
    gap: 5px;
    flex-wrap: wrap
}

.image-actions button {
    border: 1px solid rgba(255, 255, 255, .18);
    background: #173946;
    color: #fff;
    border-radius: 7px;
    padding: 6px 8px;
    cursor: pointer;
    font: inherit;
    font-size: .72rem
}

.image-actions button.danger {
    background: #8d2530
}

.image-manager figure>a {
    display: none
}

.detail-specs i svg {
    width: 24px;
    height: 24px;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round
}

/* Property detail icon and price refinements */
.detail-specs i {
    width: 46px;
    height: 46px;
    margin: 0 auto 10px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(24, 184, 207, .10);
    color: var(--cyan2);
}

.detail-specs i svg {
    width: 25px;
    height: 25px;
    display: block;
    fill: none !important;
    stroke: currentColor !important;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.detail-price {
    min-width: max-content;
}

.detail-price strong {
    white-space: nowrap;
    word-break: normal;
    overflow-wrap: normal;
}

@media(max-width:620px) {
    .detail-price {
        min-width: 0
    }

    .detail-price strong {
        white-space: nowrap;
        font-size: 1.75rem
    }
}
/* Property sidebar layout */
.property-sidebar {
    display: grid;
    gap: 22px;
    min-width: 0;
}

.property-sidebar .property-enquiry-card {
    position: sticky;
    top: 110px;
}

/* Property gallery popup */
body.lightbox-open {
    overflow: hidden;
}

.gallery-item {
    appearance: none;
    background: transparent;
}

.gallery-item:focus-visible {
    outline: 3px solid #19b7cf;
    outline-offset: 3px;
}

.property-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 72px 96px;
    background: rgba(1, 15, 21, .95);
    backdrop-filter: blur(14px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .24s ease, visibility .24s ease;
}

.property-lightbox.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.lightbox-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(1440px, 100%);
    height: min(820px, 84vh);
    margin: 0;
}

.lightbox-content img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 16px;
    box-shadow: 0 35px 100px rgba(0, 0, 0, .62);
}

.lightbox-content figcaption {
    position: absolute;
    left: 50%;
    bottom: -48px;
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: calc(100vw - 180px);
    transform: translateX(-50%);
    color: #dcecef;
    font-size: .86rem;
    white-space: nowrap;
}

#lightboxCaption {
    overflow: hidden;
    text-overflow: ellipsis;
}

#lightboxCounter {
    flex: 0 0 auto;
    padding: 7px 11px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    font-weight: 800;
}

.lightbox-close,
.lightbox-nav {
    position: absolute;
    z-index: 3;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    color: #fff;
    cursor: pointer;
    transition: background .2s ease, color .2s ease, transform .2s ease;
}

.lightbox-close:hover,
.lightbox-nav:hover {
    background: #19b7cf;
    color: #02232d;
}

.lightbox-close {
    top: 22px;
    right: 26px;
    width: 50px;
    height: 50px;
    font-size: 2rem;
    line-height: 1;
}

.lightbox-close:hover {
    transform: rotate(90deg);
}

.lightbox-nav {
    top: 50%;
    width: 56px;
    height: 56px;
    font-size: 2.3rem;
    line-height: 1;
    transform: translateY(-50%);
}

.lightbox-nav:hover {
    transform: translateY(-50%) scale(1.05);
}

.lightbox-prev {
    left: 24px;
}

.lightbox-next {
    right: 24px;
}

/* Bond calculator */
.bond-calculator {
    padding: 26px;
    border: 1px solid #dfeaec;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 25px 60px rgba(3, 39, 51, .10);
}

.bond-calculator-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
}

.bond-calculator-heading h2 {
    margin: 5px 0 0;
    color: var(--ink);
    font-size: 1.55rem;
}

.bond-calculator-icon {
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: rgba(25, 183, 207, .12);
    color: var(--cyan2);
    font-size: 1.15rem;
    font-weight: 900;
}

.bond-calculator-form {
    display: grid;
    gap: 15px;
}

.bond-calculator-form label {
    display: grid;
    gap: 7px;
    color: #31505a;
    font-size: .79rem;
    font-weight: 800;
}

.bond-calculator-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.money-input,
.suffix-input {
    position: relative;
}

.money-input > span,
.suffix-input > span {
    position: absolute;
    top: 50%;
    z-index: 1;
    transform: translateY(-50%);
    color: #668089;
    font-weight: 800;
    pointer-events: none;
}

.money-input > span {
    left: 13px;
}

.suffix-input > span {
    right: 13px;
}

.bond-calculator input,
.bond-calculator select {
    width: 100%;
    height: 48px;
    border: 1px solid #d7e3e6;
    border-radius: 11px;
    background: #f8fbfc;
    color: #17343d;
    padding: 0 13px;
    font: inherit;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.bond-calculator .money-input input {
    padding-left: 32px;
}

.bond-calculator .suffix-input input {
    padding-right: 34px;
}

.bond-calculator input:focus,
.bond-calculator select:focus {
    outline: none;
    border-color: #19b7cf;
    box-shadow: 0 0 0 4px rgba(25, 183, 207, .12);
}

.bond-result {
    margin-top: 20px;
    padding: 20px;
    border-radius: 17px;
    background: linear-gradient(135deg, #062733, #0b3b49);
    color: #fff;
}

.bond-result span,
.bond-result small {
    display: block;
    color: #bcd6dc;
}

.bond-result span {
    font-size: .77rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.bond-result strong {
    display: block;
    margin: 7px 0;
    color: #fff;
    font-size: clamp(1.8rem, 3vw, 2.35rem);
    line-height: 1.1;
    white-space: nowrap;
}

.bond-result small {
    font-size: .79rem;
}

.bond-calculator-note {
    margin: 14px 0 0;
    color: #789097;
    font-size: .72rem;
    line-height: 1.55;
}

@media(max-width:900px) {
    .property-sidebar .property-enquiry-card {
        position: static;
    }
}

@media(max-width:700px) {
    .property-lightbox {
        padding: 68px 12px 76px;
    }

    .lightbox-content {
        height: 74vh;
    }

    .lightbox-content figcaption {
        bottom: -44px;
        max-width: calc(100vw - 32px);
    }

    #lightboxCaption {
        display: none;
    }

    .lightbox-close {
        top: 13px;
        right: 13px;
        width: 46px;
        height: 46px;
    }

    .lightbox-nav {
        width: 44px;
        height: 44px;
        font-size: 1.8rem;
        background: rgba(2, 35, 45, .72);
    }

    .lightbox-prev {
        left: 7px;
    }

    .lightbox-next {
        right: 7px;
    }
}

@media(max-width:480px) {
    .bond-calculator-row {
        grid-template-columns: 1fr;
    }

    .bond-calculator,
    .property-enquiry-card {
        padding: 21px;
    }
}

/* Protect property images */
.property-gallery img,
.live-property-image img,
.property-lightbox img {
    -webkit-user-drag: none;
    user-select: none;
    -webkit-user-select: none;
}