/*
Theme Name: BebeClub Debebe (Test)
Theme URI: https://bebeclub.ma
Author: Rachid / BebeMaman.ma
Description: Theme custom ultra-leger pour BebeClub.ma - E-commerce puericulture & parapharmacie Maroc.
Version: 3.1.0
Requires at least: 6.0
Tested up to: 6.9
Requires PHP: 8.0
License: Proprietary
Text Domain: bebeclub
WooCommerce tested up to: 10.6
*/

/* ==============================
   CSS VARIABLES â PREMIUM WHITE
   ============================== */
:root {
  /* Primary: Soft Rose / Dusty Pink */
  --bc-primary: #C4707A;
  --bc-primary-dark: #A85B65;
  --bc-primary-light: #FDF2F3;
  --bc-primary-hover: #B5616B;

  /* Secondary: Sage / Soft Green */
  --bc-secondary: #8BAB9E;
  --bc-secondary-dark: #6F9486;
  --bc-secondary-light: #F0F7F4;

  /* Accent: Warm Beige */
  --bc-accent: #C9A96E;
  --bc-accent-light: #FBF6EE;

  /* Neutrals â very clean */
  --bc-dark: #2D2D2D;
  --bc-text: #3D3D3D;
  --bc-text-light: #777777;
  --bc-text-muted: #AAAAAA;
  --bc-bg: #FFFFFF;
  --bc-bg-white: #FFFFFF;
  --bc-bg-warm: #FDFCFB;
  --bc-bg-section: #F9F8F6;
  --bc-border: #EEEEEE;
  --bc-border-light: #F5F5F5;

  /* Typography */
  --bc-font-heading: 'Poppins', sans-serif;
  --bc-font-body: 'DM Sans', sans-serif;
  --bc-text-dark: #2D2D2D;

  /* Design tokens */
  --bc-radius: 8px;
  --bc-radius-lg: 12px;
  --bc-radius-xl: 16px;
  --bc-radius-full: 9999px;

  /* Shadows â subtle */
  --bc-shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
  --bc-shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --bc-shadow: 0 2px 8px rgba(0,0,0,0.06);
  --bc-shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --bc-shadow-lg: 0 8px 30px rgba(0,0,0,0.10);

  /* Transitions */
  --bc-transition: all 0.25s ease;

  /* ============================================================
     DEBEBE DESIGN - v4.0.0 Redesign
     Palette extracted from themes.vamtam.com/?theme=debebe
     ============================================================ */

  /* Core Debebe colors */
  --bc-deb-navy: #0A1E33;        /* Titres, textes forts */
  --bc-deb-coral: #E46A4B;       /* CTA, accents chauds */
  --bc-deb-sage-light: #DFE7E8;  /* Fond hero, sections douces */
  --bc-deb-sage-dark: #99B8BA;   /* Details, bordures, icones */
  --bc-deb-peach: #FFBC7D;       /* Accents secondaires */
  --bc-deb-gray: #F7F7F7;        /* Fonds alternes */
  --bc-deb-white: #FFFFFF;

  /* Hover / active variants */
  --bc-deb-coral-dark: #C7583C;  /* Coral hover */
  --bc-deb-coral-light: #F4957C; /* Coral clair */
  --bc-deb-navy-soft: #1A2E43;   /* Navy plus clair */
  --bc-deb-sage-bg: #EEF3F2;     /* Sage tres clair fond features */

  /* Debebe typography */
  --bc-deb-font-heading: 'Bebas Neue', 'Poppins', sans-serif;
  --bc-deb-font-body: 'Roboto', 'DM Sans', sans-serif;
  --bc-deb-font-cursive: 'Allison', 'Dancing Script', cursive;

  /* Debebe sizing */
  --bc-deb-container: 1320px;
  --bc-deb-radius-btn: 6px;
  --bc-deb-radius-card: 4px;
}

/* ==============================
   RESET & BASE
   ============================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: var(--bc-font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--bc-text);
  background: var(--bc-bg);
  -webkit-font-smoothing: antialiased;
}
a { color: var(--bc-text); text-decoration: none; transition: var(--bc-transition); }
a:hover { color: var(--bc-primary); }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4, h5, h6 { font-family: var(--bc-font-heading); font-weight: 600; color: var(--bc-dark); line-height: 1.3; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ==============================
   TOP BAR
   ============================== */
.bc-topbar {
  background: var(--bc-dark);
  color: #fff;
  text-align: center;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* ==============================
   REASSURANCE BAR
   ============================== */
.bc-reassurance {
  background: var(--bc-bg-section);
  border-bottom: 1px solid var(--bc-border);
  padding: 8px 0;
}
.bc-reassurance .container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.bc-reassurance-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--bc-text-light);
}
.bc-reassurance-item strong { color: var(--bc-text); font-weight: 600; }
.bc-reassurance-item svg { width: 16px; height: 16px; color: var(--bc-primary); flex-shrink: 0; }

/* ==============================
   HEADER â Clean & Minimal
   ============================== */
.bc-header {
  background: #fff;
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--bc-border);
}
.admin-bar .bc-header { top: 32px; }
.bc-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.bc-logo a {
  font-family: var(--bc-font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--bc-dark);
  text-decoration: none;
  white-space: nowrap;
}
.bc-logo a span { color: var(--bc-primary); }
.bc-logo a .bc-logo-dot { color: var(--bc-accent); }

/* Search */
.bc-search { flex: 1; max-width: 520px; margin: 0 auto; }
.bc-search form {
  display: flex;
  border: 1.5px solid var(--bc-border);
  border-radius: var(--bc-radius-full);
  overflow: hidden;
  transition: var(--bc-transition);
  background: #fff;
}
.bc-search form:focus-within {
  border-color: var(--bc-primary);
  box-shadow: 0 0 0 3px var(--bc-primary-light);
}
.bc-search input[type="search"] {
  flex: 1;
  border: none;
  padding: 10px 20px;
  font-size: 14px;
  font-family: var(--bc-font-body);
  outline: none;
  background: transparent;
  color: var(--bc-text);
}
.bc-search input::placeholder { color: var(--bc-text-muted); }
.bc-search button {
  background: var(--bc-primary);
  border: none;
  padding: 0 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: var(--bc-transition);
}
.bc-search button:hover { background: var(--bc-primary-dark); }
.bc-search button svg { width: 18px; height: 18px; color: #fff; }

/* Header Icons */
.bc-header-icons {
  display: flex;
  align-items: center;
  gap: 20px;
}
.bc-header-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: var(--bc-text);
  font-size: 11px;
  position: relative;
}
.bc-header-icon svg { width: 22px; height: 22px; stroke-width: 1.5; }
.bc-header-icon:hover { color: var(--bc-primary); }
.bc-cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--bc-primary);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==============================
   NAVIGATION â Minimal
   ============================== */
.bc-nav {
  background: #fff;
  border-bottom: 1px solid var(--bc-border);
  padding: 0;
}
.bc-nav .container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  max-width: 1400px;
}
.bc-nav a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 10px 8px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15px;
  color: var(--bc-text);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: var(--bc-transition);
}
.bc-nav a:hover, .bc-nav a.active {
  color: var(--bc-primary);
  border-bottom-color: var(--bc-primary);
}
.bc-nav a.bc-nav-highlight {
  color: var(--bc-primary);
  font-weight: 700;
}
.bc-nav a.bc-nav-highlight:hover {
  color: var(--bc-primary-dark);
  border-bottom-color: var(--bc-primary);
}

