/*
 Theme Name:   Woodmart Child
 Description:  Woodmart Child Theme
 Author:       XTemos
 Author URI:   http://xtemos.com
 Template:     woodmart
 Version:      1.0.0
 Text Domain:  woodmart
*/


/*========================
   WALNUT GROVE B&B - ACCOMMODATION CARDS
======================== */

.wgb-room-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    align-items: stretch;
}


/* CARD */

.wgb-room-card {
    display: flex;
    flex-direction: column;
    height: 100%;

    background: #ffffff;
    border: 1px solid #dde2e1;
    border-radius: 3px;

    overflow: hidden;

    box-shadow:
        0 3px 14px rgba(41, 46, 49, 0.06);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.wgb-room-card:hover {
    transform: translateY(-3px);

    box-shadow:
        0 9px 24px rgba(41, 46, 49, 0.10);
}


/* ==================================================
   IMAGE
   ================================================== */

.wgb-room-card__image-wrap {
    display: block;
    position: relative;

    width: 100%;
    aspect-ratio: 4 / 3;

    overflow: hidden;
}


.wgb-room-card__image {
    width: 100% !important;
    height: 100% !important;

    display: block;

    object-fit: cover;
    object-position: center;

    transition: transform 0.4s ease;
}


.wgb-room-card:hover .wgb-room-card__image {
    transform: scale(1.025);
}


/* ==================================================
   BODY
   ================================================== */

.wgb-room-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;

    padding: 25px 25px 24px;
}


/* ==================================================
   TITLE
   ================================================== */

.wgb-room-card__title {
    margin: 0 0 20px !important;
    padding: 0 !important;

    font-size: 24px !important;
    line-height: 1.25 !important;
    font-weight: 600 !important;
}


.wgb-room-card__title a {
    color: #292e31 !important;
    text-decoration: none !important;
}


.wgb-room-card__title a:hover {
    color: #607473 !important;
}


/* ==================================================
   FEATURES / ICONS
   ================================================== */

.wgb-room-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    column-gap: 15px;
    row-gap: 13px;

    padding: 0 0 20px;
    margin: 0 0 20px;

    border-bottom: 1px solid #e2e6e5;
}


.wgb-room-feature {
    display: flex;
    align-items: center;
    gap: 9px;

    min-width: 0;

    color: #535b5c;

    font-size: 14px;
    line-height: 1.35;
}


.wgb-room-feature__icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 22px;
    min-width: 22px;
    height: 22px;

    color: #607473;
}


.wgb-room-feature__icon svg {
    width: 20px;
    height: 20px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* ==================================================
   EXCERPT
   ================================================== */

.wgb-room-card__excerpt {
    color: #616869;

    font-size: 15px;
    line-height: 1.65;

    margin-bottom: 24px;
}


/* ==================================================
   BUTTONS
   ================================================== */

.wgb-room-card__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 10px;

    margin-top: auto;
}


.wgb-room-button {
    display: flex !important;
    align-items: center;
    justify-content: center;

    min-height: 46px;

    padding: 11px 15px !important;

    font-size: 12px !important;
    line-height: 1.2 !important;

    font-weight: 600 !important;

    text-transform: uppercase;
    letter-spacing: 0.7px;

    text-decoration: none !important;

    border-radius: 2px;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}


/* More Details */

.wgb-room-button--details {
    background: transparent !important;

    border: 1px solid #607473 !important;

    color: #607473 !important;
}


.wgb-room-button--details:hover {
    background: #607473 !important;

    border-color: #607473 !important;

    color: #ffffff !important;
}


/* Book */

.wgb-room-button--book {
    background: #607473 !important;

    border: 1px solid #607473 !important;

    color: #ffffff !important;
}


.wgb-room-button--book:hover {
    background: #292e31 !important;

    border-color: #292e31 !important;

    color: #ffffff !important;
}


/* ==================================================
   TABLET
   ================================================== */

@media (max-width: 1024px) {

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

}


/* ==================================================
   MOBILE
   ================================================== */

@media (max-width: 767px) {

    .wgb-room-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }


    .wgb-room-card__body {
        padding: 22px 20px 20px;
    }


    .wgb-room-card__title {
        font-size: 22px !important;
    }

}


/* Very narrow phones */

@media (max-width: 400px) {

    .wgb-room-features {
        grid-template-columns: 1fr;
    }

}


/* =====================================================
   WALNUT GROVE - SINGLE ACCOMMODATION HERO OVERVIEW
   ===================================================== */

.wgb-single-room-overview {
    width: 100%;
    text-align: center;
    color: #ffffff;
}

.wgb-single-room-overview__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px 55px;
}

/* TITLE */

.wgb-single-room-overview__title {
    color: #ffffff !important;
    font-size: 64px !important;
    line-height: 1.1 !important;
    font-weight: 600 !important;
    margin: 0 0 34px !important;
    text-align: center;
    text-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

/* FEATURE ROW */

.wgb-single-room-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;

    gap: 0;

    max-width: 900px;
    margin: 0 auto 34px;
    padding: 18px 0;

    border-top: 1px solid rgba(255,255,255,0.55);
    border-bottom: 1px solid rgba(255,255,255,0.55);
}

.wgb-single-room-feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    padding: 10px 28px;
    border-right: 1px solid rgba(255,255,255,0.35);

    color: #ffffff;
    text-align: center;
}

.wgb-single-room-feature:last-child {
    border-right: 0;
}

.wgb-single-room-feature__icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 30px;
    height: 30px;

    color: #ffffff;
    flex-shrink: 0;
}

