/* ============================================
   CHECKOUT PAGE STYLES - TWO COLUMN LAYOUT
   ============================================ */

.shortcode-section {
    padding: 8rem 0;
    background-color: #f8f9fa;
}

.section-padding {
    padding: 6rem 0;
}

.mphb_sc_checkout-wrapper {
    max-width: 120rem;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ============================================
   LOGIN FORM
   ============================================ */
.mphb-login-form-wrap {
    background-color: #fff;
    padding: 2rem 3rem;
    margin-bottom: 3rem;
    border-radius: 0.8rem;
    border-left: 0.4rem solid #19171B;
    box-shadow: 0 0.2rem 0.8rem rgba(0, 0, 0, 0.05);
}

.mphb-login-form-wrap p {
    margin: 0;
    color: #555;
    font-size: 1.5rem;
}

.mphb-login-form-wrap a {
    color: #19171B;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.mphb-login-form-wrap a:hover {
    color: #19171b8f;
}

/* ============================================
   CHECKOUT FORM - TWO COLUMN GRID
   ============================================ */
.mphb_sc_checkout-form {
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    grid-template-areas:
        "booking price"
        "customer customer"
        "billing billing"
        "total total"
        "submit submit";
}

/* Left Column - Booking Details */
#mphb-booking-details {
    grid-area: booking;
}

/* Right Column - Price Breakdown */
#mphb-price-details {
    grid-area: price;
}

/* Full Width - Customer & Payment */
#mphb-customer-details {
    grid-area: customer;
}

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

.mphb-total-price {
    grid-area: total;
}

/* Submit Button - Full Width */
.mphb_sc_checkout-submit-wrapper {
    grid-area: submit;
}

/* Section Styling */
.mphb-checkout-section {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 0.8rem;
    box-shadow: 0 0.2rem 1.5rem rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    border-bottom: none;
}

.mphb-checkout-section:last-of-type {
    border-bottom: none;
    padding-bottom: 3rem;
}

/* Section Titles */
.mphb-booking-details-title,
.mphb-customer-details-title,
.mphb-gateway-chooser-title,
.mphb-services-details-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #222;
    margin: 0 0 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 0.3rem solid #19171B;
    display: inline-block;
}

.mphb-services-details-title {
    font-size: 1.8rem;
    border-bottom-width: 0.2rem;
}

/* ============================================
   BOOKING DETAILS SECTION
   ============================================ */
.mphb-booking-details {
    background-color: #f8f9fa;
    padding: 3rem !important;
    border-radius: 0.8rem;
    margin-bottom: 0 !important;
}

.mphb-booking-details li {
    margin: 1.5em !important;
}

.mphb-check-in-date,
.mphb-check-out-date {
    font-size: 1.6rem;
    color: #555;
    margin: 0 0 1.5rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.mphb-check-in-date span,
.mphb-check-out-date span {
    color: #777;
}

.mphb-check-in-date time strong,
.mphb-check-out-date time strong {
    color: #222;
    font-weight: 600;
}

.mphb-check-in-date time:last-of-type,
.mphb-check-out-date time:last-of-type {
    color: #19171B;
    font-weight: 600;
}

/* Room Details */
.mphb-reserve-rooms-details {
    margin-top: 3rem;
}

.mphb-room-details {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 0.8rem;
    margin-bottom: 2rem;
    border: 0.1rem solid #e9ecef;
}

.mphb-room-number {
    font-size: 2rem;
    font-weight: 600;
    color: #222;
    margin: 0 0 1.5rem;
}

.mphb-room-type-title {
    margin: 0 0 1.5rem;
    font-size: 1.5rem;
}

.mphb-room-type-title span {
    color: #777;
}

.mphb-room-type-title a {
    color: #19171B;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.mphb-room-type-title a:hover {
    color: #19171b8f;
}

/* Guest Name Input */
.mphb-guest-name-wrapper {
    margin: 2rem 0;
}

.mphb-guest-name-wrapper label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
}

.mphb-guest-name-wrapper input {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 0.1rem solid #ced4da;
    border-radius: 0.4rem;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.mphb-guest-name-wrapper input:focus {
    outline: none;
    border-color: #19171B;
    box-shadow: 0 0 0 0.3rem rgba(0, 191, 165, 0.1);
}

/* ============================================
   SERVICES/EXTRAS SECTION
   ============================================ */
.mphb-services-details {
    margin-top: 2.5rem;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 0.6rem;
}

.mphb_sc_checkout-services-list,
.mphb_checkout-services-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
}

.mphb_sc_checkout-services-list li,
.mphb_checkout-services-list li {
    padding: 1.5rem;
    background-color: #ffffff;
    border: 0.1rem solid #e9ecef;
    border-radius: 0.6rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.mphb_sc_checkout-services-list li:hover,
.mphb_checkout-services-list li:hover {
    border-color: #19171B;
    box-shadow: 0 0.2rem 0.8rem #19171B1a;
}

.mphb-checkbox-label {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    cursor: pointer;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.mphb-checkbox-label input[type="checkbox"] {
    width: 2rem;
    height: 2rem;
    cursor: pointer;
    accent-color: #19171B;
}

.mphb-checkbox-label em {
    color: #19171B;
    font-weight: 600;
    font-style: normal;
}

.mphb_sc_checkout-services-list label[for*="adults"],
.mphb_checkout-services-list label[for*="adults"] {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.4rem;
    color: #555;
    /* margin-left: 3.2rem; */
}

.mphb_sc_checkout-service-adults,
.mphb_checkout-service-adults {
    padding: 0.8rem 1.2rem;
    border: 0.1rem solid #ced4da;
    border-radius: 0.4rem;
    font-size: 1.4rem;
    cursor: pointer;
}

/* ============================================
   PRICE BREAKDOWN SECTION
   ============================================ */
.mphb-room-price-breakdown-wrapper {
    background-color: #f8f9fa;
    padding: 3rem !important;
    border-radius: 0.8rem;
}

.mphb-price-breakdown-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #222;
    margin: 0 0 2rem;
}

.mphb-price-breakdown {
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffff;
    border-radius: 0.8rem;
    overflow: hidden;
    box-shadow: 0 0.2rem 0.8rem rgba(0, 0, 0, 0.05);
}

.mphb-price-breakdown tbody tr {
    border-bottom: 0.1rem solid #e9ecef;
}

.mphb-price-breakdown tbody tr:last-child {
    border-bottom: none;
}

.mphb-price-breakdown td,
.mphb-price-breakdown th {
    padding: 1.5rem 2rem;
    text-align: left;
    font-size: 1.4rem;
}

.mphb-price-breakdown th {
    font-weight: 600;
    color: #222;
}

.mphb-table-price-column {
    text-align: right !important;
    font-weight: 600;
}

/* Expandable Rows */
.mphb-price-breakdown-expand {
    color: #19171B;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: color 0.3s ease;
}

.mphb-price-breakdown-expand:hover {
    color: #19171b8f;
}

.mphb-inner-icon {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    line-height: 1.8rem;
    text-align: center;
    background-color: #19171B;
    color: #fff;
    border-radius: 50%;
    font-size: 1.4rem;
    font-weight: bold;
}

.mphb-hide {
    display: none !important;
}

/* Footer Total */
.mphb-price-breakdown tfoot {
    background-color: #19171B;
}

.mphb-price-breakdown tfoot tr {
    border: none;
}

.mphb-price-breakdown tfoot th {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 700;
    padding: 2rem;
}

.mphb-price-breakdown tfoot .mphb-price {
    color: #ffffff;
    font-size: 2.4rem;
}

/* Price Styling */
.mphb-price {
    font-weight: 700;
    color: #19171B;
}

.mphb-currency {
    font-weight: 600;
}

/* ============================================
   CUSTOMER DETAILS SECTION
   ============================================ */
.mphb-customer-details {
    padding: 3rem !important;
    background-color: #f8f9fa;
    border-radius: 0.8rem;
}

.mphb-required-fields-tip {
    margin: 0 0 2.5rem;
    color: #777;
    font-size: 1.5rem;
}

.mphb-required-fields-tip abbr {
    color: #dc3545;
    text-decoration: none;
    font-weight: bold;
}

/* Form Fields */
.mphb-customer-name,
.mphb-customer-last-name,
.mphb-customer-email,
.mphb-customer-phone,
.mphb-customer-country,
.mphb-customer-note {
    margin-bottom: 2rem;
}

.mphb-customer-details label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.8rem;
    font-size: 1.5rem;
}

.mphb-customer-details label abbr {
    color: #dc3545;
    text-decoration: none;
    margin-left: 0.3rem;
}

.mphb-customer-details input[type="text"],
.mphb-customer-details input[type="email"],
.mphb-customer-details select,
.mphb-customer-details textarea {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 0.1rem solid #ced4da;
    border-radius: 0.4rem;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    background-color: #ffffff;
}

