:root {
    --mhb-green: #4c9a19;
    --mhb-green-dark: #3f8115;
    --mhb-cream: #f7f2ed;
    --mhb-text: #222222;
    --mhb-body: #4a4a4a;
    --mhb-muted: #929292;
    --mhb-line: #d8d8d8;
    --mhb-success-bg: #e6f2e8;
    --mhb-success-text: #245f17;
}

.mhb-rentals,
.mhb-single {
    color: var(--mhb-body);
    font-family: inherit;
    font-size: 14px;
    line-height: 1.5;
}

.mhb-rentals {
    width: 100%;
    margin: 0 auto;
    padding-bottom: 56px;
}

.mhb-rentals-heading {
    margin: 0 0 32px;
    border-radius: 30px;
    background: var(--mhb-cream);
    padding: 16px 28px;
}

.mhb-rentals-heading span {
    display: flex;
    min-height: 64px;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    background: var(--mhb-green);
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
}

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

.mhb-card {
    min-width: 0;
    margin: 0;
    overflow: hidden;
    border-radius: 30px;
    background: var(--mhb-cream);
    transition: box-shadow 180ms ease;
}

.mhb-card:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, .1);
}

.mhb-card__link {
    display: grid;
    min-height: 100%;
    grid-template-rows: auto 1fr;
    gap: 16px;
    box-sizing: border-box;
    color: var(--mhb-body) !important;
    padding: 20px 20px 24px;
    text-decoration: none !important;
}

.mhb-card .image-overlay,
.mhb-rentals .image-overlay,
.mhb-card .avia-link-overlay {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

.mhb-card__media {
    display: grid;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    place-items: center;
    border-radius: 22px;
    background: #fff;
    color: var(--mhb-muted);
}

.mhb-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 220ms ease;
}

.mhb-card:hover .mhb-card__media img {
    transform: scale(1.02);
}

.mhb-card__body {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.mhb-card__status {
    margin: 0 0 8px;
    color: var(--mhb-green);
    font-size: 13px;
    font-weight: 800;
}

.mhb-card__title {
    margin: 0 0 12px;
    color: var(--mhb-green);
    font-family: 'Bubblegum Sans', cursive;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.05;
}

.mhb-card__teaser,
.mhb-card__facts {
    margin: 0 0 12px;
    color: var(--mhb-body);
}

.mhb-card__facts span {
    display: block;
}

.mhb-card__facts strong {
    color: var(--mhb-green);
}

.mhb-card__price {
    margin: auto 0 6px;
    color: var(--mhb-green);
    font-family: 'Bubblegum Sans', cursive;
    font-size: 20px;
}

.mhb-button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    border: 2px solid var(--mhb-green);
    border-radius: 4px;
    background: var(--mhb-green);
    color: #fff !important;
    font-size: 16px;
    font-weight: 800;
    line-height: 1;
    padding: 15px 24px;
    text-align: center;
    text-decoration: none !important;
    text-transform: uppercase;
    transition: background 160ms ease, border-color 160ms ease;
}

.mhb-button:hover,
.mhb-button:focus {
    border-color: var(--mhb-green-dark);
    background: var(--mhb-green-dark);
}

.mhb-card__button {
    width: 100%;
}

.mhb-empty {
    border-radius: 24px;
    background: var(--mhb-cream);
    font-size: 18px;
    font-weight: 800;
    padding: 32px;
}

.mhb-single {
    background: #fff;
    padding: 64px 0 96px;
}

.mhb-container {
    width: min(1310px, calc(100% - 120px));
    margin: 0 auto;
}

.mhb-detail-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, .9fr);
    gap: 42px;
    align-items: stretch;
    margin-bottom: 70px;
}

.mhb-hero-image,
.mhb-hero-placeholder {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border: 0;
    background: #f4f4f4;
    padding: 0;
}

.mhb-hero-placeholder {
    display: grid;
    place-items: center;
}

.mhb-hero-image {
    cursor: pointer;
}

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

.mhb-summary {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    gap: 28px;
    padding-top: 12px;
}

.mhb-summary__status {
    margin: 0 0 18px;
    color: var(--mhb-green);
    font-size: 16px;
    font-weight: 800;
}

.mhb-summary__title {
    margin: 0;
    color: var(--mhb-green);
    font-family: 'Bubblegum Sans', cursive;
    font-size: 42px;
    font-weight: 400;
    line-height: 1;
}

.mhb-summary__price {
    margin: 0;
    color: var(--mhb-green);
    font-family: 'Bubblegum Sans', cursive;
    font-size: 30px;
}

.mhb-summary__pricing {
    display: grid;
    gap: 10px;
}

.mhb-summary__weekend {
    color: var(--mhb-body);
    font-size: 15px;
    line-height: 1.4;
}

.mhb-summary__weekend p {
    margin: 0;
}