.wgb-single-room-feature__icon svg {
    width: 26px;
    height: 26px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.wgb-single-room-feature__value {
    color: #ffffff;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 500;
    text-shadow: 0 2px 8px rgba(0,0,0,0.18);
}

/* BUTTON */

.wgb-single-room-overview__actions {
    text-align: center;
}

.wgb-single-room-book-button {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;

    min-height: 52px;
    padding: 14px 34px !important;

    background: #607473 !important;
    border: 1px solid #607473 !important;
    color: #ffffff !important;

    text-decoration: none !important;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-size: 13px !important;
    font-weight: 600 !important;

    border-radius: 2px;
    transition: all 0.2s ease;
}

.wgb-single-room-book-button:hover {
    background: #292e31 !important;
    border-color: #292e31 !important;
    color: #ffffff !important;
}

/* TABLET */

@media (max-width: 1024px) {
    .wgb-single-room-overview__title {
        font-size: 48px !important;
    }

    .wgb-single-room-feature__value {
        font-size: 22px;
    }

    .wgb-single-room-feature {
        padding: 10px 20px;
    }
}

/* MOBILE */

@media (max-width: 767px) {
    .wgb-single-room-overview__inner {
        padding: 30px 15px 40px;
    }

    .wgb-single-room-overview__title {
        font-size: 36px !important;
        margin-bottom: 26px !important;
    }

    .wgb-single-room-features {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        border-top: 1px solid rgba(255,255,255,0.45);
        border-bottom: 1px solid rgba(255,255,255,0.45);
        padding: 18px 0;
    }

    .wgb-single-room-feature {
        border-right: 0;
        padding: 8px 10px;
    }

    .wgb-single-room-feature__value {
        font-size: 18px;
    }

    .wgb-single-room-feature__icon svg {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 480px) {
    .wgb-single-room-features {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   WALNUT GROVE - ACCOMMODATION AVAILABILITY
   Consolidated version
   ========================================================= */

.wgb-room-availability {
    max-width: 1220px;
    margin: 60px auto;
    background: #fff;
    border: 1px solid #e1e5e4;
    box-shadow: 0 8px 30px rgba(41, 46, 49, .07);
}

.wgb-room-availability .wgb-availability-title {
    margin: 0 !important;
    padding: 24px 20px;
    background: #292e31;
    color: #fff !important;
    text-align: center;
    font-size: 38px !important;
    font-weight: 400 !important;
}

.wgb-room-availability .wgb-room-calendar,
.wgb-room-availability .datepick {
    width: 100% !important;
    max-width: 100% !important;
    border: 0 !important;
    margin: 0 !important;
    font-family: inherit !important;
}

.wgb-room-availability .datepick-nav {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    min-height: 58px;
    padding: 0 25px !important;
    background: #eef0ef !important;
    border: 0 !important;
    border-bottom: 1px solid #dde2e0 !important;
}

.wgb-room-availability .datepick-nav a {
    color: #607473 !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    letter-spacing: .5px;
    text-transform: uppercase;
    text-decoration: none !important;
}

.wgb-room-availability .datepick-month-row {
    display: flex !important;
    width: 100% !important;
}

.wgb-room-availability .datepick-month {
    float: none !important;
    width: 33.333333% !important;
    border: 0 !important;
    border-right: 1px solid #e0e4e3 !important;
    background: #fff !important;
}

.wgb-room-availability .datepick-month:last-child {
    border-right: 0 !important;
}

.wgb-room-availability .datepick-month-header {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 54px !important;
    padding: 8px 10px !important;
    background: #f5f7f6 !important;
    color: #292e31 !important;
    border: 0 !important;
    border-bottom: 1px solid #e3e7e6 !important;
    font-size: 15px !important;
    font-weight: 600 !important;
}

.wgb-room-availability .datepick-month-header select {
    width: auto !important;
    min-width: 90px;
    height: 36px !important;
    padding: 0 26px 0 9px !important;
    border: 1px solid #d8dddc !important;
    border-radius: 2px !important;
    background: #fff !important;
    color: #4f5859 !important;
    font-family: inherit !important;
    font-size: 14px !important;
    box-shadow: none !important;
}

.wgb-room-availability .datepick-month th {
    height: 40px !important;
    padding: 0 !important;
    background: #fff !important;
    border: 0 !important;
    border-bottom: 1px solid #e7eae9 !important;
    color: #707979 !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    text-transform: uppercase;
}

.wgb-room-availability .datepick-month td {
    height: 46px !important;
    padding: 0 !important;
    background: #fff !important;
    border: 0 !important;
    border-right: 1px solid #edf0ef !important;
    border-bottom: 1px solid #edf0ef !important;
}

.wgb-room-availability .datepick-month td a,
.wgb-room-availability .datepick-month td span {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 46px;
    padding: 0 !important;
    border: 0 !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    text-decoration: none !important;
}

.wgb-room-availability .datepick-month td a {
    background: #edf3ef !important;
    color: #292e31 !important;
}

.wgb-room-availability .datepick-month td a:hover {
    background: #607473 !important;
    color: #fff !important;
}

.wgb-room-availability .datepick-month td span,
.wgb-room-availability .datepick-month td .datepick-other-month {
    background: #ebedec !important;
    color: #a2a8a6 !important;
}

.wgb-room-availability .mphb-booked-date,
.wgb-room-availability .datepick-unselectable.mphb-booked-date {
    background: #d6dcda !important;
    color: #8b9392 !important;
}

.wgb-room-availability .datepick-month td a.datepick-selected,
.wgb-room-availability .datepick-month td a.mphb-check-in-date,
.wgb-room-availability .datepick-month td a.mphb-check-out-date,
.wgb-room-availability .datepick-month td .datepick-selected,
.wgb-room-availability .datepick-month td .mphb-check-in-date,
.wgb-room-availability .datepick-month td .mphb-check-out-date {
    background: #607473 !important;
    color: #fff !important;
    font-weight: 700 !important;
}

.wgb-room-availability .datepick-month td a.datepick-highlight,
.wgb-room-availability .datepick-month td .datepick-highlight {
    background: #dce5e3 !important;
    color: #292e31 !important;
}

.wgb-room-availability .datepick-today {
    box-shadow: inset 0 0 0 2px #607473 !important;
}

.wgb-room-availability .datepick-ctrl {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    min-height: 40px;
    padding: 0 15px !important;
    background: #fafbfa !important;
    border-top: 1px solid #e1e5e4 !important;
}

.wgb-room-availability .datepick-ctrl a {
    color: #607473 !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    text-decoration: none !important;
}

/* Availability form */
.wgb-room-availability .wgb-room-booking {
    padding: 30px;
    background: #fff;
    border-top: 1px solid #e0e4e3;
}

.wgb-room-availability .mphb-required-fields-tip {
    display: none !important;
}

.wgb-room-availability .mphb-booking-form {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 230px;
    gap: 20px;
    align-items: end;
}

.wgb-room-availability .mphb-check-in-date-wrapper,
.wgb-room-availability .mphb-check-out-date-wrapper,
.wgb-room-availability .mphb-reserve-btn-wrapper {
    width: 100% !important;
    margin: 0 !important;
}

.wgb-room-availability .mphb-booking-form label {
    display: block;
    margin-bottom: 8px;
    color: #292e31 !important;
    font-size: 14px !important;
    font-weight: 600 !important;
}

.wgb-room-availability .mphb-booking-form input[type="text"] {
    width: 100% !important;
    height: 54px !important;
    padding: 0 15px !important;
    background: #fff !important;
    border: 1px solid #d6dcda !important;
    border-radius: 2px !important;
    color: #51595a !important;
    font-size: 15px !important;
    box-shadow: none !important;
}

.wgb-room-availability .mphb-reserve-btn {
    width: 100% !important;
    height: 54px !important;
    padding: 0 20px !important;
    background: #607473 !important;
    border: 1px solid #607473 !important;
    border-radius: 2px !important;
    color: #fff !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    box-shadow: none !important;
}

.wgb-room-availability .mphb-reserve-btn:hover {
    background: #292e31 !important;
    border-color: #292e31 !important;
}

@media (max-width: 767px) {
    .wgb-room-availability {
        width: 100% !important;
        max-width: 100% !important;
        margin: 30px 0 !important;
        border-left: 0 !important;
        border-right: 0 !important;
        box-shadow: none !important;
    }

    .wgb-room-availability .datepick-month-row {
        overflow-x: auto !important;
        overflow-y: hidden !important;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .wgb-room-availability .datepick-month-row::-webkit-scrollbar {
        display: none;
    }

    .wgb-room-availability .datepick-month {
        flex: 0 0 100% !important;
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        border-right: 0 !important;
        scroll-snap-align: start;
    }

    .wgb-room-availability .wgb-room-booking {
        padding: 22px 18px 26px !important;
    }

    .wgb-room-availability .mphb-booking-form {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .wgb-room-calendar::after {
        content: "Swipe to view more months →";
        display: block;
        padding: 9px 12px;
        color: #7a8182;
        background: #fafbfa;
        border-top: 1px solid #e5e9e7;
        font-size: 11px;
        text-align: center;
    }
}

/* =========================================================
   WALNUT GROVE - EXTRAS / ADD-ONS GRID
   WPBAKERY BASIC GRID
   ========================================================= */


/* Overall grid spacing */

.wgb-extras-grid .vc_grid-item {
    padding-bottom: 55px !important;
}


/* Remove card appearance */

.wgb-extras-grid .vc_grid-item-mini,
.wgb-extras-grid .vc_gitem-zone,
.wgb-extras-grid .vc_gitem-zone-c,
.wgb-extras-grid .vc_gitem-col {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}


/* =========================================================
   IMAGE
   ========================================================= */

/*
 * WPBakery normally uses Zone A for the featured image.
 * Force every image to the same dimensions.
 */

.wgb-extras-grid .vc_gitem-zone-a {
    height: 300px !important;
    min-height: 300px !important;

    background-size: cover !important;
    background-position: center center !important;

    overflow: hidden;
}


/* In case the grid template uses an actual IMG element */

.wgb-extras-grid .vc_gitem-zone-img {
    width: 100% !important;
    height: 300px !important;

    object-fit: cover !important;
    object-position: center center !important;

    display: block !important;
}


/* Very subtle image hover */

.wgb-extras-grid .vc_gitem-zone-a {
    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}

.wgb-extras-grid .vc_grid-item:hover .vc_gitem-zone-a {
    opacity: 0.94;
}


/* =========================================================
   CONTENT UNDER IMAGE
   ========================================================= */

.wgb-extras-grid .vc_gitem-zone-c .vc_gitem-col {
    padding: 18px 12px 0 !important;

    text-align: center !important;
}


/* =========================================================
   TITLE
   ========================================================= */

.wgb-extras-grid .vc_gitem-post-data-source-post_title {
    margin: 0 0 6px !important;

    text-align: center !important;
}


.wgb-extras-grid .vc_gitem-post-data-source-post_title h4,
.wgb-extras-grid .vc_gitem-post-data-source-post_title h3,
.wgb-extras-grid .vc_gitem-post-data-source-post_title div {
    margin: 0 !important;

    color: #607473 !important;

    font-size: 22px !important;
    line-height: 1.2 !important;
    font-weight: 400 !important;

    text-align: center !important;
}


.wgb-extras-grid .vc_gitem-post-data-source-post_title a {
    color: #607473 !important;

    text-decoration: none !important;
}


.wgb-extras-grid .vc_gitem-post-data-source-post_title a:hover {
    color: #292e31 !important;
}


/* =========================================================
   HIDE EXCERPT
   ========================================================= */

.wgb-extras-grid .vc_gitem-post-data-source-post_excerpt {
    display: none !important;
}


/* =========================================================
   "MORE INFO" LINK
   ========================================================= */

.wgb-extras-grid .vc_btn3-container {
    margin: 5px 0 0 !important;

    text-align: center !important;
}


/*
 * Turn WPBakery button into a simple text link
 */

.wgb-extras-grid .vc_btn3 {
    min-height: 0 !important;

    padding: 0 !important;

    background: transparent !important;

    border: 0 !important;
    border-radius: 0 !important;

    box-shadow: none !important;

    color: #607473 !important;

    font-size: 15px !important;
    line-height: 1.4 !important;
    font-weight: 700 !important;

    text-transform: none !important;
    letter-spacing: 0 !important;

    text-decoration: none !important;
}


.wgb-extras-grid .vc_btn3:hover,
.wgb-extras-grid .vc_btn3:focus {
    background: transparent !important;

    color: #292e31 !important;

    text-decoration: underline !important;
}


/* =========================================================
   REMOVE EXTRA WPBAKERY CONTENT MARGINS
   ========================================================= */

.wgb-extras-grid .vc_gitem-post-data {
    margin-bottom: 0 !important;
}


.wgb-extras-grid .vc_gitem-zone-c p {
    margin-bottom: 0 !important;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1199px) {

    .wgb-extras-grid .vc_gitem-zone-a,
    .wgb-extras-grid .vc_gitem-zone-img {
        height: 250px !important;
        min-height: 250px !important;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .wgb-extras-grid .vc_grid-item {
        padding-bottom: 35px !important;
    }

    .wgb-extras-grid .vc_gitem-zone-a,
    .wgb-extras-grid .vc_gitem-zone-img {
        height: 280px !important;
        min-height: 280px !important;
    }

    .wgb-extras-grid .vc_gitem-post-data-source-post_title h4,
    .wgb-extras-grid .vc_gitem-post-data-source-post_title h3,
    .wgb-extras-grid .vc_gitem-post-data-source-post_title div {
        font-size: 20px !important;
    }

}

/* =========================================================
   WALNUT GROVE - SINGLE SERVICE PAGE
   ========================================================= */

.wgb-service-page {
    width: 100%;
    background: #ffffff;
}




/* =========================================================
   FULL-WIDTH SERVICE HERO
   ========================================================= */

.wgb-service-hero {
    position: relative;

    width: 100vw;
    max-width: none;

    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);

    min-height: 390px;

    display: flex;
    align-items: center;
    justify-content: center;

    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;

    overflow: hidden;
}


.wgb-service-hero__overlay {
    position: absolute;
    inset: 0;

    background: rgba(20, 25, 26, 0.52);
}


.wgb-service-hero__content {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1200px;

    margin: 0 auto;
    padding: 80px 30px;

    text-align: center;
}


.wgb-service-hero__title {
    margin: 0 !important;

    color: #ffffff !important;

    font-size: 52px !important;
    line-height: 1.15 !important;
    font-weight: 500 !important;

    text-shadow: 0 3px 16px rgba(0,0,0,.30);
}


/* =========================================================
   DESCRIPTION
   ========================================================= */

.wgb-service-content {
    padding: 55px 25px 35px;
}


.wgb-service-content__inner {
    max-width: 1050px;
    margin: 0 auto;
}


.wgb-service-description {
    color: #5c6465;

    font-size: 16px;
    line-height: 1.8;
}


.wgb-service-description p:last-child {
    margin-bottom: 0;
}


/* Remove featured image/content duplication if
   WPBakery or another plugin inserts it */
.wgb-service-description > img:first-child {
    display: none;
}


/* =========================================================
   SELECT A ROOM
   ========================================================= */

.wgb-service-rooms {
    padding: 40px 25px 70px;
}


.wgb-service-rooms__inner {
    max-width: 1050px;
    margin: 0 auto;
}


.wgb-service-rooms__heading {
    margin-bottom: 30px;

    text-align: center;
}


.wgb-service-rooms__heading h2 {
    margin: 0 0 8px !important;

    color: #607473 !important;

    font-size: 32px !important;
    line-height: 1.2 !important;

    font-weight: 500 !important;

    text-transform: uppercase;
    letter-spacing: 0.6px;
}


.wgb-service-rooms__heading p {
    margin: 0;

    color: #7a8182;

    font-size: 14px;
}


/* =========================================================
   ROOM GRID
   ========================================================= */

.wgb-service-room-grid {
    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 10px;
}


.wgb-service-room {
    min-width: 0;
}


.wgb-service-room__link {
    display: block;

    text-decoration: none !important;
}


.wgb-service-room__image {
    position: relative;

    aspect-ratio: 1 / 1;

    overflow: hidden;

    background: #eef0ef;
}


.wgb-service-room__image img {
    display: block;

    width: 100% !important;
    height: 100% !important;

    object-fit: cover;

    transition: transform 0.4s ease;
}


.wgb-service-room__overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(20,25,26,.66) 0%,
            rgba(20,25,26,.08) 50%,
            rgba(20,25,26,0) 70%
        );

    opacity: 0;

    transition: opacity .3s ease;
}


.wgb-service-room__title {
    position: absolute;

    left: 20px;
    right: 20px;
    bottom: 18px;

    color: #ffffff;

    font-size: 20px;
    line-height: 1.2;
    font-weight: 600;

    opacity: 0;

    transform: translateY(8px);

    transition:
        opacity .3s ease,
        transform .3s ease;
}


.wgb-service-room:hover img {
    transform: scale(1.035);
}


.wgb-service-room:hover .wgb-service-room__overlay,
.wgb-service-room:hover .wgb-service-room__title {
    opacity: 1;
}


.wgb-service-room:hover .wgb-service-room__title {
    transform: translateY(0);
}


/* =========================================================
   PREVIOUS / NEXT SERVICE
   ========================================================= */

.wgb-service-navigation {
    padding: 5px 25px 65px;
}


.wgb-service-navigation__inner {
    display: grid;

    grid-template-columns: 1fr 1fr;

    max-width: 1050px;

    margin: 0 auto;

    padding-top: 22px;

    border-top: 1px solid #e2e6e5;
}


.wgb-service-navigation__previous {
    text-align: left;
}


.wgb-service-navigation__next {
    text-align: right;
}


.wgb-service-navigation a {
    display: inline-flex;

    flex-direction: column;

    color: #607473 !important;

    text-decoration: none !important;
}


.wgb-nav-label {
    color: #929998;

    font-size: 11px;

    text-transform: uppercase;
    letter-spacing: .7px;
}


.wgb-nav-title {
    margin-top: 4px;

    font-size: 14px;
    font-weight: 500;
}


.wgb-service-navigation a:hover .wgb-nav-title {
    color: #292e31;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

    .wgb-service-hero {
        min-height: 280px;
    }


    .wgb-service-hero__title {
        font-size: 42px !important;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

     .wgb-service-hero {
        min-height: 280px;
    }

    .wgb-service-hero__content {
        padding: 60px 20px;
    }


    .wgb-service-hero__title {
        font-size: 32px !important;
    }


    .wgb-service-rooms {
        padding: 35px 20px 50px;
    }


    .wgb-service-room-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }


    .wgb-service-room__image {
        aspect-ratio: 4 / 3;
    }


    /*
     * Don't require hover on mobile.
     */
    .wgb-service-room__overlay {
        opacity: 1;
    }


    .wgb-service-room__title {
        opacity: 1;
        transform: none;
    }


    .wgb-service-navigation__inner {
        grid-template-columns: 1fr;

        gap: 25px;
    }


    .wgb-service-navigation__previous,
    .wgb-service-navigation__next {
        text-align: center;
    }

}

/* =========================================================
   WALNUT GROVE - CLEAN / COMPACT MOTOPRESS CHECKOUT
   ========================================================= */

/*
 * MotoPress structure note:
 * .mphb-booking-details       = entire Booking Details section
 * .mphb-reserve-rooms-details = wrapper around accommodation(s)
 * .mphb-room-details          = one accommodation's actual wrapper
 * .mphb-room-number           = ONLY the "Accommodation #1" heading
 */

.mphb_sc_checkout-wrapper {
    max-width: 1180px;
    margin: 0 auto;
    color: #535b5c;
    font-size: 14px;
}

.mphb_sc_checkout-form > .mphb-checkout-section:not(:first-of-type) {
    margin-top: 24px !important;
}

.mphb_sc_checkout-wrapper h3,
.mphb_sc_checkout-wrapper h4 {
    color: #292e31 !important;
    font-weight: 600 !important;
}

/* ---------------------------------------------------------
   BOOKING DETAILS
   Check-in + check-out on one row.
   Critical: room wrapper spans BOTH grid columns.
   --------------------------------------------------------- */

#mphb-booking-details.mphb-booking-details {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 34px;
    row-gap: 8px;

    padding: 0 !important;
    margin-bottom: 22px !important;

    background: transparent !important;
    border: 0 !important;
}

#mphb-booking-details > .mphb-booking-details-title {
    grid-column: 1 / -1;

    margin: 0 0 8px !important;
    padding: 0 0 10px !important;

    border-bottom: 1px solid #dfe4e2;

    text-align: center;
    font-size: 20px !important;
}

#mphb-booking-details > .mphb-check-in-date,
#mphb-booking-details > .mphb-check-out-date {
    margin: 0 !important;
    padding: 8px 12px !important;

    background: #f7f8f7;

    font-size: 13px !important;
    line-height: 1.45;
    text-align: center;
}

#mphb-booking-details > .mphb-reserve-rooms-details {
    grid-column: 1 / -1;

    width: 100% !important;
    min-width: 0;

    margin-top: 8px;
}