.mphb-customer-details input:focus,
.mphb-customer-details select:focus,
.mphb-customer-details textarea:focus {
    outline: none;
    border-color: #19171B;
    box-shadow: 0 0 0 0.3rem rgba(0, 191, 165, 0.1);
}

.mphb-customer-details textarea {
    resize: vertical;
    min-height: 10rem;
    font-family: inherit;
}

/* ============================================
   BILLING DETAILS / PAYMENT SECTION
   ============================================ */
#mphb-billing-details {
    padding: 3rem !important;
    background-color: #f8f9fa;
    border-radius: 0.8rem;
}

.mphb-gateway-title {
    display: block;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.mphb-gateway-title strong {
    color: #222;
}

.mphb-gateway-description {
    color: #666;
    font-size: 1.4rem;
    margin: 0 0 2.5rem;
    padding: 1.5rem;
    background-color: #fff3cd;
    border-left: 0.4rem solid #ffc107;
    border-radius: 0.4rem;
}

/* Stripe Payment Fields */
.mphb-billing-fields {
    border: none;
    padding: 0;
    margin: 0;
}

.mphb-stripe-payment-container {
    margin-top: 2rem;
}

.mphb-stripe-payment-fields {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 0.8rem;
    border: 0.1rem solid #e9ecef;
}

.mphb-stripe-payment-fields fieldset {
    border: none;
    padding: 0;
    margin: 0;
}

.mphb-stripe-payment-fields label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.mphb-stripe-element {
    padding: 1.2rem 1.5rem;
    border: 0.1rem solid #ced4da;
    border-radius: 0.4rem;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.mphb-stripe-element:focus,
.mphb-stripe-element:hover {
    border-color: #19171B;
}

#mphb-stripe-errors {
    color: #dc3545;
    font-size: 1.4rem;
    margin-top: 1.5rem;
    padding: 1.2rem;
    background-color: #f8d7da;
    border-radius: 0.4rem;
    display: none;
}

#mphb-stripe-errors:not(:empty) {
    display: block;
}

/* ============================================
   TOTAL PRICE & SUBMIT
   ============================================ */
.mphb-total-price {
    margin: 2rem 0 0;
    padding: 2.5rem !important;
    background-color: #19171B;
    border-radius: 0.8rem;
    text-align: center;
}

.mphb-total-price output {
    display: block;
    color: #ffffff;
    font-size: 1.8rem;
}

.mphb-total-price-field {
    display: block;
    margin-top: 1rem;
}

.mphb-total-price-field .mphb-price {
    color: #ffffff;
    font-size: 3.2rem;
    font-weight: 700;
}

.mphb-preloader {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    border: 0.3rem solid rgba(255, 255, 255, 0.3);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: mphb-spin 0.6s linear infinite;
    background-image: none !important;
}

@keyframes mphb-spin {
    to {
        transform: rotate(360deg);
    }
}

/* Error Messages */
.mphb-errors-wrapper {
    background-color: #f8d7da;
    color: #721c24;
    padding: 1.5rem;
    border-radius: 0.4rem;
    border-left: 0.4rem solid #dc3545;
    margin-bottom: 2rem;
}

/* Submit Button */
.mphb_sc_checkout-submit-wrapper {
    text-align: center;
    margin: 0;
    padding: 0 2rem;
}

.mphb_sc_checkout-submit-wrapper input[type="submit"],
.mphb_sc_checkout-submit-wrapper .button {
    padding: 1.8rem 6rem;
    background-color: #19171B;
    color: #ffffff;
    border: none;
    font-size: 1.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    box-shadow: 0 0.4rem 1.5rem #19171B4d;
}

.mphb_sc_checkout-submit-wrapper input[type="submit"]:hover,
.mphb_sc_checkout-submit-wrapper .button:hover {
    background-color: #45404b;
    transform: translateY(-0.2rem);
    box-shadow: 0 0.6rem 2rem #19171B66;
}

