/*
 Theme Name: Wild Bloom – Storefront Child
 Theme URI: https://wildbloom.example
 Description: Child theme for Storefront used by Wild Bloom – Fragrance & Élégance. Safe, minimal, and update-proof.
 Author: Élodie Allard
 Author URI: https://wildbloom.example
 Template: storefront
 Version: 1.0.0
 Text Domain: wild-bloom-storefront-child
*/

/* 
  Place your custom CSS below. 
  Tip: prefer this file (child theme) over "CSS additionnel" for long-term styles.
  Nothing here will break your current site upon activation.
*/

/* ===========================
   Wild Bloom – Storefront Child
   CSS consolidé (propre & pérenne)
   =========================== */

/* Palette */
:root{
  --wb-copper: #a67856;
  --wb-card-bg: rgba(255,255,255,0.55);
  --wb-shadow: 0 4px 14px rgba(0,0,0,0.05);
}

/* Titre principal des pages boutique/archives */
.page-title,
.entry-title{
  margin-bottom: 30px;
}

/* Titres de blocs catégories (Hauts, Bas, etc.) */
.woocommerce .entry-content h3{
  margin-top: 50px;
  margin-bottom: 20px;
}

/* Grille produits sous chaque titre */
.woocommerce .entry-content .products{
  margin-bottom: 20px;
}

/* Titre de section centré (utilisé dans tes shortcodes HTML) */
.wildbloom-titre-categorie{
  text-align: center;
  margin: 40px 0 20px;
}

/* Masquer le titre de la page d’accueil Storefront */
.home .entry-header{
  display: none;
}

/* Carte d’introduction (bloc éditorial) */
.wildbloom-intro{
  background: var(--wb-card-bg);
  padding: 35px 40px;
  margin: 40px auto 80px;
  max-width: 900px;
  border-radius: 25px;
  text-align: center;
  box-shadow: 0 0 25px rgba(166,120,86,0.20), var(--wb-shadow);
}
.wildbloom-intro p{
  line-height: 1.5;
  margin-bottom: 15px;
}
.wildbloom-intro p:first-child{
  font-size: 1.1rem;
  font-weight: 500;
}

/* Cartes douces (Suivez-nous / Nos valeurs) */
.wildbloom-card{
  background: rgba(255,255,255,0.35);
  padding: 25px;
  border-radius: 18px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  margin-bottom: 40px;
}

/* Ligne fine cuivrée sous la nav Storefront */
.storefront-primary-navigation{
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  border-bottom: 1px solid color-mix(in srgb, var(--wb-copper) 35%, transparent) !important;
}

/* Souffle en haut de la home */
.home .site-main{
  margin-top: 0 !important;
  padding-top: 8px !important;
}

/* Responsive */
@media (max-width: 768px){
  .wildbloom-intro{
    padding: 28px 18px;
    margin: 30px 10px 50px;
  }
}

