@charset "UTF-8";
/*!
Theme Name: Booklium Child
Theme URI: https://motopress.com/products/booklium
Author: MotoPress
Author URI: https://motopress.com
Description: Awesome WordPress theme.
Version: 0.0.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: booklium
Template: booklium
*/

/* Ensure [hidden] always wins over any display rule in this stylesheet */
[hidden] { display: none !important; }

/* ==========================================================================
   Header account link (inside primary menu)
   ========================================================================== */

.mphb-mv-account-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.mphb-mv-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #4a6fa5;
    color: #fff;
    font-size: .75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.mphb-mv-account-name {
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 480px) {
    .mphb-mv-account-name { display: none; }
}

/* ==========================================================================
   WooCommerce – show-password button icon (Booklium strips WC default CSS)
   ========================================================================== */

.show-password-input {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #888;
    transition: color .2s ease;
}

.show-password-input:hover {
    color: #333;
}

/* Eye open (default — password hidden) */
.show-password-input::before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}

/* Eye closed (when password is visible) */
.show-password-input.display-password::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17.94 17.94A10.07 10.07 0 0 1 12 20c-7 0-11-8-11-8a18.45 18.45 0 0 1 5.06-5.94'/%3E%3Cpath d='M9.9 4.24A9.12 9.12 0 0 1 12 4c7 0 11 8 11 8a18.5 18.5 0 0 1-2.16 3.19'/%3E%3Cline x1='1' y1='1' x2='23' y2='23'/%3E%3C/svg%3E");
}

/* Ensure the password field has relative positioning for the icon */
.woocommerce-form-row .password-input,
.woocommerce-Input[type="password"] {
    padding-right: 40px;
}

.password-input {
    position: relative;
    display: flex;
    align-items: center;
}

.password-input input {
    width: 100%;
}

/* ==========================================================================
   Hotel taxonomy page  (.mphb-mv-hotel-page)
   ========================================================================== */

/* ── Hero ──────────────────────────────────────────────────────────────────── */
.mphb-mv-hotel-hero {
    position: relative;
    width: 100%;
    height: 420px;
    overflow: hidden;
    background: #1a1a1a;
}

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

.mphb-mv-hero-placeholder {
    background: linear-gradient(135deg, #2c3e50, #4a6fa5);
}

.mphb-mv-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.65) 0%, rgba(0,0,0,.15) 60%, transparent 100%);
    display: flex;
    align-items: flex-end;
}

.mphb-mv-hero-content {
    padding: 32px 40px;
    color: #fff;
}

.mphb-mv-hotel-name {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 8px;
    color: #fff;
    line-height: 1.2;
}

.mphb-mv-hotel-stars {
    margin-bottom: 6px;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.mphb-mv-star-on  { color: #f5c518; }
.mphb-mv-star-off { color: rgba(255,255,255,.35); }

.mphb-mv-hero-location {
    margin: 0;
    font-size: .95rem;
    opacity: .9;
}

/* ── Body ──────────────────────────────────────────────────────────────────── */
.mphb-mv-hotel-body {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 24px 60px;
}

/* ── Gallery strip ─────────────────────────────────────────────────────────── */
.mphb-mv-hotel-gallery {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
    margin-bottom: 36px;
    scrollbar-width: thin;
}

.mphb-mv-gallery-thumb {
    flex: 0 0 auto;
    width: 180px;
    height: 120px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
}

.mphb-mv-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .25s ease;
}

.mphb-mv-gallery-thumb img:hover {
    transform: scale(1.04);
}

/* ── Info bar ──────────────────────────────────────────────────────────────── */
.mphb-mv-info-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    background: #f7f7f7;
    border-radius: 10px;
    padding: 20px 24px;
    margin-bottom: 36px;
}

.mphb-mv-info-item {
    display: flex;
    flex-direction: column;
    min-width: 120px;
}

.mphb-mv-info-label {
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #888;
    margin-bottom: 4px;
}

.mphb-mv-info-value {
    font-size: .95rem;
    font-weight: 600;
    color: #222;
}

.mphb-mv-cancel-flexible { color: #27ae60; }
.mphb-mv-cancel-moderate  { color: #f39c12; }
.mphb-mv-cancel-strict    { color: #e74c3c; }

/* ── Description & rules ───────────────────────────────────────────────────── */
.mphb-mv-hotel-description,
.mphb-mv-hotel-rules {
    margin-bottom: 36px;
}

.mphb-mv-section-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #eee;
}

.mphb-mv-rules-body {
    background: #fafafa;
    border-left: 3px solid #ddd;
    padding: 16px 20px;
    border-radius: 0 6px 6px 0;
    font-size: .92rem;
    line-height: 1.7;
}

/* ── Google Map ────────────────────────────────────────────────────────────── */
.mphb-mv-hotel-map-wrap {
    margin-bottom: 40px;
}

.mphb-mv-hotel-map {
    width: 100%;
    height: 320px;
    border-radius: 10px;
    overflow: hidden;
    background: #e8e8e8;
}

/* ── Rooms section ─────────────────────────────────────────────────────────── */
.mphb-mv-hotel-rooms {
    margin-top: 16px;
}

.mphb-mv-hotel-rooms .mphb-mv-section-title {
    font-size: 1.4rem;
    margin-bottom: 24px;
}

/* ==========================================================================
   Search results page  (#mphb-mv-search-results)
   ========================================================================== */

.mphb-mv-results-container {
    max-width: 1100px;
    margin: 32px auto;
    padding: 0 24px;
}

.mphb-mv-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

/* Hotel card */
.mphb-mv-hotel-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,.08);
    background: #fff;
    transition: box-shadow .2s ease, transform .2s ease;
    cursor: pointer;
}

.mphb-mv-hotel-card:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,.14);
    transform: translateY(-2px);
}

