
/* Font Switcher */
.font-switcher {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.font-switcher .switcher-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--white);
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s ease;
}

.font-switcher .switcher-btn:hover {
    transform: rotate(90deg);
}

.font-switcher .switcher-menu {
    position: absolute;
    bottom: 60px;
    right: 0;
    background-color: var(--white);
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.font-switcher.active .switcher-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.font-switcher .font-option {
    display: block;
    width: 100%;
    padding: 10px 15px;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    color: var(--black);
    border-radius: 4px;
    transition: background 0.2s;
    margin-bottom: 5px;
}

.font-switcher .font-option:hover {
    background-color: var(--surface);
    color: var(--primary);
}

.font-switcher .font-option:last-child {
    margin-bottom: 0;
}