/* ---------------------------------------------------------
   ONE ACCOMMODATION
   --------------------------------------------------------- */

.mphb_sc_checkout-wrapper .mphb-room-details {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: flex-end;

    width: 100% !important;
    max-width: none !important;

    gap: 12px 18px;

    margin: 0 !important;
    padding: 20px 22px !important;

    background: #ffffff;

    border: 1px solid #dfe4e2;
    border-radius: 2px;

    box-shadow: none !important;
    box-sizing: border-box;
}

/* "Accommodation #1" */
.mphb_sc_checkout-wrapper .mphb-room-details .mphb-room-number {
    flex: 0 0 100%;

    width: 100% !important;

    margin: 0 !important;
    padding: 0 0 9px !important;

    border: 0 !important;
    border-bottom: 1px solid #e8ebe9 !important;

    background: transparent !important;

    font-size: 18px !important;
    line-height: 1.25 !important;
    text-align: left !important;
}

/* Accommodation type */
.mphb_sc_checkout-wrapper .mphb-room-details .mphb-room-type-title {
    flex: 0 0 100%;

    width: 100% !important;

    margin: -2px 0 2px !important;

    font-size: 13px !important;
}

.mphb_sc_checkout-wrapper .mphb-room-details .mphb-room-type-title a {
    color: #607473 !important;
    font-weight: 600;
}