.mphb_sc_checkout-submit-wrapper input[type="submit"]:active,
.mphb_sc_checkout-submit-wrapper .button:active {
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE DESIGN - TABLET
   ============================================ */
@media (max-width: 992px) {
    .mphb_sc_checkout-form {
        grid-template-columns: 1fr;
        gap: 2rem;
        grid-template-areas:
            "booking"
            "price"
            "customer"
            "billing"
            "total"
            "submit";
    }

    .mphb_sc_checkout-wrapper {
        max-width: 90rem;
    }
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE
   ============================================ */
@media (max-width: 768px) {
    .shortcode-section {
        padding: 40px 0;
    }

    .section-padding {
        padding: 30px 0;
    }

    .mphb_sc_checkout-wrapper {
        padding: 0 15px;
        max-width: 900px;
    }

    .mphb_sc_checkout-form {
        gap: 20px;
    }

    .mphb-login-form-wrap {
        padding: 15px 20px;
        margin-bottom: 25px;
        border-radius: 6px;
        border-left: 4px solid #19171B;
    }

    .mphb-login-form-wrap p {
        font-size: 14px;
    }

    .mphb-checkout-section {
        padding: 25px 20px !important;
        margin-bottom: 15px;
        border-radius: 8px;
    }

    .mphb-booking-details-title,
    .mphb-customer-details-title,
    .mphb-gateway-chooser-title {
        font-size: 20px;
        margin-bottom: 20px;
        padding-bottom: 12px;
        border-bottom: 3px solid #19171B;
    }

    .mphb-services-details-title {
        font-size: 16px;
        border-bottom-width: 2px;
    }

    .mphb-check-in-date,
    .mphb-check-out-date {
        font-size: 14px;
        gap: 6px;
        margin-bottom: 12px;
    }

    .mphb-reserve-rooms-details {
        margin-top: 20px;
    }

    .mphb-room-details {
        padding: 20px;
        border-radius: 6px;
        margin-bottom: 15px;
        border: 1px solid #e9ecef;
    }

    .mphb-room-number {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .mphb-room-type-title {
        margin-bottom: 12px;
        font-size: 14px;
    }

    .mphb-guest-name-wrapper {
        margin: 15px 0;
    }

    .mphb-guest-name-wrapper label {
        margin-bottom: 6px;
        font-size: 13px;
    }

    .mphb-guest-name-wrapper input {
        padding: 10px 12px;
        border: 1px solid #ced4da;
        border-radius: 4px;
        font-size: 14px;
    }

    .mphb-services-details {
        margin-top: 20px;
        padding: 15px;
        border-radius: 6px;
    }

    .mphb_sc_checkout-services-list li,
    .mphb_checkout-services-list li {
        padding: 12px;
        border: 1px solid #e9ecef;
        border-radius: 6px;
        margin-bottom: 8px;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .mphb-checkbox-label {
        gap: 10px;
        font-size: 14px;
        margin-bottom: 8px;
    }

    .mphb-checkbox-label input[type="checkbox"] {
        width: 18px;
        height: 18px;
    }

    .mphb-price-breakdown-title {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .mphb-price-breakdown {
        border-radius: 6px;
        font-size: 14px;
    }

    .mphb-price-breakdown td,
    .mphb-price-breakdown th {
        padding: 12px 15px;
    }

    .mphb-price-breakdown tfoot th {
        font-size: 16px;
        padding: 15px;
    }

    .mphb-price-breakdown tfoot .mphb-price {
        font-size: 20px;
    }

    .mphb-required-fields-tip {
        margin-bottom: 20px;
        font-size: 13px;
    }

    .mphb-customer-name,
    .mphb-customer-last-name,
    .mphb-customer-email,
    .mphb-customer-phone,
    .mphb-customer-country,
    .mphb-customer-note {
        margin-bottom: 15px;
    }

    .mphb-customer-details label {
        margin-bottom: 6px;
        font-size: 14px;
    }

    .mphb-customer-details input[type="text"],
    .mphb-customer-details input[type="email"],
    .mphb-customer-details select,
    .mphb-customer-details textarea {
        padding: 10px 12px;
        font-size: 14px;
    }

    .mphb-customer-details textarea {
        min-height: 80px;
    }

    .mphb-gateway-title {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .mphb-gateway-description {
        font-size: 13px;
        margin-bottom: 20px;
        padding: 12px;
    }

    .mphb-stripe-payment-fields {
        padding: 20px;
        border-radius: 6px;
    }

    .mphb-total-price {
        margin: 20px 0 0;
        padding: 20px !important;
        border-radius: 6px;
    }

    .mphb-total-price output {
        font-size: 16px;
    }

    .mphb-total-price-field .mphb-price {
        font-size: 28px;
    }

    .mphb_sc_checkout-submit-wrapper {
        padding: 0 15px;
    }

    .mphb_sc_checkout-submit-wrapper input[type="submit"],
    .mphb_sc_checkout-submit-wrapper .button {
        padding: 15px 40px;
        font-size: 16px;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .shortcode-section {
        padding: 30px 0;
    }

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

    .mphb-checkout-section {
        padding: 20px 15px !important;
    }

    .mphb-booking-details-title,
    .mphb-customer-details-title,
    .mphb-gateway-chooser-title {
        font-size: 18px;
        margin-bottom: 18px;
        padding-bottom: 10px;
    }

    .mphb-check-in-date,
    .mphb-check-out-date {
        font-size: 13px;
        gap: 5px;
        margin-bottom: 10px;
    }

    .mphb-room-details {
        padding: 15px;
    }

    .mphb-room-number {
        font-size: 16px;
    }

    .mphb_sc_checkout-submit-wrapper {
        padding: 0 10px;
    }

    .mphb_sc_checkout-submit-wrapper input[type="submit"],
    .mphb_sc_checkout-submit-wrapper .button {
        padding: 14px 35px;
        font-size: 15px;
    }

    .mphb_sc_checkout-services-list label[for*="adults"],
    .mphb_checkout-services-list label[for*="adults"] {
        font-size: 15px;
    }

    .mphb-stripe-payment-fields label {
        font-size: 15px;

    }
}



/* ============================================
   ADDITIONAL ENHANCEMENTS
   ============================================ */

/* Add subtle animation on page load */
.mphb-booking-details-section {
    animation: fadeInUp 0.6s ease-out;
}

.mphb-booking-details-section.payment {
    animation-delay: 0.2s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(2rem);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Success message pulse effect */
.mphb-payment-messages {
    /* animation: pulse 2s ease-in-out; */
    font-size: 1.5rem;
    margin-bottom: 3rem;
}

.mphb_sc_booking_confirmation {
    padding: 3rem;
}

.accommodations-title,
.accommodations-list {
    font-size: 1.5rem;

}

.accommodations-list a{
    color: #561598;
}

.mphb_sc_booking_confirmation .mphb-booking-details-section .mphb-booking-details>li span.label,
.mphb_sc_booking_confirmation .mphb-booking-details-section .mphb-booking-details>li span.value {
    font-size: 1.5rem;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0.8rem 2.5rem #19171B4d;
    }

    50% {
        box-shadow: 0 0.8rem 3.5rem rgba(0, 191, 165, 0.5);
    }
}

/* Hover effect for entire booking section */
.mphb-booking-details-section {
    position: relative;
    overflow: hidden;
}

.mphb-booking-details-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 191, 165, 0.05), transparent);
    transition: left 0.5s ease;
}

.mphb-booking-details-section:hover::after {
    left: 100%;
}

.mphb-booking-details-section .invoice-link {
    font-size: 1.5rem;
    color: #561598;

}

/* Mobile animations using px */
@media (max-width: 768px) {
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}


@media (max-width: 768px) {
    .mphb-payment-messages {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .mphb_sc_booking_confirmation {
        padding: 30px;
    }

    .accommodations-title,
    .accommodations-list {
        font-size: 15px;
    }

    .mphb_sc_booking_confirmation .mphb-booking-details-section .mphb-booking-details>li span.label,
    .mphb_sc_booking_confirmation .mphb-booking-details-section .mphb-booking-details>li span.value {
        font-size: 15px;
    }

    .mphb-booking-details-section .invoice-link {
        font-size: 15px;
    }
}



/* ============================================
   ROOM PAGE CLEAN STYLES
   ============================================ */

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */
.single-accommodation {
    background-color: #ffffff;
}

.room-details.container {
    max-width: 120rem;
    margin: 0 auto;
    padding: 0 2rem;
    margin-top: 11.5rem;
}

/* ============================================
   FEATURED IMAGE
   ============================================ */
.room-featured-image {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    min-height: calc(100vh - 24rem);
    max-height: calc(100vh - 24rem);
    height: 100%;
    margin-bottom: 4rem;
    /* border-radius: 0.8rem; */
    box-shadow: 0 0.4rem 2rem rgba(0, 0, 0, 0.1);
}

/* ============================================
   ROOM HEADER (Title & Price)
   ============================================ */
.room-header {
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 0.2rem solid #e9ecef;
}

.room-title {
    font-size: 3.6rem;
    font-weight: 700;
    color: #222;
    margin: 0 0 2rem;
    line-height: 1.3;
}

.room-price {
    font-size: 2.8rem;
    font-weight: 700;
    color: #19171B;
    margin: 0;
}

/* ============================================
   ROOM CONTENT/DESCRIPTION
   ============================================ */
.room-content {
    line-height: 1.8;
    color: #555;
    font-size: 1.6rem;
    margin-bottom: 5rem;
}

.room-content p {
    margin-bottom: 1.5rem;
}

.room-content ul,
.room-content ol {
    margin: 1.5rem 0;
    /* padding-left: 2.5rem; */
}

.room-content li {
    margin-bottom: 0.8rem;
}

/* ============================================
   DETAILS SECTION
   ============================================ */
.mphb-details-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #222;
    margin: 0 0 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 0.3rem solid #19171B;
    display: inline-block;
}

.mphb-single-room-type-attributes {
    list-style: none;
    padding: 0;
    margin: 0 0 4rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(30rem, 1fr));
    gap: 2rem;
}

.mphb-single-room-type-attributes li {
    padding: 2rem;
    background-color: #f8f9fa;
    /* border-radius: 0.8rem; */
    border-left: 0.4rem solid #19171B;
    transition: all 0.3s ease;
}

.mphb-single-room-type-attributes li:hover {
    background-color: #e9ecef;
    transform: translateY(-0.2rem);
    box-shadow: 0 0.4rem 1.2rem rgba(0, 191, 165, 0.1);
}

.mphb-attribute-title {
    display: block;
    font-weight: 700;
    color: #333;
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
}

.mphb-attribute-value {
    display: block;
    color: #555;
    font-size: 1.6rem;
    font-weight: 500;
}

/* ============================================
   PRICE DISPLAY
   ============================================ */
.mphb-regular-price {
    background-color: #f8f9fa;
    padding: 2.5rem;
    /* border-radius: 0.8rem; */
    border-left: 0.4rem solid #19171B;
    margin-bottom: 5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.mphb-regular-price strong {
    color: #333;
    font-size: 1.6rem;
}

.mphb-price {
    color: #19171B;
    font-weight: 700;
    font-size: 2.4rem;
}

.mphb-currency {
    font-weight: 600;
    margin-right: 0.2rem;
}

.mphb-price-period {
    color: #777;
    font-size: 1.4rem;
    font-weight: 400;
}

/* ============================================
   AVAILABILITY CALENDAR
   ============================================ */

/* Calendar Section Title */
.mphb-calendar-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #222;
    margin: 0 0 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 0.3rem solid #19171B;
    display: inline-block;
}

.mphb-calendar {
    margin-bottom: 5rem;
}

/* ============================================
   CALENDAR CONTAINER
   ============================================ */
.datepick {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 0.1rem solid #e0e0e0;
    border-radius: 1.2rem;
    padding: 3rem;
    box-shadow: 0 0.8rem 3rem rgba(25, 23, 27, 0.08);
    overflow: hidden;
}

.datepick-multi {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    width: 100% !important;
}

/* ============================================
   CALENDAR NAVIGATION
   ============================================ */
.datepick-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 0.8rem;
    box-shadow: 0 0.2rem 0.8rem rgba(25, 23, 27, 0.05);
}

.datepick-cmd {
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #19171B 0%, rgba(25, 23, 27, 0.85) 100%);
    color: #ffffff;
    /* border-radius: 0.6rem; */
    text-decoration: none;
    font-weight: 700;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 0.4rem 1.2rem rgba(25, 23, 27, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.05rem;
}

.datepick-cmd:hover {
    background: linear-gradient(135deg, rgba(25, 23, 27, 0.85) 0%, #19171B 100%);
    transform: translateY(-0.2rem);
    box-shadow: 0 0.6rem 1.8rem rgba(25, 23, 27, 0.4);
}

.datepick-cmd:active {
    transform: translateY(0);
}

/* Disabled Navigation Buttons */
.datepick-cmd-prev.datepick-disabled,
.datepick-cmd-next.datepick-disabled {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    color: #adb5bd;
    cursor: not-allowed;
    box-shadow: none;
}

.datepick-cmd-prev.datepick-disabled:hover,
.datepick-cmd-next.datepick-disabled:hover {
    transform: none;
}

/* ============================================
   CALENDAR MONTHS
   ============================================ */
.datepick-month-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(32rem, 1fr));
    gap: 2.5rem;
}

.datepick-month {
    background-color: #ffffff;
    /* border-radius: 1rem; */
    padding: 2rem;
    box-shadow: 0 0.4rem 1.5rem rgba(25, 23, 27, 0.06);
    border: 0.1rem solid #f0f0f0;
    transition: all 0.3s ease;
    width: 100% !important;
}

.mphb-calendar .datepick-month table {
    height: auto;
}

.datepick-month:hover {
    box-shadow: 0 0.6rem 2rem rgba(25, 23, 27, 0.1);
    transform: translateY(-0.2rem);
}

/* Month Header */
.datepick-month-header {
    text-align: center;
    font-weight: 700;
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 2rem;
    padding: 1.2rem;
    background: linear-gradient(135deg, #19171B 0%, rgba(25, 23, 27, 0.85) 100%);
    /* border-radius: 0.6rem; */
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}

/* Month/Year Dropdowns */
.datepick-month-year {
    padding: 0.8rem 1.2rem !important;
    border: 0.2rem solid #e0e0e0 !important;
    /* border-radius: 0.6rem !important; */
    font-size: 1.4rem !important;
    font-weight: 600 !important;
    margin: 0 0.4rem !important;
    background-color: #ffffff !important;
    color: #333 !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
}

.datepick-month-year:hover {
    border-color: #19171B;
    background-color: #f8f9fa;
}

.datepick-month-year:focus {
    outline: none;
    border-color: #19171B;
    box-shadow: 0 0 0 0.3rem rgba(25, 23, 27, 0.2);
}

/* ============================================
   CALENDAR TABLE
   ============================================ */
.datepick table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0.4rem;
    margin-top: 1.5rem;
}

/* Table Header - Days of Week */
.datepick thead tr {
    background-color: transparent;
}

.datepick th {
    text-align: center;
    padding: 1rem 0.5rem;
    font-weight: 700;
    color: #666;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
    background-color: transparent;
    border: none;
}

/* Table Body */
.datepick tbody {
    background-color: transparent;
}

.datepick td {
    text-align: center;
    padding: 0.2rem;
    position: relative;
}

.datepick td span,
.datepick td a {
    display: block !important;
    padding: 1.2rem 0.8rem !important;
    /* border-radius: 0.6rem !important; */
    font-size: 1.4rem !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    border: 0.2rem solid transparent !important;
}

/* ============================================
   DATE STATES - BEAUTIFUL COLOR SCHEME
   ============================================ */

/* Available Dates - Fresh Green */
.mphb-available-date {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%) !important;
    color: #2e7d32 !important;
    cursor: pointer;
    text-decoration: none;
    border-color: transparent !important;
}

.mphb-available-date:hover {
    background: linear-gradient(135deg, #a5d6a7 0%, #81c784 100%) !important;
    /* transform: scale(1.08); */
    box-shadow: 0 0.4rem 1.2rem rgba(46, 125, 50, 0.3);
    border-color: #4caf50 !important;
}

/* Booked Dates - Soft Red */
.mphb-booked-date {
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%) !important;
    color: #c62828 !important;
    cursor: not-allowed;
    border-color: transparent !important;
    position: relative;
}

.mphb-booked-date::after {
    content: "×";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: #ef5350;
    opacity: 0.3;
    pointer-events: none;
}

/* Check-in/Check-out Dates */
.mphb-date-check-in {
    background: linear-gradient(135deg, #e1f5fe 0%, #b3e5fc 100%) !important;
    color: #01579b !important;
    font-weight: 700;
}

.mphb-date-check-out {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%) !important;
    color: #e65100 !important;
    font-weight: 700;
}

/* Past Dates - Light Gray */
.mphb-past-date {
    background-color: #fafafa !important;
    color: #bdbdbd !important;
    cursor: not-allowed;
    border-color: transparent !important;
}

/* Today - Special Highlight with #19171B */
.datepick-today {
    border: 0.2rem solid #19171bc5 !important;
    font-weight: 700;
    box-shadow: 0 0 0 0.2rem rgba(25, 23, 27, 0.2);
}

.datepick-today.mphb-available-date {
    background: linear-gradient(135deg, #4caf50 0%, #4caf50d9 100%) !important;
    color: #ffffff !important;
}

/* Other Month Dates - Hidden */
.datepick-other-month {
    visibility: hidden;
}

/* Weekend Dates - Subtle Yellow Tint */
/* .datepick-weekend.mphb-available-date {
    background: linear-gradient(135deg, #fff9e6 0%, #ffecb3 100%) !important;
    color: #f57f17 !important;
} */

/* .datepick-weekend.mphb-available-date:hover {
    background: linear-gradient(135deg, #ffe082 0%, #ffd54f 100%) !important;
} */

/* Selected Date Range */
.datepick-selected,
.mphb-selected-date {
    background: linear-gradient(135deg, #19171B 0%, rgba(25, 23, 27, 0.85) 100%) !important;
    color: #ffffff !important;
    font-weight: 700;
    border-color: rgba(25, 23, 27, 0.7) !important;
}



/* Unavailable for Check-in/Check-out */
.mphb-mark-as-unavailable--check-in,
.mphb-mark-as-unavailable--check-out {
    opacity: 0.6;
}

.mphb-unselectable-date--check-in {
    cursor: not-allowed;
}

/* ============================================
   CALENDAR CONTROLS
   ============================================ */
.datepick-ctrl {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2.5rem;
    padding: 1.5rem 2rem;
    background-color: #ffffff;
    border-radius: 0.8rem;
    box-shadow: 0 0.2rem 0.8rem rgba(25, 23, 27, 0.05);
}

.mphb-calendar__selected-dates {
    font-size: 1.5rem;
    color: #555;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.mphb-calendar__selected-dates::before {
    content: "📅";
    font-size: 1.8rem;
}

/* Clear Button */
.datepick-cmd-clear {
    padding: 1rem 2.5rem;
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    border: none;
    box-shadow: none;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
}

.datepick-cmd-clear:hover {
    box-shadow: none;
    color: #ffffff;
    background: none
}


.datepick-clear-fix {
    clear: both;
}



/* ============================================
   Datepick Popup
   ============================================ */

.datepick-popup .datepick-multi {
    gap: 1rem;
}

.datepick-popup .datepick-month.last {
    display: none;
}

.datepick-popup .datepick td span,
.datepick-popup .datepick td a,
.datepick-popup .datepick td {
    padding: 0 !important;
}

.datepick-popup .datepick-ctrl,
.datepick-popup .datepick-nav {
    margin-top: 0;
}

.datepick-popup .datepick-ctrl .datepick-cmd {
    background-color: #f08080;
}

.datepick-popup .datepick-ctrl .datepick-cmd:hover {
    background-color: #f08080;
}


/* ============================================
   CALENDAR LEGEND (Optional)
   ============================================ */
.mphb-calendar-legend {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 0.8rem;
    box-shadow: 0 0.2rem 0.8rem rgba(25, 23, 27, 0.05);
}

.mphb-legend-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.3rem;
    color: #555;
}

.mphb-legend-color {
    width: 2rem;
    height: 2rem;
    border-radius: 0.4rem;
    border: 0.1rem solid #e0e0e0;
}

.mphb-legend-available {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
}

.mphb-legend-booked {
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
}

.mphb-legend-today {
    background: linear-gradient(135deg, #19171B 0%, rgba(25, 23, 27, 0.85) 100%);
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE (using px)
   ============================================ */
@media (max-width: 768px) {
    .mphb-calendar-title {
        font-size: 22px;
        margin-bottom: 25px;
        padding-bottom: 12px;
        border-bottom: 3px solid #19171B;
    }

    .mphb-calendar {
        margin-bottom: 40px;
    }

    .datepick {
        border: 1px solid #e0e0e0;
        border-radius: 10px;
        padding: 20px;
        box-shadow: 0 4px 15px rgba(25, 23, 27, 0.06);
    }

    .datepick-multi {
        gap: 20px;
    }

    .datepick-nav {
        gap: 12px;
        margin-bottom: 20px;
        padding: 12px;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(25, 23, 27, 0.05);
    }

    .datepick-cmd {
        padding: 10px 18px;
        /* border-radius: 6px; */
        font-size: 13px;
        letter-spacing: 0.5px;
        box-shadow: 0 3px 10px rgba(25, 23, 27, 0.25);
    }

    .datepick-cmd:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(25, 23, 27, 0.3);
    }

    .datepick-month-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .datepick-month {
        /* border-radius: 8px; */
        padding: 15px;
        box-shadow: 0 3px 12px rgba(25, 23, 27, 0.05);
        border: 1px solid #f0f0f0;
    }

    .datepick-month-header {
        font-size: 16px;
        margin-bottom: 15px;
        padding: 10px;
        /* border-radius: 6px; */
        letter-spacing: 1px;
    }

    .datepick-month-year {
        padding: 6px 10px;
        border: 2px solid #e0e0e0;
        /* border-radius: 5px; */
        font-size: 13px;
        margin: 0 3px;
    }

    .datepick-month-year:hover {
        border-color: #19171B;
    }

    .datepick-month-year:focus {
        border-color: #19171B;
        box-shadow: 0 0 0 2px rgba(25, 23, 27, 0.2);
    }

    .datepick table {
        border-spacing: 3px;
        margin-top: 12px;
    }

    .datepick th {
        padding: 8px 4px;
        font-size: 11px;
        letter-spacing: 0.5px;
    }

    .datepick td {
        padding: 2px;
    }

    .datepick td span,
    .datepick td a {
        padding: 10px 6px !important;
        /* border-radius: 5px !important; */
        font-size: 13px !important;
        border: 2px solid transparent !important;
    }

    .mphb-available-date:hover {
        transform: scale(1.05);
        box-shadow: 0 3px 10px rgba(46, 125, 50, 0.25);
    }

    .mphb-booked-date::after {
        font-size: 18px;
    }

    .datepick-today {
        border: 2px solid #19171B !important;
        box-shadow: 0 0 0 2px rgba(25, 23, 27, 0.2);
    }

    .datepick-ctrl {
        margin-top: 20px;
        padding: 12px 15px;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(25, 23, 27, 0.05);
    }

    .mphb-calendar__selected-dates {
        font-size: 13px;
        gap: 6px;
    }

    .mphb-calendar__selected-dates::before {
        font-size: 16px;
    }

    .datepick-cmd-clear {
        padding: 10px 18px;
        /* border-radius: 6px; */
        font-size: 13px;
        letter-spacing: 0.5px;
    }

    .datepick-cmd-clear:hover {
        transform: translateY(-1px);
    }

    .mphb-calendar-legend {
        gap: 15px;
        margin-top: 15px;
        padding: 12px;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(25, 23, 27, 0.05);
    }

    .mphb-legend-item {
        gap: 6px;
        font-size: 12px;
    }

    .mphb-legend-color {
        width: 18px;
        height: 18px;
        border-radius: 4px;
        border: 1px solid #e0e0e0;
    }
}

@media (max-width: 576px) {
    .mphb-calendar-title {
        font-size: 20px;
        margin-bottom: 20px;
        padding-bottom: 10px;
        border-bottom: 2px solid #19171B;
    }

    .mphb-calendar {
        margin-bottom: 35px;
    }

    .datepick {
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        padding: 15px;
        box-shadow: 0 3px 12px rgba(25, 23, 27, 0.05);
    }

    .datepick-multi {
        gap: 15px;
    }

    .datepick-nav {
        gap: 8px;
        margin-bottom: 15px;
        padding: 10px;
        border-radius: 6px;
        flex-wrap: wrap;
    }

    .datepick-cmd {
        padding: 8px 15px;
        /* border-radius: 5px; */
        font-size: 12px;
        letter-spacing: 0.5px;
    }

    .datepick-month {
        /* border-radius: 8px; */
        padding: 12px;
        box-shadow: 0 2px 10px rgba(25, 23, 27, 0.04);
        border: 1px solid #f0f0f0;
    }

    .datepick-month-header {
        font-size: 15px;
        margin-bottom: 12px;
        padding: 8px;
        /* border-radius: 5px; */
        letter-spacing: 0.5px;
    }

    .datepick-month-year {
        padding: 5px 8px;
        border: 1px solid #e0e0e0;
        /* border-radius: 4px; */
        font-size: 12px;
        margin: 0 2px;
    }

    .datepick-month-year:focus {
        box-shadow: 0 0 0 2px rgba(25, 23, 27, 0.15);
    }

    .datepick table {
        border-spacing: 2px;
        margin-top: 10px;
    }

    .datepick th {
        padding: 6px 2px;
        font-size: 10px;
        letter-spacing: 0px;
    }

    .datepick td {
        padding: 1px;
    }

    .datepick td span,
    .datepick td a {
        padding: 8px 4px !important;
        /* border-radius: 4px !important; */
        font-size: 12px !important;
        border: 1px solid transparent !important;
    }

    .mphb-available-date:hover {
        transform: scale(1.03);
        box-shadow: 0 2px 8px rgba(46, 125, 50, 0.2);
    }

    .mphb-booked-date::after {
        font-size: 16px;
    }

    .datepick-today {
        border: 2px solid #19171B !important;
        box-shadow: 0 0 0 1px rgba(25, 23, 27, 0.15);
    }

    .datepick-ctrl {
        margin-top: 15px;
        padding: 10px 12px;
        border-radius: 6px;
        flex-direction: column;
        gap: 10px;
    }

    .mphb-calendar__selected-dates {
        font-size: 12px;
        gap: 5px;
    }

    .mphb-calendar__selected-dates::before {
        font-size: 14px;
    }

    .datepick-cmd-clear {
        padding: 8px 20px;
        /* border-radius: 5px; */
        font-size: 12px;
        letter-spacing: 0.5px;
        width: 100%;
    }

    .mphb-calendar-legend {
        gap: 10px;
        margin-top: 12px;
        padding: 10px;
        border-radius: 6px;
    }

    .mphb-legend-item {
        gap: 5px;
        font-size: 11px;
    }

    .mphb-legend-color {
        width: 16px;
        height: 16px;
        border-radius: 3px;
        border: 1px solid #e0e0e0;
    }
}

/* ============================================
   RESERVATION FORM
   ============================================ */
.mphb-reservation-form-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #222;
    margin: 0 0 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 0.3rem solid #19171B;
    display: inline-block;
}

.mphb-booking-form {
    background-color: #f8f9fa;
    padding: 3rem;
    border-radius: 0.8rem;
    margin-bottom: 5rem;
    border: 0.1rem solid #e9ecef;
}

.mphb-required-fields-tip {
    margin: 0 0 2.5rem;
    color: #777;
    font-size: 1.4rem;
}

.mphb-required-fields-tip abbr {
    color: #dc3545;
    text-decoration: none;
    font-weight: bold;
}

/* Form Fields */
.mphb-check-in-date-wrapper,
.mphb-check-out-date-wrapper {
    margin-bottom: 2rem;
}

.mphb-booking-form label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.8rem;
    font-size: 1.5rem;
}

.mphb-booking-form label abbr {
    color: #dc3545;
    text-decoration: none;
    margin-left: 0.3rem;
}

.mphb-booking-form input[type="text"] {
    width: 100%;
    max-width: 40rem;
    padding: 1.2rem 1.5rem;
    border: 0.1rem solid #ced4da;
    /* border-radius: 0.4rem; */
    font-size: 1.5rem;
    transition: all 0.3s ease;
    background-color: #ffffff;
}

.mphb-booking-form input[type="text"]:focus {
    outline: none;
    border-color: #19171B;
    box-shadow: 0 0 0 0.3rem rgba(0, 191, 165, 0.1);
}

/* Reserve Section */
.mphb-reserve-room-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 0.1rem solid #e9ecef;
}

