﻿/* استایل اصلی دکمه شناور */
.floating-booking-btn {
    position: fixed !important;
    bottom: 30px !important;
    right: 65px !important;
    background-color: #9A846E !important; /* رنگ طلایی مات ست شده با سایت */
    color: #ffffff !important;
    text-decoration: none !important;
    display: flex !important;
    align-items: center !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4) !important;
    z-index: 9999999 !important; /* بالاترین حد ممکن برای لایه‌ها */
    transition: all 0.3s ease !important;
    overflow: hidden !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* بخش آیکون سمت چپ */
.floating-booking-btn .icon-area {
    padding: 12px 15px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-right: 1px dashed rgba(255, 255, 255, 0.4) !important;
}

/* بخش متن سمت راست */
.floating-booking-btn .text-area {
    padding: 12px 20px !important;
    font-size: 15px !important;
    font-weight: bold !important;
    letter-spacing: 0.5px !important;
    white-space: nowrap !important;
}

/* حالت هاور دکمه */
.floating-booking-btn:hover {
    background-color: #836F5C !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5) !important;
}

/* تنظیمات نسخه موبایل */
@media (max-width: 767px) {
    .floating-booking-btn {
        bottom: 20px !important;
        right: 20px !important;
        left: 20px !important;
        justify-content: center !important;
    }
    .floating-booking-btn .text-area {
        font-size: 14px !important;
        text-align: center !important;
        flex-grow: 1 !important;
    }
}