/* Guests / children / guest name on ONE line */
.mphb_sc_checkout-wrapper .mphb-room-details .mphb-adults-chooser,
.mphb_sc_checkout-wrapper .mphb-room-details .mphb-children-chooser {
    flex: 0 0 170px;

    width: 170px !important;
    max-width: 170px !important;

    margin: 0 !important;
}

.mphb_sc_checkout-wrapper .mphb-room-details .mphb-guest-name-wrapper {
    flex: 1 1 320px;

    width: auto !important;
    max-width: none !important;

    margin: 0 !important;
}

.mphb_sc_checkout-wrapper .mphb-room-details label {
    display: block;

    margin: 0 0 5px !important;

    color: #394143;

    font-size: 12px !important;
    font-weight: 600 !important;
}

.mphb_sc_checkout-wrapper .mphb-room-details select,
.mphb_sc_checkout-wrapper .mphb-room-details input[type="text"] {
    width: 100% !important;
    min-height: 40px !important;
    height: 40px !important;

    padding: 6px 10px !important;

    border: 1px solid #d7dddb !important;
    border-radius: 2px !important;

    background: #fff !important;

    font-size: 13px !important;

    box-shadow: none !important;
}

/* ---------------------------------------------------------
   RATE CHOOSER
   --------------------------------------------------------- */