/* Nav Gift icon */
.bc-nav-gift svg { width: 14px; height: 14px; }

/* ==============================
   HERO â Soft & Elegant
   ============================== */
.bc-hero {
  background: var(--bc-bg-section);
  padding: 56px 0;
  text-align: center;
}
.bc-hero h1 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--bc-dark);
  margin-bottom: 16px;
}
.bc-hero p {
  font-size: 1rem;
  color: var(--bc-text-light);
  max-width: 600px;
  margin: 0 auto 28px;
  line-height: 1.7;
}
.bc-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bc-primary);
  color: #fff;
  padding: 14px 32px;
  border-radius: var(--bc-radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--bc-transition);
}
.bc-hero-cta:hover {
  background: var(--bc-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--bc-shadow-md);
  color: #fff;
}

/* ==============================
   LISTE DE NAISSANCE BANNER
   ============================== */
.bc-birth-list {
  padding: 24px 0;
  background: #fff;
}
.bc-birth-list-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bc-primary-light);
  border: 1px solid var(--bc-border);
  border-radius: var(--bc-radius-xl);
  padding: 28px 36px;
  gap: 28px;
}
.bc-birth-list-content {
  display: flex;
  align-items: center;
  gap: 20px;
}
.bc-birth-list-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  background: var(--bc-primary);
  border-radius: var(--bc-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.bc-birth-list-content h2 {
  font-family: var(--bc-font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--bc-dark);
  margin: 0 0 4px 0;
}
.bc-birth-list-content p {
  font-size: 0.85rem;
  color: var(--bc-text-light);
  margin: 0;
  max-width: 480px;
  line-height: 1.5;
}
.bc-birth-list-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bc-primary);
  color: white;
  padding: 12px 24px;
  border-radius: var(--bc-radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: var(--bc-transition);
  white-space: nowrap;
}
.bc-birth-list-btn:hover {
  background: var(--bc-primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--bc-shadow-md);
  color: white;
}

@media (max-width: 768px) {
  .bc-birth-list-card {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }
  .bc-birth-list-content { flex-direction: column; }
}

/* ==============================
   CATEGORIES â Clean Cards
   ============================== */
.bc-categories {
  padding: 48px 0;
  background: #fff;
}
.bc-section-title {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  color: var(--bc-dark);
  margin-bottom: 8px;
}
.bc-section-subtitle {
  text-align: center;
  color: var(--bc-text-light);
  font-size: 0.9rem;
  margin-bottom: 32px;
}
.bc-categories-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.bc-category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 12px;
  background: var(--bc-bg-section);
  border-radius: var(--bc-radius-lg);
  text-decoration: none;
  transition: var(--bc-transition);
  border: 1px solid transparent;
}
.bc-category-card:hover {
  border-color: var(--bc-border);
  box-shadow: var(--bc-shadow);
  transform: translateY(-2px);
}
.bc-category-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 12px;
  background: #fff;
  box-shadow: var(--bc-shadow-xs);
}