.mhb-summary__weekend-title,
.mhb-summary__weekend-price {
    color: var(--mhb-green);
    font-weight: 800;
}

.mhb-summary__weekend-status {
    margin-top: 4px !important;
    color: var(--mhb-muted);
    font-size: 13px;
    font-weight: 700;
}

.mhb-card__weekend {
    margin: 0 0 14px;
    color: var(--mhb-green);
    font-size: 13px;
    font-weight: 800;
}

.mhb-summary__teaser {
    margin: 0;
    color: var(--mhb-muted);
    font-weight: 700;
}

.mhb-summary__button,
.mhb-summary__unavailable {
    width: 100%;
    margin-top: auto;
}

.mhb-summary__unavailable {
    box-sizing: border-box;
    border-radius: 4px;
    background: #fff3f3;
    color: #8a2d2d;
    font-weight: 800;
    padding: 16px;
}

.mhb-primary-grid,
.mhb-equipment-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 58px;
    align-items: start;
    margin-top: 58px;
}

.mhb-equipment-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 42px 36px;
}

.mhb-section {
    margin-top: 58px;
}

.mhb-primary-grid > .mhb-section,
.mhb-equipment-grid > .mhb-section {
    margin-top: 0;
}

.mhb-section h2 {
    margin: 0 0 20px;
    color: var(--mhb-green);
    font-family: 'Bubblegum Sans', cursive;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.15;
}

.mhb-spec-list,
.mhb-price-details {
    margin: 0;
}

.mhb-spec,
.mhb-price-details > div {
    display: grid;
    grid-template-columns: minmax(150px, .8fr) minmax(0, 1.2fr);
    gap: 18px;
    border-top: 1px dashed #8e8e8e;
    padding: 11px 6px;
}

.mhb-spec dt,
.mhb-price-details dt {
    color: var(--mhb-green);
    font-weight: 800;
}

.mhb-spec dd,
.mhb-price-details dd {
    margin: 0;
}

.mhb-price-include {
    margin: 0 0 10px;
    color: var(--mhb-muted);
    font-size: 13px;
    font-weight: 700;
}

.mhb-data-table__head,
.mhb-data-table__row {
    display: grid;
    grid-template-columns: minmax(0, 50%) minmax(0, 25%) minmax(0, 25%);
    gap: 4px 12px;
    align-items: center;
    padding: 8px 6px;
}

.mhb-data-table__head {
    border-bottom: 1px dashed #8e8e8e;
    color: var(--mhb-green);
    font-size: 13px;
    font-weight: 800;
    padding-top: 0;
    padding-bottom: 6px;
}

.mhb-data-table__row {
    border-top: 1px dashed #8e8e8e;
}

.mhb-price-table .mhb-data-table__head + .mhb-data-table__row,
.mhb-duration-table .mhb-data-table__head + .mhb-data-table__row {
    border-top: 0;
}

.mhb-data-table__head span:nth-child(n + 2),
.mhb-data-table__price {
    text-align: right;
}

.mhb-price-item__info strong {
    display: block;
    color: var(--mhb-body);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.mhb-price-item__info span {
    display: block;
    color: var(--mhb-muted);
    font-size: 12px;
    line-height: 1.35;
}

.mhb-price-item__info small {
    display: block;
    margin-top: 2px;
    color: var(--mhb-muted);
    font-size: 12px;
}

.mhb-data-table__price {
    color: var(--mhb-body);
    font-size: 15px;
    font-weight: 600;
}

.mhb-price-year {
    margin: 16px 0 4px;
    color: var(--mhb-green);
    font-family: 'Bubblegum Sans', cursive;
    font-size: 22px;
    font-weight: 400;
}

.mhb-price-year:first-child {
    margin-top: 0;
}

.mhb-price-details {
    margin-top: 22px;
}

.mhb-durations {
    margin-top: 28px;
}

.mhb-durations h3 {
    margin: 0 0 8px;
    color: var(--mhb-green);
    font-family: inherit;
    font-size: 16px;
    font-weight: 800;
}

.mhb-duration-table strong {
    color: var(--mhb-body);
    font-size: 14px;
    font-weight: 600;
}

.mhb-duration-table__period {
    color: var(--mhb-muted);
    font-size: 13px;
}

.mhb-durations p {
    margin: 10px 6px 0;
    color: var(--mhb-muted);
    font-size: 13px;
    font-weight: 700;
}

.mhb-check-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px 22px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.mhb-check-list li {
    position: relative;
    padding-left: 20px;
}

.mhb-check-list li::before {
    position: absolute;
    left: 0;
    color: var(--mhb-green);
    content: '✓';
    font-weight: 800;
}

.mhb-content {
    max-width: 1100px;
    color: var(--mhb-muted);
    font-size: 15px;
    line-height: 1.65;
}

.mhb-content h2,
.mhb-content h3,
.mhb-content h4 {
    color: var(--mhb-green);
}

.mhb-content > :first-child,
.mhb-legal p:first-child {
    margin-top: 0;
}

.mhb-content > :last-child,
.mhb-legal p:last-child {
    margin-bottom: 0;
}

.mhb-floorplan button,
.mhb-gallery-grid button {
    appearance: none;
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 0;
}

.mhb-floorplan button,
.mhb-floorplan img {
    display: block;
    width: 100%;
    height: auto;
}

.mhb-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.mhb-gallery-grid button {
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

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

.mhb-legal {
    border-radius: 18px;
    background: var(--mhb-cream);
    padding: 24px 28px;
}

.mhb-legal h2 {
    margin-bottom: 8px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 800;
}

.mhb-inquiry {
    max-width: 1040px;
    margin-right: auto;
    margin-left: auto;
    padding-top: 20px;
}

.mhb-inquiry > h2 {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--mhb-green);
    font-family: inherit;
    font-size: 20px;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
}

.mhb-inquiry > h2::before,
.mhb-inquiry > h2::after {
    height: 1px;
    flex: 1;
    background: var(--mhb-line);
    content: '';
}

.mhb-inquiry__intro {
    margin: 16px 0 0;
    color: var(--mhb-body);
    font-size: 15px;
    font-weight: 600;
    text-align: center;
}

.mhb-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 44px;
    margin-top: 34px;
}