.mphb_sc_checkout-wrapper .mphb-rate-chooser {
    display: flex !important;
    flex: 0 0 100%;
    flex-wrap: wrap;
    align-items: center;

    width: 100% !important;

    gap: 6px 24px;

    margin: 2px 0 0 !important;
    padding: 12px 0 0 !important;

    border-top: 1px solid #edf0ef;
}

.mphb_sc_checkout-wrapper .mphb-room-rate-chooser-title {
    flex: 0 0 100%;

    margin: 0 0 3px !important;
    padding: 0 !important;

    border: 0 !important;

    font-size: 14px !important;
}

.mphb_sc_checkout-wrapper .mphb-room-rate-variant {
    margin: 0 !important;

    font-size: 12px !important;
    line-height: 1.35;
}

.mphb_sc_checkout-wrapper .mphb-room-rate-variant br {
    display: none;
}

.mphb_sc_checkout-wrapper .mphb-room-rate-variant label {
    display: inline !important;

    font-weight: 400 !important;
}

/* ---------------------------------------------------------
   ADD-ON SERVICES
   Full-width, small, three-column desktop list.
   --------------------------------------------------------- */

.mphb_sc_checkout-wrapper .mphb-services-details {
    flex: 0 0 100%;

    width: 100% !important;

    margin: 2px 0 0 !important;
    padding: 12px 0 0 !important;

    border-top: 1px solid #edf0ef;
}

