/* CSS específico de cliente/detalhes.blade.php — extraído de blocos <style> inline (§5.3). */

    :root {
        /* Paleta Light Mode Padrão */
        --bg-body: #ffffff;
        --bg-card: #ffffff;
        --bg-input: #f8f9fa;
        --bg-hover: #f1f5f9;
        --text-main: #1e293b;
        --text-muted: #64748b;
        --border-color: #e2e8f0;
        --primary-color: #1e3a8a;
        --primary-hover: #1e40af;
        --danger-color: #ef4444;
        --success-color: #10b981;
        --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
        --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
        --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    }

    [data-bs-theme="dark"] {
        --bg-body: #0f172a;
        --bg-card: #1e293b;
        --bg-input: #0f172b;
        --bg-hover: #334155;
        --text-main: #f8fafc;
        --text-muted: #94a3b8;
        --border-color: #334155;
        --primary-color: #60a5fa;
        --primary-hover: #93c5fd;
        --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.3);
        --shadow-md: 0 4px 12px 0 rgb(0 0 0 / 0.4);
        --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.4);
    }

    [data-bs-theme="dark"] .card,
    [data-bs-theme="dark"] .modal-content,
    [data-bs-theme="dark"] .reservation-box,
    [data-bs-theme="dark"] .info-section,
    [data-bs-theme="dark"] .airbnb-card {
        background-color: var(--bg-card) !important;
        border-color: var(--border-color) !important;
        color: var(--text-main) !important;
    }

    [data-bs-theme="dark"] .amenity-item,
    [data-bs-theme="dark"] .share-btn,
    [data-bs-theme="dark"] .favorite-btn,
    [data-bs-theme="dark"] .form-control,
    [data-bs-theme="dark"] .form-select {
        background-color: var(--bg-input) !important;
        border-color: var(--border-color) !important;
        color: var(--text-main) !important;
    }

    [data-bs-theme="dark"] .amenity-item:hover,
    [data-bs-theme="dark"] .form-control:focus,
    [data-bs-theme="dark"] .form-select:focus {
        background-color: var(--bg-hover) !important;
        border-color: var(--primary-color) !important;
    }

    [data-bs-theme="dark"] .text-muted,
    [data-bs-theme="dark"] .amenity-item span {
        color: var(--text-muted) !important;
    }

    [data-bs-theme="dark"] .property-title,
    [data-bs-theme="dark"] .section-title {
        color: #ffffff !important;
    }

    [data-bs-theme="dark"] .app-promo-banner {
        background: linear-gradient(135deg, #1e3a8a, #4338ca) !important;
        border-color: rgba(255, 255, 255, 0.1) !important;
    }

    /* OWNER SECTION STYLES (GLOBAL) */
    .owner-section {
        background: var(--bg-card);
        border: 1px solid var(--border-color);
        border-top: 4px solid var(--primary-color);
        border-radius: 12px;
        padding: 24px 20px;
        display: flex;
        flex-direction: column;
        gap: 20px;
        box-shadow: var(--shadow-md);
        margin-top: 16px;
        width: 100%;
    }
    
    .owner-header-row {
        display: flex;
        width: 100%;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 16px;
    }

    .owner-link {
        display: flex;
        align-items: center;
        gap: 16px;
        text-decoration: none;
        flex-grow: 1;
    }

    .owner-link:hover {
        text-decoration: none;
    }

    .host-avatar {
        width: 64px;
        height: 64px;
        min-width: 64px;
        border-radius: 50%;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: #ffffff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 1.5rem;
        box-shadow: 0 4px 10px rgba(0,0,0,0.15);
        text-transform: uppercase;
    }

    .owner-info {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 2px;
    }

    .owner-title {
        color: var(--text-main);
        font-size: 1.15rem;
        margin: 0;
        line-height: 1.3;
        font-weight: 600;
    }
    
    .owner-title strong {
        color: var(--primary-color);
    }

    .verification-badge {
        font-size: 0.9rem;
        color: var(--success-color);
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 6px;
        text-decoration: none;
    }

    .owner-profile-link {
        font-size: 0.9rem;
        color: var(--primary-color);
        margin-top: 4px;
        display: inline-flex;
        align-items: center;
        font-weight: 600;
    }

    .owner-actions-row {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
    }

    .action-btn {
        padding: 0 24px;
        height: 48px;
        border-radius: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
        font-size: 0.95rem;
        text-transform: none;
        box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        transition: all 0.3s ease;
    }

    .action-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    @media (max-width: 768px) {
        .owner-header-row {
            flex-direction: column;
            align-items: flex-start;
        }
        .owner-actions-row {
            width: 100%;
        }
        .action-btn {
            flex: 1;
        }
    }

    /* === Conheça seu anfitrião (spotlight) === */
    .host-meet-section {
        margin: 40px 0 32px;
        padding-top: 40px;
        border-top: 1px solid var(--border-color);
    }
    .host-meet-title {
        font-size: 1.375rem;
        font-weight: 700;
        color: var(--text-main);
        margin-bottom: 24px;
        letter-spacing: -0.01em;
    }
    .host-meet-grid {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 40px;
        align-items: start;
    }
    .host-profile-card {
        background: var(--bg-card);
        border: 1px solid var(--border-color);
        border-radius: 16px;
        box-shadow: var(--shadow-sm);
        padding: 24px;
    }
    .host-profile-card-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
    }
    .host-profile-identity {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        min-width: 0;
        flex: 1;
    }
    .host-spotlight-avatar-wrap {
        position: relative;
        margin-bottom: 12px;
    }
    .host-spotlight-avatar,
    .host-spotlight-avatar-img {
        width: 88px;
        height: 88px;
        border-radius: 50%;
        object-fit: cover;
    }
    .host-spotlight-avatar {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        font-weight: 700;
    }
    .host-spotlight-avatar--festly {
        background: linear-gradient(135deg, #1e3a8a 0%, #4338ca 100%);
        font-size: 2.25rem;
    }
    .host-spotlight-verified {
        position: absolute;
        right: -2px;
        bottom: 2px;
        width: 26px;
        height: 26px;
        border-radius: 50%;
        background: var(--primary-color);
        color: #fff;
        border: 2px solid var(--bg-card);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.85rem;
    }
    .host-spotlight-name {
        font-size: 1.125rem;
        font-weight: 700;
        color: var(--text-main);
        line-height: 1.3;
        overflow-wrap: normal;
        word-break: normal;
    }
    .host-spotlight-text {
        min-width: 0;
        flex: 1;
    }
    .host-spotlight-role {
        font-size: 0.875rem;
        color: var(--text-muted);
        margin-top: 2px;
    }
    .host-stat-col {
        display: flex;
        flex-direction: column;
        flex-shrink: 0;
        min-width: 110px;
    }
    .host-stat-item {
        padding: 12px 0;
        border-bottom: 1px solid var(--border-color);
        text-align: left;
    }
    .host-stat-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    .host-stat-item:first-child {
        padding-top: 0;
    }
    .host-stat-value {
        display: block;
        font-size: 1.125rem;
        font-weight: 700;
        color: var(--text-main);
        line-height: 1.2;
    }
    .host-stat-star {
        font-size: 0.75rem;
        color: #f59e0b;
        margin-left: 2px;
    }
    .host-stat-label {
        display: block;
        font-size: 0.8125rem;
        color: var(--text-muted);
        margin-top: 2px;
    }
    .host-info-panel {
        display: flex;
        flex-direction: column;
        gap: 16px;
        padding-top: 8px;
    }
    .host-info-title {
        font-size: 1.0625rem;
        font-weight: 700;
        color: var(--text-main);
        margin: 0;
    }
    .host-info-list {
        list-style: none;
        padding: 0;
        margin: 0;
        font-size: 0.9375rem;
        color: var(--text-muted);
        line-height: 1.7;
    }
    .host-info-list li strong {
        color: var(--text-main);
        font-weight: 600;
    }
    .btn-host-message {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: auto;
        max-width: 100%;
        padding: 13px 23px;
        border-radius: 8px;
        border: none;
        background: #f7f7f7;
        color: #222222;
        font-size: 1rem;
        font-weight: 600;
        line-height: 1.25;
        cursor: pointer;
        text-decoration: none;
        transition: background 0.2s ease, transform 0.15s ease;
    }
    .btn-host-message:hover {
        background: #ebebeb;
        color: #222222;
    }
    .btn-host-message:active {
        transform: scale(0.98);
    }
    .btn-host-message--primary {
        background: var(--primary-color);
        color: #fff;
    }
    .btn-host-message--primary:hover {
        background: var(--primary-hover, #1e40af);
        color: #fff;
    }
    .btn-host-message--secondary {
        background: transparent;
        border: 1px solid var(--border-color);
        color: var(--text-main);
    }
    .btn-host-message--secondary:hover {
        background: var(--bg-input);
        color: var(--text-main);
        border-color: var(--text-muted);
    }
    [data-theme="dark"] .btn-host-message,
    .dark-mode .btn-host-message {
        background: var(--bg-input);
        color: var(--text-main);
    }
    [data-theme="dark"] .btn-host-message:hover,
    .dark-mode .btn-host-message:hover {
        background: var(--bg-hover);
        color: var(--text-main);
    }
    .host-message-action {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        align-items: center;
        margin-top: 4px;
    }
    .host-safety-note {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        padding-top: 20px;
        margin-top: 4px;
        border-top: 1px solid var(--border-color);
        font-size: 0.8125rem;
        color: var(--text-muted);
        line-height: 1.5;
    }
    .host-safety-note i {
        color: var(--primary-color);
        font-size: 1rem;
        flex-shrink: 0;
        margin-top: 1px;
    }
    @media (max-width: 992px) {
        .host-meet-grid {
            grid-template-columns: 1fr;
            gap: 28px;
        }
        .host-info-panel {
            padding-top: 0;
        }
    }
    @media (max-width: 480px) {
        .host-profile-card-inner {
            flex-direction: column;
            align-items: stretch;
        }
        .host-profile-identity {
            flex-direction: row;
            text-align: left;
            gap: 14px;
            align-items: center;
        }
        .host-spotlight-avatar-wrap {
            margin-bottom: 0;
            flex-shrink: 0;
        }
        .host-spotlight-text {
            min-width: 0;
            flex: 1;
        }
        .host-stat-col {
            flex-direction: row;
            min-width: 0;
            width: 100%;
            border-top: 1px solid var(--border-color);
            padding-top: 16px;
        }
        .host-stat-item {
            flex: 1;
            min-width: 0;
            border-bottom: none;
            border-right: 1px solid var(--border-color);
            padding: 0 8px;
            text-align: center;
        }
        .host-stat-item:last-child {
            border-right: none;
        }
        .host-stat-value {
            font-size: 1rem;
        }
        .host-stat-label {
            font-size: 0.75rem;
        }
    }

    /* --- ESTILOS GERAIS DA PÁGINA (Layout Airbnb) --- */
    
    .breadcrumb {
        background: transparent;
        padding: 0;
        margin-bottom: 24px;
    }

    .report-btn {
        background-color: #ffffff;
        border: 1.5px solid #e2e8f0;
        color: #64748b;
        font-size: 0.875rem;
        padding: 8px 18px;
        border-radius: 14px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-weight: 600;
        cursor: pointer;
        box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    }

    .report-btn:hover {
        background: #fff5f5;
        color: #e53e3e;
        border-color: #feb2b2;
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(229, 62, 62, 0.12);
    }

    .report-btn i {
        font-size: 1.1rem;
        transition: transform 0.3s ease;
    }

    .report-btn:hover i {
        transform: scale(1.1) rotate(-8deg);
    }

    .review-report-btn {
        font-size: 0.75rem;
        padding: 4px 10px;
        opacity: 0.65;
        border-radius: 10px;
        margin-left: 8px;
    }

    .review-card:hover .review-report-btn {
        opacity: 1;
        background: #fff5f5;
    }

    [data-bs-theme="dark"] .report-btn {
        background: rgba(255, 255, 255, 0.05);
        border-color: rgba(255, 255, 255, 0.1);
    }

    [data-bs-theme="dark"] .report-btn:hover {
        background: rgba(229, 62, 62, 0.15);
        color: #fc8181;
        border-color: rgba(229, 62, 62, 0.3);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    }

    [data-bs-theme="dark"] .review-card:hover .review-report-btn {
        background: rgba(229, 62, 62, 0.15);
    }

    /* --- ESTILOS GERAIS DA PÁGINA (Layout Airbnb) --- */
    
    .breadcrumb {
        background: transparent;
        padding: 0;
        margin-bottom: 24px;
    }
    .breadcrumb-item a {
        color: var(--primary-color);
        text-decoration: none;
        font-weight: 500;
        transition: all 0.2s;
    }
    .breadcrumb-item a:hover {
        color: var(--primary-hover);
    }
    .breadcrumb-item.active {
        color: var(--text-muted);
    }
    .breadcrumb-item + .breadcrumb-item::before {
        color: var(--text-muted);
    }
    
    /* === Photo grid Airbnb === */
    .property-detail-layout {
        display: grid;
        gap: 1.5rem;
        margin-top: 8px;
        align-items: start;
    }
    @media (min-width: 992px) {
        .property-detail-layout {
            grid-template-columns: minmax(0, 2fr) minmax(300px, 1fr);
            grid-template-areas:
                "detailMain detailSidebar"
                "detailBelow detailBelow";
        }
        .property-detail-main { grid-area: detailMain; min-width: 0; }
        .property-detail-sidebar { grid-area: detailSidebar; min-width: 0; }
        .property-detail-below {
            grid-area: detailBelow;
            width: 100%;
            min-width: 0;
            padding-top: 8px;
            border-top: 1px solid var(--border-color);
        }
    }
    @media (max-width: 991.98px) {
        .property-detail-layout {
            grid-template-columns: 1fr;
            grid-template-areas:
                "detailMain"
                "detailBelow";
        }
        .property-detail-main {
            grid-area: detailMain;
            min-width: 0;
            max-width: 100%;
        }
        .property-detail-sidebar { display: none; }
        .property-detail-below {
            grid-area: detailBelow;
            min-width: 0;
            max-width: 100%;
        }
    }
    .property-detail-below .property-location-section {
        margin-top: 0;
        padding-top: 32px;
        border-top: none;
    }
    .property-detail-below .host-meet-section {
        margin-top: 40px;
        padding-top: 40px;
        border-top: 1px solid var(--border-color);
    }
    .property-detail-below .property-below-reviews {
        margin-top: 40px;
        padding-top: 40px;
        border-top: 1px solid var(--border-color);
    }
    .photo-grid-airbnb {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        border-radius: 12px;
        overflow: hidden;
        position: relative;
        margin-bottom: 24px;
        height: 360px;
        max-height: 48vh;
        animation: scaleIn 0.6s ease;
        background: var(--bg-body);
        width: 100%;
    }
    .photo-grid-count-1 {
        grid-template-columns: 1fr;
        height: 420px;
        max-height: 52vh;
    }
    .photo-grid-count-1 .photo-grid-hero {
        grid-row: auto;
    }
    .photo-grid-count-2 {
        height: 320px;
        max-height: 44vh;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr;
    }
    /* Layout hero + lateral: 2 linhas no grid pai */
    .photo-grid-count-3,
    .photo-grid-count-4,
    .photo-grid-count-5 {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
    }
    .photo-grid-count-3 .photo-grid-hero,
    .photo-grid-count-4 .photo-grid-hero,
    .photo-grid-count-5 .photo-grid-hero {
        grid-column: 1;
        grid-row: 1 / -1;
    }
    .photo-grid-count-3 .photo-grid-side,
    .photo-grid-count-4 .photo-grid-side,
    .photo-grid-count-5 .photo-grid-side {
        grid-column: 2;
        grid-row: 1 / -1;
        height: 100%;
        align-self: stretch;
    }
    .photo-grid-count-3 .photo-grid-side {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr;
    }
    .photo-grid-count-4 .photo-grid-side {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr 1fr;
    }
    .photo-grid-count-5 .photo-grid-side {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
    }
    .photo-grid-side {
        display: grid;
        gap: 8px;
        min-height: 0;
        min-width: 0;
        overflow: hidden;
    }
    .photo-grid-hero,
    .photo-grid-cell {
        position: relative;
        padding: 0;
        border: none;
        background: var(--bg-input);
        cursor: pointer;
        overflow: hidden;
        display: block;
        width: 100%;
        height: 100%;
        min-height: 0;
        min-width: 0;
        line-height: 0;
        font-size: 0;
    }
    .photo-grid-hero img,
    .photo-grid-cell img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
        display: block;
        transition: opacity 0.2s ease;
        /* Evita esticar fora da proporção original */
        max-width: none;
        max-height: none;
    }
    .photo-grid-hero:hover img,
    .photo-grid-cell:hover img {
        opacity: 0.92;
    }
    .photo-grid-show-all {
        position: absolute;
        bottom: 16px;
        right: 16px;
        z-index: 2;
        background: #fff;
        color: var(--text-main);
        border: 1px solid var(--border-color);
        border-radius: 8px;
        padding: 8px 16px;
        font-size: 0.875rem;
        font-weight: 600;
        cursor: pointer;
        box-shadow: var(--shadow-md);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .photo-grid-show-all:hover {
        transform: scale(1.02);
        box-shadow: var(--shadow-lg);
    }
    [data-bs-theme="dark"] .photo-grid-show-all {
        background: var(--bg-card);
        color: var(--text-main);
    }
    .photo-grid-mobile-hero {
        display: none;
        position: relative;
        border-radius: 12px;
        overflow: hidden;
        margin-bottom: 16px;
        height: 280px;
        max-height: 42vh;
        cursor: pointer;
    }
    .photo-grid-mobile-hero img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
        display: block;
    }
    .photo-grid-mobile-counter {
        position: absolute;
        bottom: 12px;
        right: 12px;
        background: rgba(0, 0, 0, 0.7);
        color: #fff;
        padding: 6px 12px;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 500;
        backdrop-filter: blur(8px);
    }
    .photo-grid-mobile-show {
        position: absolute;
        bottom: 12px;
        left: 12px;
        background: #fff;
        color: var(--text-main);
        border: none;
        border-radius: 8px;
        padding: 6px 12px;
        font-size: 0.8rem;
        font-weight: 600;
        box-shadow: var(--shadow-md);
    }
    .property-gallery-modal .modal-dialog {
        max-width: 100vw;
        margin: 0;
        height: 100dvh;
    }
    .property-gallery-modal .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0;
        background: rgba(2, 6, 23, 0.97);
    }
    .property-gallery-modal .modal-body {
        height: 100%;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
    }
    .property-gallery-image {
        max-width: 100%;
        max-height: 100%;
        width: auto;
        height: auto;
        object-fit: contain;
    }
    .property-gallery-close,
    .property-gallery-nav {
        position: absolute;
        border: 0;
        border-radius: 999px;
        color: #fff;
        background: rgba(15, 23, 42, 0.62);
        backdrop-filter: blur(8px);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        z-index: 3;
    }
    .property-gallery-close {
        top: 16px;
        right: 16px;
        width: 42px;
        height: 42px;
    }
    .property-gallery-nav {
        top: 50%;
        transform: translateY(-50%);
        width: 44px;
        height: 44px;
    }
    .property-gallery-nav.prev { left: 14px; }
    .property-gallery-nav.next { right: 14px; }
    .property-gallery-meta {
        position: absolute;
        left: 50%;
        bottom: 16px;
        transform: translateX(-50%);
        color: #fff;
        font-size: 0.85rem;
        font-weight: 700;
        background: rgba(15, 23, 42, 0.62);
        padding: 8px 12px;
        border-radius: 999px;
        backdrop-filter: blur(8px);
        z-index: 3;
    }
    
    /* === Hero header === */
    .property-hero-header {
        margin-bottom: 24px;
    }
    .property-hero-top {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 16px;
        flex-wrap: wrap;
    }
    .property-hero-actions {
        display: flex;
        align-items: center;
        gap: 12px;
        flex-shrink: 0;
    }
    .property-title {
        font-size: 1.75rem;
        font-weight: 700;
        color: var(--text-main);
        margin-bottom: 8px;
        letter-spacing: -0.02em;
        word-break: break-word;
        max-width: 100%;
        flex: 1;
        min-width: 0;
    }
    .property-meta-line {
        font-size: 0.9375rem;
        color: var(--text-muted);
        font-weight: 400;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 0;
        line-height: 1.5;
    }
    .meta-separator {
        color: var(--text-muted);
        margin: 0 6px;
    }
    .meta-item {
        display: inline-flex;
        align-items: center;
        gap: 4px;
    }

    /* === Description collapse + fog === */
    .description-wrapper {
        position: relative;
    }
    .description-text {
        font-size: 1.0625rem;
        line-height: 1.8;
        color: var(--text-muted);
        overflow: hidden;
        transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .description-text.description-collapsed {
        max-height: 6rem;
    }
    .description-fade-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 48px;
        pointer-events: none;
        background: linear-gradient(to bottom, transparent, var(--bg-card));
        opacity: 1;
        transition: opacity 0.35s ease;
    }
    .description-fade-overlay.is-hidden {
        opacity: 0;
    }
    .btn-description-toggle {
        background: none;
        border: none;
        padding: 0;
        margin-top: 8px;
        font-size: 0.9375rem;
        font-weight: 600;
        color: var(--text-main);
        text-decoration: underline;
        cursor: pointer;
    }
    .btn-description-toggle:hover {
        color: var(--primary-color);
    }

    /* === Specs inline + trust === */
    .property-specs-inline {
        font-size: 0.9375rem;
        color: var(--text-main);
        font-weight: 500;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid var(--border-color);
    }
    .spec-separator {
        color: var(--text-muted);
        margin: 0 6px;
    }
    .trust-highlights {
        margin-top: 24px;
        padding-top: 24px;
        border-top: 1px solid var(--border-color);
    }
    .trust-highlight-item {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 0.9375rem;
        color: var(--text-main);
        padding: 8px 0;
    }
    .trust-highlight-item i {
        font-size: 1.25rem;
        color: var(--text-main);
        flex-shrink: 0;
    }
    
    .favorite-btn {
        background: var(--bg-card);
        border: 2px solid var(--border-color);
        width: 56px;
        height: 56px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: var(--shadow-md);
        font-size: 1.5rem;
        color: var(--text-muted);
    }
    .favorite-btn:hover {
        border-color: var(--primary-color);
        background-color: rgba(99, 102, 241, 0.1);
        transform: scale(1.1) translateY(-2px);
        box-shadow: var(--shadow-lg);
        color: var(--primary-color);
    }
    .favorite-btn.active {
        border-color: var(--primary-color);
        background-color: rgba(99, 102, 241, 0.15);
    }
    .favorite-btn.active i {
        color: var(--primary-color);
    }
    
    .share-buttons {
        display: flex;
        gap: 8px;
        align-items: center;
    }
    .share-btn {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-card);
        border: 2px solid var(--border-color);
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: var(--shadow-sm);
        font-size: 1.1rem;
        color: var(--text-muted);
    }
    .share-btn:hover {
        transform: scale(1.1) translateY(-2px);
        box-shadow: var(--shadow-md);
        border-color: var(--primary-color);
    }
    .share-btn.facebook:hover { background: #1877F2; color: white; border-color: #1877F2; }
    .share-btn.whatsapp:hover { background: #25D366; color: white; border-color: #25D366; }
    .share-btn.twitter:hover { background: #1DA1F2; color: white; border-color: #1DA1F2; }
    .share-btn.copy-link:hover { background: var(--primary-color); color: white; border-color: var(--primary-color); }
    
    .info-section {
        margin-bottom: 32px;
        padding: 24px;
        background: var(--bg-card);
        border-radius: 20px;
        border: 2px solid transparent;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .info-section:hover {
        border-color: var(--primary-color);
        box-shadow: 0 8px 24px rgba(99, 102, 241, 0.1);
        transform: translateY(-4px);
    }

    .garantia-section {
        padding: 0;
        background: transparent;
    }
    .garantia-section .trust-garantia-festly {
        margin-bottom: 0 !important;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .garantia-section .trust-garantia-festly .rounded-circle {
        transition: transform 0.3s ease;
    }
    .garantia-section:hover .trust-garantia-festly {
        box-shadow: 0 12px 32px rgba(99, 102, 241, 0.15) !important;
    }
    .garantia-section:hover .trust-garantia-festly .rounded-circle {
        transform: scale(1.08);
        transition: transform 0.3s ease;
    }
    .trust-garantia-festly li {
        transition: transform 0.2s ease, color 0.2s ease;
        border-radius: 8px;
        padding: 4px 6px;
        margin-left: -6px;
        margin-right: -6px;
    }
    .trust-garantia-festly li:hover {
        transform: translateX(4px);
        background: rgba(99, 102, 241, 0.06);
    }
    .trust-garantia-festly li i {
        transition: transform 0.25s ease, color 0.25s ease;
    }
    .trust-garantia-festly li:hover i {
        transform: scale(1.15);
        color: var(--primary-hover) !important;
    }
    .trust-garantia-festly li:hover strong {
        color: var(--primary-color) !important;
    }
    
    .section-title {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--text-main);
        margin-bottom: 20px;
        letter-spacing: -0.01em;
        display: flex;
        align-items: center;
        gap: 12px;
        transition: all 0.3s ease;
        position: relative;
        padding-bottom: 12px;
    }
    .section-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--primary-color), var(--primary-hover));
        border-radius: 2px;
        transition: width 0.3s ease;
    }
    .info-section:hover .section-title::after {
        width: 60px;
    }
    .section-title i {
        color: var(--primary-color);
        transition: all 0.3s ease;
    }
    .info-section:hover .section-title i {
        transform: scale(1.2) rotate(5deg);
        color: var(--primary-hover);
    }
    
    .amenities-section-title {
        font-size: 1.375rem;
        font-weight: 700;
        color: var(--text-main);
        margin-bottom: 20px;
        letter-spacing: -0.01em;
    }
    .amenities-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px 24px;
    }
    .amenity-item {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 8px 0;
        background: transparent;
        border: none;
    }
    .amenity-item i {
        color: var(--text-main);
        font-size: 1.25rem;
        width: 1.5rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }
    .amenity-item span {
        font-weight: 400;
        font-size: 0.9375rem;
        color: var(--text-main);
    }
    .btn-amenities-show-all {
        margin-top: 16px;
        background: var(--bg-input);
        border: 1px solid var(--border-color);
        border-radius: 8px;
        padding: 12px 20px;
        font-size: 0.9375rem;
        font-weight: 600;
        color: var(--text-main);
        cursor: pointer;
        transition: background 0.2s ease, border-color 0.2s ease;
    }
    .btn-amenities-show-all:hover {
        background: var(--bg-hover);
        border-color: var(--text-muted);
    }
    
    .rules-list {
        list-style: none;
        padding: 0;
    }
    
    .rules-list li {
        padding: 16px 20px;
        margin-bottom: 12px;
        background: var(--bg-card);
        border-radius: 16px;
        border-left: 4px solid var(--primary-color);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        align-items: center;
        gap: 12px;
        color: var(--text-muted);
        cursor: pointer;
        position: relative;
        overflow: hidden;
        animation: fadeInUp 0.5s ease both;
    }
    .rules-list li::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 4px;
        height: 100%;
        background: var(--primary-color);
        transition: width 0.3s ease;
    }
    .rules-list li:hover::before {
        width: 8px;
    }
    .rules-list li:hover {
        background: linear-gradient(90deg, rgba(99, 102, 241, 0.05), var(--bg-card));
        transform: translateX(8px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        border-left-color: var(--primary-hover);
    }
    .rules-list li i {
        color: var(--primary-color);
        transition: all 0.3s ease;
        z-index: 1;
    }
    .rules-list li:hover i {
        transform: scale(1.3);
        color: var(--primary-hover);
    }
    .rules-list li span {
        transition: color 0.3s ease;
        z-index: 1;
    }
    .rules-list li:hover span {
        color: var(--text-main);
        font-weight: 500;
    }
    
    .property-detail-sidebar {
        align-self: start;
    }
    .reservation-box {
        border: 1px solid var(--border-color);
        border-radius: 24px;
        padding: 0;
        box-shadow: var(--shadow-lg);
        position: sticky;
        top: 96px;
        background: var(--bg-card);
        display: flex;
        flex-direction: column;
    }

    #reservationDesktopMount {
        display: flex;
        flex-direction: column;
    }

    .reservation-widget-layout {
        display: flex;
        flex-direction: column;
    }
    .reservation-zone-top {
        flex-shrink: 0;
        padding: 24px 24px 16px;
        border-bottom: 1px solid var(--border-color);
    }
    .reservation-zone-scroll {
        flex: 0 0 auto;
        overflow: visible;
        padding: 16px 24px 28px;
    }
    .reservation-zone-bottom {
        flex-shrink: 0;
        padding: 0 24px 24px;
        border-top: none;
        background: var(--bg-card);
    }
    
    .price-display {
        text-align: left;
        padding: 0 0 16px;
        background: transparent;
        border-radius: 0;
        margin-bottom: 0;
        border: none;
        border-bottom: 1px solid var(--border-color);
    }
    
    .price-value {
        font-size: 2rem;
        font-weight: 800;
        color: var(--primary-color);
        letter-spacing: -0.02em;
        margin-bottom: 2px;
        line-height: 1.1;
    }
    
    .price-label {
        font-size: 0.8rem;
        color: var(--text-muted);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.04em;
    }
    .demand-hint {
        font-weight: 600;
    }
    .btn-whatsapp-support {
        border-color: #25D366;
        color: #128C7E;
    }
    .btn-whatsapp-support:hover {
        background: #25D366;
        color: #fff;
        border-color: #25D366;
    }
    
    .form-group {
        margin-bottom: 24px;
    }
    
    .form-label {
        font-weight: 600;
        font-size: 0.9375rem;
        color: var(--text-main);
        margin-bottom: 10px;
        display: block;
    }
    
    .form-control, .form-select {
        border-radius: 16px;
        padding: 14px 18px;
        border: 2px solid var(--border-color);
        background-color: var(--bg-input);
        color: var(--text-main);
        font-size: 1rem;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
    }
    .form-control:hover, .form-select:hover {
        border-color: var(--gray-400);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    }
    
    .form-control:focus, .form-select:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.15), 0 4px 12px rgba(99, 102, 241, 0.2);
        outline: none;
        background-color: var(--bg-card);
        color: var(--text-main);
        transform: translateY(-2px);
    }
    
    .review-card {
        padding: 24px;
        margin-bottom: 24px;
        background: var(--bg-card);
        border-radius: 20px;
        border: 2px solid transparent;
        border-left: 4px solid var(--primary-color);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
        animation: fadeInUp 0.5s ease both;
        cursor: pointer;
    }
    .review-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.05), transparent);
        transition: left 0.5s;
    }
    .review-card:hover::before {
        left: 100%;
    }
    .review-card:hover {
        transform: translateY(-4px) scale(1.01);
        box-shadow: 0 8px 24px rgba(99, 102, 241, 0.15);
        border-color: var(--primary-color);
        background: linear-gradient(135deg, var(--bg-card), rgba(99, 102, 241, 0.03));
        border-left-width: 6px;
    }

    .review-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 12px;
    }
    .review-name {
        font-weight: 700;
        font-size: 1.125rem;
    }
    .review-stars i {
        color: #fbbf24;
    }
    .review-date {
        font-size: 0.875rem;
        color: var(--text-muted);
        margin-bottom: 12px;
    }
    
    /* --- CSS DO CALENDÁRIO --- */
    .cal-custom-modal .modal-content {
        background-color: var(--bg-card);
        border-radius: 24px;
    }
    .cal-custom-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
    }
    .cal-custom-btn-nav {
        background: var(--bg-input);
        border: none;
        color: var(--text-main);
        width: 36px;
        height: 36px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.2s;
    }
    .cal-custom-btn-nav:hover {
        background: var(--primary-color);
        color: white;
    }
    .cal-custom-grid {
        display: grid;
        grid-template-columns: repeat(7, 1fr);
        gap: 8px;
        text-align: center;
    }
    .cal-custom-weekday {
        font-weight: 700;
        color: var(--text-muted);
        font-size: 0.85rem;
    }
    .cal-custom-day {
        aspect-ratio: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
        background: var(--bg-input);
        font-size: 0.95rem;
        cursor: pointer;
        position: relative;
        transition: all 0.3s;
    }
    .cal-custom-day:hover:not(.disabled) {
        border: 2px solid var(--primary-color);
        background: var(--bg-hover);
        transform: scale(1.1);
        z-index: 10;
    }
    .cal-legend {
        display: flex;
        gap: 16px;
        margin-top: 20px;
        justify-content: center;
        font-size: 0.85rem;
    }
    .cal-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
    }

    /* Cor de destino única — só botões de reserva */
    .btn-airbnb,
    .btn-verify-action,
    #btnSheetVerify,
    #btnMobileReservar {
        background: linear-gradient(90deg, #E61E4D 0%, #E31C5F 50%, #D70466 100%);
        color: #fff;
        border: none;
        border-radius: 999px;
        width: 100%;
        font-weight: 600;
        font-size: 1rem;
        min-height: 48px;
        transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 12px rgba(230, 30, 77, 0.25);
    }
    .btn-airbnb:disabled,
    .btn-verify-action:disabled,
    #btnSheetVerify:disabled {
        opacity: 0.5;
        cursor: not-allowed;
        filter: grayscale(20%);
    }
    .btn-airbnb:not(:disabled):hover,
    .btn-verify-action:not(:disabled):hover,
    #btnSheetVerify:not(:disabled):hover,
    #btnMobileReservar:hover {
        transform: scale(1.02);
        box-shadow: 0 4px 12px rgba(230, 30, 77, 0.35);
        color: #fff;
    }
    .btn-airbnb:active,
    .btn-verify-action:active {
        transform: scale(0.98);
    }
    
    /* Animações */
    @keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
    @keyframes scaleIn { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }

    /* Mobile Enhancements */
    @media (max-width: 992px) {
        .photo-grid-airbnb {
            display: none !important;
        }
        .photo-grid-mobile-hero {
            display: block;
        }
        .property-title {
            font-size: 1.5rem;
        }
        .property-hero-top {
            flex-direction: column;
        }
        .property-hero-actions {
            width: 100%;
            justify-content: flex-end;
        }
        .amenities-grid {
            grid-template-columns: 1fr;
        }
        .property-gallery-nav {
            width: 38px;
            height: 38px;
            top: auto;
            bottom: 14px;
            transform: none;
        }
        .property-gallery-nav.prev { left: 12px; }
        .property-gallery-nav.next { right: 12px; }
        .property-gallery-close {
            top: 12px;
            right: 12px;
            width: 38px;
            height: 38px;
        }
        .property-gallery-meta {
            bottom: 14px;
            font-size: 0.78rem;
            padding: 6px 10px;
        }
        .reservation-box {
            position: static !important;
            box-shadow: none !important;
            border-left: none !important;
            border-right: none !important;
            border-radius: 0 !important;
            background: transparent !important;
            padding: 0 !important;
            margin-top: 2rem;
            max-height: none !important;
            overflow: visible !important;
        }
        #reservationDesktopMount,
        .reservation-widget-layout {
            overflow: visible !important;
            max-height: none !important;
        }
        .reservation-zone-scroll {
            overflow: visible !important;
            padding-bottom: 16px !important;
        }
        .reservation-zone-bottom {
            box-shadow: none !important;
        }
        .price-display {
            background: transparent !important;
            border: 1px solid var(--border-color);
        }
        /* Remove fundo claro no modo escuro mobile */
        [data-bs-theme="dark"] .airbnb-card,
        [data-bs-theme="dark"] .reservation-box,
        [data-bs-theme="dark"] .info-section {
            background-color: transparent !important;
            border-color: transparent !important;
        }
        /* Ensure content isn't hidden by fixed bars */
        body {
            padding-bottom: calc(100px + env(safe-area-inset-bottom, 0px)) !important;
        }
        /* Hide global navigation on details page to focus on conversion */
        .mobile-bottom-nav {
            display: none !important;
        }
        /* Hide breadcrumb on mobile to save space */
        .breadcrumb {
            display: none;
        }

        /* ── Contenção horizontal (evita cards cortados) ── */
        .property-detail-page {
            max-width: 100% !important;
            overflow-x: clip;
            padding-left: 0 !important;
            padding-right: 0 !important;
        }
        .property-detail-layout,
        .property-detail-main,
        .property-detail-below,
        .property-hero-header,
        .photo-grid-mobile-hero {
            min-width: 0;
            max-width: 100%;
        }
        .property-detail-page .airbnb-card {
            padding: 16px !important;
            border-radius: 16px !important;
            max-width: 100%;
            box-sizing: border-box;
        }
        .property-detail-page .info-section {
            padding: 16px;
            margin-bottom: 20px;
            border-radius: 16px;
            max-width: 100%;
            box-sizing: border-box;
        }
        .property-detail-page .info-section:hover {
            transform: none;
            border-color: transparent;
            box-shadow: none;
        }
        .property-detail-page .owner-section {
            padding: 16px;
        }
        .owner-link {
            min-width: 0;
            max-width: 100%;
        }
        .owner-info {
            min-width: 0;
        }
        .owner-title {
            overflow-wrap: anywhere;
        }
        .owner-actions-row .report-btn {
            width: 100%;
            justify-content: center;
        }
        .section-title {
            font-size: 1.25rem;
            flex-wrap: wrap;
        }
        .property-specs-inline {
            overflow-wrap: anywhere;
        }
        .photo-grid-mobile-show {
            max-width: calc(100% - 88px);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .photo-grid-mobile-counter {
            max-width: 72px;
            text-align: center;
        }

        /* ── Host section mobile ── */
        .host-meet-section {
            margin-top: 28px;
            padding-top: 28px;
            max-width: 100%;
            overflow-x: clip;
        }
        .host-profile-card {
            padding: 16px;
            max-width: 100%;
            box-sizing: border-box;
        }
        .host-profile-card-inner {
            flex-direction: column;
            align-items: stretch;
        }
        .host-profile-identity {
            flex-direction: column;
            text-align: center;
            align-items: center;
        }
        .host-spotlight-avatar-wrap {
            margin-bottom: 12px;
        }
        .host-stat-col {
            flex-direction: row;
            min-width: 0;
            width: 100%;
            border-top: 1px solid var(--border-color);
            padding-top: 16px;
        }
        .host-stat-item {
            flex: 1;
            min-width: 0;
            border-bottom: none;
            border-right: 1px solid var(--border-color);
            padding: 0 8px;
            text-align: center;
        }
        .host-stat-item:last-child {
            border-right: none;
        }
        .host-message-action {
            flex-direction: column;
            align-items: stretch;
        }
        .host-message-action .btn-host-message {
            width: 100%;
        }
        .host-safety-note {
            overflow-wrap: anywhere;
        }
    }


/* ── Bloco adicional (linha ~2437 original) ── */
    .bg-summary-body { background-color: rgba(var(--bs-primary-rgb), 0.03); }
    [data-bs-theme="dark"] .bg-summary-body { background-color: rgba(255, 255, 255, 0.02); }

    .summary-card { 
        background-color: var(--bs-body-bg); 
        border: 1px solid rgba(var(--bs-primary-rgb), 0.1);
    }
    [data-bs-theme="dark"] .summary-card { 
        background-color: var(--gray-100); 
        border-color: var(--gray-200);
    }

    .text-summary-title { color: var(--bs-emphasis-color); }
    .divider-light { border-color: var(--bs-border-color) !important; }
    .bg-white-dark { background-color: var(--bs-body-bg); }

    .summary-status-alert { border-radius: 16px; border: 1px solid transparent !important; }
    .summary-status-alert.success { 
        background: linear-gradient(135deg, #f0fdf4, #dcfce7); 
        border-color: #bbf7d0 !important; 
    }
    [data-bs-theme="dark"] .summary-status-alert.success { 
        background: linear-gradient(135deg, rgba(22, 163, 74, 0.1), rgba(21, 128, 61, 0.15)); 
        border-color: rgba(34, 197, 94, 0.2) !important; 
    }

    .summary-status-alert.danger { 
        background: linear-gradient(135deg, #fff5f5, #ffe4e6); 
        border-color: #fecdd3 !important; 
    }
    [data-bs-theme="dark"] .summary-status-alert.danger { 
        background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(185, 28, 28, 0.15)); 
        border-color: rgba(239, 68, 68, 0.2) !important; 
    }

    .variant-soft { background-color: rgba(var(--bs-primary-rgb), 0.05); }
    .animate-fade-in { animation: fadeIn 0.4s ease-out; }
    @keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
    .ls-1 { letter-spacing: 0.5px; }
    .shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }
    .transform-hover:hover { transform: translateY(-2px); transition: all 0.2s; }

/* ── Bloco final (linha ~3997 original) ── */
    #bookingOffcanvas.booking-offcanvas {
        z-index: 2000;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        height: min(92dvh, 100%) !important;
        max-height: 92dvh;
        border: none;
        border-radius: 20px 20px 0 0;
        box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.12);
        display: flex;
        flex-direction: column;
        overflow: hidden;
        padding-bottom: env(safe-area-inset-bottom, 0px);
    }
    #bookingOffcanvas .booking-offcanvas-header {
        flex-shrink: 0;
        padding: 1rem 1.25rem;
    }
    #bookingOffcanvas .booking-offcanvas-body {
        flex: 1 1 auto;
        min-height: 0;
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding: 1rem 1.25rem 1.25rem;
    }
    #bookingOffcanvas .booking-sheet-footer {
        flex-shrink: 0;
        z-index: 1;
        padding: 0.75rem 1.25rem calc(0.75rem + env(safe-area-inset-bottom, 0px));
        background: var(--bg-card, #fff);
        border-top: 1px solid var(--border-color);
        box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.06);
    }
    #bookingOffcanvasMount #btnVerifyAvailabilityMobile {
        display: none !important;
    }
    #bookingOffcanvasMount .reservation-zone-scroll {
        padding: 0 !important;
        overflow: visible !important;
    }
    #bookingOffcanvasMount .price-display {
        margin-bottom: 1rem;
        padding: 1rem !important;
        border-radius: 12px;
    }
    body.booking-offcanvas-open .sticky-booking-bar {
        visibility: hidden;
        pointer-events: none;
    }
    .offcanvas-backdrop.show {
        z-index: 1950;
    }
    [data-bs-theme="dark"] .booking-sheet-footer {
        background: var(--bg-card) !important;
    }
    .sticky-booking-bar {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: var(--bg-card);
        border-top: 1px solid var(--border-color);
        padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 12px;
        z-index: 1030;
        box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        animation: slideUp 0.5s ease;
        max-width: 100vw;
        box-sizing: border-box;
    }
    .booking-bar-price {
        min-width: 0;
        flex-shrink: 0;
    }
    #btnMobileReservar {
        flex: 1 1 auto;
        min-width: 0;
        max-width: 100%;
        white-space: nowrap;
    }
    @keyframes slideUp {
        from { transform: translateY(100%); }
        to { transform: translateY(0); }
    }
    [data-bs-theme="dark"] .sticky-booking-bar {
        background: rgba(30, 41, 59, 0.95);
    }
