/*!
Theme Name: Kava Child
Theme URI:
Author: Zemez
Author URI:
Description: Kava child theme.
Template: kava
Version: 1.0.1
License: GNU General Public License v3 or later
License URI: http://www.gnu.org/licenses/gpl-3.0.html
Text Domain: kava-child
*/

/* 2026-06-23 — Fix: white gap above the site header (homepage & Offre pages).
   Root cause: the "Pack YSY Légèreté" pricing card is embedded as a FULL HTML
   document that includes <body style="margin:0; background:#fdf3ea; padding:20px 0;">.
   Per the HTML5 parser, a second <body> tag's attributes are merged onto the real
   page <body>, so the page body inherits padding:20px 0 -> the white gap above the
   header. Body never needs padding on this site, so we neutralise it.
   Proper root-cause fix (when editing the pricing card): remove the surrounding
   <html>/<head>/<body> wrapper tags and keep only the card markup + its <style>. */
body { padding-top: 0 !important; padding-bottom: 0 !important; }
