/* ===== SESSION BUBBLE STYLES ===== */

.session-bubble {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 1000;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.bubble-toggle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #a68b4b, #c8a96e);
    border: none;
    color: #0d0d0d;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(200, 169, 110, 0.4);
    transition: all 0.3s ease;
}

.bubble-toggle:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 24px rgba(200, 169, 110, 0.5);
}

.bubble-icon-close {
    display: none;
}

.session-bubble.expanded .bubble-icon-open {
    display: none;
}

.session-bubble.expanded .bubble-icon-close {
    display: block;
}

.bubble-content {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 280px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(0.95);
    transform-origin: bottom right;
    transition: all 0.25s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.session-bubble.expanded .bubble-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Session Info */
.bubble-session {
    padding: 1rem;
    border-bottom: 1px solid #333;
}

.bubble-room-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.bubble-room-icon {
    font-size: 1.25rem;
}

.bubble-room-number {
    font-weight: 600;
    color: #c8a96e;
    font-size: 0.95rem;
}

.bubble-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.bubble-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 0.75rem;
    background: #222;
    border-radius: 8px;
    color: #f5f5f5;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s;
}

.bubble-link:hover {
    background: #2a2a2a;
    color: #c8a96e;
}

.bubble-link svg {
    color: #c8a96e;
}

.bubble-link-full {
    justify-content: center;
    background: linear-gradient(135deg, #a68b4b, #c8a96e);
    color: #0d0d0d;
}

.bubble-link-full:hover {
    color: #0d0d0d;
    box-shadow: 0 4px 16px rgba(200, 169, 110, 0.3);
}

/* Reservation Info */
.bubble-reservation {
    padding: 1rem;
}

.bubble-res-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.bubble-res-icon {
    font-size: 1rem;
}

.bubble-res-label {
    font-size: 0.75rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.bubble-res-details {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.bubble-res-time {
    font-size: 1.1rem;
    font-weight: 600;
    color: #f5f5f5;
}

.bubble-res-guests {
    font-size: 0.85rem;
    color: #b0b0b0;
}

.bubble-res-table {
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: #c8a96e;
}

/* Mobile adjustments */
@media (max-width: 480px) {
    .session-bubble {
        bottom: 1rem;
        right: 1rem;
    }

    .bubble-toggle {
        width: 50px;
        height: 50px;
    }

    .bubble-content {
        width: 260px;
        bottom: 60px;
    }
}

/* Hide on ordering pages (they have their own cart) */
body.order-page-active .session-bubble {
    display: none;
}
