/* =========================================
   MISSING WIDGET STYLES (Footer Elements)
   ========================================= */

/* Fixed Widget Container to isolate from Body transforms */
#fixed-widgets-container {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none; /* Let clicks pass through the container */
    z-index: 9999;
    overflow: hidden; /* Ensure nothing here causes scrollbars */
}

/* Back to Top */
.back-to-top {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--secondary-blue, #3b82f6);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: auto; /* Re-enable clicks */
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

/* WhatsApp Float */
.whatsapp-float {
    position: absolute;
    bottom: 90px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    z-index: 900;
    text-decoration: none;
    transition: transform 0.3s;
    pointer-events: auto;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
}

/* AI Chat Button */
.ai-chat-btn {
    position: absolute;
    bottom: 155px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--dark-navy, #0f172a);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    cursor: pointer;
    z-index: 900;
    transition: transform 0.3s;
    pointer-events: auto;
}
.ai-chat-btn:hover {
    transform: scale(1.1);
}

/* AI Chat Window */
.ai-chat-window {
    position: absolute;
    bottom: 100px;
    right: 100px;
    width: 350px;
    height: 450px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 999;
    display: none;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    pointer-events: auto;
}
.ai-chat-window.active {
    display: flex;
}
.ai-chat-header {
    background: var(--dark-navy, #0f172a);
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.ai-chat-body {
    flex-grow: 1;
    padding: 15px;
    overflow-y: auto;
    background: #f8fafc;
}
.ai-chat-input {
    display: flex;
    border-top: 1px solid #e2e8f0;
}
.ai-chat-input input {
    flex-grow: 1;
    border: none;
    padding: 15px;
    outline: none;
}
.ai-chat-input button {
    background: var(--secondary-blue, #3b82f6);
    color: white;
    border: none;
    padding: 0 20px;
    cursor: pointer;
}

/* Toast Notification */
.toast-notification {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: white;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    transform: translateY(150%);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1000;
    border-left: 4px solid var(--secondary-blue, #3b82f6);
    pointer-events: auto;
}
.toast-notification.show {
    transform: translateY(0);
}
.toast-icon {
    font-size: 24px;
    color: var(--secondary-blue, #3b82f6);
}

/* Cookie Banner */
.cookie-banner {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--dark-navy, #0f172a);
    color: white;
    padding: 15px 0;
    transform: translateY(100%);
    transition: transform 0.5s ease;
    z-index: 1000;
    pointer-events: auto;
}
.cookie-banner.show {
    transform: translateY(0);
}
.cookie-content {
    max-width: var(--container-width, 1200px);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.cookie-content a {
    color: var(--secondary-blue, #3b82f6);
    text-decoration: underline;
}
.cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
