/** Shopify CDN: Minification failed

Line 216:10 Unexpected "{"
Line 216:22 Expected ":"
Line 216:26 Unexpected "{"

**/
/* ═══════════════════════════════════════
   YOMBNAFI — Header override for Dawn
═══════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@700;800&family=Plus+Jakarta+Sans:wght@600;700&display=swap');

/* ── Force nav background ── */
.header-wrapper,
.header {
  background-color: #1E3A5F !important;
  border-bottom: none !important;
  box-shadow: 0 2px 16px rgba(0,0,0,.2) !important;
}

/* ── Logo text ── */
.header__heading-link,
.header__heading {
  font-family: 'Sora', sans-serif !important;
  font-weight: 800 !important;
  font-size: 20px !important;
  color: #ffffff !important;
  text-decoration: none !important;
  letter-spacing: -0.5px !important;
}

/* Hide the default shop name and replace with styled version */
.header__heading-link .h2 {
  display: none !important;
}

/* ── Nav links ── */
.header__menu-item,
.header__menu-item span,
.header__menu-item .link {
  color: rgba(255,255,255,.65) !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  transition: color .2s !important;
}
.header__menu-item:hover span,
.header__menu-item:hover .link {
  color: #ffffff !important;
}

/* Active nav item — pill style */
.header__menu-item.header__active-menu-item span,
.header__menu-item[aria-current] span {
  background: #4CAF50 !important;
  color: #ffffff !important;
  padding: 5px 12px !important;
  border-radius: 100px !important;
}

/* ── Icons (search, cart, account) ── */
.header__icon,
.header__icon svg,
.header__icon path {
  color: #ffffff !important;
  stroke: #ffffff !important;
}
.header__icon:hover {
  opacity: .8 !important;
}

/* Cart bubble count */
.cart-count-bubble {
  background: #4CAF50 !important;
  color: #ffffff !important;
}

/* ── Mobile hamburger ── */
.header__icon--menu svg,
.header__icon--menu path {
  stroke: #ffffff !important;
  color: #ffffff !important;
}

/* ── Mobile menu drawer ── */
.menu-drawer {
  background: #1E3A5F !important;
}
.menu-drawer__navigation-item a,
.menu-drawer__menu-item {
  color: #ffffff !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-weight: 600 !important;
  border-color: rgba(255,255,255,.1) !important;
}
.menu-drawer__navigation-item a:hover {
  color: #6EDC82 !important;
}
.menu-drawer__close-button svg,
.menu-drawer__close-button path {
  stroke: #ffffff !important;
}

/* ── Announcement bar (if any) ── */
.announcement-bar {
  background: #4CAF50 !important;
  color: #ffffff !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
}
.announcement-bar__message {
  color: #ffffff !important;
}

/* ── Push content down so it doesn't hide behind fixed header ── */
.shopify-section-group-header-group {
  position: sticky;
  top: 0;
  z-index: 100;
}
.yomb-logo-text {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: #ffffff;
  letter-spacing: -0.5px;
  font-style: normal;
}
.yomb-logo-img {
  height: 36px;
  width: auto;
  display: block;
}
/* Force une seule instance du logo visible */
.header__heading-link ~ .header__heading-link {
  display: none !important;
}

.header__heading ~ .header__heading {
  display: none !important;
}

/* Cache tout texte brut shop name */
.header__heading-link .h2,
.header__heading-link span.h2,
.header__heading span.h2 {
  display: none !important;
}

/* ═══════════════════════════════════════
   HEADER — alignement parfait
═══════════════════════════════════════ */

/* Force le header en flexbox centré */
.header {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 32px !important;
}

/* Logo aligné verticalement */
.header__heading,
.header__heading-link {
  display: flex !important;
  align-items: center !important;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1 !important;
}

/* Nav menu aligné verticalement */
.header__inline-menu {
  display: flex !important;
  align-items: center !important;
  height: 100% !important;
  margin: 0 !important;
}

.header__inline-menu .list-menu {
  display: flex !important;
  align-items: center !important;
  gap: 4px !important;
  height: 100% !important;
}

