/**
 * Theme Name: Super Burger
 * Description: Super Burger
 * Author: webhosts.business
 * Template: blocksy
 * Text Domain: blocksy
 */





/* AJAX Navigation Styles
.ajax-content-wrapper {
    position: relative;
    min-height: 400px;
}

.ajax-loading {
    transition: opacity 0.2s ease;
}

// Optional: Add a loading spinner
.ajax-loading::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 1000;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

 */