/*
 Theme Name:     Astra Child
 Theme URI:      https://astra.com/
 Description:    Thème enfant pour Astra (personnalisations safe aux mises à jour)
 Author:         OukiWeb
 Author URI:     https://oukiweb.com/
 Template:       astra
 Version:        1.1.0
 Text Domain:    astra-child
*/

/* Empêche tout débordement horizontal global (sécurisé mobile) */
html, body {
  width: 100%;
  overflow-x: hidden;
}

/* Sécurise le conteneur principal (Astra/Woo) */
.site, .site-content, .ast-container {
  overflow-x: hidden;
}

/* Forcer le retour à la ligne des très longues chaînes dans la zone produit */
.product-description,
.product-description p,
.product-description li,
.product-description code {
  overflow-wrap: anywhere;   /* coupe où nécessaire */
  word-break: break-word;    /* fallback pour vieux moteurs */
}

/* Si ton thème donne un white-space spécial au code, on le neutralise */
.product-description code {
  white-space: normal;
}

/* Sécurité images & iframes qui débordent parfois sur mobile */
.product-description img,
.product-description iframe,
.product-description video {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Au cas où un bloc interne utiliserait 100vw + padding/marges (classique) */
.product-description [style*="100vw"] {
  max-width: 100%;
}

/* Évite les marges négatives qui provoquent un dépassement */
.product-description * {
  margin-left: clamp(-0px, var(--bug-fix, 0px), 0px);
}

/* ==============================================
   POLICES LOCALES (TTF)
   ============================================== */
   

/* Libre Baskerville - Titres élégants */
@font-face {
  font-family: 'Libre Baskerville';
  src: url('fonts/libre-baskerville-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Libre Baskerville';
  src: url('fonts/libre-baskerville-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Source Sans 3 - Corps de texte */
@font-face {
  font-family: 'Source Sans 3';
  src: url('fonts/SourceSans3-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Source Sans 3';
  src: url('fonts/SourceSans3-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Source Sans 3';
  src: url('fonts/SourceSans3-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Source Sans 3';
  src: url('fonts/SourceSans3-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Source Sans 3';
  src: url('fonts/SourceSans3-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* Gistesy - Script d’accent */
@font-face {
  font-family: 'Gistesy';
  src: url('fonts/Gistesy.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}


/* ==============================================
   VARIABLES CSS - Design System 2025
   ============================================== */

:root {
  /* Palette minimaliste naturelle */
  --bn-black: #1A1A1A;
  --bn-grey-900: #2D2D2D;
  --bn-grey-800: #3F3F3F;
  --bn-grey-700: #525252;
  --bn-grey-600: #6B6B6B;
  --bn-grey-500: #8A8A8A;
  --bn-grey-400: #A8A8A8;
  --bn-grey-300: #C7C7C7;
  --bn-grey-200: #E5E5E5;
  --bn-grey-100: #F7F7F7;
  --bn-white: #FFFFFF;
  --bn-bg: #FEFEFE;
  --bn-bg-soft: #F9F9F9;

  /* Typographie - Stack optimisé */
  --bn-font-title: 'Libre Baskerville', Baskerville, Georgia, serif;
  --bn-font-body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --bn-font-script: 'Gistesy', 'Brush Script MT', cursive;

  /* Échelle typographique (ratio 1.25 – Major Third) */
  --bn-text-xs: 0.75rem;      /* 12px */
  --bn-text-sm: 0.875rem;     /* 14px */
  --bn-text-base: 1rem;       /* 16px */
  --bn-text-md: 1.125rem;     /* 18px */
  --bn-text-lg: 1.25rem;      /* 20px */
  --bn-text-xl: 1.563rem;     /* 25px */
  --bn-text-2xl: 1.953rem;    /* 31px */
  --bn-text-3xl: 2.441rem;    /* 39px */
  --bn-text-4xl: 3.052rem;    /* 49px */

  /* Line-heights */
  --bn-leading-tight: 1.25;
  --bn-leading-snug: 1.375;
  --bn-leading-normal: 1.5;
  --bn-leading-relaxed: 1.625;
  --bn-leading-loose: 1.75;
}


/* ==============================================
   BASE & TYPOGRAPHIE GLOBALE
   ============================================== */

/* Rendu des polices optimisé */
html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Corps de texte */
body,
.entry-content,
.ast-container {
  font-family: var(--bn-font-body) !important;
  font-size: var(--bn-text-md);
  line-height: var(--bn-leading-relaxed);
  color: var(--bn-grey-700);
}

p,
li,
td,
th {
  font-family: var(--bn-font-body) !important;
  font-size: var(--bn-text-md);
  line-height: var(--bn-leading-relaxed);
  color: var(--bn-grey-700);
}

/* Titres */
h1, h2, h3, h4, h5, h6,
.entry-title,
.site-title,
.widget-title,
.ast-archive-title {
  font-family: var(--bn-font-title) !important;
  color: var(--bn-grey-900);
  font-weight: 700;
  line-height: var(--bn-leading-tight);
  letter-spacing: -0.01em;
  margin-bottom: 0.75em;
}

h1,
.entry-title {
  font-size: clamp(var(--bn-text-2xl), 4vw, var(--bn-text-4xl));
  font-weight: 700;
  line-height: var(--bn-leading-tight);
}

h2 {
  font-size: clamp(var(--bn-text-xl), 3vw, var(--bn-text-3xl));
  font-weight: 700;
  line-height: var(--bn-leading-snug);
}

h3 {
  font-size: clamp(var(--bn-text-lg), 2.5vw, var(--bn-text-2xl));
  font-weight: 700;
  line-height: var(--bn-leading-snug);
}

h4 {
  font-size: var(--bn-text-xl);
  font-weight: 400;
  line-height: var(--bn-leading-normal);
}

h5 {
  font-size: var(--bn-text-lg);
  font-weight: 400;
}

h6 {
  font-size: var(--bn-text-base);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Petit texte */
small,
.small-text {
  font-size: var(--bn-text-sm);
  line-height: var(--bn-leading-normal);
}

/* Très petit */
.text-xs { font-size: var(--bn-text-xs); }

/* Accents script */
.script-accent,
.quote-signature,
.special-text {
  font-family: var(--bn-font-script) !important;
  font-size: 1.15em;
  color: var(--bn-grey-800);
  line-height: var(--bn-leading-normal);
}

/* Poids */
.text-light { font-weight: 300; }
.text-medium,
strong,
b {
  font-weight: 600;
  color: var(--bn-grey-900);
}

/* Citations */
blockquote,
.wp-block-quote {
  font-family: var(--bn-font-title) !important;
  font-style: italic;
  font-size: var(--bn-text-lg);
  line-height: var(--bn-leading-relaxed);
  color: var(--bn-grey-800);
  border-left: 3px solid var(--bn-grey-900);
  padding-left: 1.5rem;
  margin: 2rem 0;
}
blockquote cite,
.wp-block-quote cite {
  font-family: var(--bn-font-script) !important;
  font-style: normal;
  font-size: var(--bn-text-base);
  color: var(--bn-grey-600);
  display: block;
  margin-top: 0.5rem;
}

/* Liens */
a {
  color: var(--bn-grey-900);
  transition: color 0.2s ease;
}
a:hover,
a:focus {
  color: var(--bn-grey-700);
}


/* ==============================================
   NAVIGATION
   ============================================== */

.main-navigation a,
.ast-header-menu a,
.main-header-menu a {
  font-family: var(--bn-font-body) !important;
  font-weight: 500;
  font-size: var(--bn-text-sm);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}


/* ==============================================
   BOUTONS & FORMULAIRES
   ============================================== */

/* Boutons */
.wp-block-button__link,
button,
.button,
input[type="submit"],
input[type="button"],
.ast-button {
  font-family: var(--bn-font-body) !important;
  font-weight: 600;
  font-size: var(--bn-text-base);
  letter-spacing: 0.025em;
  color: var(--bn-white);
  background-color: var(--bn-black);
  border: 1px solid var(--bn-black);
  border-radius: 999px;
  padding: 0.75rem 1.75rem;
  transition: all 0.25s ease;
}
.wp-block-button__link:hover,
button:hover,
.button:hover,
input[type="submit"]:hover {
  background-color: var(--bn-grey-900);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Formulaires */
input,
textarea,
select {
  font-family: var(--bn-font-body) !important;
  font-size: var(--bn-text-base);
  font-weight: 400;
  color: var(--bn-grey-700);
  border-color: var(--bn-grey-300);
  line-height: var(--bn-leading-normal);
}
input:focus,
textarea:focus,
select:focus {
  border-color: var(--bn-grey-900);
}
label {
  font-size: var(--bn-text-sm);
  font-weight: 500;
  color: var(--bn-grey-900);
}


/* ==============================================
   WOOCOMMERCE - OPTIMISATIONS E-COMMERCE
   ============================================== */

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce div.product .product_title {
  font-family: var(--bn-font-title) !important;
  font-size: var(--bn-text-xl);
  font-weight: 700;
  line-height: var(--bn-leading-snug);
  color: var(--bn-grey-900);
  letter-spacing: -0.01em;
}

/* Prix */
.woocommerce ul.products li.product .price,
.woocommerce div.product p.price,
.woocommerce div.product span.price {
  font-family: var(--bn-font-body) !important;
  font-size: var(--bn-text-xl);
  font-weight: 600;
  color: var(--bn-grey-900);
  line-height: var(--bn-leading-tight);
}

/* Prix barré */
.woocommerce ul.products li.product .price del,
.woocommerce div.product p.price del {
  font-size: var(--bn-text-base);
  font-weight: 400;
  color: var(--bn-grey-500);
}

/* Catégories produits */
.woocommerce ul.products li.product .product-category,
.woocommerce .term-description {
  font-family: var(--bn-font-body) !important;
  font-size: var(--bn-text-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bn-grey-600);
}

/* Description courte */
.woocommerce div.product .woocommerce-product-details__short-description {
  font-size: var(--bn-text-md);
  line-height: var(--bn-leading-relaxed);
  color: var(--bn-grey-700);
}

/* Onglets produit */
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  font-family: var(--bn-font-body) !important;
  font-size: var(--bn-text-sm);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Boutons WooCommerce */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
  font-family: var(--bn-font-body) !important;
  font-size: var(--bn-text-base);
  font-weight: 600;
  letter-spacing: 0.025em;
  border-radius: 999px;
  padding: 0.875rem 2rem;
}

/* Bouton “Ajouter au panier” */
.woocommerce div.product form.cart .button {
  font-size: var(--bn-text-lg);
  padding: 1rem 2.5rem;
}

/* Badge promo */
.woocommerce span.onsale {
  font-family: var(--bn-font-body) !important;
  font-size: var(--bn-text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Quantité */
.woocommerce div.product form.cart div.quantity,
.woocommerce .quantity input.qty {
  font-family: var(--bn-font-body) !important;
  font-size: var(--bn-text-base);
  font-weight: 500;
}

/* Messages */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  font-size: var(--bn-text-base);
  line-height: var(--bn-leading-normal);
}

/* Mini-panier */
.woocommerce .widget_shopping_cart .total,
.woocommerce.widget_shopping_cart .total {
  font-family: var(--bn-font-body) !important;
  font-size: var(--bn-text-lg);
  font-weight: 600;
}

/* Tableau panier */
.woocommerce table.shop_table { font-size: var(--bn-text-base); }
.woocommerce table.shop_table th {
  font-weight: 600;
  font-size: var(--bn-text-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Totaux */
.woocommerce .cart-subtotal,
.woocommerce .order-total {
  font-size: var(--bn-text-lg);
  font-weight: 600;
}

/* Avis */
.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta {
  font-size: var(--bn-text-sm);
}
.woocommerce #reviews #comments ol.commentlist li .comment-text .description {
  font-size: var(--bn-text-base);
  line-height: var(--bn-leading-relaxed);
}


/* ==============================================
   CLASSES UTILITAIRES
   ============================================== */

.font-title { font-family: var(--bn-font-title) !important; }
.font-body  { font-family: var(--bn-font-body) !important; }
.font-script{ font-family: var(--bn-font-script) !important; }

.text-black { color: var(--bn-black); }
.text-grey  { color: var(--bn-grey-600); }

/* Tailles de texte */
.text-sm { font-size: var(--bn-text-sm); }
.text-base { font-size: var(--bn-text-base); }
.text-md { font-size: var(--bn-text-md); }
.text-lg { font-size: var(--bn-text-lg); }
.text-xl { font-size: var(--bn-text-xl); }


/* ==============================================
   RESPONSIVE – OPTIMISATIONS MOBILE
   ============================================== */

@media (max-width: 768px) {
  /* Base font-size mobile */
  html { font-size: 15px; }

  /* Titres réduits */
  h1, .entry-title { font-size: clamp(var(--bn-text-xl), 6vw, var(--bn-text-3xl)); }
  h2 { font-size: clamp(var(--bn-text-lg), 5vw, var(--bn-text-2xl)); }

  /* Prix produit mobile */
  .woocommerce ul.products li.product .price,
  .woocommerce div.product p.price { font-size: var(--bn-text-lg); }

  /* Boutons accessibles */
  .woocommerce a.button,
  .woocommerce button.button {
    font-size: var(--bn-text-base);
    padding: 0.875rem 1.5rem;
  }
}


/* ==============================================
   ACCESSIBILITÉ
   ============================================== */

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus visible */
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--bn-grey-900);
  outline-offset: 2px;
}


/* ============================================================================
   CSS ONGLETS DÉPLIABLES – DESCRIPTIONS PRODUITS (onglet unique)
   Charte BREATHE NATURAL
   ============================================================================ */

/* Variables locales à la section description produit
   (n’influencent PAS le reste du site) */
.product-description {
  --bn-black: #000000;
  --bn-grey-900: #111111;
  --bn-grey-700: #333333;
  --bn-grey-200: #E0E0E0;
  --bn-bg-soft: #FAFAFA;
  --bn-bg: #FFFFFF;
}

/* Onglet dépliable unique */
.product-description details {
  margin: 1.5rem 0;
  border: 1px solid var(--bn-grey-200);
  border-radius: 8px;
  overflow: hidden;
  background: var(--bn-bg-soft);
}
.product-description details > summary {
  padding: 1.5rem;
  cursor: pointer;
  display: block;
  font-weight: 600;
  color: var(--bn-grey-900);
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  user-select: none;
  transition: background 0.3s ease, border-bottom-color 0.3s ease;
  border-bottom: 2px solid transparent;
}
.product-description details > summary:hover {
  background: var(--bn-bg-soft);
  border-bottom-color: var(--bn-grey-700);
}
.product-description details > div {
  padding: 1.5rem;
  animation: bn-slideDown 0.3s ease;
}

/* Animation */
@keyframes bn-slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Listes */
.product-description ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}
.product-description li {
  margin: 0.5rem 0;
  color: var(--bn-grey-700);
  line-height: 1.8;
}

/* Boîtes info */
.product-description .info-box {
  background: var(--bn-bg-soft);
  border-left: 3px solid var(--bn-black);
  padding: 1.5rem;
  border-radius: 4px;
  margin: 1.5rem 0;
}
.product-description .info-box strong {
  color: var(--bn-grey-900);
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  display: block;
  margin-bottom: 0.75rem;
}

/* Avertissements (si utilisés) */
.product-description .warning {
  color: var(--bn-grey-900);
  font-weight: 600;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin: 1rem 0;
  padding: 1rem;
  background: var(--bn-grey-200);
  border-radius: 4px;
  border-left: 3px solid var(--bn-black);
}

/* Style pour code / allergènes */
.product-description code {
  font-family: 'Courier New', monospace;
  background: var(--bn-bg);
  padding: 0.5rem;
  border-radius: 4px;
  color: var(--bn-grey-900);
}

/* Espace avant le paragraphe légal si on lui ajoute la classe .legal-note */
.product-description .legal-note { margin-top: 2rem; }

/* Responsive (section spécifique) */
@media (max-width: 768px) {
  .product-description details > summary {
    padding: 1rem;
    font-size: 1rem;
  }
  .product-description details > div {
    padding: 1rem;
  }
}