.mphb_sc_checkout-wrapper .mphb-services-details-title {
    margin: 0 0 8px !important;
    padding: 0 !important;

    border: 0 !important;

    font-size: 14px !important;
    text-align: left !important;
}

.mphb_sc_checkout-wrapper .mphb_checkout-services-list {
    display: grid !important;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 0 18px !important;

    width: 100% !important;

    margin: 0 !important;
    padding: 0 !important;

    list-style: none !important;
}

.mphb_sc_checkout-wrapper .mphb_checkout-services-list li {
    min-width: 0;

    margin: 0 !important;
    padding: 7px 0 !important;

    background: transparent !important;

    border: 0 !important;
    border-bottom: 1px solid #edf0ef !important;

    font-size: 11.5px !important;
    line-height: 1.3 !important;
}

.mphb_sc_checkout-wrapper .mphb_checkout-services-list label {
    display: inline !important;

    margin: 0 !important;

    font-size: 11.5px !important;
    line-height: 1.3 !important;
    font-weight: 400 !important;
}

.mphb_sc_checkout-wrapper .mphb_checkout-services-list input[type="checkbox"] {
    width: auto !important;
    min-height: 0 !important;

    margin: 0 5px 0 0 !important;

    vertical-align: middle;
}

.mphb_sc_checkout-wrapper .mphb_checkout-services-list input[type="number"],
.mphb_sc_checkout-wrapper .mphb_checkout-services-list select {
    display: inline-block !important;

    width: 42px !important;
    min-width: 42px !important;

    height: 27px !important;
    min-height: 27px !important;

    margin: 3px 3px 0 5px !important;
    padding: 2px 4px !important;

    border: 1px solid #d7dddb !important;

    font-size: 11px !important;

    vertical-align: middle;
}

/* ---------------------------------------------------------
   COUPON
   --------------------------------------------------------- */

#mphb-coupon-details.mphb-coupon-code-wrapper {
    display: grid !important;

    grid-template-columns: minmax(0, 1fr) auto;

    gap: 6px 8px;

    max-width: 470px !important;

    margin: 18px auto 22px !important;
    padding: 11px 12px !important;

    background: #f7f8f7 !important;

    border: 1px solid #e2e6e5 !important;
}

#mphb-coupon-details > .mphb-coupon-code-title {
    grid-column: 1 / -1;

    margin: 0 !important;

    font-size: 11px !important;
    font-weight: 600 !important;
}

#mphb-coupon-details > p {
    margin: 0 !important;
}

#mphb-coupon-details > p:first-of-type {
    min-width: 0;
}

#mphb-coupon-details #mphb_coupon_code {
    width: 100% !important;

    min-height: 35px !important;
    height: 35px !important;

    padding: 5px 8px !important;

    font-size: 12px !important;
}

#mphb-coupon-details .mphb-apply-coupon-code-button {
    min-width: 70px !important;

    min-height: 35px !important;
    height: 35px !important;

    padding: 0 11px !important;

    background: #607473 !important;

    border: 1px solid #607473 !important;
    border-radius: 2px !important;

    color: #ffffff !important;

    font-size: 10px !important;
    font-weight: 600 !important;

    text-transform: uppercase;
}

#mphb-coupon-details .mphb-coupon-message {
    grid-column: 1 / -1;
}

/* ---------------------------------------------------------
   PRICE BREAKDOWN
   --------------------------------------------------------- */

#mphb-price-details {
    margin: 18px 0 22px !important;
}

#mphb-price-details .mphb-price-breakdown-title {
    margin: 0 0 8px !important;

    text-align: center;

    font-size: 15px !important;
}

#mphb-price-details .mphb-price-breakdown {
    width: 100%;

    border-collapse: collapse;
}

#mphb-price-details .mphb-price-breakdown th,
#mphb-price-details .mphb-price-breakdown td {
    padding: 6px 9px !important;

    border-bottom: 1px solid #edf0ef !important;

    font-size: 11.5px !important;
    line-height: 1.3 !important;
}

/* Hide repetitive detail rows; keep main accommodation/tax/total summary. */
#mphb-price-details .mphb-price-breakdown-dates-subtotal,
#mphb-price-details .mphb-price-breakdown-accommodation-subtotal,
#mphb-price-details .mphb-price-breakdown-accommodation-taxes,
#mphb-price-details .mphb-price-breakdown-accommodation-taxes-subtotal,
#mphb-price-details .mphb-price-breakdown-fees,
#mphb-price-details .mphb-price-breakdown-fee-taxes,
#mphb-price-details .mphb-price-breakdown-fees-subtotal,
#mphb-price-details .mphb-price-breakdown-fee-taxes-subtotal,
#mphb-price-details tbody .mphb-price-breakdown-subtotal {
    display: none !important;
}

/* ---------------------------------------------------------
   CUSTOMER INFORMATION
   --------------------------------------------------------- */

#mphb-customer-details {
    display: grid !important;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 11px 18px;

    margin: 0 0 18px !important;
    padding: 20px 22px !important;

    background: #ffffff;

    border: 1px solid #dfe4e2;

    box-shadow: none !important;
}

#mphb-customer-details > .mphb-customer-details-title {
    grid-column: 1 / -1;

    margin: 0 0 3px !important;
    padding: 0 0 9px !important;

    border-bottom: 1px solid #e8ebe9;

    text-align: center;

    font-size: 18px !important;
}

#mphb-customer-details > .mphb-required-fields-tip {
    display: none !important;
}

#mphb-customer-details > p {
    min-width: 0;

    margin: 0 !important;
}

#mphb-customer-details label {
    display: block;

    margin: 0 0 5px !important;

    color: #394143;

    font-size: 11.5px !important;
    font-weight: 600 !important;
}

