/*
Theme Name: Éclat & Soie
Theme URI: https://eclat-soie.fr
Description: Thème WordPress pour Éclat & Soie — boutique bien-être & self-care féminin. Design luxe, élégant, optimisé conversion.
Author: Éclat & Soie
Author URI: https://eclat-soie.fr
Template: storefront
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: eclat-soie
Tags: e-commerce, woocommerce, beauty, luxury, feminine
*/

// ── CORS pour Dashboard local ──────────────────────────
add_action('init', function() {
    $origin = isset($_SERVER['HTTP_ORIGIN']) ? $_SERVER['HTTP_ORIGIN'] : '*';
    header('Access-Control-Allow-Origin: ' . $origin);
    header('Access-Control-Allow-Credentials: true');
    header('Access-Control-Allow-Methods: GET, POST, PUT, DELETE, OPTIONS');
    header('Access-Control-Allow-Headers: Authorization, Content-Type, X-WP-Nonce');
    if ($_SERVER['REQUEST_METHOD'] === 'OPTIONS') {
        status_header(200);
        exit();
    }
});