/* Colored backgrounds per category */
.bc-category-card:nth-child(1) .bc-category-icon { background: #FDF2F3; }
.bc-category-card:nth-child(2) .bc-category-icon { background: #FEF3E2; }
.bc-category-card:nth-child(3) .bc-category-icon { background: #F3E8FF; }
.bc-category-card:nth-child(4) .bc-category-icon { background: #FEF9C3; }
.bc-category-card:nth-child(5) .bc-category-icon { background: #FFEDD5; }
.bc-category-card:nth-child(6) .bc-category-icon { background: #DBEAFE; }

.bc-category-card span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--bc-dark);
  text-align: center;
}
.bc-category-count {
  font-size: 0.72rem;
  color: var(--bc-text-muted);
  font-weight: 400;
  margin-top: 2px;
}

/* ==============================
   PRODUCTS SECTIONS
   ============================== */
.bc-products-section {
  padding: 48px 0;
  background: #fff;
}

/* ==============================
   PROMO BANNER â Subtle
   ============================== */
.bc-promo-banner {
  background: var(--bc-bg-section);
  border-radius: var(--bc-radius-xl);
  padding: 40px;
  text-align: center;
  border: 1px solid var(--bc-border);
}
.bc-promo-banner h3 {
  font-size: 1.4rem;
  color: var(--bc-dark);
  margin-bottom: 8px;
}
.bc-promo-banner p {
  color: var(--bc-text-light);
  font-size: 0.9rem;
  margin-bottom: 16px;
}
.bc-promo-code {
  display: inline-block;
  background: #fff;
  border: 2px dashed var(--bc-primary);
  color: var(--bc-primary);
  padding: 10px 28px;
  border-radius: var(--bc-radius);
  font-family: monospace;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 2px;
}

/* ==============================
   WOOCOMMERCE â Product Grid
   ============================== */
.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}
/* Remove WooCommerce clearfix pseudo-elements — they occupy grid cells */
.woocommerce ul.products::before,
.woocommerce ul.products::after {
  display: none !important;
  content: none !important;
}
.woocommerce ul.products li.product {
  background: #fff;
  border-radius: var(--bc-radius-lg);
  overflow: hidden;
  border: 1px solid var(--bc-border);
  transition: var(--bc-transition);
  padding: 0;
  margin: 0 !important;
  width: auto !important;
  float: none !important;
  display: flex !important;
  flex-direction: column;
}
.woocommerce ul.products li.product:hover {
  box-shadow: var(--bc-shadow-md);
  transform: translateY(-3px);
}
/* Fixed-height image container for uniform alignment */
.woocommerce ul.products li.product a.woocommerce-LoopProduct-link {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.woocommerce ul.products li.product a img,
.woocommerce ul.products li.product .attachment-woocommerce_thumbnail {
  width: 100%;
  height: 220px;
  object-fit: contain;
  border-radius: 0;
  margin: 0 !important;
  background: #fafafa;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product h2 {
  font-family: var(--bc-font-body) !important;
  font-size: 0.85rem !important;
  font-weight: 500 !important;
  color: var(--bc-text) !important;
  padding: 12px 14px 4px !important;
  margin: 0 !important;
  line-height: 1.4;
  flex-grow: 1;
}
.woocommerce ul.products li.product .price {
  padding: 0 14px 8px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--bc-dark);
  margin-top: auto;
}
.woocommerce ul.products li.product .price del {
  color: var(--bc-text-muted);
  font-size: 0.85rem;
  font-weight: 400;
}
.woocommerce ul.products li.product .price ins {
  text-decoration: none;
  color: var(--bc-primary);
  font-weight: 700;
}
.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product a.add_to_cart_button {
  display: block;
  width: calc(100% - 28px);
  margin: 0 14px 14px !important;
  background: var(--bc-primary);
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: var(--bc-radius);
  font-size: 0.82rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--bc-transition);
  font-family: var(--bc-font-body);
}
.woocommerce ul.products li.product .button:hover,
.woocommerce ul.products li.product a.add_to_cart_button:hover {
  background: var(--bc-primary-dark);
}

/* Sale badge */
.woocommerce span.onsale {
  background: var(--bc-primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--bc-radius-full);
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
}

/* Star Rating */
.woocommerce .star-rating {
  color: var(--bc-accent);
  font-size: 0.8rem;
  margin: 4px 14px;
}

/* ==============================
   SINGLE PRODUCT
   ============================== */
.woocommerce div.product .product_title { font-size: 1.6rem; margin-bottom: 12px; }
.woocommerce div.product p.price { font-size: 1.4rem; color: var(--bc-dark); font-weight: 700; }
.woocommerce div.product .single_add_to_cart_button {
  background: var(--bc-primary) !important;
  border-radius: var(--bc-radius) !important;
  padding: 14px 32px !important;
  font-weight: 600 !important;
  font-size: 1rem !important;
  transition: var(--bc-transition);
}
.woocommerce div.product .single_add_to_cart_button:hover {
  background: var(--bc-primary-dark) !important;
}

/* ==============================
   PAGINATION
   ============================== */
.woocommerce nav.woocommerce-pagination ul {
  display: flex;
  justify-content: center;
  gap: 6px;
  border: none;
  margin-top: 32px;
}
.woocommerce nav.woocommerce-pagination ul li {
  border: none;
}
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span.current {
  padding: 8px 14px;
  border-radius: var(--bc-radius);
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid var(--bc-border);
  color: var(--bc-text);
}
.woocommerce nav.woocommerce-pagination ul li span.current {
  background: var(--bc-primary);
  color: #fff;
  border-color: var(--bc-primary);
}

/* ==============================
   FOOTER â Elegant Dark
   ============================== */
.bc-footer {
  background: var(--bc-dark);
  color: rgba(255,255,255,0.7);
  padding: 48px 0 0;
}
.bc-footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.bc-footer h4 {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 16px;
}
.bc-footer ul { list-style: none; }
.bc-footer ul li { margin-bottom: 8px; }
.bc-footer ul li a {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  transition: var(--bc-transition);
}
.bc-footer ul li a:hover { color: #fff; }
.bc-footer-bottom {
  text-align: center;
  padding: 20px 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* ==============================
   RESPONSIVE
   ============================== */
@media (max-width: 1024px) {
  .woocommerce ul.products { grid-template-columns: repeat(3, 1fr) !important; }
  .bc-categories-grid { grid-template-columns: repeat(3, 1fr); }
  .bc-footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .bc-header .container { gap: 12px; }
  .bc-search { max-width: none; }
  .bc-hero h1 { font-size: 1.6rem; }
  .woocommerce ul.products { grid-template-columns: repeat(2, 1fr) !important; gap: 12px; }
  .bc-categories-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .bc-reassurance .container { gap: 16px; justify-content: center; }
  .bc-reassurance-item { font-size: 11px; }
  .bc-nav a { padding: 8px 10px; font-size: 11px; letter-spacing: 0.1px; }
}
@media (max-width: 480px) {
  .woocommerce ul.products { grid-template-columns: repeat(2, 1fr) !important; gap: 8px; }
  .bc-categories-grid { grid-template-columns: repeat(2, 1fr); }
  .bc-header-icons span { display: none; }
  .bc-logo a { font-size: 1.3rem; }
}


/* ==============================
   PARAPHARMACIE LANDING PAGE
   ============================== */

/* Hero Banner */
.pp-hero {
  position: relative;
  background: linear-gradient(135deg, #FDF2F3 0%, #F3E8FF 40%, #E0F2FE 70%, #FEF9C3 100%);
  padding: 0;
  min-height: 220px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.pp-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 100%);
}
.pp-hero-content {
  position: relative;
  z-index: 2;
  padding: 40px 20px 36px;
}
.pp-breadcrumb {
  font-size: 13px;
  color: var(--bc-text-light);
  margin-bottom: 16px;
}
.pp-breadcrumb a { color: var(--bc-text-light); }
.pp-breadcrumb a:hover { color: var(--bc-primary); }
.pp-breadcrumb strong { color: var(--bc-text); }
.pp-hero-title {
  font-family: var(--bc-font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--bc-dark);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.pp-hero-subtitle {
  font-size: 1rem;
  color: var(--bc-text-light);
  max-width: 600px;
  line-height: 1.7;
  margin: 0;
}
/* Subcategories Section */
.pp-subcats {
  background: #fff;
  padding: 40px 0;
  border-bottom: 1px solid var(--bc-border-light);
}
.pp-subcats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.pp-subcat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 12px 20px;
  background: #fff;
  border-radius: var(--bc-radius-xl);
  border: 1px solid var(--bc-border);
  transition: var(--bc-transition);
  text-decoration: none;
  cursor: pointer;
}
.pp-subcat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--bc-shadow-md);
  border-color: var(--bc-primary-light);
}
.pp-subcat-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition: var(--bc-transition);
}
.pp-subcat-card:hover .pp-subcat-img {
  transform: scale(1.08);
}
.pp-subcat-name {
  font-family: var(--bc-font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--bc-dark);
  margin-bottom: 4px;
}
.pp-subcat-count {
  font-size: 0.75rem;
  color: var(--bc-text-muted);
}

/* Products Section */
.pp-products-section {
  padding: 40px 20px 60px;
}
.pp-section-header {
  margin-bottom: 24px;
}
.pp-section-title {
  font-family: var(--bc-font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--bc-dark);
}

/* Empty State */
.pp-empty-state {
  text-align: center;
  padding: 60px 20px;
  background: var(--bc-bg-section);
  border-radius: var(--bc-radius-xl);
  border: 1px solid var(--bc-border-light);
}
.pp-empty-icon {
  width: 80px;
  height: 80px;
  background: var(--bc-primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--bc-primary);
}
.pp-empty-state h3 {
  font-family: var(--bc-font-heading);
  font-size: 1.3rem;
  color: var(--bc-dark);
  margin-bottom: 8px;
}
.pp-empty-state p {
  color: var(--bc-text-light);
  font-size: 0.95rem;
  max-width: 440px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Responsive Parapharmacie */
@media (max-width: 1024px) {
  .pp-subcats-grid { grid-template-columns: repeat(3, 1fr); }
  .pp-hero-title { font-size: 2.2rem; }
}
@media (max-width: 768px) {
  .pp-subcats-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .pp-hero-title { font-size: 1.8rem; }
  .pp-hero { min-height: 180px; }
  .pp-subcat-img { width: 64px; height: 64px; }
  .pp-subcat-name { font-size: 0.82rem; }
}
@media (max-width: 480px) {
  .pp-subcats-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .pp-hero-title { font-size: 1.5rem; }
  .pp-subcat-card { padding: 16px 8px; }
  .pp-subcat-img { width: 56px; height: 56px; }
}

/* ==============================
   UTILITY: Remove WC defaults
   ============================== */
.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering { margin-bottom: 16px; }
.woocommerce-info, .woocommerce-message {
  border-top-color: var(--bc-primary);
}
.woocommerce-info::before, .woocommerce-message::before {
  color: var(--bc-primary);
}

/* =============================================
   MEGA MENU — Opara Style v2
   ============================================= */

.bc-nav {
  position: relative;
  border-bottom: 1px solid #eee;
}

.bc-nav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.bc-nav-item {
  position: static;
}

.bc-nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 14px 14px;
  font-size: 13px;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.2px;
}

.bc-nav-link:hover,
.bc-nav-item:hover > .bc-nav-link {
  color: var(--primary);
}

.bc-nav-arrow {
  opacity: 0.4;
  transition: transform 0.25s, opacity 0.25s;
  flex-shrink: 0;
}

.bc-nav-item:hover .bc-nav-arrow {
  transform: rotate(180deg);
  opacity: 0.8;
}

.bc-nav-special { gap: 6px; color: var(--primary); }
.bc-nav-promo { color: #e53e3e; font-weight: 700; }

/* ---- Dropdown ---- */
.bc-mega-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  max-height: calc(100vh - 200px);
  overflow-y: auto;
  background: #fff;
  border-top: 2px solid var(--primary);
  box-shadow: 0 12px 35px rgba(0,0,0,0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  z-index: 9999;
  border-radius: 0 0 8px 8px;
}

.bc-nav-item:hover > .bc-mega-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ---- Wrap: cols + sidebar ---- */
.bc-mega-wrap {
  display: flex;
  max-width: 1400px;
  margin: 0 auto;
}

/* ---- Columns area ---- */
.bc-mega-cols {
  flex: 1;
  padding: 28px 30px 20px;
}

/* == HIERARCHICAL layout (Parapharmacie etc.) == */
.bc-mega-cols--hierarchy {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  align-content: flex-start;
  max-height: 70vh;
  overflow-y: auto;
}

.bc-mega-cols--hierarchy::-webkit-scrollbar { width: 4px; }
.bc-mega-cols--hierarchy::-webkit-scrollbar-track { background: transparent; }
.bc-mega-cols--hierarchy::-webkit-scrollbar-thumb { background: #ddd; border-radius: 4px; }

.bc-mega-col {
  width: 25%;
  padding: 0 15px 20px 0;
  box-sizing: border-box;
}

.bc-mega-title {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  text-decoration: none;
  margin-bottom: 8px;
  line-height: 1.3;
}

.bc-mega-title:hover { color: var(--primary); }

.bc-mega-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bc-mega-list li a {
  display: flex;
  align-items: center;
  font-size: 13px;
  color: #555;
  text-decoration: none;
  padding: 3px 0;
  line-height: 1.5;
  transition: color 0.15s;
}

.bc-mega-list li a::before {
  content: "\203A";
  display: inline-block;
  width: 16px;
  flex-shrink: 0;
  color: #bbb;
  font-size: 15px;
  line-height: 1;
}

.bc-mega-list li a:hover { color: var(--primary); }
.bc-mega-list li a:hover::before { color: var(--primary); }

/* == FLAT layout (Allaitement, Eveil etc. — no grandchildren) == */
.bc-mega-cols--flat {
  display: block;
  max-height: 65vh;
  overflow-y: auto;
}

.bc-mega-cols--flat::-webkit-scrollbar { width: 4px; }
.bc-mega-cols--flat::-webkit-scrollbar-track { background: transparent; }
.bc-mega-cols--flat::-webkit-scrollbar-thumb { background: #ddd; border-radius: 4px; }

.bc-mega-flat-list {
  list-style: none;
  margin: 0;
  padding: 0;
  column-count: 3;
  column-gap: 30px;
}

.bc-mega-flat-list li {
  break-inside: avoid;
  padding: 0;
  margin: 0;
}

.bc-mega-flat-list li a {
  display: flex;
  align-items: center;
  font-size: 13.5px;
  color: #444;
  text-decoration: none;
  padding: 5px 0;
  line-height: 1.5;
  transition: color 0.15s;
}

.bc-mega-flat-list li a::before {
  content: "\203A";
  display: inline-block;
  width: 16px;
  flex-shrink: 0;
  color: #bbb;
  font-size: 16px;
  line-height: 1;
}

.bc-mega-flat-list li a:hover { color: var(--primary); }
.bc-mega-flat-list li a:hover::before { color: var(--primary); }

/* ---- Sidebar (Opara Style v2) ---- */
.bc-mega-sidebar {
  width: 380px;
  flex-shrink: 0;
  border-left: 1px solid #e5e5e5;
  padding: 30px 28px;
  background: #fff;
  border-radius: 0 0 8px 0;
  overflow: hidden;
}

.bc-mega-offers-title {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  margin-bottom: 20px;
  font-style: italic;
  padding-bottom: 0;
  border-bottom: none;
  letter-spacing: -0.3px;
  line-height: 1.3;
}

.bc-mega-product {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 0 0 20px 0;
  text-decoration: none;
  border-bottom: 1px solid #e5e5e5;
  border-radius: 0;
  transition: opacity 0.15s;
  margin-bottom: 20px;
}

.bc-mega-product:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
.bc-mega-product:hover { opacity: 0.75; }

.bc-mega-product-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 5px;
  background: #fff;
  border: none;
  flex-shrink: 0;
  padding: 0;
  box-shadow: none;
}

.bc-mega-product-info {
  flex: 1;
  min-width: 0;
  max-width: calc(100% - 100px);
  overflow: hidden;
}

.bc-mega-product-name {
  font-size: 14px;
  color: #000;
  line-height: 22px;
  margin-bottom: 8px;
  font-weight: 400;
  text-transform: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.bc-mega-product-price {
  font-size: 15px;
  font-weight: 500;
  color: #000;
}

.bc-mega-product-price del {
  color: #818388;
  font-weight: 400;
  font-size: 13px;
  margin-right: 8px;
  text-decoration: line-through;
}

.bc-mega-product-price ins {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  font-size: 15px;
}

/* ---- Responsive ---- */
@media (max-width: 1200px) {
  .bc-mega-col { width: 33.33%; }
  .bc-mega-sidebar { width: 320px; }
  .bc-mega-flat-list { column-count: 2; }
}

@media (max-width: 992px) {
  .bc-mega-sidebar { display: none; }
  .bc-mega-col { width: 50%; }
  .bc-nav-inner { overflow-x: auto; }
}

@media (max-width: 768px) {
  .bc-mega-dropdown { display: none; }
  .bc-nav-arrow { display: none; }
}
/* ========================================================================
   LOGO CURSIVE (keep from Debebe redesign - v4.0.2)
   ======================================================================== */
.bc-logo-cursive a {
  display: inline-block;
  text-decoration: none;
  line-height: 1;
}
.bc-logo-cursive-text {
  font-family: "Allison", "Dancing Script", cursive;
  font-size: 62px;
  font-weight: 400;
  color: #0A1E33;
  letter-spacing: -1px;
  line-height: 1;
  display: inline-block;
  padding-top: 4px;
  transition: color 0.2s ease;
}
.bc-logo-cursive:hover .bc-logo-cursive-text {
  color: #C4707A;
}
@media (max-width: 991px) {
  .bc-logo-cursive-text { font-size: 48px; }
}
@media (max-width: 600px) {
  .bc-logo-cursive-text { font-size: 40px; }
}
/* ========================================================================
   DEBEBE REDESIGN - Phase 1 : HEADER
   v4.0.0 — Header style "de bébé" VamTam
   ======================================================================== */

/* ---------- TOPBAR (on garde la couleur marque bebeclub) ---------- */
.bc-topbar {
  background: var(--bc-deb-navy);
  color: var(--bc-deb-white);
  text-align: center;
  font-size: 12.5px;
  font-weight: 400;
  padding: 8px 20px;
  letter-spacing: 0.3px;
  font-family: var(--bc-deb-font-body);
}

/* ---------- HEADER (row 1 : logo + search + icons) ---------- */
.bc-header-deb {
  background: #fff;
  border-bottom: 1px solid #ececec;
  padding: 0;
  position: relative;
  z-index: 10;
}
.bc-header-deb-inner {
  max-width: var(--bc-deb-container);
  margin: 0 auto;
  padding: 22px 30px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
}

/* ---------- LOGO CURSIVE ---------- */
.bc-logo-deb a {
  display: inline-block;
  text-decoration: none;
  line-height: 1;
}
.bc-logo-deb-text {
  font-family: var(--bc-deb-font-cursive);
  font-size: 68px;
  font-weight: 400;
  color: var(--bc-deb-navy);
  letter-spacing: -1px;
  line-height: 1;
  display: inline-block;
  padding-top: 6px;
  /* Petit effet "coral dot" pour le i de bebeclub */
  position: relative;
}
.bc-logo-deb-text::first-letter {
  /* Laisse tel quel, la police Allison est déjà très stylée */
}
.bc-logo-deb:hover .bc-logo-deb-text {
  color: var(--bc-deb-coral);
  transition: color 0.2s ease;
}

/* ---------- SEARCH BAR ---------- */
.bc-search-deb {
  justify-self: center;
  width: 100%;
  max-width: 560px;
}
.bc-search-deb form {
  position: relative;
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 999px;
  padding: 0 20px 0 52px;
  height: 52px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.bc-search-deb form:focus-within {
  border-color: var(--bc-deb-coral);
  box-shadow: 0 0 0 3px rgba(228, 106, 75, 0.12);
}
.bc-search-deb-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--bc-deb-navy);
  pointer-events: none;
}
.bc-search-deb input[type="search"] {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--bc-deb-font-body);
  font-size: 14px;
  color: var(--bc-deb-navy);
  padding: 0;
}
.bc-search-deb input[type="search"]::placeholder {
  color: #9a9a9a;
  font-weight: 400;
}
.bc-search-deb button[type="submit"] {
  position: absolute;
  inset: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  width: 52px;
  left: 0;
  right: auto;
}

/* ---------- ICONS ROW (HELP / ACCOUNT / LISTE / CART) ---------- */
.bc-icons-deb {
  display: flex;
  align-items: center;
  gap: 28px;
}
.bc-icon-deb {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--bc-deb-navy);
  font-family: var(--bc-deb-font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.2s ease;
  position: relative;
}
.bc-icon-deb:hover {
  color: var(--bc-deb-coral);
}
.bc-icon-deb-svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  stroke: currentColor;
}
.bc-icon-deb-label {
  line-height: 1;
}
/* Cart specific (with count badge, no label) */
.bc-icon-deb--cart {
  position: relative;
  padding: 8px;
  background: var(--bc-deb-sage-bg);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  justify-content: center;
  align-items: center;
}
.bc-icon-deb--cart .bc-icon-deb-svg {
  width: 20px;
  height: 20px;
}
.bc-cart-count-deb {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--bc-deb-coral);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  line-height: 1;
  font-family: var(--bc-deb-font-body);
}

