.style-switcher{
    position: fixed;
    right: 0;
    top: 77px;
    padding: 20px;
    width: 220px;
    z-index: 101;
    border-radius: 20px 0 0 20px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    transform: translateX(100%);
    background: rgba(var(--bg-black-50-rgb), 0.9);
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.style-switcher.open{
    transform: translateX(-15px);
}

.s-icon{
    position: fixed;
    height: 55px;
    width: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--skin-color);
    right: 20px;
    margin-right: 0;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    border-radius: 50%;
    background: var(--bg-black-50);
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    border: 2px solid rgba(255, 255, 255, 0.1);
    z-index: 102;
    overflow: hidden;
}

.s-icon i{
    transform: rotate(0deg) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    font-style: normal !important;
    font-size: 22px;
    transition: all 0.3s ease;
}

.s-icon:hover{
    transform: translateY(-3px);
    border: 2px solid var(--skin-color);
    color: var(--skin-color);
}

.s-icon:active{
    transform: translateY(0) scale(0.95);
}

.style-switcher-toggler{
    top: 75px;
    background: linear-gradient(145deg, rgba(var(--skin-color-rgb), 0.2), rgba(var(--skin-color-rgb), 0.1));
}

.style-switcher-toggler i {
    animation: spin 8s linear infinite;
}

/* Animation effect for settings button removed as requested */

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.style-switcher-toggler:hover i {
    animation-duration: 2s;
}

.day-night{
    top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(var(--skin-color-rgb), 0.2), rgba(var(--skin-color-rgb), 0.1));
}

.day-night i {
    transition: all 0.4s ease;
}

.day-night:hover i.fa-moon {
    transform: scale(1.2);
    text-shadow: 0 0 10px rgba(var(--skin-color-rgb), 0.6);
}

.day-night:hover i.fa-sun {
    transform: scale(1.2) rotate(45deg);
    text-shadow: 0 0 10px rgba(var(--skin-color-rgb), 0.6);
}

.style-switcher h4{
    margin: 0 0 15px;
    color: var(--text-black-700);
    font-size: 18px;
    font-weight: 700;
    text-transform: capitalize;
    text-align: center;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 10px;
}

.style-switcher h4::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--skin-color);
    transform: translateX(-50%);
}

.style-switcher .colors{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.style-switcher .colors span{
    display: inline-block;
    height: 40px;
    width: 40px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.style-switcher .colors span:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.style-switcher .colors span:active {
    transform: translateY(0);
}

.style-switcher .colors span.active {
    border: 3px solid var(--text-black-100);
    position: relative;
    transform: scale(1.1);
}

.style-switcher .colors span.active::after {
    content: '\f00c';
    font-family: 'Font Awesome 5 Pro';
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    color: white;
    font-size: 16px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.style-switcher .color-1{
    background: linear-gradient(145deg, #ff9eb4, #fb839e); /* Pink */
}

.style-switcher .color-2{
    background: linear-gradient(145deg, #26dea6, #20c997); /* Green */
}

.style-switcher .color-3{
    background: linear-gradient(145deg, #3bb9f3, #1fabeb); /* Blue */
}