.mphb-rooms-quantity-wrapper {
    margin-bottom: 2rem;
    font-size: 1.5rem;
    color: #555;
}

.mphb-rooms-quantity {
    padding: 0.8rem 1.2rem;
    border: 0.1rem solid #ced4da;
    border-radius: 0.4rem;
    font-size: 1.4rem;
    margin: 0 0.5rem;
}

/* Buttons */
.mphb-reserve-btn-wrapper,
.mphb-reserve-room-section {
    text-align: left;
}

.mphb-reserve-btn,
.mphb-confirm-reservation,
.mphb-button {
    padding: 1.5rem 4rem;
    background-color: #19171B;
    color: #ffffff;
    border: none;
    /* border-radius: 0.6rem; */
    font-size: 1.6rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    box-shadow: 0 0.4rem 1.5rem #19171B4d;
}

.mphb-reserve-btn:hover,
.mphb-confirm-reservation:hover,
.mphb-button:hover {
    background-color: #19171b8f;
    transform: translateY(-0.2rem);
    box-shadow: 0 0.6rem 2rem #19171B66;
}

/* Error Messages */
.mphb-errors-wrapper {
    background-color: #f8d7da;
    color: #721c24;
    padding: 1.5rem;
    border-radius: 0.4rem;
    border-left: 0.4rem solid #dc3545;
    margin-bottom: 2rem;
}

