/*
Theme Name: Zephyr Child
Template: Zephyr
Version: 1.0
Author:	UpSolution
Theme URI: http://zephyr.us-themes.com/
Author URI: http://us-themes.com/
*/

/*Add your own styles here:*/
.woosq-popup .woocommerce div.product .product_title {
  font-size: 2rem !important;
  font-family: var(--h1-font-family) !important;
}
// ===== MODO MANUTENÇÃO - BETE UNIFORMES =====
// ATIVAR: cole este código e salve o arquivo.
// DESATIVAR: remova o código e salve novamente.

add_action('template_redirect', function() {
    // Administrador logado continua vendo o site normalmente
    if (current_user_can('manage_options')) {
        return;
    }

    status_header(503);
    header('Retry-After: 3600');
    ?>
    <!DOCTYPE html>
    <html lang="pt-BR">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Loja em Manutenção - Bete Uniformes</title>
        <style>
            body {
                margin: 0;
                padding: 0;
                min-height: 100vh;
                display: flex;
                align-items: center;
                justify-content: center;
                background: #f5f5f5;
                font-family: Arial, sans-serif;
                text-align: center;
                color: #333;
            }
            .container {
                max-width: 500px;
                padding: 40px;
                background: #fff;
                border-radius: 10px;
                box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            }
            h1 { color: #c62828; font-size: 28px; }
            p { font-size: 18px; line-height: 1.6; }
            .icon { font-size: 60px; }
        </style>
    </head>
    <body>
        <div class="container">
            <div class="icon">👷</div>
            <h1>Loja em manutenção</h1>
            <p>Estamos preparando novidades para você!</p>
            <p><strong>Bete Uniformes</strong> volta em breve.</p>
        </div>
    </body>
    </html>
    <?php
    exit;
});