.style-switcher {
    position: fixed;
    right: 0;
    top: 60px;
    padding: 10px;
    width: 200px;
    border: 1px solid var(--bg-black-50);
    background: var(--bg-black-100);
    z-index: 101;
    border-radius: 5px;
    transition: all 0.3s ease;
    transform: translateX(100%);
}
.style-switcher.open {
    transform: translateX(-25px);
}
.style-switcher .s-icon {
    position: absolute;
    height: 40px;
    width: 40px;
    text-align: center;
    font-size: 20px;
    background-color: var(--bg-black-100);
    color: var(--text-black-900);
    right: 100%;
    border: 1px solid var(--bg-black-50);
    margin-right: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.style-switcher .s-icon i {
    line-height: 40px;
}

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

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

.style-switcher .colors {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.style-switcher .colors  span {
    display: inline-block;
    height: 30px;
    width: 30px;
    border-radius: 50%;
}

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

/* Language Switcher */
.style-switcher .language-switcher {
    top: 110px;
}

.style-switcher .language-switcher i {
    font-size: 18px;
}

/* Language Modal */
.language-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.language-modal.show {
    display: flex;
}

.language-modal-content {
    background: var(--bg-black-100);
    border: 1px solid var(--bg-black-50);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
    min-width: 280px;
}

.language-modal-content h4 {
    color: var(--text-black-900);
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.language-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lang-btn {
    width: 100%;
    padding: 12px 20px;
    border: 2px solid var(--bg-black-50);
    background: var(--bg-black-100);
    color: var(--text-black-900);
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.lang-btn:hover {
    border-color: var(--skin-color);
    background: var(--bg-black-50);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.lang-btn.active {
    background: var(--skin-color);
    color: #ffffff;
    border-color: var(--skin-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}