/* ===============================================
   MOBILE OPTIMIERUNGEN für cog.ch
   Fix für Scroll-to-top Button und weitere Mobile-Anpassungen
   =============================================== */

/* Scroll-to-top Button - Mobile optimiert */
@media (max-width: 768px) {
    .scroll-top {
        width: 40px !important;
        height: 40px !important;
        bottom: 20px !important;
        right: 20px !important;
        font-size: 1.2rem !important;
        z-index: 998 !important; /* Unter Navigation aber über Content */
    }
}

/* Zusätzliche Mobile-Viewport-Optimierungen */
@media (max-width: 480px) {
    .scroll-top {
        width: 35px !important;
        height: 35px !important;
        bottom: 15px !important;
        right: 15px !important;
        font-size: 1rem !important;
    }
}
