.push-toggle {
    border: 1px solid currentColor;
    background: transparent;
    color: inherit;
    padding: 5px 8px;
    border-radius: 4px;
    cursor: pointer;
    white-space: nowrap;
    font: inherit;
    font-size: 12px;
    transition: all 0.3s ease;
}

.push-toggle:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

.push-toggle:active {
    transform: translateY(0);
}

.push-toggle[data-active='1'] { 
    opacity: 0.8; 
}

.mobile-push-toggle { 
    width: 100%; 
    margin: 12px 0; 
    text-align: left; 
}

.mobile-header-push-toggle {
    width: 38px;
    height: 38px;
    padding: 0;
    border: 1px solid #C9A227;
    border-radius: 8px;
    background: #FFF8DF;
    color: #B18400;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(201, 162, 39, .2);
}

.mobile-header-push-toggle i {
    font-size: 19px;
}

.mobile-header-push-toggle:hover {
    background: #F5D76E;
    color: #6F5200;
    opacity: 1;
}

/* Footer Notification CTA */
.footer-notification-cta {
    background: linear-gradient(110deg, #0F5132 0%, #1D7A4A 58%, #C9A227 100%);
    color: #FFFFFF;
    padding: 24px 20px;
    margin: 0 0 32px;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(15, 81, 50, 0.24);
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.cta-text h3 {
    margin: 0 0 8px 0;
    font-size: 1.25em;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cta-text h3 i {
    font-size: 1.2em;
    animation: bellRing 2s infinite;
}

@keyframes bellRing {
    0%, 100% { transform: rotate(0deg); }
    15% { transform: rotate(15deg); }
    30% { transform: rotate(-15deg); }
    45% { transform: rotate(10deg); }
    60% { transform: rotate(-10deg); }
    75% { transform: rotate(5deg); }
}

.cta-text p {
    margin: 0;
    font-size: 0.9em;
    line-height: 1.45;
    opacity: 0.95;
}

.footer-push-toggle {
    background: #FFF8DF;
    color: #9A7100;
    border: 2px solid #F5D76E;
    padding: 10px 18px;
    font-size: 0.9em;
    font-weight: 600;
    border-radius: 6px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.footer-push-toggle:hover {
    background: #F5D76E;
    color: #6F5200;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.footer-push-toggle:active {
    transform: translateY(-1px);
}

.footer-push-toggle i {
    margin-right: 8px;
}

/* Tablet & Mobile Responsive */
@media (max-width: 768px) {
    .footer-notification-cta {
        padding: 16px 10px;
        margin: 18px 0;
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .cta-text h3 {
        font-size: 0.95em;
    }
    
    .cta-text p {
        font-size: 0.75em;
    }
    
    .footer-push-toggle {
        width: 100%;
        padding: 8px 12px;
        font-size: 0.75em;
    }
}

@media (max-width: 480px) {
    .footer-notification-cta {
        padding: 16px 10px;
        margin: 16px 0;
    }
    
    .cta-content {
        gap: 10px;
    }
    
    .cta-text h3 {
        font-size: 1em;
    }
    
    .cta-text h3 i {
        font-size: 1em;
    }
    
    .cta-text p {
        font-size: 0.8em;
        line-height: 1.4;
    }
    
    .footer-push-toggle {
        width: 100%;
        padding: 9px 14px;
        font-size: 0.8em;
    }
}

@media (max-width: 900px) {
    .push-toggle:not(.mobile-push-toggle):not(.mobile-header-push-toggle):not(.footer-push-toggle) { 
        display: none; 
    }
}