.floating-book-side {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9997;
}

.floating-book-side .btn {
    background: linear-gradient(135deg, #aa8453 0%, #c9a56a 100%);
    color: #fff;
    padding: 20px 16px;
    border-radius: 40px;
    text-decoration: none;
    font-size: 14px;
    font-family: 'Barlow', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(170, 132, 83, 0.45);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.floating-book-side .btn:hover {
    color: #fff;
    filter: brightness(1.05);
}

.sticky-book-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(17, 17, 17, 0.96);
    z-index: 9996;
    transform: translateY(100%);
    transition: transform 0.25s ease;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.sticky-book-bar.visible {
    transform: translateY(0);
}

.sticky-book-bar .bar-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.sticky-book-bar .message {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    flex: 1;
}

.sticky-book-bar .message i {
    color: #aa8453;
}

.sticky-book-bar .btn {
    background: linear-gradient(135deg, #aa8453 0%, #c9a56a 100%);
    color: #fff;
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 700;
}

.sticky-book-bar .btn:hover {
    color: #fff;
    filter: brightness(1.05);
}

.sticky-book-bar .close-btn {
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 18px;
    line-height: 1;
    padding: 4px;
    cursor: pointer;
}

.fixed-con {
    bottom: 0 !important;
}

.fixed-con .line {
    margin-bottom: 0 !important;
}

.rooms1-2 .item {
    margin-bottom: 0 !important;
}

.rooms1-2 .item .category {
    display: none !important;
}

@media (max-width: 991px) {
    .floating-book-side {
        right: 14px;
        top: auto;
        bottom: 96px;
        transform: none;
    }

    .floating-book-side .btn {
        writing-mode: horizontal-tb;
        text-orientation: initial;
        flex-direction: row;
        border-radius: 999px;
        padding: 10px 14px;
    }

    .sticky-book-bar .bar-container {
        flex-wrap: wrap;
    }
}

@media (max-width: 575px) {
    .sticky-book-bar .message {
        font-size: 13px;
    }

    .sticky-book-bar .btn {
        width: 100%;
        text-align: center;
    }
}