.mhb-form__field,
.mhb-form__privacy {
    margin: 0;
}

.mhb-form__field label {
    display: block;
    margin-bottom: 10px;
    color: var(--mhb-text);
    font-size: 17px;
    font-weight: 800;
}

.mhb-form__field input,
.mhb-form__field select {
    width: 100%;
    height: 54px;
    box-sizing: border-box;
    border: 1px solid #c8c8c8;
    border-radius: 0;
    background: #fff;
    color: var(--mhb-text);
    font: inherit;
    padding: 12px;
}

.mhb-form__field input:focus,
.mhb-form__field select:focus {
    border-color: var(--mhb-green);
    box-shadow: 0 0 0 1px var(--mhb-green);
    outline: 0;
}

.mhb-form__field input[readonly] {
    background: #f7f2ed;
    color: var(--mhb-body);
}

.mhb-form__hint,
.mhb-quote,
.mhb-quote-error {
    grid-column: 1 / -1;
}

.mhb-form__hint {
    margin: -12px 0 0;
    color: var(--mhb-green);
    font-weight: 700;
}

.mhb-form__hint--notice {
    color: var(--mhb-text);
}

.mhb-quote {
    border-top: 1px dashed #8e8e8e;
    padding-top: 8px;
}

.mhb-quote h3 {
    margin: 0 0 16px;
    color: var(--mhb-green);
    font-family: 'Bubblegum Sans', cursive;
    font-size: 26px;
    font-weight: 400;
}

.mhb-quote__period {
    margin: 0 0 12px;
}

.mhb-quote__period strong,
.mhb-quote__period span {
    display: block;
}

.mhb-quote__period strong {
    color: var(--mhb-green);
    font-size: 16px;
    font-weight: 800;
}

.mhb-quote__list {
    margin: 0;
}

.mhb-quote__list > div {
    display: grid;
    grid-template-columns: minmax(150px, .8fr) minmax(0, 1.2fr);
    gap: 18px;
    border-top: 1px dashed #8e8e8e;
    padding: 11px 6px;
}

.mhb-quote__list dt {
    color: var(--mhb-green);
    font-weight: 800;
}

.mhb-quote__list dd {
    margin: 0;
    text-align: right;
    font-weight: 700;
}

.mhb-quote__total dt,
.mhb-quote__total dd {
    color: var(--mhb-green);
    font-size: 18px;
}

.mhb-quote__deposit dt,
.mhb-quote__deposit dd {
    color: var(--mhb-muted);
    font-weight: 600;
}

.mhb-quote__deposit small {
    display: block;
    font-size: 12px;
    font-weight: 600;
}

.mhb-quote__note {
    margin: 14px 0 0;
    color: var(--mhb-muted);
    font-size: 13px;
}

.mhb-form__privacy,
.mhb-form__submit,
.mhb-form-message {
    grid-column: 1 / -1;
}

.mhb-form__privacy {
    font-size: 13px;
}

.mhb-form__privacy a {
    color: var(--mhb-green);
}

.mhb-form__submit {
    width: 100%;
    margin-top: 8px;
    cursor: pointer;
}

.mhb-form__honeypot {
    position: absolute !important;
    left: -9999px !important;
    overflow: hidden;
    width: 1px;
    height: 1px;
}

.mhb-form-message {
    margin-bottom: 24px;
    border-radius: 4px;
    padding: 14px 18px;
    font-weight: 700;
}

