/* ===============================
    Mobile Sticky Booking Bar + desktop view enhancements
=============================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

.mobile-sticky-booking {
    display: none;
}

/************** New styles for hero section design **************/
.statistics .stat .stat-cont {
    font-size: 14px;
    width: 130px;
}

.place-details-stats-sec .statistics {
    grid-template-columns: repeat(5, 1fr);
}

section.list-details-banner-sec .container {
    padding: 0;
}

.list-details-banner-sec {
    padding: 0;
    position: relative;
}

section.list-details-banner-sec a img {
    position: absolute;
    z-index: 9;
    top: 10px;
    left: 10px;
    background: #fff;
    padding: 4px 3px;
    border-radius: 15px;
    width: 20px;
}

.list-details-page .app-header {
    display: none;
}

.list-details-header-sec {
    padding: 20px 0;
    border-radius: 15px;
    margin-top: -60px;
    z-index: 9;
    position: relative;
    background: #ffff;
}

/*****************************/

@media (max-width: 767px) {
    .statistics .stat .stat-cont {
        width: 100%;
    }

    .place-details-stats-sec .statistics {
        grid-template-columns: 1fr !important;
    }

    .mobile-sticky-booking {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: #ffffff;
        border-top: 1px solid #e5e5e5;
        padding: 12px 14px calc(env(safe-area-inset-bottom) + 12px);
        z-index: 9999;
        box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
    }

    /* Prevent overflow */
    .mobile-sticky-booking * {
        max-width: 100%;
    }

    .duration-selector {
        display: flex;
        gap: 12px;
        margin-bottom: 10px;
        flex-wrap: wrap;
    }

    .duration-option {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 14px;
        font-weight: 500;
        white-space: nowrap;
    }

    /* Coupon */
    .mobile-sticky-booking input#couponInput {
        border: 1px solid #d9d9d9;
        border-radius: 6px;
        padding: 8px 10px;
        font-size: 14px;
        color: #444;
        background: #fafafa;
        margin-bottom: 10px;
        width: 100%;
    }

    .price-cta-row {
        display: flex;
        gap: 10px;
        width: 100%;
    }

    .price-box strong {
        color: #1f8f4a;
        font-size: 20px;
    }

    .price-box {
        flex: 1;
        min-width: 0;
        border: 1px solid #d9d9d9;
        border-radius: 6px;
        padding: 5px 10px;
        font-size: 14px;
    }

    .book-now-btn {
        flex-shrink: 0;
        background: #1f8f4a;
        color: #ffffff;
        border: none;
        border-radius: 6px;
        padding: 0 18px;
        font-size: 14px;
        font-weight: 600;
        height: 44px;
        white-space: nowrap;
    }

    /* real space for sticky bar */
    body {
        padding-bottom: 220px;
    }
}