.header__inline-menu .list-menu__item {
  display: flex !important;
  align-items: center !important;
  height: 100% !important;
}

.header__menu-item {
  display: flex !important;
  align-items: center !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  line-height: 1 !important;
}

/* Icons alignés à droite */
.header__icons {
  display: flex !important;
  align-items: center !important;
  margin-left: auto !important;
  gap: 8px !important;
}

/* ═══════════════════════════════════════
   FEATURED PRODUCTS — desktop grid fix
═══════════════════════════════════════ */

/* Force le wrapper à utiliser toute la largeur */
.yomb-fc-{{ section_id }} {
  width: 100% !important;
  max-width: 100% !important;
}

/* Override Dawn's page-width constraint sur le slider */
.collection .slider-mobile-gutter,
.collection .page-width-desktop {
  max-width: 100% !important;
  padding: 0 !important;
}

/* Grid desktop — 3 colonnes bien dimensionnées */
[id^="collection-"] .yomb-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 20px !important;
  width: 100% !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 0 24px !important;
}

@media (max-width: 749px) {
  [id^="collection-"] .yomb-grid {
    grid-template-columns: 1fr !important;
    padding: 0 16px !important;
  }
}

/* Cards prennent toute la hauteur */
[id^="collection-"] .yomb-grid li {
  width: 100% !important;
}

[id^="collection-"] [class^="yomb-card-"] {
  width: 100% !important;
  height: 100% !important;
}
/* ── MOBILE HEADER FIX (max 989px only) ── */
@media screen and (max-width: 989px) {

  .header {
    display: grid !important;
    grid-template-areas: 'left-icons heading icons' !important;
    grid-template-columns: 1fr auto 1fr !important;
    align-items: center !important;
    padding-top: 12px !important;
    padding-bottom: 12px !important;
  }

  header-drawer {
    grid-area: left-icons !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    margin-left: 0 !important;
  }

  .header__heading {
    grid-area: heading !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .header__heading-link {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .header__icons {
    grid-area: icons !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 4px !important;
  }

  /* Hide nav links on mobile — handled by drawer */
  .header__inline-menu {
    display: none !important;
  }

}
@media screen and (max-width: 989px) {
  .header__icons {
    padding-right: 8px !important;
  }

  .header {
    padding-left: 16px !important;
    padding-right: 16px !important;
    overflow: hidden !important;
  }
}
/* ═══════════════════════════════════════
   PAGE CATALOGUE — Yombnafi style
═══════════════════════════════════════ */

/* Titre de la collection */
.collection__title .title {
  font-family: 'Sora', sans-serif !important;
  font-weight: 800 !important;
  color: #1E3A5F !important;
  font-size: 28px !important;
}

/* Background page */
.template-collection .collection {
  background: #F5F7FA !important;
  padding: 24px 0 !important;
}

/* Grid cards */
.template-collection .card-wrapper {
  background: #ffffff !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  box-shadow: 0 1px 4px rgba(0,0,0,.07) !important;
  transition: transform .25s, box-shadow .25s !important;
}
.template-collection .card-wrapper:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 8px 24px rgba(0,0,0,.10) !important;
}

/* Image card */
.template-collection .card__media {
  aspect-ratio: 1/1 !important;
  overflow: hidden !important;
}
.template-collection .card__media img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform .35s !important;
}
.template-collection .card-wrapper:hover .card__media img {
  transform: scale(1.05) !important;
}

/* Titre produit */
.template-collection .card__heading {
  font-family: 'Sora', sans-serif !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  color: #111827 !important;
  margin-bottom: 6px !important;
}
.template-collection .card__heading a {
  color: #111827 !important;
  text-decoration: none !important;
}

/* Prix */
.template-collection .price__container {
  margin-bottom: 12px !important;
}
.template-collection .price-item--regular,
.template-collection .price-item--sale {
  font-family: 'Sora', sans-serif !important;
  font-weight: 800 !important;
  font-size: 17px !important;
  color: #EF4444 !important;
}
.template-collection .price-item--compare {
  font-size: 13px !important;
  color: #9CA3AF !important;
  text-decoration: line-through !important;
}