.mhb-form-message--success {
    background: var(--mhb-success-bg);
    color: var(--mhb-success-text);
}

.mhb-form-message--error {
    background: #fff3f3;
    color: #8a2d2d;
}

.mhb-lightbox-open {
    overflow: hidden;
}

.mhb-lightbox {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .9);
    padding: 24px;
}

.mhb-lightbox.is-open {
    display: flex;
}

.mhb-lightbox__figure {
    max-width: min(1200px, 92vw);
    max-height: 88vh;
    margin: 0;
}

.mhb-lightbox__image {
    display: block;
    max-width: 100%;
    max-height: 82vh;
    object-fit: contain;
}

.mhb-lightbox__caption {
    margin-top: 8px;
    color: #fff;
    text-align: center;
}

.mhb-lightbox__close,
.mhb-lightbox__nav {
    position: absolute;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .5);
    border-radius: 50%;
    background: rgba(255, 255, 255, .14);
    color: #fff;
    cursor: pointer;
    font-size: 30px;
}

.mhb-lightbox__close { top: 20px; right: 20px; }
.mhb-lightbox__nav--prev { left: 20px; }
.mhb-lightbox__nav--next { right: 20px; }

@media (max-width: 1180px) {
    .mhb-rentals-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mhb-container {
        width: min(100% - 64px, 1310px);
    }

    .mhb-detail-hero {
        grid-template-columns: 1fr;
    }

    .mhb-summary {
        padding-top: 0;
    }

    .mhb-summary__button,
    .mhb-summary__unavailable {
        margin-top: 0;
    }

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

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

@media (max-width: 900px) {
    .mhb-primary-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .mhb-rentals {
        position: relative;
        left: 50%;
        width: calc(100vw - 56px) !important;
        max-width: none !important;
        margin-right: 0;
        margin-left: 0;
        transform: translateX(-50%);
    }

    .responsive #top #wrap_all .mhb-overview-content > .flex_column {
        display: block !important;
        float: none !important;
        width: 100% !important;
        max-width: none !important;
        margin-left: 0 !important;
        flex: 0 0 100% !important;
    }

    .mhb-rentals-grid,
    .mhb-equipment-grid,
    .mhb-gallery-grid,
    .mhb-form {
        grid-template-columns: 1fr;
    }

    .mhb-container {
        width: min(100% - 28px, 1310px);
    }

    .mhb-rentals-heading {
        border-radius: 22px;
        padding: 14px;
    }

    .mhb-rentals-heading span {
        min-height: 50px;
        font-size: 16px;
    }

    .mhb-card {
        border-radius: 24px;
    }

    .mhb-single {
        padding: 34px 0 58px;
    }

    .mhb-detail-hero {
        gap: 28px;
        margin-bottom: 42px;
    }

    .mhb-summary__title {
        font-size: 36px;
    }

    .mhb-summary__price {
        font-size: 26px;
    }

    .mhb-primary-grid,
    .mhb-equipment-grid,
    .mhb-section {
        margin-top: 38px;
    }

    .mhb-primary-grid,
    .mhb-equipment-grid {
        gap: 38px;
    }

    .mhb-section h2 {
        font-size: 24px;
    }

    .mhb-spec,
    .mhb-price-details > div,
    .mhb-quote__list > div {
        grid-template-columns: 1fr;
        gap: 3px;
    }

    .mhb-data-table__head {
        display: none;
    }

    .mhb-price-table .mhb-data-table__row {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            'info info'
            'weekend week';
        gap: 2px 12px;
        align-items: start;
        padding: 8px 0;
    }

    .mhb-price-item__info {
        grid-area: info;
    }

    .mhb-price-table .mhb-data-table__price {
        text-align: left;
        font-size: 13px;
    }

    .mhb-price-table .mhb-data-table__price::before {
        color: var(--mhb-muted);
        content: attr(data-mhb-price-label) ' ';
        font-weight: 500;
    }

    .mhb-price-table .mhb-data-table__price:nth-child(2) {
        grid-area: weekend;
    }

    .mhb-price-table .mhb-data-table__price:nth-child(3) {
        grid-area: week;
    }

    .mhb-duration-table .mhb-data-table__row {
        grid-template-columns: 1fr;
        gap: 2px;
        align-items: start;
        padding: 8px 0;
    }

    .mhb-duration-table .mhb-data-table__price {
        text-align: left;
    }

    .mhb-check-list {
        grid-template-columns: 1fr;
    }

    .mhb-form {
        gap: 24px;
    }

    .mhb-quote__list dd {
        text-align: left;
    }

    .mhb-form__privacy,
    .mhb-form__submit {
        grid-column: auto;
    }

    .mhb-inquiry > h2 {
        font-size: 17px;
    }

    .mhb-lightbox__nav {
        top: auto;
        bottom: 20px;
    }
}