/* ---------- NAVIGATION (row 2) DEBEBE STYLE ---------- */
.bc-nav-deb {
  background: #fff;
  border-top: 1px solid #ececec;
  border-bottom: 1px solid #ececec;
  padding: 0;
  position: relative;
  z-index: 9;
}
.bc-nav-deb .bc-nav-inner {
  max-width: var(--bc-deb-container);
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 0;
}
.bc-nav-deb .bc-nav-item {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.bc-nav-deb .bc-nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 22px 14px;
  color: var(--bc-deb-navy);
  font-family: var(--bc-deb-font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.6px;
  text-transform: none;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
  transition: color 0.2s ease;
  width: 100%;
}
.bc-nav-deb .bc-nav-link:hover,
.bc-nav-deb .bc-nav-item:hover > .bc-nav-link {
  color: var(--bc-deb-coral);
}
.bc-nav-deb .bc-nav-arrow {
  width: 10px;
  height: 6px;
  stroke: currentColor;
  margin-top: 2px;
  transition: transform 0.2s ease;
}
.bc-nav-deb .bc-nav-item:hover .bc-nav-arrow {
  transform: rotate(180deg);
}
/* Blog item (special, no dropdown, no border-right) */
.bc-nav-deb .bc-nav-item--blog .bc-nav-link {
  color: var(--bc-deb-navy);
}
.bc-nav-deb .bc-nav-item--blog .bc-nav-link:hover {
  color: var(--bc-deb-coral);
}

/* ---------- RESPONSIVE (mobile <= 991px) ---------- */
@media (max-width: 991px) {
  .bc-header-deb-inner {
    grid-template-columns: 1fr auto;
    gap: 16px;
    padding: 16px 20px;
  }
  .bc-logo-deb-text {
    font-size: 52px;
  }
  .bc-search-deb {
    grid-column: 1 / -1;
    grid-row: 2;
    max-width: 100%;
  }
  .bc-icons-deb {
    gap: 16px;
  }
  .bc-icon-deb-label {
    display: none;
  }
  .bc-nav-deb .bc-nav-inner {
    overflow-x: auto;
    scrollbar-width: none;
  }
  .bc-nav-deb .bc-nav-inner::-webkit-scrollbar {
    display: none;
  }
  .bc-nav-deb .bc-nav-link {
    padding: 16px 10px;
    font-size: 13px;
  }
}
@media (max-width: 600px) {
  .bc-logo-deb-text {
    font-size: 42px;
  }
  .bc-header-deb-inner {
    padding: 14px 16px;
  }
}

/* ========================================================================
   HIDE OLD HEADER ELEMENTS (if still present in body)
   On masque la reassurance bar + ancien header car remplace par nouveau
   ======================================================================== */
.bc-reassurance { display: none !important; }
.bc-header:not(.bc-header-deb) { display: none !important; }

/* ========================================================================
   DEBEBE REDESIGN - Phases 2-7 (Homepage complete)
   v4.0.2
   ======================================================================== */

/* Reset body/container for Debebe design */
body { font-family: var(--bc-deb-font-body); color: var(--bc-deb-navy); background: #fff; }
.bc-deb-section-title { font-family: var(--bc-deb-font-heading); font-size: 36px; font-weight: 400; color: var(--bc-deb-navy); letter-spacing: 2px; text-transform: uppercase; margin: 0; }

/* Boutons Debebe */
.bc-deb-btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 28px; font-family: var(--bc-deb-font-body); font-size: 14px; font-weight: 500; letter-spacing: 0.5px; text-decoration: none; border-radius: var(--bc-deb-radius-btn); border: none; cursor: pointer; transition: all 0.2s ease; line-height: 1; }
.bc-deb-btn--coral { background: var(--bc-deb-coral); color: #fff; }
.bc-deb-btn--coral:hover { background: var(--bc-deb-coral-dark); color: #fff; transform: translateY(-1px); }
.bc-deb-btn--sm { padding: 10px 20px; font-size: 13px; }

/* ========================================================================
   PHASE 2 - HERO BANNER
   ======================================================================== */
.bc-deb-hero { background: var(--bc-deb-sage-light); padding: 30px 20px 50px; margin: 30px 0 0; border-radius: 0; position: relative; overflow: hidden; }
.bc-deb-hero-inner { max-width: var(--bc-deb-container); margin: 0 auto; position: relative; display: grid; grid-template-columns: 1fr 2fr 1fr; align-items: center; min-height: 420px; gap: 30px; padding: 40px 20px; }

/* Produits flottants */
.bc-deb-hero-prod { position: relative; text-decoration: none; display: block; }
.bc-deb-hero-prod-img { max-width: 280px; height: auto; display: block; margin: 0 auto; position: relative; z-index: 2; }
.bc-deb-hero-prod-badge { background: #fff; padding: 12px 20px; border-radius: 4px; box-shadow: 0 4px 16px rgba(0,0,0,0.06); display: inline-block; position: absolute; z-index: 3; min-width: 160px; }
.bc-deb-hero-prod--left .bc-deb-hero-prod-badge { top: 20px; left: 10px; }
.bc-deb-hero-prod--right .bc-deb-hero-prod-badge--right { bottom: 40px; left: 50%; transform: translateX(-50%); }
.bc-deb-hero-prod-name { font-family: var(--bc-deb-font-body); font-size: 13px; font-weight: 500; color: var(--bc-deb-navy); margin-bottom: 6px; line-height: 1.3; }
.bc-deb-hero-prod-price { font-family: var(--bc-deb-font-body); font-size: 15px; color: var(--bc-deb-navy); font-weight: 600; }
.bc-deb-hero-prod-old { text-decoration: line-through; color: #999; font-weight: 400; margin-left: 6px; font-size: 13px; }
.bc-deb-hero-prod-link { display: block; position: relative; text-decoration: none; }

/* Cercle sauge derrière produit droite */
.bc-deb-hero-circle { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 280px; height: 280px; background: var(--bc-deb-sage-dark); border-radius: 50%; opacity: 0.4; z-index: 1; }

/* Contenu central */
.bc-deb-hero-content { text-align: center; z-index: 2; position: relative; }
.bc-deb-hero-overline { font-family: var(--bc-deb-font-body); font-size: 13px; font-weight: 500; letter-spacing: 3px; color: var(--bc-deb-navy); margin-bottom: 16px; text-transform: uppercase; }
.bc-deb-hero-title { font-family: var(--bc-deb-font-heading); font-size: 46px; font-weight: 400; color: var(--bc-deb-navy); letter-spacing: 1px; line-height: 1.15; margin: 0 0 28px; text-transform: none; }

/* Décorations */
.bc-deb-hero-lion { position: absolute; bottom: 20px; left: 30px; width: 170px; height: auto; z-index: 2; opacity: 0.95; }
.bc-deb-hero-grass { position: absolute; bottom: 30px; left: 220px; width: 120px; opacity: 0.8; z-index: 1; }
.bc-deb-hero-dots { position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 3; }
.bc-deb-hero-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--bc-deb-navy); opacity: 0.25; cursor: pointer; }
.bc-deb-hero-dot--active { opacity: 1; }

@media (max-width: 991px) {
  .bc-deb-hero-inner { grid-template-columns: 1fr; min-height: auto; }
  .bc-deb-hero-prod--left, .bc-deb-hero-prod--right { display: none; }
  .bc-deb-hero-title { font-size: 32px; }
  .bc-deb-hero-lion { width: 110px; bottom: 10px; }
  .bc-deb-hero-grass { display: none; }
}

/* ========================================================================
   PHASE 3 - FEATURES ROW
   ======================================================================== */
.bc-deb-features { background: var(--bc-deb-sage-bg); padding: 24px 20px; margin-top: -10px; }
.bc-deb-features-inner { max-width: var(--bc-deb-container); margin: 0 auto; display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; align-items: center; }
.bc-deb-feature { display: flex; align-items: center; gap: 14px; }
.bc-deb-feature-icon { width: 38px; height: 38px; flex-shrink: 0; color: var(--bc-deb-navy); stroke: currentColor; }
.bc-deb-feature-text { display: flex; flex-direction: column; line-height: 1.35; font-family: var(--bc-deb-font-body); }
.bc-deb-feature-text strong { font-size: 13px; font-weight: 600; color: var(--bc-deb-navy); }
.bc-deb-feature-text span { font-size: 12px; color: #6a6a6a; font-weight: 400; }

@media (max-width: 991px) {
  .bc-deb-features-inner { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 600px) {
  .bc-deb-features-inner { grid-template-columns: 1fr; }
}

/* ========================================================================
   PHASE 4 - CATEGORIES EN BLOB
   ======================================================================== */
.bc-deb-categories { padding: 80px 20px; background: #fff; }
.bc-deb-categories-inner { max-width: var(--bc-deb-container); margin: 0 auto; text-align: center; }
.bc-deb-categories .bc-deb-section-title { margin-bottom: 50px; }
.bc-deb-categories-grid { display: grid; grid-template-columns: repeat(8, 1fr); gap: 20px; }
.bc-deb-cat-card { text-decoration: none; display: flex; flex-direction: column; align-items: center; gap: 14px; transition: transform 0.25s ease; }
.bc-deb-cat-card:hover { transform: translateY(-6px); }
.bc-deb-cat-blob { width: 140px; height: 140px; background: var(--bc-deb-sage-bg); border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%; display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative; }
.bc-deb-cat-blob img { width: 110%; height: 110%; object-fit: cover; }
.bc-deb-cat-blob svg { width: 60px; height: 60px; color: var(--bc-deb-sage-dark); }
.bc-deb-cat-name { font-family: var(--bc-deb-font-body); font-size: 14px; font-weight: 500; color: var(--bc-deb-navy); text-align: center; }

@media (max-width: 1199px) { .bc-deb-categories-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 600px) { .bc-deb-categories-grid { grid-template-columns: repeat(2, 1fr); } .bc-deb-cat-blob { width: 110px; height: 110px; } }

/* ========================================================================
   PHASE 5 - DEALS + FLASH SALE
   ======================================================================== */
.bc-deb-deals { padding: 40px 20px 60px; background: #fff; }
.bc-deb-deals-inner { max-width: var(--bc-deb-container); margin: 0 auto; display: grid; grid-template-columns: 400px 1fr; gap: 30px; }

.bc-deb-promo-card { background: #F7F3ED url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><circle cx="40" cy="40" r="30" fill="%23DFE7E8"/><circle cx="160" cy="160" r="40" fill="%23FFBC7D" opacity="0.3"/></svg>') center/cover; padding: 50px 40px; border-radius: 8px; min-height: 420px; display: flex; align-items: center; position: relative; overflow: hidden; }
.bc-deb-promo-content { position: relative; z-index: 2; }
.bc-deb-promo-discount { font-family: var(--bc-deb-font-heading); font-size: 82px; font-weight: 400; color: var(--bc-deb-navy); letter-spacing: -2px; line-height: 1; margin-bottom: 10px; }
.bc-deb-promo-text { font-family: var(--bc-deb-font-body); font-size: 15px; color: var(--bc-deb-navy); margin-bottom: 28px; line-height: 1.4; }

.bc-deb-deals-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 20px; }
.bc-deb-deals-header .bc-deb-section-title { font-size: 28px; }
.bc-deb-view-all { font-family: var(--bc-deb-font-body); font-size: 14px; font-weight: 500; color: var(--bc-deb-navy); text-decoration: none; border-bottom: 2px wavy solid var(--bc-deb-coral); padding-bottom: 4px; text-decoration: underline wavy var(--bc-deb-coral); text-underline-offset: 4px; }
.bc-deb-view-all:hover { color: var(--bc-deb-coral); }

.bc-deb-deals-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.bc-deb-deal-card { background: #F7F7F7; border-radius: 6px; overflow: hidden; text-decoration: none; transition: transform 0.2s ease; }
.bc-deb-deal-card:hover { transform: translateY(-4px); }
.bc-deb-deal-media { position: relative; aspect-ratio: 1; background: #fff; display: flex; align-items: center; justify-content: center; }
.bc-deb-deal-media img { width: 100%; height: 100%; object-fit: cover; }
.bc-deb-deal-badge { position: absolute; top: 12px; left: 12px; padding: 6px 12px; font-family: var(--bc-deb-font-body); font-size: 11px; font-weight: 600; color: #fff; border-radius: 50%; width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; z-index: 2; }
.bc-deb-deal-badge--sale { background: var(--bc-deb-coral); }
.bc-deb-deal-badge--new { background: var(--bc-deb-sage-dark); top: 70px; }
.bc-deb-deal-body { padding: 14px; }
.bc-deb-deal-name { font-family: var(--bc-deb-font-body); font-size: 14px; color: var(--bc-deb-navy); line-height: 1.3; margin-bottom: 8px; }
.bc-deb-deal-price { font-family: var(--bc-deb-font-body); font-size: 14px; font-weight: 600; color: var(--bc-deb-navy); }

@media (max-width: 991px) {
  .bc-deb-deals-inner { grid-template-columns: 1fr; }
  .bc-deb-promo-card { min-height: 280px; }
  .bc-deb-deals-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Flash Sale bandeau */
.bc-deb-flash { padding: 30px 20px; background: #fff; }
.bc-deb-flash-inner { max-width: var(--bc-deb-container); margin: 0 auto; background: var(--bc-deb-sage-bg); padding: 18px 30px; border-radius: 8px; display: grid; grid-template-columns: auto auto auto 100px auto auto; align-items: center; gap: 20px; position: relative; overflow: visible; }
.bc-deb-flash-icon { flex-shrink: 0; }
.bc-deb-flash-icon svg { width: 40px; height: 40px; }
.bc-deb-flash-title { display: flex; flex-direction: column; font-family: var(--bc-deb-font-heading); font-weight: 400; color: var(--bc-deb-sage-dark); letter-spacing: 2px; line-height: 1; }
.bc-deb-flash-title strong { font-size: 20px; }
.bc-deb-flash-discount { display: flex; align-items: baseline; gap: 4px; color: var(--bc-deb-navy); }
.bc-deb-flash-num { font-family: var(--bc-deb-font-heading); font-size: 56px; font-weight: 400; line-height: 1; }
.bc-deb-flash-percent { font-family: var(--bc-deb-font-heading); font-size: 32px; color: var(--bc-deb-coral); line-height: 1; }
.bc-deb-flash-off { font-family: var(--bc-deb-font-heading); font-size: 24px; color: var(--bc-deb-coral); letter-spacing: 1px; line-height: 1; }
.bc-deb-flash-croc { width: 100px; height: 80px; margin-top: -30px; }
.bc-deb-flash-text { font-family: var(--bc-deb-font-body); font-size: 14px; color: var(--bc-deb-navy); line-height: 1.4; }
.bc-deb-flash-text strong { font-size: 15px; font-weight: 600; display: block; margin-bottom: 2px; }
.bc-deb-flash-code { color: var(--bc-deb-coral); font-weight: 600; }

@media (max-width: 991px) {
  .bc-deb-flash-inner { grid-template-columns: 1fr; text-align: center; gap: 10px; }
  .bc-deb-flash-croc { margin: 0 auto; }
}

/* ========================================================================
   PHASE 6 - FEATURED PRODUCTS + CTA
   ======================================================================== */
.bc-deb-featured { padding: 60px 20px; background: #fff; }
.bc-deb-featured-inner { max-width: var(--bc-deb-container); margin: 0 auto; }
.bc-deb-featured-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; flex-wrap: wrap; gap: 16px; }
.bc-deb-featured-header .bc-deb-section-title { font-size: 28px; }

.bc-deb-tabs { display: flex; gap: 8px; }
.bc-deb-tab { padding: 8px 16px; font-family: var(--bc-deb-font-body); font-size: 13px; font-weight: 500; color: var(--bc-deb-navy); background: transparent; border: 1px solid transparent; border-radius: var(--bc-deb-radius-btn); cursor: pointer; transition: all 0.2s ease; }
.bc-deb-tab:hover { color: var(--bc-deb-coral); }
.bc-deb-tab--active { background: #F7F7F7; border-color: var(--bc-deb-navy); color: var(--bc-deb-navy); font-weight: 600; }

.bc-deb-products-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.bc-deb-product-card { text-decoration: none; display: flex; flex-direction: column; gap: 10px; transition: transform 0.2s ease; }
.bc-deb-product-card:hover { transform: translateY(-3px); }
.bc-deb-product-media { background: #F7F7F7; border-radius: 6px; aspect-ratio: 1; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.bc-deb-product-media img { width: 100%; height: 100%; object-fit: cover; }
.bc-deb-product-name { font-family: var(--bc-deb-font-body); font-size: 13px; color: var(--bc-deb-navy); line-height: 1.3; }
.bc-deb-product-price { font-family: var(--bc-deb-font-body); font-size: 14px; font-weight: 600; color: var(--bc-deb-navy); }

@media (max-width: 1199px) { .bc-deb-products-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .bc-deb-products-grid { grid-template-columns: repeat(2, 1fr); } }

/* 2 CTA Duo Banners */
.bc-deb-cta-duo { padding: 40px 20px 60px; background: #fff; }
.bc-deb-cta-duo-inner { max-width: var(--bc-deb-container); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.bc-deb-cta-card { display: flex; flex-direction: column; background: #fff; border-radius: 8px; overflow: hidden; text-decoration: none; box-shadow: 0 4px 24px rgba(0,0,0,0.04); transition: transform 0.2s ease; }
.bc-deb-cta-card:hover { transform: translateY(-4px); }
.bc-deb-cta-card-media { height: 260px; display: flex; align-items: center; justify-content: center; }
.bc-deb-cta-card-body { padding: 24px 28px 28px; }
.bc-deb-cta-card-body h3 { font-family: var(--bc-deb-font-heading); font-size: 26px; color: var(--bc-deb-navy); margin: 0 0 12px; letter-spacing: 1px; font-weight: 400; }
.bc-deb-cta-card-body p { font-family: var(--bc-deb-font-body); font-size: 14px; color: #5a5a5a; line-height: 1.5; margin: 0 0 20px; }

@media (max-width: 768px) { .bc-deb-cta-duo-inner { grid-template-columns: 1fr; } }

/* 3 Cards CTA trio */
.bc-deb-cta-trio { padding: 40px 20px 60px; background: #fff; }
.bc-deb-cta-trio-inner { max-width: var(--bc-deb-container); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.bc-deb-trio-card { display: flex; flex-direction: column; background: #fff; border-radius: 8px; overflow: hidden; text-decoration: none; box-shadow: 0 4px 20px rgba(0,0,0,0.03); transition: transform 0.2s ease; }
.bc-deb-trio-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.08); }
.bc-deb-trio-media { height: 220px; display: flex; align-items: center; justify-content: center; }
.bc-deb-trio-body { padding: 20px 24px 24px; }
.bc-deb-trio-body h3 { font-family: var(--bc-deb-font-heading); font-size: 22px; color: var(--bc-deb-navy); margin: 0 0 10px; letter-spacing: 1px; font-weight: 400; }
.bc-deb-trio-body p { font-family: var(--bc-deb-font-body); font-size: 13px; color: #5a5a5a; margin: 0 0 16px; line-height: 1.4; }

@media (max-width: 991px) { .bc-deb-cta-trio-inner { grid-template-columns: 1fr; } }

/* Liste de naissance section */
.bc-deb-birth { padding: 50px 20px 70px; background: #fff; }
.bc-deb-birth-inner { max-width: var(--bc-deb-container); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: 8px; overflow: hidden; background: var(--bc-deb-gray); }
.bc-deb-birth-image { display: flex; align-items: center; justify-content: center; }
.bc-deb-birth-image svg { width: 100%; height: 280px; }
.bc-deb-birth-content { padding: 40px 50px; display: flex; flex-direction: column; justify-content: center; }
.bc-deb-birth-icon { color: var(--bc-deb-sage-dark); margin-bottom: 16px; }
.bc-deb-birth-content h3 { font-family: var(--bc-deb-font-heading); font-size: 30px; color: var(--bc-deb-navy); margin: 0 0 12px; letter-spacing: 1px; font-weight: 400; }
.bc-deb-birth-content p { font-family: var(--bc-deb-font-body); font-size: 14px; color: #5a5a5a; line-height: 1.6; margin: 0 0 20px; }

@media (max-width: 768px) { .bc-deb-birth-inner { grid-template-columns: 1fr; } .bc-deb-birth-content { padding: 30px 20px; } }

/* Info icons row */
.bc-deb-info { padding: 40px 20px; background: #fff; border-top: 1px solid #eee; }
.bc-deb-info-inner { max-width: var(--bc-deb-container); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; align-items: center; }
.bc-deb-info-item { display: flex; align-items: center; gap: 16px; }
.bc-deb-info-item svg { flex-shrink: 0; color: var(--bc-deb-navy); }
.bc-deb-info-item strong { display: block; font-family: var(--bc-deb-font-body); font-size: 14px; font-weight: 600; color: var(--bc-deb-navy); margin-bottom: 2px; }
.bc-deb-info-item span { font-family: var(--bc-deb-font-body); font-size: 13px; color: #6a6a6a; }

@media (max-width: 991px) { .bc-deb-info-inner { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (max-width: 600px) { .bc-deb-info-inner { grid-template-columns: 1fr; } }

/* ========================================================================
   PHASE 7 - FOOTER DEBEBE
   ======================================================================== */
.bc-deb-footer { background: #fff; border-top: 1px solid #eee; padding: 50px 20px 24px; }
.bc-deb-footer-newsletter { max-width: var(--bc-deb-container); margin: 0 auto 40px; display: grid; grid-template-columns: 1fr 1fr auto; gap: 30px; align-items: center; padding-bottom: 30px; border-bottom: 1px solid #eee; }
.bc-deb-footer-newsletter-title { font-family: var(--bc-deb-font-body); font-size: 16px; font-weight: 600; color: var(--bc-deb-navy); margin-bottom: 6px; }
.bc-deb-footer-newsletter-subtitle { font-family: var(--bc-deb-font-body); font-size: 13px; color: #6a6a6a; line-height: 1.4; }
.bc-deb-footer-newsletter-form { position: relative; }
.bc-deb-footer-newsletter-form input { width: 100%; padding: 14px 52px 14px 20px; border: 1px solid #ddd; border-radius: 6px; font-family: var(--bc-deb-font-body); font-size: 14px; color: var(--bc-deb-navy); }
.bc-deb-footer-newsletter-form button { position: absolute; right: 4px; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; background: transparent; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.bc-deb-footer-socials { display: flex; gap: 10px; }
.bc-deb-footer-socials a { width: 36px; height: 36px; border-radius: 50%; background: #fff; border: 1px solid #ddd; display: flex; align-items: center; justify-content: center; color: var(--bc-deb-navy); transition: all 0.2s ease; }
.bc-deb-footer-socials a:hover { background: var(--bc-deb-navy); color: #fff; border-color: var(--bc-deb-navy); }

.bc-deb-footer-main { max-width: var(--bc-deb-container); margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 30px; padding-bottom: 30px; }
.bc-deb-footer-brand .bc-logo-cursive-text { font-size: 52px; display: block; margin-bottom: 16px; color: var(--bc-deb-navy); }
.bc-deb-footer-brand address { font-family: var(--bc-deb-font-body); font-size: 13px; color: #5a5a5a; line-height: 1.6; font-style: normal; margin-bottom: 14px; }
.bc-deb-footer-brand a { color: var(--bc-deb-navy); font-size: 14px; font-weight: 500; text-decoration: none; display: block; margin-bottom: 6px; }

.bc-deb-footer-col h4 { font-family: var(--bc-deb-font-body); font-size: 14px; font-weight: 600; color: var(--bc-deb-navy); margin: 0 0 16px; text-transform: none; letter-spacing: 0; }
.bc-deb-footer-col ul { list-style: none; padding: 0; margin: 0; }
.bc-deb-footer-col li { margin-bottom: 8px; }
.bc-deb-footer-col a { font-family: var(--bc-deb-font-body); font-size: 13px; color: #5a5a5a; text-decoration: none; transition: color 0.2s ease; }
.bc-deb-footer-col a:hover { color: var(--bc-deb-coral); }

.bc-deb-footer-bottom { max-width: var(--bc-deb-container); margin: 0 auto; padding-top: 20px; border-top: 1px solid #eee; display: flex; justify-content: space-between; align-items: center; font-family: var(--bc-deb-font-body); font-size: 13px; color: #6a6a6a; }
.bc-deb-footer-bottom-links { display: flex; gap: 24px; }
.bc-deb-footer-bottom-links a { color: #6a6a6a; text-decoration: none; }

@media (max-width: 991px) {
  .bc-deb-footer-newsletter { grid-template-columns: 1fr; }
  .bc-deb-footer-main { grid-template-columns: repeat(2, 1fr); }
  .bc-deb-footer-bottom { flex-direction: column; gap: 12px; }
}

/* Hide old homepage sections */
.bc-hero, .bc-categories, .bc-products-section, .bc-birth-list { display: none !important; }
.bc-footer:not(.bc-deb-footer) { display: none !important; }
.bc-reassurance { display: none !important; }