/* Badge promo */
.template-collection .badge--sale {
  background: #FEF2F2 !important;
  color: #EF4444 !important;
  border-radius: 100px !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  padding: 3px 8px !important;
  border: none !important;
}

/* Bouton Acheter */
.template-collection .card__cta,
.template-collection .quick-add__submit {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  padding: 12px !important;
  background: #4CAF50 !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  border-radius: 8px !important;
  border: none !important;
  cursor: pointer !important;
  transition: all .2s !important;
  margin-top: 8px !important;
}
.template-collection .card__cta:hover,
.template-collection .quick-add__submit:hover {
  background: #388E3C !important;
  transform: translateY(-1px) !important;
}

/* Filtres */
.template-collection .facets__summary {
  border-radius: 8px !important;
  border-color: #E5E7EB !important;
  font-weight: 600 !important;
  color: #374151 !important;
}

/* Grid 2 colonnes mobile, 3 desktop */
@media (max-width: 749px) {
  .template-collection .product-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
    padding: 0 12px !important;
  }
}
@media (min-width: 750px) {
  .template-collection .product-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 20px !important;
  }
}
/* ── CATALOGUE — cache les prix Dawn et force FCFA ── */
.template-collection .price__container {
  display: none !important;
}

/* ══════════════════════════════
   PAGE CATALOGUE — Yombnafi
══════════════════════════════ */

/* Titre */
.template-collection .collection__title .title {
  font-family: 'Sora', sans-serif !important;
  font-weight: 800 !important;
  color: #1E3A5F !important;
}

/* Background */
.template-collection .collection {
  background: #F5F7FA !important;
}

/* Cards */
.template-collection .card-wrapper {
  background: #ffffff !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  box-shadow: 0 1px 4px rgba(0,0,0,.07) !important;
  transition: transform .25s, box-shadow .25s !important;
}
.template-collection .card-wrapper:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 8px 24px rgba(0,0,0,.10) !important;
}

/* Image */
.template-collection .card__media {
  aspect-ratio: 1/1 !important;
  overflow: hidden !important;
}
.template-collection .card__media img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform .35s !important;
}
.template-collection .card-wrapper:hover .card__media img {
  transform: scale(1.05) !important;
}

/* Nom produit */
.template-collection .card__heading {
  font-family: 'Sora', sans-serif !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  color: #111827 !important;
}
.template-collection .card__heading a {
  color: #111827 !important;
  text-decoration: none !important;
}

/* Prix sale (prix soldé) — en rouge, GRAND */
.template-collection .price-item--sale,
.template-collection .price-item--regular {
  font-family: 'Sora', sans-serif !important;
  font-weight: 800 !important;
  font-size: 17px !important;
  color: #EF4444 !important;
  order: 2 !important;
}

/* Prix barré — PETIT, GRIS, AVANT le prix soldé */
.template-collection .price-item--compare {
  font-size: 12px !important;
  color: #9CA3AF !important;
  text-decoration: line-through !important;
  order: 1 !important;
}

/* Conteneur prix — flex pour ordonner barré AVANT soldé */
.template-collection .price__container {
  display: flex !important;
  align-items: baseline !important;
  gap: 8px !important;
  flex-wrap: wrap !important;
}

/* Badge promo Dawn — cache le badge bleu "Promotion" */
.template-collection .badge--sale {
  display: none !important;
}

/* Grid mobile 1 col, desktop 3 cols */
@media (max-width: 749px) {
  .template-collection .product-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    padding: 0 16px !important;
  }
}
@media (min-width: 750px) {
  .template-collection .product-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 20px !important;
  }
}
.yomb-cat-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  margin: 6px 0 10px;
}
.yomb-cat-price {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 17px;
  color: #EF4444;
}
.yomb-cat-compare {
  font-size: 12px;
  color: #9CA3AF;
  text-decoration: line-through;
}

/* Cache le prix Dawn pour éviter le doublon */
.template-collection .price {
  display: none !important;
}