/* Hide class */
.mphb-hide {
    display: none !important;
}

/* ============================================
   WE RECOMMEND SECTION
   ============================================ */
.we-recommend-section {
    margin-bottom: 6rem;
    padding-top: 2rem;
    border-top: 0.2rem solid #e9ecef;
}

.recommend-title {
    font-size: 2rem;
    font-weight: 700;
    color: #222;
    margin: 0 0 2.5rem;
    letter-spacing: 0.1rem;
}

.recommend-card {
    background-color: #fff;
    border: 0.1rem solid #e9ecef;
    /* border-radius: 0.8rem; */
    overflow: hidden;
    box-shadow: 0 0.2rem 0.8rem rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.recommend-card:hover {
    transform: translateY(-0.4rem);
    box-shadow: 0 0.6rem 2rem rgba(0, 0, 0, 0.15);
}

.recommend-grid {
    display: grid;
    grid-template-columns: 30rem 1fr;
    gap: 0;
}

.recommend-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.recommend-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.recommend-card:hover .recommend-image img {
    transform: scale(1.1);
}

.recommend-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
}

.recommend-room-title {
    font-size: 2.2rem;
    font-weight: 600;
    margin: 0;
}

.recommend-room-title a {
    color: #222;
    text-decoration: none;
    transition: color 0.3s ease;
}

