.style-switcher {
    position: fixed;
    right: 0;
    top: 60px;
    padding: 15px;
    width: 220px;
    background: var(--bg-black-100);
    z-index: 100;
    border: 1px solid var(--bg-black-50);
    border-radius: 12px 0 0 12px;
    box-shadow: -2px 4px 10px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: all 0.4s ease;
}
.style-switcher.open {
    transform: translateX(0);
}

.style-switcher .s-icon {
    position: absolute;
    height: 45px;
    width: 45px;
    font-size: 20px;
    background: var(--bg-black-100);
    color: var(--text-black-900);
    right: 100%;
    top: 10px;
    margin-right: 10px;
    border: 1px solid var(--bg-black-50);
    border-radius: 50%;
    text-align: center;
    line-height: 45px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}
.style-switcher .s-icon:hover {
    transform: scale(1.1);
    background: var(--skin-color);
    color: #fff;
}

.style-switcher .style-switcher-toggler {
    top: 0;
}
.style-switcher .day-night {
    top: 60px;
}

.style-switcher h4 {
    margin: 15px 0 10px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-black-700);
    text-transform: capitalize;
    text-align: center;
}

.style-switcher .colors {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 10px;
    padding: 5px 0;
}

.style-switcher .colors span {
    height: 32px;
    width: 32px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 4px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}
.style-switcher .colors span:hover {
    transform: scale(1.1);
}

.style-switcher .color-1 { background: #ec1839; }
.style-switcher .color-2 { background: #fa5b0f; }
.style-switcher .color-3 { background: #1fbab9; }
.style-switcher .color-4 { background: #1854b4; }
.style-switcher .color-5 { background: #b9ff22; }
