.sticky-booking-footer {
    position: fixed !important;
    bottom: 75px !important;
    left: 16px !important;
    right: 16px !important;
    transform: translateY(120px) !important;
    z-index: 999 !important;
    /* Solid Black Background */
    background: #000000 !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    color: white !important;
    padding: 8px 16px !important;
    box-shadow:
        0 8px 32px rgba(0, 122, 255, 0.25),
        0 4px 16px rgba(0, 0, 0, 0.1),
        inset 0 1px 1px rgba(255, 255, 255, 0.2) !important;
    border-radius: 20px !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    opacity: 0 !important;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
    pointer-events: none !important;
    max-width: 420px !important;
    margin: 0 auto !important;
}

.sticky-booking-footer.visible {
    transform: translateY(0) !important;
    opacity: 1 !important;
    pointer-events: all !important;
}

.sticky-booking-footer.hidden {
    display: none !important;
}

/* Content Layout - Left to Right */
.booking-footer-content {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 16px !important;
}

/* Left Side - Quantity & Price */
.booking-info {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    flex: 1 !important;
}

/* Quantity Badge */
.booking-qty-badge {
    background: rgba(255, 255, 255, 0.2) !important;
    backdrop-filter: blur(10px) !important;
    width: 36px !important;
    height: 36px !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: 800 !important;
    font-size: 16px !important;
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    flex-shrink: 0 !important;
}

/* Price Display */
.booking-price {
    display: flex !important;
    flex-direction: column !important;
    gap: 2px !important;
}

.booking-price .label {
    font-size: 10px !important;
    opacity: 0.8 !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    color: white !important;
}

.booking-price .value {
    font-size: 18px !important;
    font-weight: 800 !important;
    letter-spacing: -0.3px !important;
    color: white !important;
}

/* Book Now Button - White background, black text */
.book-now-btn {
    background: #FFFFFF !important;
    color: #000000 !important;
    border: none !important;
    padding: 8px 24px !important;
    border-radius: 30px !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.3) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    animation: bookBtnPulse 2s ease-in-out infinite !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.book-now-btn i {
    font-size: 12px !important;
    transition: transform 0.2s ease !important;
}

.book-now-btn:hover {
    background: #f0f8ff !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2) !important;
}

.book-now-btn:hover i {
    transform: translateX(3px) !important;
}

.book-now-btn:active {
    transform: scale(0.95) !important;
    animation: none !important;
}

/* 20% Zoom-in Pulse Animation */
@keyframes bookBtnPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    50% {
        transform: scale(1.08);
        box-shadow: 0 6px 20px rgba(0, 122, 255, 0.3);
    }
}

/* Dark Mode Support */
body.dark-mode .sticky-booking-footer {
    background: #000000;
    border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .book-now-btn {
    background: #FFFFFF;
}

/* Responsive - Mobile */
@media (max-width: 640px) {
    .sticky-booking-footer {
        left: 12px;
        right: 12px;
        padding: 10px 14px;
        border-radius: 16px;
    }

    .booking-qty-badge {
        width: 32px;
        height: 32px;
        font-size: 14px;
        border-radius: 10px;
    }

    .booking-price .value {
        font-size: 16px;
    }

    .book-now-btn {
        padding: 10px 18px;
        font-size: 13px;
        border-radius: 12px;
    }
}

/* Extra small screens */
@media (max-width: 360px) {
    .booking-info {
        gap: 8px;
    }

    .booking-price .label {
        display: none;
    }

    .book-now-btn span {
        display: none;
    }

    .book-now-btn {
        padding: 12px 16px;
    }

    .book-now-btn i {
        font-size: 16px;
    }
}