.mphb-mv-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.mphb-mv-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #e0e0e0;
}

.mphb-mv-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .3s ease;
}

.mphb-mv-hotel-card:hover .mphb-mv-card-image img {
    transform: scale(1.05);
}

.mphb-mv-no-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e0e0e0, #c8c8c8);
}

.mphb-mv-card-body {
    padding: 16px;
}

.mphb-mv-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 6px;
    color: #1a1a1a;
    line-height: 1.3;
}

.mphb-mv-stars {
    font-size: .85rem;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.mphb-mv-star-filled { color: #f5c518; }
.mphb-mv-star-empty  { color: #ddd; }

.mphb-mv-card-location {
    display: flex;
    align-items: flex-start;
    gap: 5px;
    font-size: .82rem;
    color: #555;
    margin: 0 0 5px;
    line-height: 1.4;
}

.mphb-mv-loc-icon {
    flex-shrink: 0;
    margin-top: 1px;
    color: var(--booklium-button-bg-color, #13b0bb);
}

.mphb-mv-card-distance {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: .79rem;
    color: #777;
    margin: 0 0 10px;
}

.mphb-mv-card-distance strong {
    color: #333;
    font-weight: 600;
}

.mphb-mv-dist-icon {
    flex-shrink: 0;
    color: #aaa;
}

.mphb-mv-card-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: .82rem;
}

.mphb-mv-room-count {
    color: #888;
}

.mphb-mv-price {
    margin-left: auto;
    font-weight: 700;
    color: #1a1a1a;
    font-size: .9rem;
}

.mphb-mv-night {
    font-weight: 400;
    color: #888;
    font-size: .8rem;
}

/* States */
.mphb-mv-loading,
.mphb-mv-no-results,
.mphb-mv-error {
    text-align: center;
    padding: 48px 24px;
    color: #666;
    font-size: 1rem;
}

.mphb-mv-error { color: #c0392b; }

/* ── Search page form wrapper ──────────────────────────────────────────────── */
.mphb-mv-search-page-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.mphb-mv-search-page-form {
    padding: 32px 0 0;
}

/* ==========================================================================
   Single room type page  (.mphb-mv-room-context)
   ========================================================================== */

.mphb-mv-room-context {
    background: #f7f7f7;
    border-bottom: 1px solid #eee;
    padding: 12px 0;
}

.mphb-mv-room-context-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

/* ── Breadcrumb trail ──────────────────────────────────────────────────────── */
.mphb-mv-breadcrumb {
    font-size: .85rem;
    color: #888;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
}

.mphb-mv-breadcrumb a {
    color: #555;
    text-decoration: none;
}

.mphb-mv-breadcrumb a:hover {
    color: #1a1a1a;
    text-decoration: underline;
}

.mphb-mv-bc-sep {
    color: #bbb;
    font-size: .8rem;
}

.mphb-mv-bc-current {
    color: #1a1a1a;
    font-weight: 500;
}

/* ── Hotel badge (back link) ───────────────────────────────────────────────── */
.mphb-mv-hotel-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    padding: 5px 14px 5px 10px;
    text-decoration: none;
    color: #333;
    font-size: .85rem;
    transition: box-shadow .2s ease, border-color .2s ease;
    white-space: nowrap;
}

.mphb-mv-hotel-badge:hover {
    border-color: #aaa;
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
    color: #1a1a1a;
}

.mphb-mv-hb-back {
    font-size: .9rem;
    color: #888;
}

.mphb-mv-hb-name {
    font-weight: 600;
}

.mphb-mv-hb-stars {
    color: #f5c518;
    font-size: .75rem;
    letter-spacing: 1px;
}

.mphb-mv-hb-city {
    color: #888;
    font-size: .8rem;
}

.mphb-mv-hb-city::before {
    content: '·';
    margin-right: 4px;
    color: #ccc;
}

@media (max-width: 600px) {
    .mphb-mv-hotel-badge { margin-left: 0; }
    .mphb-mv-hb-city     { display: none; }
}

/* ==========================================================================
   Dokan vendor store page
   ========================================================================== */

/* Remove the outer max-width constraint inside Dokan's content column */
.mphb-mv-store-hotels {
    padding: 24px 0 40px;
}

/* ==========================================================================
   Advanced search — filter bar (results page)
   ========================================================================== */

.mphb-mv-filter-bar {
    background: #f9fafb;
    border: 1px solid #ededed;
    border-radius: var(--booklium-border-radius-default, 3px);
    padding: 16px 20px 12px;
    margin-bottom: 24px;
}

/* ── Search-context bar (location / dates / guests) ──────────────────────── */
.mphb-mv-search-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 10px;
    padding-bottom: 14px;
    margin-bottom: 14px;
    border-bottom: 1px solid #ededed;
}

.mphb-mv-search-param {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1 1 130px;
    min-width: 0;
}

.mphb-mv-search-param--location {
    flex: 2 1 200px;
}

.mphb-mv-search-param--narrow {
    flex: 0 1 76px;
}

.mphb-mv-search-param--btn {
    flex: 0 0 auto;
    align-self: flex-end;
}

.mphb-mv-param-label {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: #6b7280;
    white-space: nowrap;
}

.mphb-mv-param-input {
    height: 36px;
    padding: 0 10px;
    border: 1px solid #ededed;
    border-radius: var(--booklium-border-radius-default, 3px);
    background: #fff;
    font-size: .875rem;
    color: #111827;
    width: 100%;
    box-sizing: border-box;
}
.mphb-mv-param-input:focus {
    outline: none;
    border-color: var(--booklium-accent-color, #13b0bb);
}

.mphb-mv-search-btn {
    height: 36px;
    padding: 0 20px;
    border: none;
    border-radius: var(--booklium-border-radius-default, 3px);
    background: var(--booklium-button-bg-color, #13b0bb);
    color: var(--booklium-button-color, #fff);
    font-size: .875rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity .15s;
    white-space: nowrap;
    line-height: 36px;
}
.mphb-mv-search-btn:hover {
    opacity: .85;
}

@media (max-width: 600px) {
    .mphb-mv-search-bar {
        gap: 8px;
    }
    .mphb-mv-search-param,
    .mphb-mv-search-param--location {
        flex: 1 1 calc(50% - 8px);
    }
    .mphb-mv-search-param--narrow {
        flex: 1 1 calc(50% - 8px);
    }
    .mphb-mv-search-param--btn {
        flex: 1 1 100%;
    }
    .mphb-mv-search-btn {
        width: 100%;
    }
}

.mphb-mv-filter-row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 16px;
}

.mphb-mv-filter-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mphb-mv-filter-label {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: #6b7280;
}

.mphb-mv-filter-select {
    height: 36px;
    padding: 0 10px;
    border: 1px solid #ededed;
    border-radius: var(--booklium-border-radius-default, 3px);
    background: #fff;
    font-size: .875rem;
    color: #111827;
    cursor: pointer;
}
.mphb-mv-filter-select:focus {
    outline: none;
    border-color: var(--booklium-accent-color, #13b0bb);
}

/* Star buttons */
.mphb-mv-star-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.mphb-mv-star-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    min-width: 42px;
    height: 36px;
    padding: 0 10px;
    border: 1px solid #ededed;
    border-radius: var(--booklium-border-radius-default, 3px);
    background: #fff;
    font-size: .875rem;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    transition: background .15s, border-color .15s, color .15s;
    white-space: nowrap;
}

.mphb-mv-star-icon {
    font-size: 1rem;
    color: #f59e0b;
    line-height: 1;
    transition: color .15s;
}

.mphb-mv-star-btn:hover {
    border-color: var(--booklium-accent-color, #13b0bb);
    background: #f0fdfb;
}

.mphb-mv-star-btn--active {
    background: var(--booklium-button-bg-color, #13b0bb);
    border-color: var(--booklium-button-bg-color, #13b0bb);
    color: #fff;
}

.mphb-mv-star-btn--active .mphb-mv-star-icon {
    color: #fff;
}

/* Price range */
.mphb-mv-price-range {
    display: flex;
    align-items: center;
    gap: 6px;
}

.mphb-mv-price-currency {
    font-size: .82rem;
    color: #6b7280;
}

.mphb-mv-price-input {
    width: 72px;
    height: 36px;
    padding: 0 8px;
    border: 1px solid #ededed;
    border-radius: var(--booklium-border-radius-default, 3px);
    font-size: .875rem;
    color: #111827;
    background: #fff;
}
.mphb-mv-price-input:focus {
    outline: none;
    border-color: var(--booklium-accent-color, #13b0bb);
}

.mphb-mv-price-sep {
    color: #9ca3af;
    font-size: .9rem;
}

.mphb-mv-apply-btn {
    height: 36px;
    padding: 0 14px;
    border: 1px solid var(--booklium-button-bg-color, #13b0bb);
    border-radius: var(--booklium-border-radius-default, 3px);
    background: #fff;
    color: var(--booklium-button-bg-color, #13b0bb);
    font-size: .82rem;
    font-weight: 600;
    cursor: pointer;
    transition: background .15s, color .15s;
    white-space: nowrap;
}
.mphb-mv-apply-btn:hover {
    background: var(--booklium-button-bg-color, #13b0bb);
    color: var(--booklium-button-color, #fff);
}

/* Amenities collapsible */
.mphb-mv-amenities-drop {
    position: relative;
}

.mphb-mv-amenities-toggle {
    height: 36px;
    padding: 0 12px;
    border: 1px solid #ededed;
    border-radius: var(--booklium-border-radius-default, 3px);
    background: #fff;
    font-size: .875rem;
    color: #374151;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    user-select: none;
    white-space: nowrap;
}
.mphb-mv-amenities-toggle::-webkit-details-marker { display: none; }
.mphb-mv-amenities-toggle::after {
    content: '▾';
    font-size: .7rem;
    color: #9ca3af;
    margin-left: 4px;
}
.mphb-mv-amenities-drop[open] .mphb-mv-amenities-toggle::after {
    content: '▴';
}

.mphb-mv-amenities-list {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    z-index: 100;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,.10);
    padding: 10px 14px;
    min-width: 200px;
    max-height: 220px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mphb-mv-amenity-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .875rem;
    color: #374151;
    cursor: pointer;
    white-space: nowrap;
}
.mphb-mv-amenity-item input { cursor: pointer; }

/* Meta row: result count + clear */
.mphb-mv-filter-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid #e5e7eb;
}

.mphb-mv-result-count {
    font-size: .875rem;
    color: #6b7280;
    font-weight: 500;
}

.mphb-mv-clear-btn {
    background: none;
    border: none;
    padding: 0;
    font-size: .82rem;
    color: #b91c1c;
    cursor: pointer;
    font-weight: 600;
}
.mphb-mv-clear-btn:hover { text-decoration: underline; }

/* Pagination */
.mphb-mv-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
}

.mphb-mv-page-btn {
    padding: 8px 20px;
    border: 1px solid #ededed;
    border-radius: var(--booklium-border-radius-default, 3px);
    background: #fff;
    font-size: .875rem;
    color: #374151;
    cursor: pointer;
    font-weight: 500;
    transition: background .15s, border-color .15s, color .15s;
}
.mphb-mv-page-btn:hover:not(:disabled) {
    background: var(--booklium-button-bg-color, #13b0bb);
    border-color: var(--booklium-button-bg-color, #13b0bb);
    color: var(--booklium-button-color, #fff);
}
.mphb-mv-page-btn:disabled {
    opacity: .4;
    cursor: default;
}

.mphb-mv-page-info {
    font-size: .875rem;
    color: #6b7280;
    min-width: 90px;
    text-align: center;
}

@media (max-width: 640px) {
    .mphb-mv-filter-row    { flex-direction: column; align-items: stretch; }
    .mphb-mv-star-btns     { flex-wrap: wrap; }
    .mphb-mv-price-range   { flex-wrap: wrap; }
    .mphb-mv-amenities-list {
        position: static;
        box-shadow: none;
        margin-top: 4px;
        max-height: 160px;
    }
}

/* ==========================================================================
   Group recommendation panel
   ========================================================================== */

.mphb-mv-recommendation {
    background: #f0fdfb;
    border: 1px solid #b2e8e5;
    border-radius: var(--booklium-border-radius-default, 3px);
    padding: 20px 24px;
    margin-bottom: 24px;
}

.mphb-mv-rec-header {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.mphb-mv-rec-title {
    font-size: 1rem;
    font-weight: 600;
    color: #0e7b80;
}

.mphb-mv-rec-hotel {
    font-size: 0.875rem;
    color: #555;
}

.mphb-mv-rec-hotel::before {
    content: '·';
    margin-right: 8px;
    color: #aaa;
}

.mphb-mv-rec-rooms {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
}

.mphb-mv-rec-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid #d1f0ee;
    border-radius: var(--booklium-border-radius-default, 3px);
    padding: 10px 14px;
    flex: 1 1 200px;
    min-width: 0;
}

.mphb-mv-rec-thumb {
    width: 52px;
    height: 52px;
    object-fit: cover;
    border-radius: 2px;
    flex-shrink: 0;
}

.mphb-mv-rec-item-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.mphb-mv-rec-item-name {
    font-size: 0.875rem;
    font-weight: 500;
    color: #222;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mphb-mv-rec-price {
    font-size: 0.8rem;
    color: #555;
}

.mphb-mv-rec-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.mphb-mv-rec-total {
    font-size: 0.9rem;
    font-weight: 600;
    color: #222;
}

.mphb-mv-rec-btn {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    background: var(--booklium-button-bg-color, #13b0bb);
    color: #fff;
    border-radius: var(--booklium-border-radius-default, 3px);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: opacity 0.15s;
    white-space: nowrap;
}

.mphb-mv-rec-btn:hover {
    opacity: 0.88;
    color: #fff;
    text-decoration: none;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 768px) {
    .mphb-mv-hotel-hero   { height: 280px; }
    .mphb-mv-hero-content { padding: 20px; }
    .mphb-mv-hotel-name   { font-size: 1.4rem; }
    .mphb-mv-hotel-body   { padding: 24px 16px 40px; }
    .mphb-mv-hotel-map    { height: 240px; }
    .mphb-mv-results-grid { grid-template-columns: 1fr; }
    .mphb-mv-gallery-thumb { width: 130px; height: 88px; }
}

/* ==========================================================================
   Recommendation banner — subtitle (hotel-rooms.js)
   ========================================================================== */

.mphb-mv-rec-subtitle {
    font-size: .82rem;
    color: #555;
    font-style: italic;
}

/* ==========================================================================
   Room picker  (#mphb-mv-rooms-container)
   ========================================================================== */

/* ── Date prompt ─────────────────────────────────────────────────────────── */
.mphb-mv-date-prompt {
    background: #f9fafb;
    border: 1px dashed #d1d5db;
    border-radius: var(--booklium-border-radius-default, 3px);
    padding: 32px 24px;
    text-align: center;
    color: #6b7280;
    font-size: .95rem;
}

/* ── Room list ───────────────────────────────────────────────────────────── */
.mphb-mv-room-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ── Room card ───────────────────────────────────────────────────────────── */
.mphb-mv-room-card {
    display: flex;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: var(--booklium-border-radius-default, 3px);
    overflow: hidden;
    transition: box-shadow .2s ease;
}

.mphb-mv-room-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,.10);
}

.mphb-mv-room-card--unavail {
    opacity: .7;
}

/* ── Room image ──────────────────────────────────────────────────────────── */
.mphb-mv-room-img {
    flex: 0 0 220px;
    width: 220px;
    overflow: hidden;
    background: #e5e7eb;
}

.mphb-mv-room-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .3s ease;
}

.mphb-mv-room-card:hover .mphb-mv-room-img img {
    transform: scale(1.04);
}

/* ── Room body ───────────────────────────────────────────────────────────── */
.mphb-mv-room-body {
    flex: 1 1 0;
    min-width: 0;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* ── Room header (name + badges) ─────────────────────────────────────────── */
.mphb-mv-room-header {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 8px;
}

.mphb-mv-room-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.3;
}

.mphb-mv-room-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 4px;
}

.mphb-mv-badge {
    display: inline-block;
    font-size: .75rem;
    font-weight: 500;
    color: #374151;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 2px 10px;
    white-space: nowrap;
}

/* ── Room description ────────────────────────────────────────────────────── */
.mphb-mv-room-desc {
    font-size: .875rem;
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ── Amenities ───────────────────────────────────────────────────────────── */
.mphb-mv-room-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 14px;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: .8rem;
    color: #6b7280;
}

.mphb-mv-room-amenities li::before {
    content: '✓ ';
    color: var(--booklium-accent-color, #13b0bb);
}

/* ── Room footer (rate / pricing / qty) ──────────────────────────────────── */
.mphb-mv-room-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 16px;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid #f3f4f6;
}

/* Rate selector */
.mphb-mv-rate-wrap {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1 1 180px;
    min-width: 0;
}

.mphb-mv-rate-label {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: #6b7280;
}

.mphb-mv-rate-select {
    height: 36px;
    padding: 0 10px;
    border: 1px solid #e5e7eb;
    border-radius: var(--booklium-border-radius-default, 3px);
    background: #fff;
    font-size: .875rem;
    color: #111827;
    cursor: pointer;
    max-width: 100%;
}

.mphb-mv-rate-select:focus {
    outline: none;
    border-color: var(--booklium-accent-color, #13b0bb);
}

.mphb-mv-rate-name {
    font-size: .82rem;
    color: #6b7280;
    margin: 0;
    font-style: italic;
}

/* Pricing display */
.mphb-mv-room-pricing {
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: right;
}

.mphb-mv-room-ppn-wrap {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.mphb-mv-room-ppn-val {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
}

.mphb-mv-room-ppn-unit {
    font-size: .8rem;
    color: #6b7280;
}

.mphb-mv-room-total-wrap {
    display: flex;
    align-items: baseline;
    gap: 3px;
    justify-content: flex-end;
}

.mphb-mv-room-total-val {
    font-size: .875rem;
    font-weight: 600;
    color: #374151;
}

.mphb-mv-room-total-unit {
    font-size: .75rem;
    color: #9ca3af;
}

/* Quantity stepper */
.mphb-mv-qty-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.mphb-mv-qty-stepper {
    display: flex;
    align-items: center;
    border: 1px solid #e5e7eb;
    border-radius: var(--booklium-border-radius-default, 3px);
    overflow: hidden;
}

.mphb-mv-qty-btn {
    width: 34px;
    height: 34px;
    border: none;
    background: #f9fafb;
    color: #374151;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .15s;
    flex-shrink: 0;
    line-height: 1;
}

.mphb-mv-qty-btn:hover {
    background: var(--booklium-button-bg-color, #13b0bb);
    color: #fff;
}

.mphb-mv-qty-val {
    width: 36px;
    text-align: center;
    font-size: .95rem;
    font-weight: 600;
    color: #1a1a1a;
    border-left: 1px solid #e5e7eb;
    border-right: 1px solid #e5e7eb;
    line-height: 34px;
    user-select: none;
}

.mphb-mv-qty-avail {
    font-size: .72rem;
    color: #9ca3af;
    white-space: nowrap;
}

/* Adults per-unit stepper */
.mphb-mv-adults-wrap {
    margin-top: 8px;
    padding: 8px 10px;
    background: #f0fafa;
    border: 1px solid #c9edf0;
    border-radius: var(--booklium-border-radius-default, 3px);
}

.mphb-mv-adults-label {
    display: block;
    font-size: .78rem;
    color: #374151;
    margin-bottom: 6px;
}

.mphb-mv-adults-units {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.mphb-mv-adults-unit {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mphb-mv-adults-unit-label {
    font-size: .75rem;
    color: #6b7280;
    min-width: 44px;
}

.mphb-mv-adults-stepper {
    display: flex;
    align-items: center;
    border: 1px solid #b6dfe3;
    border-radius: var(--booklium-border-radius-default, 3px);
    overflow: hidden;
}

.mphb-mv-adults-val {
    width: 30px;
    text-align: center;
    font-size: .9rem;
    font-weight: 600;
    color: #1a1a1a;
    border-left: 1px solid #b6dfe3;
    border-right: 1px solid #b6dfe3;
    line-height: 30px;
    user-select: none;
}

/* Unavailable label */
.mphb-mv-unavailable-label {
    font-size: .82rem;
    color: #b91c1c;
    font-style: italic;
    align-self: flex-end;
}

/* ── Reserve bar ─────────────────────────────────────────────────────────── */
.mphb-mv-reserve-bar {
    position: sticky;
    bottom: 0;
    z-index: 50;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: #1a1a1a;
    color: #fff;
    padding: 14px 24px;
    border-radius: var(--booklium-border-radius-default, 3px) var(--booklium-border-radius-default, 3px) 0 0;
    margin-top: 24px;
    box-shadow: 0 -4px 20px rgba(0,0,0,.18);
}

.mphb-mv-reserve-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.mphb-mv-capacity-warn {
    background: rgba(254, 243, 199, 0.12);
    border: 1px solid rgba(253, 230, 138, 0.35);
    color: #fef3c7;
    border-radius: 4px;
    padding: 8px 12px;
    font-size: .82rem;
    line-height: 1.4;
}

.mphb-mv-reserve-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mphb-mv-reserve-rooms-label {
    font-size: .875rem;
    font-weight: 600;
    color: #fff;
}

.mphb-mv-reserve-price-label {
    font-size: .82rem;
    color: rgba(255,255,255,.75);
}

.mphb-mv-reserve-btn {
    padding: 10px 24px;
    background: var(--booklium-button-bg-color, #13b0bb);
    color: #fff;
    border: none;
    border-radius: var(--booklium-border-radius-default, 3px);
    font-size: .95rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity .15s;
    flex-shrink: 0;
}

.mphb-mv-reserve-btn:hover {
    opacity: .88;
}

@media (max-width: 640px) {
    .mphb-mv-room-card     { flex-direction: column; }
    .mphb-mv-room-img      { flex: 0 0 180px; width: 100%; height: 180px; }
    .mphb-mv-room-body     { padding: 16px; }
    .mphb-mv-room-footer   { flex-direction: column; align-items: stretch; }
    .mphb-mv-room-pricing  { text-align: left; }
    .mphb-mv-room-ppn-wrap,
    .mphb-mv-room-total-wrap { justify-content: flex-start; }
    .mphb-mv-qty-wrap      { align-items: flex-start; }
    .mphb-mv-reserve-bar   { padding: 12px 16px; }
    .mphb-mv-reserve-row   { flex-direction: column; align-items: stretch; }
    .mphb-mv-reserve-btn   { text-align: center; }
}

/* ── Reserve bar price breakdown ─────────────────────────────────────────── */
.mphb-mv-reserve-breakdown {
    padding: 10px 0 6px;
    border-bottom: 1px solid rgba(255,255,255,.12);
    margin-bottom: 8px;
}

.mphb-mv-rbd-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .82rem;
    color: rgba(255,255,255,.85);
    padding: 2px 0;
}

.mphb-mv-rbd-row--indent {
    padding-left: 12px;
    color: rgba(255,255,255,.6);
    font-size: .78rem;
}

.mphb-mv-rbd-row--meta {
    color: rgba(255,255,255,.5);
    font-size: .78rem;
    justify-content: flex-start;
}

.mphb-mv-rbd-row--total {
    font-weight: 700;
    font-size: .9rem;
    color: #fff;
    padding-top: 6px;
    border-top: 1px solid rgba(255,255,255,.18);
    margin-top: 4px;
}

/* ── Guest info sidebar indent row ───────────────────────────────────────── */
.mphb-mv-price-row--indent {
    padding-left: 12px;
    font-size: .82rem;
    color: rgba(0,0,0,.5);
}

.mphb-mv-price-loading {
    font-size: .85rem;
    color: rgba(0,0,0,.4);
    padding: 8px 0;
}

/* ── Availability search form ────────────────────────────────────────────── */
.mphb-mv-avail-form-wrap {
    background: var(--booklium-secondary-bg-color, #f9f9f9);
    border: 1px solid rgba(0,0,0,.08);
    border-radius: var(--booklium-border-radius-default, 3px);
    padding: 20px 24px;
    margin-bottom: 28px;
}

.mphb-mv-avail-fields {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 14px;
}

.mphb-mv-avail-field {
    display: flex;
    flex-direction: column;
    flex: 1 1 160px;
    gap: 6px;
}

.mphb-mv-avail-field--sm {
    flex: 0 1 90px;
}

.mphb-mv-avail-field label {
    font-size: .78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--booklium-main-text-color, #333);
}

.mphb-mv-avail-field input[type="date"],
.mphb-mv-avail-field input[type="number"] {
    padding: 9px 12px;
    border: 1px solid rgba(0,0,0,.18);
    border-radius: var(--booklium-border-radius-default, 3px);
    font-size: .9rem;
    background: #fff;
    color: inherit;
    width: 100%;
    box-sizing: border-box;
}

.mphb-mv-avail-btn {
    padding: 10px 22px;
    background: var(--booklium-button-bg-color, #13b0bb);
    color: #fff;
    border: none;
    border-radius: var(--booklium-border-radius-default, 3px);
    font-size: .9rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    align-self: flex-end;
    transition: opacity .15s;
}

.mphb-mv-avail-btn:hover { opacity: .88; }

@media (max-width: 640px) {
    .mphb-mv-avail-fields { flex-direction: column; }
    .mphb-mv-avail-field,
    .mphb-mv-avail-field--sm { flex: 1 1 auto; }
    .mphb-mv-avail-btn { width: 100%; }
}

/* ==========================================================================
   Guest info & booking  (.mphb-mv-gi-page)
   ========================================================================== */

/* ── Page shell ──────────────────────────────────────────────────────────── */
.mphb-mv-gi-page {
    background: #f3f4f6;
    min-height: 100vh;
}

.mphb-mv-gi-wrap {
    max-width: 1060px;
    margin: 0 auto;
    padding: 40px 24px 80px;
}

/* ── Loading spinner ─────────────────────────────────────────────────────── */
.mphb-mv-gi-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.mphb-mv-gi-loading span {
    display: inline-block;
    width: 36px;
    height: 36px;
    border: 3px solid #e5e7eb;
    border-top-color: var(--booklium-accent-color, #13b0bb);
    border-radius: 50%;
    animation: mphb-mv-spin .8s linear infinite;
}

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

/* ── Page title ──────────────────────────────────────────────────────────── */
.mphb-mv-gi-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 28px;
}

/* ── Two-column layout ───────────────────────────────────────────────────── */
.mphb-mv-gi-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 28px;
    align-items: start;
}

.mphb-mv-gi-main {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 0;
}

.mphb-mv-gi-sidebar {
    position: sticky;
    top: 80px;
}

/* ── Cards ───────────────────────────────────────────────────────────────── */
.mphb-mv-gi-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: var(--booklium-border-radius-default, 3px);
    padding: 24px;
    box-shadow: 0 1px 4px rgba(0,0,0,.05);
}

.mphb-mv-gi-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.mphb-mv-gi-card-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

/* ── Stay summary ────────────────────────────────────────────────────────── */
.mphb-mv-gi-stay-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 20px;
    margin-bottom: 20px;
}

.mphb-mv-gi-stay-item {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.mphb-mv-gi-stay-item--full {
    grid-column: 1 / -1;
}

.mphb-mv-gi-stay-label {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: #9ca3af;
}

.mphb-mv-gi-stay-val {
    font-size: .9rem;
    color: #1a1a1a;
    font-weight: 500;
}

/* ── Room list inside summary ────────────────────────────────────────────── */
.mphb-mv-gi-room-list {
    border-top: 1px solid #f3f4f6;
    padding-top: 16px;
}

.mphb-mv-gi-rooms-heading {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: #9ca3af;
    margin: 0 0 10px;
}

.mphb-mv-gi-room-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 7px 0;
    border-bottom: 1px solid #f9fafb;
    font-size: .875rem;
}

.mphb-mv-gi-room-item:last-child {
    border-bottom: none;
}

.mphb-mv-gi-room-name {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    min-width: 0;
}

.mphb-mv-gi-rate-tag {
    display: inline-block;
    font-size: .7rem;
    color: #0e7b80;
    background: #f0fdfb;
    border: 1px solid #b2e8e5;
    border-radius: 20px;
    padding: 1px 8px;
    white-space: nowrap;
    font-weight: 500;
}

.mphb-mv-gi-room-count {
    font-size: .82rem;
    color: #6b7280;
    flex-shrink: 0;
}

/* ── Business booking toggle (checkbox) ──────────────────────────────────── */
.mphb-mv-gi-biz-toggle {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #f3f4f6;
    font-size: .9rem;
    font-weight: 600;
    color: #374151;
}

/* ── Form fields ─────────────────────────────────────────────────────────── */
.mphb-mv-gi-fields {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mphb-mv-gi-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.mphb-mv-gi-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mphb-mv-gi-field--full {
    grid-column: 1 / -1;
}

.mphb-mv-gi-field label {
    font-size: .82rem;
    font-weight: 600;
    color: #374151;
}

.mphb-mv-gi-field--half {
    max-width: 50%;
}

.mphb-mv-gi-field input,
.mphb-mv-gi-field select,
.mphb-mv-gi-field textarea {
    height: 40px;
    padding: 0 12px;
    border: 1px solid #e5e7eb;
    border-radius: var(--booklium-border-radius-default, 3px);
    background: #fff;
    font-size: .875rem;
    color: #111827;
    width: 100%;
    box-sizing: border-box;
    transition: border-color .15s;
    font-family: inherit;
}

.mphb-mv-gi-field textarea {
    height: auto;
    padding: 10px 12px;
    resize: vertical;
}

.mphb-mv-gi-field input:focus,
.mphb-mv-gi-field select:focus,
.mphb-mv-gi-field textarea:focus {
    outline: none;
    border-color: var(--booklium-accent-color, #13b0bb);
    box-shadow: 0 0 0 3px rgba(19,176,187,.12);
}

.mphb-mv-req {
    color: #ef4444;
    margin-left: 2px;
}

/* ── Business section ────────────────────────────────────────────────────── */
.mphb-mv-gi-business-section {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #f3f4f6;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.mphb-mv-gi-check-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .875rem;
    color: #374151;
    cursor: pointer;
}

.mphb-mv-gi-check-row input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--booklium-accent-color, #13b0bb);
    cursor: pointer;
    flex-shrink: 0;
}

/* ── Error message ───────────────────────────────────────────────────────── */
.mphb-mv-gi-error {
    margin-top: 12px;
    padding: 12px 16px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: var(--booklium-border-radius-default, 3px);
    color: #b91c1c;
    font-size: .875rem;
    line-height: 1.5;
}

/* ── Payment method section ──────────────────────────────────────────────── */
.mphb-mv-gi-payment .mphb-mv-gi-card-title {
    margin-bottom: 0;
}

.mphb-mv-pm-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
}

.mphb-mv-pm-option {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid #e5e7eb;
    border-radius: var(--booklium-border-radius-default, 3px);
    cursor: pointer;
    transition: border-color .15s, box-shadow .15s;
    background: #fff;
}

.mphb-mv-pm-option:hover {
    border-color: var(--booklium-accent-color, #13b0bb);
}

.mphb-mv-pm-option--active {
    border-color: var(--booklium-accent-color, #13b0bb);
    box-shadow: 0 0 0 3px rgba(19,176,187,.12);
    background: #f0fdfb;
}

.mphb-mv-pm-option input[type="radio"] {
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--booklium-accent-color, #13b0bb);
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.mphb-mv-pm-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.mphb-mv-pm-title {
    font-size: .875rem;
    font-weight: 600;
    color: #1a1a1a;
}

.mphb-mv-pm-desc {
    font-size: .8rem;
    color: #6b7280;
    line-height: 1.4;
}

/* ── Price sidebar ───────────────────────────────────────────────────────── */
.mphb-mv-gi-price-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: var(--booklium-border-radius-default, 3px);
    padding: 24px;
    box-shadow: 0 1px 4px rgba(0,0,0,.05);
}

.mphb-mv-gi-price-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 16px;
}

.mphb-mv-price-breakdown {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.mphb-mv-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: .875rem;
    color: #374151;
    gap: 8px;
}

.mphb-mv-price-row--nights {
    font-size: .8rem;
    color: #9ca3af;
}

.mphb-mv-price-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: .95rem;
    font-weight: 700;
    color: #1a1a1a;
    padding-top: 12px;
    border-top: 2px solid #e5e7eb;
    gap: 8px;
    margin-top: 4px;
}

.mphb-mv-price-total-val {
    font-size: 1.15rem;
    color: var(--booklium-accent-color, #13b0bb);
}

/* ── Submit button ───────────────────────────────────────────────────────── */
.mphb-mv-gi-submit-btn {
    display: block;
    width: 100%;
    padding: 14px 24px;
    background: var(--booklium-button-bg-color, #13b0bb);
    color: var(--booklium-button-color, #fff);
    border: none;
    border-radius: var(--booklium-border-radius-default, 3px);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity .15s;
    text-align: center;
    margin-top: 16px;
    font-family: inherit;
}

.mphb-mv-gi-submit-btn:hover {
    opacity: .88;
}

.mphb-mv-gi-submit-btn:disabled {
    opacity: .55;
    cursor: not-allowed;
}

/* ── Notice ──────────────────────────────────────────────────────────────── */
.mphb-mv-gi-notice {
    margin: 10px 0 0;
    font-size: .78rem;
    color: #9ca3af;
    text-align: center;
    line-height: 1.5;
}

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 860px) {
    .mphb-mv-gi-layout {
        grid-template-columns: 1fr;
    }
    .mphb-mv-gi-sidebar {
        position: static;
        order: -1;
    }
}

@media (max-width: 600px) {
    .mphb-mv-gi-wrap      { padding: 24px 16px 60px; }
    .mphb-mv-gi-title     { font-size: 1.25rem; margin-bottom: 20px; }
    .mphb-mv-gi-card      { padding: 16px; }
    .mphb-mv-gi-row       { grid-template-columns: 1fr; }
    .mphb-mv-gi-stay-meta { grid-template-columns: 1fr; }
}

/* ── No-draft error (shown instead of redirect) ──────────────────────────── */
.mphb-mv-gi-no-draft {
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: var(--booklium-border-radius-default, 3px);
    padding: 20px 24px;
    font-size: .95rem;
    color: #92400e;
    margin-top: 24px;
}

.mphb-mv-gi-no-draft a {
    color: var(--booklium-accent-color, #13b0bb);
    font-weight: 600;
    text-decoration: underline;
}

/* ── Selected service lines in summary ───────────────────────────────────── */
.mphb-mv-gi-svc-item {
    font-size: .78rem;
    color: #6b7280;
    margin-top: 2px;
}

/* ==========================================================================
   Room card — optional services  (.mphb-mv-services-wrap)
   ========================================================================== */

.mphb-mv-services-wrap {
    border-top: 1px solid #f3f4f6;
    padding-top: 14px;
    margin-top: 4px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mphb-mv-services-heading {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: #9ca3af;
    margin: 0;
}

.mphb-mv-service-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: #f9fafb;
    border: 1px solid #f3f4f6;
    border-radius: var(--booklium-border-radius-default, 3px);
    padding: 10px 12px;
}

.mphb-mv-service-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.mphb-mv-service-name {
    font-size: .875rem;
    font-weight: 600;
    color: #1a1a1a;
}

.mphb-mv-service-desc {
    font-size: .78rem;
    color: #6b7280;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mphb-mv-service-price {
    font-size: .8rem;
    color: var(--booklium-accent-color, #13b0bb);
    font-weight: 600;
}

.mphb-mv-svc-stepper {
    display: flex;
    align-items: center;
    border: 1px solid #e5e7eb;
    border-radius: var(--booklium-border-radius-default, 3px);
    overflow: hidden;
    flex-shrink: 0;
}

.mphb-mv-svc-val {
    width: 30px;
    text-align: center;
    font-size: .875rem;
    font-weight: 600;
    color: #1a1a1a;
    border-left: 1px solid #e5e7eb;
    border-right: 1px solid #e5e7eb;
    line-height: 30px;
    user-select: none;
}

/* ==========================================================================
   Hotel taxonomy — vendor pending notice
   ========================================================================== */

.mphb-mv-hotel-pending-notice {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: var(--booklium-border-radius-default, 3px);
    padding: 14px 18px;
    margin-bottom: 20px;
    font-size: .875rem;
    color: #92400e;
    line-height: 1.5;
}

.mphb-mv-hotel-pending-notice p {
    margin: 0;
}

/* ==========================================================================
   Room card — photos overlay button + view-details link
   ========================================================================== */

.mphb-mv-room-img--clickable {
    position: relative;
}

.mphb-mv-photos-btn {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: rgba(0,0,0,.55);
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 4px 10px;
    font-size: .75rem;
    font-weight: 600;
    cursor: pointer;
    line-height: 1.4;
    transition: background .15s;
}
.mphb-mv-photos-btn:hover { background: rgba(0,0,0,.78); }

.mphb-mv-view-details-btn {
    display: inline-block;
    background: none;
    border: none;
    padding: 0;
    font-size: .82rem;
    color: var(--booklium-accent-color, #13b0bb);
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 2px;
    font-family: inherit;
}
.mphb-mv-view-details-btn:hover { opacity: .75; }

/* ==========================================================================
   Room detail modal
   ========================================================================== */

.mphb-mv-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,.75);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    box-sizing: border-box;
}

.mphb-mv-modal {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    max-width: 860px;
    width: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,.4);
}

.mphb-mv-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,.5);
    color: #fff;
    font-size: 1.3rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .15s;
}
.mphb-mv-modal-close:hover { background: rgba(0,0,0,.78); }

/* Gallery */
.mphb-mv-modal-gallery {
    position: relative;
    width: 100%;
    height: 340px;
    background: #111;
    flex-shrink: 0;
}

.mphb-mv-modal-img-wrap {
    width: 100%;
    height: 100%;
}

.mphb-mv-modal-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mphb-mv-modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,.45);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .15s;
}
.mphb-mv-modal-nav:hover { background: rgba(0,0,0,.75); }
.mphb-mv-modal-prev { left: 12px; }
.mphb-mv-modal-next { right: 12px; }

.mphb-mv-modal-counter {
    position: absolute;
    bottom: 10px;
    right: 12px;
    background: rgba(0,0,0,.5);
    color: #fff;
    font-size: .75rem;
    padding: 3px 9px;
    border-radius: 10px;
    pointer-events: none;
}

/* Info panel */
.mphb-mv-modal-info {
    padding: 24px;
    overflow-y: auto;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mphb-mv-modal-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.mphb-mv-modal-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.mphb-mv-modal-desc {
    font-size: .875rem;
    color: #4b5563;
    line-height: 1.7;
}
.mphb-mv-modal-desc p { margin: 0 0 8px; }
.mphb-mv-modal-desc p:last-child { margin-bottom: 0; }

.mphb-mv-modal-amenities-title {
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: #9ca3af;
    margin: 0 0 8px;
}

@media (max-width: 640px) {
    .mphb-mv-modal-gallery { height: 220px; }
    .mphb-mv-modal-info    { padding: 16px; }
    .mphb-mv-modal-title   { font-size: 1.05rem; }
}