.recommend-room-title a:hover {
    color: #19171B;
}

.btn-book {
    display: inline-block;
    padding: 1.2rem 3.5rem;
    background-color: #19171B;
    color: #ffffff;
    text-decoration: none;
    /* border-radius: 0.4rem; */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    transition: all 0.3s ease;
    align-self: flex-start;
    font-size: 1.4rem;
}

.btn-book:hover {
    background-color: #19171b8f;
    transform: translateY(-0.2rem);
    box-shadow: 0 0.4rem 1.2rem #19171B4d;
}

/* ============================================
   RECENT COMMENTS SECTION
   ============================================ */
.room-comments {
    margin-bottom: 6rem;
    padding-top: 2rem;
    border-top: 0.2rem solid #e9ecef;
}

.room-comments h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #222;
    margin: 0 0 2.5rem;
    letter-spacing: 0.1rem;
}

/* Comment Form */
.comment-respond {
    background-color: #f8f9fa;
    padding: 3rem;
    /* border-radius: 0.8rem; */
    border: 0.1rem solid #e9ecef;
}

.comment-reply-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #222;
    margin: 0 0 2rem;
}

.comment-reply-title small {
    font-size: 1.4rem;
    font-weight: 400;
}

.comment-reply-title small a {
    color: #19171B;
    text-decoration: none;
}

.logged-in-as {
    margin-bottom: 2rem;
    font-size: 1.4rem;
    color: #555;
}

.logged-in-as a {
    color: #19171B;
    text-decoration: none;
}

.comment-form-comment label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.8rem;
    font-size: 1.5rem;
}

.comment-form-comment .required {
    color: #dc3545;
}

.comment-form-comment textarea {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 0.1rem solid #ced4da;
    /* border-radius: 0.4rem; */
    font-size: 1.5rem;
    transition: all 0.3s ease;
    background-color: #ffffff;
    font-family: inherit;
    resize: vertical;
}

.comment-form-comment textarea:focus {
    outline: none;
    border-color: #19171B;
    box-shadow: 0 0 0 0.3rem rgba(0, 191, 165, 0.1);
}

.form-submit {
    margin-top: 2rem;
}

.form-submit .submit {
    padding: 1.2rem 3rem;
    background-color: #19171B;
    color: #ffffff;
    border: none;
    /* border-radius: 0.4rem; */
    font-size: 1.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
}

