/* Floating Toggle Button */
#theme-toggle-btn-1d571468 {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: #1e1e1e;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: transform 0.3s, background 0.3s;
}

#theme-toggle-btn-1d571468:hover {
    transform: scale(1.1);
}

/* Adjust for Admin Bar */
body.admin-bar #theme-toggle-btn-1d571468 {
    bottom: 20px; /* Standard bottom placement is safe */
}

/* Icons visibility */
#theme-toggle-btn-1d571468 .icon-sun {
    display: none;
}
#theme-toggle-btn-1d571468 .icon-moon {
    display: block;
}

/* When Light Mode is Active */
body.light-mode #theme-toggle-btn-1d571468 {
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

body.light-mode #theme-toggle-btn-1d571468 .icon-sun {
    display: block;
}
body.light-mode #theme-toggle-btn-1d571468 .icon-moon {
    display: none;
}

/* Global Light Mode Overrides */
body.light-mode {
    background-color: #f5f5f5 !important;
    color: #222222 !important;
}

body.light-mode h1, 
body.light-mode h2, 
body.light-mode h3, 
body.light-mode h4, 
body.light-mode h5, 
body.light-mode h6,
body.light-mode p,
body.light-mode span,
body.light-mode blockquote {
    color: #222222 !important;
}

/* Keep CTA buttons legible in light mode */
body.light-mode .elementor-button {
    filter: brightness(0.9);
}
