/* ============================================================
   STYLE SWITCHER — Liquid Glass
   ============================================================ */
.style-switcher {
    position: fixed;
    right: 0; top: 80px;
    padding: 20px;
    width: 210px;
    background: rgba(255,255,255,0.55);
    backdrop-filter: blur(28px) saturate(200%);
    -webkit-backdrop-filter: blur(28px) saturate(200%);
    border: 1px solid rgba(255,255,255,0.6);
    border-right: none;
    z-index: 201;
    border-radius: 20px 0 0 20px;
    transition: all 0.4s cubic-bezier(.4,0,.2,1);
    transform: translateX(100%);
    box-shadow: -8px 0 40px rgba(80,80,180,0.12), inset 0 1px 0 rgba(255,255,255,0.8);
}
body.dark .style-switcher {
    background: rgba(13,13,31,0.75);
    border-color: rgba(255,255,255,0.08);
    box-shadow: -8px 0 40px rgba(0,0,0,0.4);
}
.style-switcher.open { transform: translateX(-25px); }

.style-switcher .s-icon {
    position: absolute;
    height: 44px; width: 44px;
    text-align: center; font-size: 18px;
    background: rgba(255,255,255,0.55);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.6);
    color: var(--text-primary, #1a1a3e);
    right: 100%;
    margin-right: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 14px;
    box-shadow: -4px 0 20px rgba(80,80,180,0.1);
    display: flex; align-items: center; justify-content: center;
}
body.dark .style-switcher .s-icon {
    background: rgba(13,13,31,0.75);
    border-color: rgba(255,255,255,0.08);
    color: #f0f0ff;
}
.style-switcher .s-icon:hover {
    background: linear-gradient(135deg, #a78bfa, #60a5fa);
    color: white;
    border-color: transparent;
}
.style-switcher .style-switcher-toggler { top: 0; }
.style-switcher .day-night { top: 58px; cursor: pointer; }

.style-switcher h4 {
    margin: 0 0 14px;
    color: var(--text-primary, #1a1a3e);
    font-size: 14px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1px;
}
body.dark .style-switcher h4 { color: #f0f0ff; }

.style-switcher .colors {
    display: flex; flex-wrap: wrap;
    gap: 10px;
}
.style-switcher .colors span {
    display: inline-block;
    height: 32px; width: 32px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.6);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.style-switcher .colors span:hover {
    transform: scale(1.2);
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}
.style-switcher .color-1 { background: #fd0026; }
.style-switcher .color-2 { background: #faa005; }
.style-switcher .color-3 { background: #3fcf98; }
.style-switcher .color-4 { background: #6a00ff; }
.style-switcher .color-5 { background: #ff00b3; }
