/* ===================================
   Theme Selector Styles
   =================================== */

.theme-selector {
    display: flex;
    gap: 8px;
    align-items: center;
}

.theme-selector__btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border: 2px solid transparent;
    border-radius: 6px;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-color, #333);
}

.theme-selector__color {
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 3px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.theme-selector__label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.theme-selector__btn:hover {
    background-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}

.theme-selector__btn.active {
    border-color: var(--primary-green, #6e7758);
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Footer Layout Adjustments */
.footer-legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px 0;
}

.footer-legal__links {
    display: flex;
    gap: 20px;
    flex: 1;
}

.footer-legal__right {
    display: flex;
    gap: 16px;
    align-items: center;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-legal {
        flex-direction: column;
        gap: 12px;
    }

    .footer-legal__links {
        width: 100%;
        justify-content: center;
        gap: 12px;
    }

    .footer-legal__right {
        width: 100%;
        justify-content: center;
    }

    .theme-selector {
        width: 100%;
        justify-content: center;
    }

    .theme-selector__label {
        display: none;
    }

    .theme-selector__btn {
        padding: 8px;
        gap: 4px;
    }
}