.form-submit .submit:hover {
    background-color: #19171b8f;
    transform: translateY(-0.2rem);
    box-shadow: 0 0.4rem 1.2rem #19171B4d;
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE (using px)
   ============================================ */
@media (max-width: 992px) {
    .recommend-grid {
        grid-template-columns: 1fr;
    }

    .recommend-image {
        height: 300px;
    }

    .datepick-month-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .room-details.container {
        margin-top: 80px;
        padding: 0 15px;
    }

    .room-featured-image {
        min-height: 300px;
        max-height: 400px;
        margin-bottom: 30px;
        /* border-radius: 6px; */
    }

    .room-header {
        margin-bottom: 30px;
        padding-bottom: 25px;
        border-bottom: 2px solid #e9ecef;
    }

    .room-title {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .room-price {
        font-size: 22px;
    }

    .room-content {
        font-size: 15px;
        margin-bottom: 40px;
    }

    .room-content p {
        margin-bottom: 12px;
    }

    .mphb-details-title,
    .mphb-calendar-title,
    .mphb-reservation-form-title {
        font-size: 22px;
        margin-bottom: 20px;
        padding-bottom: 12px;
        border-bottom: 3px solid #19171B;
    }

    .mphb-single-room-type-attributes {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 30px;
    }

    .mphb-single-room-type-attributes li {
        padding: 15px;
        /* border-radius: 6px; */
        border-left: 4px solid #19171B;
    }

    .mphb-attribute-title {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .mphb-attribute-value {
        font-size: 15px;
    }

    .mphb-regular-price {
        padding: 20px;
        /* border-radius: 6px; */
        border-left: 4px solid #19171B;
        margin-bottom: 40px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .mphb-regular-price strong {
        font-size: 15px;
    }

    .mphb-price {
        font-size: 20px;
    }

    .mphb-price-period {
        font-size: 13px;
    }

    .mphb-calendar {
        margin-bottom: 40px;
    }

    .mphb-calendar .datepick-ctrl {
        border-radius: 0 !important;
    }

    .datepick {
        border: 1px solid #e9ecef;
        border-radius: 6px;
        padding: 15px;
    }

    .datepick-multi {
        gap: 15px;
    }

    .datepick-nav {
        gap: 10px;
        margin-bottom: 15px;
        padding-bottom: 12px;
        border-bottom: 1px solid #e9ecef;
    }

    .datepick-cmd {
        padding: 8px 15px;
        /* border-radius: 4px; */
        font-size: 13px;
    }

    .datepick-month {
        /* border-radius: 6px; */
        padding: 12px;
    }

    .datepick-month-header {
        font-size: 15px;
        margin-bottom: 12px;
        padding-bottom: 8px;
        border-bottom: 2px solid #19171B;
    }

    .datepick-month-year {
        padding: 6px 8px;
        border: 1px solid #ced4da;
        /* border-radius: 4px; */
        font-size: 13px;
        margin: 0 3px;
    }

    .datepick th {
        padding: 8px;
        font-size: 12px;
    }

    .datepick td span,
    .datepick td a {
        padding: 10px !important;
        /* border-radius: 4px !important; */
        font-size: 13px !important;
    }

    .datepick-today {
        border: 2px solid #19171B !important;
    }

    .datepick-ctrl {
        margin-top: 15px;
        padding-top: 12px;
        border-top: 1px solid #e9ecef;
    }

    .mphb-calendar__selected-dates {
        font-size: 13px;
    }

    .datepick-cmd-clear {
        padding: 8px 15px;
        /* border-radius: 4px; */
        font-size: 13px;
    }

    .mphb-booking-form {
        padding: 25px 20px;
        border-radius: 6px;
        margin-bottom: 40px;
        border: 1px solid #e9ecef;
    }

    .mphb-required-fields-tip {
        margin-bottom: 20px;
        font-size: 13px;
    }

    .mphb-check-in-date-wrapper,
    .mphb-check-out-date-wrapper {
        margin-bottom: 15px;
    }

    .mphb-booking-form label {
        margin-bottom: 6px;
        font-size: 14px;
    }

    .mphb-booking-form label abbr {
        margin-left: 3px;
    }

    .mphb-booking-form input[type="text"] {
        max-width: 100%;
        padding: 10px 12px;
        border: 1px solid #ced4da;
        /* border-radius: 4px; */
        font-size: 14px;
    }

    .mphb-booking-form input[type="text"]:focus {
        box-shadow: 0 0 0 3px rgba(0, 191, 165, 0.1);
    }

    .mphb-reserve-room-section {
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px solid #e9ecef;
    }

    .mphb-rooms-quantity-wrapper {
        margin-bottom: 15px;
        font-size: 14px;
    }

    .mphb-rooms-quantity {
        padding: 6px 10px;
        border: 1px solid #ced4da;
        border-radius: 4px;
        font-size: 13px;
        margin: 0 5px;
    }

    .mphb-reserve-btn,
    .mphb-confirm-reservation,
    .mphb-button {
        padding: 12px 30px;
        /* border-radius: 6px; */
        font-size: 15px;
        letter-spacing: 1px;
        width: 100%;
    }

    .mphb-reserve-btn:hover,
    .mphb-confirm-reservation:hover,
    .mphb-button:hover {
        transform: translateY(-2px);
    }

    .mphb-errors-wrapper {
        padding: 12px;
        border-radius: 4px;
        border-left: 4px solid #dc3545;
        margin-bottom: 15px;
        font-size: 14px;
    }

    .we-recommend-section {
        margin-bottom: 50px;
        padding-top: 15px;
        border-top: 2px solid #e9ecef;
    }

    .recommend-title {
        font-size: 18px;
        margin-bottom: 20px;
        letter-spacing: 1px;
    }

    .recommend-card {
        border: 1px solid #e9ecef;
        /* border-radius: 6px; */
    }

    .recommend-content {
        padding: 25px 20px;
        gap: 15px;
    }

    .recommend-room-title {
        font-size: 20px;
    }

    .btn-book {
        padding: 10px 30px;
        /* border-radius: 4px; */
        letter-spacing: 1px;
        font-size: 13px;
    }

    .room-comments {
        margin-bottom: 50px;
        padding-top: 15px;
        border-top: 2px solid #e9ecef;
    }

    .room-comments h3 {
        font-size: 18px;
        margin-bottom: 20px;
        letter-spacing: 1px;
    }

    .comment-respond {
        padding: 25px 20px;
        /* border-radius: 6px; */
        border: 1px solid #e9ecef;
    }

    .comment-reply-title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .comment-reply-title small {
        font-size: 13px;
    }

    .logged-in-as {
        margin-bottom: 15px;
        font-size: 13px;
    }

    .comment-form-comment label {
        margin-bottom: 6px;
        font-size: 14px;
    }

    .comment-form-comment textarea {
        padding: 10px 12px;
        border: 1px solid #ced4da;
        /* border-radius: 4px; */
        font-size: 14px;
    }

    .comment-form-comment textarea:focus {
        box-shadow: 0 0 0 3px rgba(0, 191, 165, 0.1);
    }

    .form-submit {
        margin-top: 15px;
    }

    .form-submit .submit {
        padding: 10px 25px;
        /* border-radius: 4px; */
        font-size: 14px;
        letter-spacing: 0.5px;
        width: 100%;
    }

    .form-submit .submit:hover {
        transform: translateY(-2px);
    }
}

@media (max-width: 576px) {
    .room-details.container {
        margin-top: 70px;
        padding: 0 10px;
    }

    .room-featured-image {
        min-height: 250px;
        max-height: 350px;
        margin-bottom: 25px;
        /* border-radius: 6px; */
    }

    .room-header {
        margin-bottom: 25px;
        /* padding-bottom: 20px; */
        border-bottom: 2px solid #e9ecef;
    }

    .room-title {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .room-price {
        font-size: 20px;
    }

    .room-content {
        font-size: 14px;
        margin-bottom: 35px;
    }

    .room-content p {
        margin-bottom: 10px;
    }

    .mphb-details-title,
    .mphb-calendar-title,
    .mphb-reservation-form-title {
        font-size: 20px;
        margin-bottom: 18px;
        padding-bottom: 10px;
        border-bottom: 2px solid #19171B;
    }

    .mphb-single-room-type-attributes {
        gap: 12px;
        margin-bottom: 25px;
    }

    .mphb-single-room-type-attributes li {
        padding: 12px;
        /* border-radius: 6px; */
        border-left: 3px solid #19171B;
    }

    .mphb-attribute-title {
        font-size: 12px;
        margin-bottom: 5px;
    }

    .mphb-attribute-value {
        font-size: 14px;
    }

    .mphb-regular-price {
        padding: 15px;
        /* border-radius: 6px; */
        border-left: 3px solid #19171B;
        margin-bottom: 35px;
        gap: 6px;
    }

    .mphb-regular-price strong {
        font-size: 14px;
    }

    .mphb-price {
        font-size: 18px;
    }

    .mphb-currency {
        margin-right: 2px;
    }

    .mphb-price-period {
        font-size: 12px;
    }

    .mphb-calendar {
        margin-bottom: 35px;
    }

    .datepick {
        border: 1px solid #e9ecef;
        border-radius: 6px;
        padding: 12px;
    }

    .datepick-multi {
        gap: 12px;
    }

    .datepick-nav {
        gap: 8px;
        margin-bottom: 12px;
        padding-bottom: 10px;
        border-bottom: 1px solid #e9ecef;
    }

    .datepick-cmd {
        padding: 6px 12px;
        /* border-radius: 4px; */
        font-size: 12px;
    }

    .datepick-month {
        /* border-radius: 6px; */
        padding: 10px;
    }

    .datepick-month-header {
        font-size: 14px;
        margin-bottom: 10px;
        padding-bottom: 8px;
        border-bottom: 2px solid #19171B;
    }

    .datepick-month-year {
        padding: 5px 6px;
        border: 1px solid #ced4da;
        /* border-radius: 4px; */
        font-size: 12px;
        margin: 0 2px;
    }

    .datepick th {
        padding: 6px;
        font-size: 11px;
    }

    .datepick td span,
    .datepick td a {
        padding: 8px !important;
        /* border-radius: 4px !important; */
        font-size: 12px !important;
    }

    .datepick-today {
        border: 2px solid #19171B !important;
    }

    .datepick-ctrl {
        margin-top: 12px;
        padding-top: 10px;
        border-top: 1px solid #e9ecef;
    }

    .mphb-calendar__selected-dates {
        font-size: 12px;
    }

    .datepick-cmd-clear {
        padding: 6px 12px;
        /* border-radius: 4px; */
        font-size: 12px;
    }

    .mphb-booking-form {
        padding: 20px 15px;
        border-radius: 6px;
        margin-bottom: 35px;
        border: 1px solid #e9ecef;
    }

    .mphb-required-fields-tip {
        margin-bottom: 18px;
        font-size: 15px;
    }

    .mphb-check-in-date-wrapper,
    .mphb-check-out-date-wrapper {
        margin-bottom: 12px;
    }

    .mphb-booking-form label {
        margin-bottom: 5px;
        font-size: 13px;
    }

    .mphb-booking-form label abbr {
        margin-left: 2px;
    }

    .mphb-booking-form input[type="text"] {
        padding: 10px 12px;
        border: 1px solid #ced4da;
        /* border-radius: 4px; */
        font-size: 14px;
    }

    .mphb-booking-form input[type="text"]:focus {
        box-shadow: 0 0 0 2px rgba(0, 191, 165, 0.1);
    }

    .mphb-reserve-room-section {
        margin-top: 12px;
        padding-top: 12px;
        border-top: 1px solid #e9ecef;
    }

    .mphb-rooms-quantity-wrapper {
        margin-bottom: 12px;
        font-size: 13px;
    }

    .mphb-rooms-quantity {
        padding: 5px 8px;
        border: 1px solid #ced4da;
        border-radius: 4px;
        font-size: 12px;
        margin: 0 4px;
    }

    .mphb-reserve-btn,
    .mphb-confirm-reservation,
    .mphb-button {
        padding: 12px 25px;
        /* border-radius: 6px; */
        font-size: 14px;
        letter-spacing: 0.5px;
        width: 100%;
    }

    .mphb-reserve-btn:hover,
    .mphb-confirm-reservation:hover,
    .mphb-button:hover {
        transform: translateY(-1px);
    }

    .mphb-errors-wrapper {
        padding: 10px;
        border-radius: 4px;
        border-left: 3px solid #dc3545;
        margin-bottom: 12px;
        font-size: 13px;
    }

    .we-recommend-section {
        margin-bottom: 40px;
        padding-top: 12px;
        border-top: 2px solid #e9ecef;
    }

    .recommend-title {
        font-size: 16px;
        margin-bottom: 18px;
        letter-spacing: 0.5px;
    }

    .recommend-card {
        border: 1px solid #e9ecef;
        /* border-radius: 6px; */
    }

    .recommend-image {
        height: 250px;
    }

    .recommend-content {
        padding: 20px 15px;
        gap: 12px;
    }

    .recommend-room-title {
        font-size: 18px;
    }

    .btn-book {
        padding: 10px 25px;
        /* border-radius: 4px; */
        letter-spacing: 0.5px;
        font-size: 12px;
    }

    .btn-book:hover {
        transform: translateY(-1px);
    }

    .room-comments {
        margin-bottom: 40px;
        padding-top: 12px;
        border-top: 2px solid #e9ecef;
    }

    .room-comments h3 {
        font-size: 16px;
        margin-bottom: 18px;
        letter-spacing: 0.5px;
    }

    .comment-respond {
        padding: 20px 15px;
        /* border-radius: 6px; */
        border: 1px solid #e9ecef;
    }

    .comment-reply-title {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .comment-reply-title small {
        font-size: 12px;
    }

    .logged-in-as {
        margin-bottom: 12px;
        font-size: 12px;
    }

    .comment-form-comment label {
        margin-bottom: 5px;
        font-size: 13px;
    }

    .comment-form-comment textarea {
        padding: 10px 12px;
        border: 1px solid #ced4da;
        /* border-radius: 4px; */
        font-size: 14px;
    }

    .comment-form-comment textarea:focus {
        box-shadow: 0 0 0 2px rgba(0, 191, 165, 0.1);
    }

    .form-submit {
        margin-top: 12px;
    }

    .form-submit .submit {
        padding: 10px 20px;
        /* border-radius: 4px; */
        font-size: 13px;
        letter-spacing: 0.5px;
        width: 100%;
    }

    .form-submit .submit:hover {
        transform: translateY(-1px);
    }

    .mphb_sc_checkout-service-adults,
    .mphb_checkout-service-adults {
        font-size: 15px
    }

    .mphb-price-breakdown-expand {
        font-size: 15px
    }
}


/* ============================================
   COMPACT DATE PICKER POPUP (for form inputs)
   Better UI/UX for date selection
   Add this section after the calendar styles
   ============================================ */

/* Make inline calendar compact when used in forms */
.mphb-booking-form .mphb-datepick,
.mphb-check-in-date-wrapper .datepick,
.mphb-check-out-date-wrapper .datepick {
    max-width: 35rem !important;
    padding: 1.5rem !important;
    border-radius: 0.8rem !important;
    box-shadow: 0 0.8rem 2.4rem rgba(25, 23, 27, 0.15) !important;
    margin-top: 0.5rem !important;
}

/* Compact multi-month view */
.mphb-booking-form .datepick-multi {
    gap: 1rem !important;
}

/* Compact navigation */
.mphb-booking-form .datepick-nav {
    padding: 1rem !important;
    margin-bottom: 1rem !important;
    gap: 1rem !important;
}

.mphb-booking-form .datepick-cmd {
    padding: 0.6rem 1.5rem !important;
    font-size: 1.2rem !important;
    box-shadow: 0 0.2rem 0.6rem rgba(25, 23, 27, 0.2) !important;
}

/* Single month display in popup */
.mphb-booking-form .datepick-month-row {
    display: block !important;
    gap: 0 !important;
}

.mphb-booking-form .datepick-month {
    padding: 1rem !important;
    margin-bottom: 0 !important;
    box-shadow: none !important;
    border: none !important;
}

.mphb-booking-form .datepick-month:hover {
    transform: none !important;
    box-shadow: none !important;
}

/* Compact month header */
.mphb-booking-form .datepick-month-header {
    font-size: 1.5rem !important;
    padding: 0.8rem !important;
    margin-bottom: 1rem !important;
}

/* Smaller dropdowns */
.mphb-booking-form .datepick-month-year {
    padding: 0.5rem 0.8rem !important;
    font-size: 1.2rem !important;
    margin: 0 0.2rem !important;
}

/* Compact table */
.mphb-booking-form .datepick table {
    border-spacing: 0.2rem !important;
    margin-top: 0.8rem !important;
}

.mphb-booking-form .datepick th {
    padding: 0.6rem 0.3rem !important;
    font-size: 1.1rem !important;
}

.mphb-booking-form .datepick td {
    padding: 0.1rem !important;
}

.mphb-booking-form .datepick td span,
.mphb-booking-form .datepick td a {
    padding: 0.8rem 0.4rem !important;
    font-size: 1.2rem !important;
    border-width: 0.1rem !important;
}

/* Compact hover effect */
.mphb-booking-form .mphb-available-date:hover {
    transform: scale(1.05) !important;
}

/* Smaller X for booked dates */
.mphb-booking-form .mphb-booked-date::after {
    font-size: 1.6rem !important;
}

/* Compact controls */
.mphb-booking-form .datepick-ctrl {
    padding: 1rem !important;
    margin-top: 1rem !important;
    gap: 1rem !important;
}

.mphb-booking-form .mphb-calendar__selected-dates {
    font-size: 1.2rem !important;
    gap: 0.5rem !important;
}

.mphb-booking-form .mphb-calendar__selected-dates::before {
    font-size: 1.4rem !important;
}

.mphb-booking-form .datepick-cmd-clear {
    padding: 0.6rem 1.5rem !important;
    font-size: 1.2rem !important;
}

/* Hide legend in popup */
.mphb-booking-form .mphb-calendar-legend {
    display: none !important;
}

/* Position popup calendar better */
.mphb-datepick.datepick-popup {
    position: absolute !important;
    z-index: 9999 !important;
    max-width: 35rem !important;
}

/* Smooth popup animation */
.mphb-datepick.datepick-popup {
    animation: slideInDown 0.3s ease-out;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-1rem);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* MOBILE RESPONSIVE (using px) */
@media (max-width: 768px) {

    .mphb-booking-form .mphb-datepick,
    .mphb-check-in-date-wrapper .datepick,
    .mphb-check-out-date-wrapper .datepick {
        max-width: 100% !important;
        padding: 12px !important;
        border-radius: 8px !important;
        box-shadow: 0 6px 20px rgba(25, 23, 27, 0.12) !important;
    }

    .mphb-booking-form .datepick-multi {
        gap: 10px !important;
    }

    .mphb-booking-form .datepick-nav {
        padding: 8px !important;
        margin-bottom: 10px !important;
        gap: 8px !important;
    }

    .mphb-booking-form .datepick-cmd {
        padding: 6px 12px !important;
        font-size: 11px !important;
    }

    .mphb-booking-form .datepick-month {
        padding: 10px !important;
    }

    .mphb-booking-form .datepick-month-header {
        font-size: 14px !important;
        padding: 8px !important;
        margin-bottom: 10px !important;
    }

    .mphb-booking-form .datepick-month-year {
        padding: 4px 6px !important;
        font-size: 11px !important;
        margin: 0 2px !important;
    }

    .mphb-booking-form .datepick table {
        border-spacing: 2px !important;
        margin-top: 8px !important;
    }

    .mphb-booking-form .datepick th {
        padding: 6px 2px !important;
        font-size: 10px !important;
    }

    .mphb-booking-form .datepick td {
        padding: 1px !important;
    }

    .mphb-booking-form .datepick td span,
    .mphb-booking-form .datepick td a {
        padding: 8px 4px !important;
        font-size: 11px !important;
        border-width: 1px !important;
    }

    .mphb-booking-form .mphb-booked-date::after {
        font-size: 14px !important;
    }

    .mphb-booking-form .datepick-ctrl {
        padding: 8px !important;
        margin-top: 10px !important;
        flex-direction: column !important;
    }

    .mphb-booking-form .mphb-calendar__selected-dates {
        font-size: 11px !important;
        gap: 4px !important;
    }

    .mphb-booking-form .mphb-calendar__selected-dates::before {
        font-size: 12px !important;
    }

    .mphb-booking-form .datepick-cmd-clear {
        padding: 6px 12px !important;
        font-size: 11px !important;
        width: 100% !important;
    }

    .mphb-datepick.datepick-popup {
        max-width: calc(100vw - 30px) !important;
        left: 15px !important;
        right: 15px !important;
    }
}

@media (max-width: 576px) {

    .mphb-booking-form .mphb-datepick,
    .mphb-check-in-date-wrapper .datepick,
    .mphb-check-out-date-wrapper .datepick {
        padding: 10px !important;
        border-radius: 6px !important;
    }

    .mphb-booking-form .datepick-multi {
        gap: 8px !important;
    }

    .mphb-booking-form .datepick-nav {
        padding: 6px !important;
        margin-bottom: 8px !important;
        gap: 6px !important;
        flex-wrap: wrap !important;
    }

    .mphb-booking-form .datepick-cmd {
        padding: 5px 10px !important;
        font-size: 10px !important;
    }

    .mphb-booking-form .datepick-month {
        padding: 8px !important;
    }

    .mphb-booking-form .datepick-month-header {
        font-size: 13px !important;
        padding: 6px !important;
        margin-bottom: 8px !important;
    }

    .mphb-booking-form .datepick-month-year {
        padding: 4px 6px !important;
        font-size: 10px !important;
        margin: 0 1px !important;
    }

    .mphb-booking-form .datepick table {
        border-spacing: 1px !important;
        margin-top: 6px !important;
    }

    .mphb-booking-form .datepick th {
        padding: 5px 2px !important;
        font-size: 9px !important;
    }

    .mphb-booking-form .datepick td {
        padding: 1px !important;
    }

    .mphb-booking-form .datepick td span,
    .mphb-booking-form .datepick td a {
        padding: 6px 3px !important;
        font-size: 10px !important;
    }

    .mphb-booking-form .mphb-available-date:hover {
        transform: scale(1.03) !important;
    }

    .mphb-booking-form .mphb-booked-date::after {
        font-size: 12px !important;
    }

    .mphb-booking-form .datepick-ctrl {
        padding: 8px !important;
        margin-top: 8px !important;
        gap: 6px !important;
    }

    .mphb-booking-form .mphb-calendar__selected-dates {
        font-size: 10px !important;
        gap: 3px !important;
    }

    .mphb-booking-form .mphb-calendar__selected-dates::before {
        font-size: 11px !important;
    }

    .mphb-booking-form .datepick-cmd-clear {
        padding: 5px 10px !important;
        font-size: 10px !important;
    }

    .mphb-datepick.datepick-popup {
        position: fixed !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        max-width: calc(100vw - 20px) !important;
        max-height: calc(100vh - 40px) !important;
        overflow-y: auto !important;
    }
}