#mphb-customer-details input[type="text"],
#mphb-customer-details input[type="email"],
#mphb-customer-details input[type="tel"],
#mphb-customer-details select {
    width: 100% !important;

    min-height: 39px !important;
    height: 39px !important;

    padding: 6px 9px !important;

    border: 1px solid #d7dddb !important;
    border-radius: 2px !important;

    background: #ffffff !important;

    font-size: 12.5px !important;

    box-shadow: none !important;
}

#mphb-customer-details .mphb-customer-note {
    grid-column: 1 / -1;
}

#mphb-customer-details textarea {
    width: 100% !important;

    min-height: 72px !important;

    padding: 7px 9px !important;

    border: 1px solid #d7dddb !important;
    border-radius: 2px !important;

    font-size: 12.5px !important;

    box-shadow: none !important;
}

/* ---------------------------------------------------------
   TOTAL / BOOK BUTTON
   --------------------------------------------------------- */

.mphb-total-price {
    margin: 14px 0 8px !important;

    text-align: center;

    color: #292e31;

    font-size: 15px !important;
    font-weight: 600 !important;
}

.mphb_sc_checkout-submit-wrapper {
    margin: 0 !important;

    text-align: center;
}

.mphb_sc_checkout-submit-wrapper input[type="submit"] {
    min-width: 180px;

    min-height: 43px !important;

    padding: 9px 20px !important;

    background: #607473 !important;

    border: 1px solid #607473 !important;
    border-radius: 2px !important;

    color: #ffffff !important;

    font-size: 11px !important;
    font-weight: 600 !important;

    text-transform: uppercase;
}

/* ---------------------------------------------------------
   TABLET / MOBILE
   --------------------------------------------------------- */

@media (max-width: 991px) {
    .mphb_sc_checkout-wrapper .mphb_checkout-services-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {

    .mphb_sc_checkout-wrapper {
        padding: 0 12px;
    }

    #mphb-booking-details.mphb-booking-details {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    #mphb-booking-details > .mphb-booking-details-title,
    #mphb-booking-details > .mphb-reserve-rooms-details {
        grid-column: 1;
    }

    .mphb_sc_checkout-wrapper .mphb-room-details {
        display: block !important;

        padding: 17px !important;
    }

    .mphb_sc_checkout-wrapper .mphb-room-details .mphb-adults-chooser,
    .mphb_sc_checkout-wrapper .mphb-room-details .mphb-children-chooser,
    .mphb_sc_checkout-wrapper .mphb-room-details .mphb-guest-name-wrapper {
        width: 100% !important;
        max-width: none !important;

        margin: 0 0 10px !important;
    }

    .mphb_sc_checkout-wrapper .mphb_checkout-services-list {
        grid-template-columns: 1fr !important;
    }

    #mphb-coupon-details.mphb-coupon-code-wrapper {
        max-width: 100% !important;
    }

    #mphb-customer-details {
        grid-template-columns: 1fr;

        padding: 17px !important;
    }

    #mphb-customer-details > .mphb-customer-details-title,
    #mphb-customer-details .mphb-customer-note {
        grid-column: 1;
    }
}

/* =========================================================
   CHECKOUT FINAL LAYOUT REFINEMENTS
   ========================================================= */


/* =========================================================
   SERVICES - TWO COLUMNS
   ========================================================= */

.mphb_sc_checkout-wrapper .mphb_checkout-services-list {
    grid-template-columns:
        repeat(2, minmax(0, 1fr)) !important;

    column-gap: 32px !important;
    row-gap: 0 !important;
}


.mphb_sc_checkout-wrapper .mphb_checkout-services-list li {
    padding: 9px 0 !important;

    font-size: 12px !important;
    line-height: 1.4 !important;
}


/*
 * Slightly more room for long service names.
 */
.mphb_sc_checkout-wrapper .mphb_checkout-services-list label {
    font-size: 12px !important;
    line-height: 1.4 !important;
}


/* =========================================================
   DESKTOP CHECKOUT LOWER SECTION
   ========================================================= */

@media (min-width: 992px) {

    /*
     * Turn the overall checkout into a 2-column grid.
     *
     * Booking Details remains full width.
     *
     * LEFT:
     * Coupon
     * Price Breakdown
     *
     * RIGHT:
     * Customer Information
     */

    .mphb_sc_checkout-form {
        display: grid !important;

        grid-template-columns:
            minmax(0, 1.08fr)
            minmax(360px, 0.92fr);

        grid-template-areas:
            "booking booking"
            "coupon  customer"
            "price   customer";

        column-gap: 36px;
        row-gap: 0;

        align-items: start;
    }


    /*
     * Any MotoPress elements that we have not explicitly
     * positioned will remain full width underneath.
     */

    .mphb_sc_checkout-form > * {
        grid-column: 1 / -1;
    }


    /* BOOKING DETAILS */

    #mphb-booking-details {
        grid-area: booking;
    }


    /* =====================================================
       LEFT COLUMN - COUPON
       ===================================================== */

    #mphb-coupon-details {
        grid-area: coupon;

        width: 100% !important;
        max-width: none !important;

        margin: 0 0 18px !important;
        padding: 14px !important;

        box-sizing: border-box;

        background: #f7f8f7 !important;

        border: 1px solid #e0e5e3 !important;
    }


    #mphb-coupon-details .mphb-coupon-code-title {
        margin-bottom: 7px !important;

        text-align: left !important;

        font-size: 12px !important;
    }


    #mphb-coupon-details #mphb_coupon_code {
        height: 38px !important;
        min-height: 38px !important;
    }


    #mphb-coupon-details
    .mphb-apply-coupon-code-button {
        height: 38px !important;
        min-height: 38px !important;
    }


    /* =====================================================
       LEFT COLUMN - PRICE BREAKDOWN
       ===================================================== */

    #mphb-price-details {
        grid-area: price;

        width: 100% !important;

        margin: 0 !important;

        padding: 0 !important;
    }


    #mphb-price-details .mphb-price-breakdown-title {
        margin: 0 0 10px !important;

        padding-bottom: 8px;

        border-bottom: 1px solid #dfe4e2;

        color: #292e31 !important;

        text-align: left !important;

        font-size: 17px !important;
        font-weight: 600 !important;
    }


    #mphb-price-details .mphb-price-breakdown {
        width: 100% !important;

        margin: 0 !important;
    }


    #mphb-price-details .mphb-price-breakdown th,
    #mphb-price-details .mphb-price-breakdown td {
        padding: 7px 8px !important;

        font-size: 12px !important;
        line-height: 1.3 !important;
    }


    /* =====================================================
       RIGHT COLUMN - CONTACT INFORMATION
       ===================================================== */

    #mphb-customer-details {
        grid-area: customer;

        display: block !important;

        width: 100% !important;

        margin: 0 !important;
        padding: 20px 22px !important;

        box-sizing: border-box;

        background: #ffffff;

        border: 1px solid #dfe4e2;
    }


    #mphb-customer-details
    .mphb-customer-details-title {
        margin: 0 0 16px !important;

        padding: 0 0 10px !important;

        border-bottom: 1px solid #e8ebe9;

        text-align: left !important;

        font-size: 17px !important;
    }


    /*
     * Stack contact fields vertically.
     */

    #mphb-customer-details > p {
        display: block !important;

        width: 100% !important;

        margin: 0 0 12px !important;
    }


    #mphb-customer-details label {
        margin-bottom: 5px !important;

        font-size: 11.5px !important;
    }


    #mphb-customer-details input[type="text"],
    #mphb-customer-details input[type="email"],
    #mphb-customer-details input[type="tel"],
    #mphb-customer-details select {
        width: 100% !important;

        height: 39px !important;
        min-height: 39px !important;

        padding: 6px 9px !important;
    }


    #mphb-customer-details textarea {
        min-height: 75px !important;
    }


    /*
     * Hide the "required fields..." message.
     */

    #mphb-customer-details
    .mphb-required-fields-tip {
        display: none !important;
    }


    /* =====================================================
       EVERYTHING AFTER THESE COLUMNS
       ===================================================== */

    .mphb-total-price,
    .mphb_sc_checkout-submit-wrapper {
        grid-column: 1 / -1 !important;
    }

}
/* =========================================================
   ACCESSIBILITY / READABILITY INCREASE
   WALNUT GROVE CHECKOUT
   ========================================================= */

