/* Season Switcher Styles */
.season-switcher {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin-left: 2rem;
}

.season-btn {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
    backdrop-filter: blur(10px);
}

.season-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

.season-btn.active {
    background: rgba(255, 69, 0, 0.3);
    border-color: #ff4500;
    box-shadow: 0 0 15px rgba(255, 69, 0, 0.5);
}

.season-btn svg {
    width: 20px;
    height: 20px;
}

/* Winter Theme - Switcher */
.season-winter .season-btn {
    border: 2px solid rgba(148, 163, 184, 0.2);
    background: rgba(255, 255, 255, 0.3);
    color: #1E293B;
}

.season-winter .season-btn:hover {
    background: rgba(255, 255, 255, 0.5);
    border-color: rgba(59, 130, 246, 0.4);
}

.season-winter .season-btn.active {
    background: rgba(59, 130, 246, 0.3);
    border-color: #3B82F6;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.5);
}

/* Frühling Theme - Switcher */
.season-spring .season-btn {
    border: 2px solid rgba(16, 185, 129, 0.2);
    background: rgba(255, 255, 255, 0.3);
    color: #166534;
}

.season-spring .season-btn:hover {
    background: rgba(255, 255, 255, 0.5);
    border-color: rgba(16, 185, 129, 0.4);
}

.season-spring .season-btn.active {
    background: rgba(16, 185, 129, 0.3);
    border-color: #10B981;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.5);
}

/* Sommer Theme - Switcher */
.season-summer .season-btn {
    border: 2px solid rgba(255, 107, 53, 0.2);
    background: rgba(255, 255, 255, 0.3);
    color: #7C2D12;
}

.season-summer .season-btn:hover {
    background: rgba(255, 255, 255, 0.5);
    border-color: rgba(255, 107, 53, 0.4);
}

.season-summer .season-btn.active {
    background: rgba(255, 107, 53, 0.3);
    border-color: #FF6B35;
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .season-switcher {
        margin-left: 1rem;
        gap: 0.25rem;
    }
    
    .season-btn {
        width: 35px;
        height: 35px;
    }
    
    .season-btn svg {
        width: 18px;
        height: 18px;
    }
}