/* General checkout text */
.mphb_sc_checkout-wrapper {
    font-size: 16px !important;
    line-height: 1.5;
}


/* Section headings */
.mphb_sc_checkout-wrapper h3,
.mphb_sc_checkout-wrapper h4,
#mphb-booking-details > .mphb-booking-details-title,
#mphb-customer-details .mphb-customer-details-title,
#mphb-price-details .mphb-price-breakdown-title {
    font-size: 20px !important;
}


/* Check-in / check-out */
#mphb-booking-details > .mphb-check-in-date,
#mphb-booking-details > .mphb-check-out-date {
    font-size: 15px !important;
}


/* Accommodation title */
.mphb_sc_checkout-wrapper .mphb-room-details .mphb-room-number {
    font-size: 20px !important;
}

.mphb_sc_checkout-wrapper .mphb-room-details .mphb-room-type-title {
    font-size: 15px !important;
}


/* Labels */
.mphb_sc_checkout-wrapper label,
#mphb-customer-details label {
    font-size: 14px !important;
}


/* Inputs / dropdowns */
.mphb_sc_checkout-wrapper input[type="text"],
.mphb_sc_checkout-wrapper input[type="email"],
.mphb_sc_checkout-wrapper input[type="tel"],
.mphb_sc_checkout-wrapper input[type="number"],
.mphb_sc_checkout-wrapper select,
.mphb_sc_checkout-wrapper textarea {
    font-size: 16px !important;
}


/* Rate choices */
.mphb_sc_checkout-wrapper .mphb-room-rate-variant,
.mphb_sc_checkout-wrapper .mphb-room-rate-variant label {
    font-size: 14px !important;
}


/* Add-on section title */
.mphb_sc_checkout-wrapper .mphb-services-details-title {
    font-size: 17px !important;
}


/* Add-on service text */
.mphb_sc_checkout-wrapper .mphb_checkout-services-list li,
.mphb_sc_checkout-wrapper .mphb_checkout-services-list label {
    font-size: 14px !important;
    line-height: 1.45 !important;
}


/* Add-on quantity selectors */
.mphb_sc_checkout-wrapper .mphb_checkout-services-list input[type="number"],
.mphb_sc_checkout-wrapper .mphb_checkout-services-list select {
    font-size: 14px !important;
}


/* Coupon */
#mphb-coupon-details .mphb-coupon-code-title {
    font-size: 14px !important;
}

#mphb-coupon-details #mphb_coupon_code {
    font-size: 15px !important;
}

#mphb-coupon-details .mphb-apply-coupon-code-button {
    font-size: 12px !important;
}


/* Price breakdown */
#mphb-price-details .mphb-price-breakdown th,
#mphb-price-details .mphb-price-breakdown td {
    font-size: 14px !important;
    line-height: 1.45 !important;
}


/* Customer form */
#mphb-customer-details input[type="text"],
#mphb-customer-details input[type="email"],
#mphb-customer-details input[type="tel"],
#mphb-customer-details select,
#mphb-customer-details textarea {
    font-size: 16px !important;
}


/* Total */
.mphb-total-price {
    font-size: 18px !important;
}


/* Book button */
.mphb_sc_checkout-submit-wrapper input[type="submit"] {
    font-size: 14px !important;
}
.mphb_sc_checkout-wrapper input[type="text"],
.mphb_sc_checkout-wrapper input[type="email"],
.mphb_sc_checkout-wrapper input[type="tel"],
.mphb_sc_checkout-wrapper select {
    min-height: 46px !important;
}

#mphb-coupon-details #mphb_coupon_code,
#mphb-coupon-details .mphb-apply-coupon-code-button {
    min-height: 42px !important;
}
/* =========================================================
   MOBILE - SERVICE ADD-ONS SINGLE COLUMN
   ========================================================= */

@media (max-width: 767px) {

    .mphb_sc_checkout-wrapper .mphb_checkout-services-list {
        grid-template-columns: 1fr !important;
        column-gap: 0 !important;
    }

    .mphb_sc_checkout-wrapper .mphb_checkout-services-list li {
        padding: 10px 0 !important;
    }

}