/* =====================================================
   COCKTAIL FACILE — main.css v2
   Police: Plus Jakarta Sans | Orange #FF6A00
   ===================================================== */

/* ── VARIABLES ──────────────────────────────────────── */
:root {
  --cf-orange:      #FF6A00;
  --cf-orange-dark: #D95800;
  --cf-sable:       #F5E6D0;
  --cf-sable-dark:  #E8D5C0;
  --cf-dark:        #1C1208;
  --cf-grey:        #9A8A78;
  --cf-blanc:       #FFFFFF;
  --r-card:         12px;
  --r-pill:         50px;
  --shadow:         0 2px 12px rgba(28,18,8,.07);
  --shadow-md:      0 4px 24px rgba(28,18,8,.12);
  --shadow-lg:      0 8px 40px rgba(28,18,8,.18);
  --header-h:       72px;
  --transition:     .2s ease;
}

/* ── RESET ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--cf-dark);
  background: var(--cf-blanc);
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul, ol { list-style: none; padding: 0; margin: 0; }
button { cursor: pointer; font-family: inherit; border: none; background: none; padding: 0; }
input, select, textarea { font-family: inherit; }

/* ── TYPOGRAPHIE ────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 800;
  color: var(--cf-dark);
  line-height: 1.1;
}
h1 { font-size: clamp(32px, 5vw, 52px); letter-spacing: -1px; }
h2 { font-size: clamp(24px, 3vw, 36px); letter-spacing: -0.5px; }
h3 { font-size: clamp(18px, 2vw, 24px); }
h4 { font-size: 18px; }
em, i { font-style: italic; color: var(--cf-orange); }
p { line-height: 1.7; }

/* ── LAYOUT ─────────────────────────────────────────── */
/* .container ET .cf-container — identiques */
.container,
.cf-container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* ── SECTIONS ───────────────────────────────────────── */
.cf-section { padding: 80px 0; }
.cf-section--white   { background: var(--cf-blanc); }
.cf-section--sable   { background: var(--cf-sable); }
.cf-section--dark    { background: var(--cf-dark); color: var(--cf-blanc); }
.cf-section--compact { padding: 48px 0; }

.cf-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.cf-section-title {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  color: var(--cf-dark);
  letter-spacing: -0.3px;
}
.cf-section--dark .cf-section-title { color: var(--cf-blanc); }
.cf-section-title em { color: var(--cf-orange); font-style: italic; }
.cf-section-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--cf-grey);
  white-space: nowrap;
  transition: color var(--transition);
}
.cf-section-link:hover { color: var(--cf-orange); }
.cf-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cf-orange);
  margin-bottom: 6px;
  display: block;
}
.cf-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cf-orange);
  display: inline-block;
  margin-bottom: 8px;
}

/* ── HEADER ─────────────────────────────────────────── */
.cf-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  background: var(--cf-blanc);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.cf-header.scrolled {
  border-color: var(--cf-sable-dark);
  box-shadow: var(--shadow);
}
.cf-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Logo */
.cf-logo {
  font-size: 20px;
  font-weight: 800;
  color: var(--cf-dark);
  text-decoration: none;
  flex-shrink: 0;
  letter-spacing: -0.3px;
  display: flex;
  align-items: center;
  gap: 2px;
}
.cf-logo em {
  color: var(--cf-orange);
  font-style: italic;
}

/* Nav — cible la structure WordPress wp_nav_menu */
.cf-nav {
  flex: 1;
}
.cf-nav__list {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.cf-nav__list > li > a {
  display: block;
  padding: 8px 13px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--cf-dark);
  text-decoration: none;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.cf-nav__list > li > a:hover,
.cf-nav__list > li.current-menu-item > a,
.cf-nav__list > li.current_page_item > a {
  color: var(--cf-orange);
  background: rgba(255,106,0,.06);
}

/* Actions header */
.cf-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  flex-shrink: 0;
}
.cf-header__link {
  font-size: 13px;
  font-weight: 600;
  color: var(--cf-dark);
  white-space: nowrap;
  transition: color var(--transition);
}
.cf-header__link:hover { color: var(--cf-orange); }

/* Bouton RECHERCHER */
.cf-header__search-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--cf-orange);
  color: var(--cf-blanc);
  border: none;
  border-radius: var(--r-pill);
  padding: 9px 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition);
  white-space: nowrap;
}
.cf-header__search-btn:hover { background: var(--cf-orange-dark); }
.cf-header__search-btn svg { flex-shrink: 0; }

/* Barre de recherche */
.cf-search-bar {
  background: var(--cf-blanc);
  border-bottom: 1px solid var(--cf-sable-dark);
  padding: 12px 0;
}
.cf-search-bar .container,
.cf-search-bar > .container {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cf-search-bar form {
  display: flex;
  flex: 1;
  gap: 8px;
  align-items: center;
}
.cf-search-bar input[type="search"] {
  flex: 1;
  padding: 10px 18px;
  border: 1.5px solid var(--cf-sable-dark);
  border-radius: var(--r-pill);
  font-size: 15px;
  color: var(--cf-dark);
  outline: none;
  transition: border-color var(--transition);
}
.cf-search-bar input:focus { border-color: var(--cf-orange); }
.cf-search-bar button[type="submit"] {
  background: var(--cf-orange);
  color: #fff;
  border-radius: var(--r-pill);
  padding: 10px 20px;
  font-weight: 700;
  font-size: 15px;
}
.cf-search-close {
  background: none;
  border: none;
  font-size: 20px;
  color: var(--cf-grey);
  cursor: pointer;
  padding: 4px 8px;
  transition: color var(--transition);
}
.cf-search-close:hover { color: var(--cf-dark); }

/* Burger mobile */
.cf-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: 8px;
  flex-shrink: 0;
}
.cf-burger span {
  display: block;
  height: 2px;
  background: var(--cf-dark);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.cf-burger.is-active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.cf-burger.is-active span:nth-child(2) { opacity: 0; }
.cf-burger.is-active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── BOUTONS ─────────────────────────────────────────── */
.cf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--r-pill);
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 28px;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  border: 2px solid transparent;
  white-space: nowrap;
  line-height: 1;
}
.cf-btn--primary {
  background: var(--cf-orange);
  color: var(--cf-blanc);
  border-color: var(--cf-orange);
}
.cf-btn--primary:hover {
  background: var(--cf-orange-dark);
  border-color: var(--cf-orange-dark);
  color: var(--cf-blanc);
}
.cf-btn--outline {
  background: transparent;
  color: var(--cf-orange);
  border-color: var(--cf-orange);
}
.cf-btn--outline:hover {
  background: var(--cf-orange);
  color: var(--cf-blanc);
}
.cf-btn--neutral {
  background: var(--cf-sable);
  color: var(--cf-dark);
  border-color: var(--cf-sable-dark);
}
.cf-btn--neutral:hover {
  background: var(--cf-sable-dark);
}
.cf-btn--ghost {
  background: transparent;
  color: var(--cf-blanc);
  border-color: rgba(255,255,255,.3);
}
.cf-btn--ghost:hover {
  background: rgba(255,255,255,.1);
}
.cf-btn--white {
  background: var(--cf-blanc);
  color: var(--cf-orange);
  border-color: var(--cf-blanc);
}
.cf-btn--white:hover {
  background: rgba(255,255,255,.9);
}
.cf-btn--lg { padding: 16px 36px; font-size: 16px; }
.cf-btn--sm { padding: 8px 18px; font-size: 12px; }

/* ── HERO HOMEPAGE ──────────────────────────────────── */
.cf-hero {
  background: var(--cf-sable);
  padding: 80px 0;
  overflow: hidden;
  position: relative;
}
/* Polka dot subtil */
.cf-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--cf-orange) 1.5px, transparent 1.5px);
  background-size: 40px 40px;
  opacity: .04;
  pointer-events: none;
}
.cf-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
}
.cf-hero__content { display: flex; flex-direction: column; }
.cf-hero__title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.08;
  color: var(--cf-dark);
  margin-bottom: 20px;
}
.cf-hero__title em {
  color: var(--cf-orange);
  font-style: italic;
}
.cf-hero__desc {
  font-size: 17px;
  color: var(--cf-grey);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 440px;
}
.cf-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.cf-hero__stats {
  display: flex;
  gap: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--cf-sable-dark);
}
.cf-hero__stat strong {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: var(--cf-dark);
  line-height: 1.2;
}
.cf-hero__stat span {
  font-size: 12px;
  color: var(--cf-grey);
}
/* Visuel hero */
.cf-hero__visual { position: relative; }
.cf-hero__img {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}
.cf-hero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cf-hero__badge {
  position: absolute;
  bottom: -12px;
  left: 20px;
  right: 20px;
  background: var(--cf-dark);
  color: var(--cf-blanc);
  padding: 14px 20px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: var(--shadow-md);
}
.cf-hero__badge span { font-size: 12px; color: var(--cf-grey); flex-shrink: 0; }
.cf-hero__badge-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--cf-blanc);
  flex: 1;
}

/* ── MOODS GRID ─────────────────────────────────────── */
.cf-moods-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.cf-mood-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--cf-blanc);
  border: 1px solid rgba(28,18,8,.07);
  border-radius: var(--r-card);
  padding: 28px 16px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  box-shadow: var(--shadow);
}
.cf-mood-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255,106,0,.2);
}
.cf-mood-card__emoji {
  font-size: 32px;
  margin-bottom: 10px;
  display: block;
  line-height: 1;
}
.cf-mood-card__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--cf-dark);
  margin-bottom: 4px;
}
.cf-mood-card__desc {
  font-size: 12px;
  color: var(--cf-grey);
  line-height: 1.4;
}

/* ── CARDS RECETTES ─────────────────────────────────── */
.cf-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cf-card {
  display: flex;
  flex-direction: column;
  background: var(--cf-blanc);
  border: 1px solid rgba(28,18,8,.07);
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  color: inherit;
}
.cf-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
/* Image */
.cf-card__image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--cf-sable);
  display: block;
}
.cf-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
  display: block;
}
.cf-card:hover .cf-card__image img { transform: scale(1.04); }
/* Badge mood (overlay) */
.cf-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--cf-orange);
  color: var(--cf-blanc);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  z-index: 2;
}
/* Badge difficulté (overlay bas droite) */
.cf-card__badge--diff {
  position: absolute;
  bottom: 10px;
  right: 10px;
  top: auto;
  left: auto;
  background: rgba(28,18,8,.72);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: var(--r-pill);
}
/* Corps */
.cf-card__body {
  padding: 16px 18px 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cf-card__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cf-grey);
}
.cf-card__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--cf-dark);
  line-height: 1.3;
  margin: 0;
}
.cf-card__title a {
  color: var(--cf-dark);
  text-decoration: none;
  transition: color var(--transition);
}
.cf-card__title a:hover { color: var(--cf-orange); }
.cf-card__meta {
  display: flex;
  gap: 12px;
  font-size: 12px;
  color: var(--cf-grey);
  align-items: center;
  flex-wrap: wrap;
  margin-top: auto;
}
.cf-card__meta-item {
  display: flex;
  align-items: center;
  gap: 4px;
}
.cf-card__meta-item svg { width: 12px; height: 12px; }
.cf-card__rating {
  color: var(--cf-orange);
  font-weight: 700;
  margin-left: auto;
}
/* Footer carte */
.cf-card__footer {
  padding: 10px 18px 14px;
  border-top: 1px solid rgba(28,18,8,.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.cf-card__author {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--cf-grey);
  min-width: 0;
}
.cf-card__author-name { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cf-card__avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--cf-sable-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--cf-grey);
}
/* Bouton wishlist */
.cf-btn-wishlist {
  background: none;
  border: none;
  color: var(--cf-grey);
  cursor: pointer;
  padding: 4px;
  transition: color var(--transition), transform var(--transition);
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.cf-btn-wishlist:hover,
.cf-btn-wishlist.is-active { color: var(--cf-orange); }
.cf-btn-wishlist.is-active { transform: scale(1.1); }

/* ── BARMANS ────────────────────────────────────────── */
.cf-barmans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.cf-barman-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-card);
  padding: 28px 20px;
  text-align: center;
  text-decoration: none;
  transition: all var(--transition);
}
.cf-barman-card:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,106,0,.3);
}
.cf-barman-card__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,.2);
  margin-bottom: 4px;
}
.cf-barman-card__avatar--placeholder {
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}
.cf-barman-card__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--cf-blanc);
  margin: 0;
}
.cf-barman-card__spec {
  font-size: 12px;
  color: rgba(255,255,255,.45);
  line-height: 1.4;
}
.cf-barman-card__count {
  font-size: 13px;
  color: var(--cf-orange);
  font-weight: 600;
  margin-bottom: 4px;
}

/* ── CTA SECTION ────────────────────────────────────── */
.cf-cta-section {
  background: var(--cf-orange);
  padding: 64px 0;
}
.cf-cta-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.cf-cta-section__title {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  color: var(--cf-blanc);
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}
.cf-cta-section__title em {
  color: rgba(255,255,255,.8);
  font-style: italic;
}
.cf-cta-section__desc {
  font-size: 15px;
  color: rgba(255,255,255,.8);
  line-height: 1.6;
}
.cf-cta-section__form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cf-cta-section__form input[type="email"] {
  width: 100%;
  padding: 14px 20px;
  border-radius: var(--r-pill);
  border: none;
  font-size: 14px;
  color: var(--cf-dark);
  outline: none;
}

/* ── STATS BAR ──────────────────────────────────────── */
.cf-stats-bar {
  background: var(--cf-dark);
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.cf-stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  align-items: center;
}
.cf-stats-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cf-stats-item__icon {
  font-size: 24px;
  flex-shrink: 0;
  line-height: 1;
}
.cf-stats-item__value {
  font-size: 15px;
  font-weight: 700;
  color: var(--cf-blanc);
  line-height: 1.2;
  display: block;
}
.cf-stats-item__label {
  font-size: 11px;
  color: rgba(255,255,255,.4);
  line-height: 1.3;
  display: block;
}

/* ── FOOTER ─────────────────────────────────────────── */
.cf-footer {
  background: var(--cf-dark);
  color: rgba(255,255,255,.7);
  padding: 56px 0 32px;
}
.cf-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 0;
}
.cf-footer__logo {
  font-size: 20px;
  font-weight: 800;
  color: var(--cf-blanc);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 12px;
}
.cf-footer__logo em { color: var(--cf-orange); font-style: italic; }
.cf-footer__desc {
  font-size: 13px;
  color: rgba(255,255,255,.4);
  line-height: 1.7;
  margin-bottom: 16px;
}
.cf-footer__moods {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}
.cf-footer__mood-pill {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.45);
  text-decoration: none;
  transition: all var(--transition);
}
.cf-footer__mood-pill:hover {
  background: rgba(255,106,0,.2);
  color: var(--cf-orange);
}
.cf-footer__social {
  display: flex;
  gap: 14px;
}
.cf-footer__social a {
  color: rgba(255,255,255,.35);
  transition: color var(--transition);
  display: flex;
  align-items: center;
}
.cf-footer__social a:hover { color: var(--cf-orange); }
.cf-footer__col h5 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cf-blanc);
  margin-bottom: 16px;
}
.cf-footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  padding: 0;
}
.cf-footer__col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  text-decoration: none;
  transition: color var(--transition);
}
.cf-footer__col ul li a:hover { color: var(--cf-orange); }
.cf-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 24px;
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,.07);
  font-size: 12px;
  color: rgba(255,255,255,.3);
}

/* ── BREADCRUMB ─────────────────────────────────────── */
.cf-breadcrumb {
  font-size: 12px;
  color: var(--cf-grey);
  padding: 12px 0;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.cf-breadcrumb a { color: var(--cf-grey); transition: color var(--transition); }
.cf-breadcrumb a:hover { color: var(--cf-orange); }
.cf-breadcrumb__sep { color: var(--cf-sable-dark); }
.cf-breadcrumb__current { color: var(--cf-dark); font-weight: 500; }

/* ── PILLS / TAGS ───────────────────────────────────── */
.cf-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 14px;
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition);
  border: 1.5px solid transparent;
  cursor: pointer;
}
.cf-pill--mood {
  background: rgba(255,106,0,.08);
  color: var(--cf-orange);
  border-color: rgba(255,106,0,.2);
}
.cf-pill--mood:hover,
.cf-pill--mood.active {
  background: var(--cf-orange);
  color: var(--cf-blanc);
  border-color: var(--cf-orange);
}
.cf-pill--neutral {
  background: var(--cf-sable);
  color: var(--cf-dark);
  border-color: var(--cf-sable-dark);
}
.cf-pill--neutral:hover {
  background: var(--cf-sable-dark);
}

/* ── NO RESULTS ─────────────────────────────────────── */
.cf-no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 64px 20px;
  color: var(--cf-grey);
  font-size: 15px;
}

/* ── TOAST ──────────────────────────────────────────── */
.cf-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cf-dark);
  color: var(--cf-blanc);
  padding: 12px 24px;
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 500;
  z-index: 9999;
  box-shadow: var(--shadow-lg);
  transition: opacity .25s;
  white-space: nowrap;
}

/* ── FORMULAIRES ────────────────────────────────────── */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="search"],
select,
textarea {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  border: 1.5px solid var(--cf-sable-dark);
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 14px;
  color: var(--cf-dark);
  background: var(--cf-blanc);
  transition: border-color var(--transition);
  outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--cf-orange);
  box-shadow: 0 0 0 3px rgba(255,106,0,.1);
}

/* ── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .cf-moods-grid         { grid-template-columns: repeat(3, 1fr); }
  .cf-cards-grid         { grid-template-columns: repeat(2, 1fr); }
  .cf-barmans-grid       { grid-template-columns: repeat(2, 1fr); }
  .cf-footer__grid       { grid-template-columns: repeat(2, 1fr); }
  .cf-stats-bar__grid    { grid-template-columns: repeat(3, 1fr); }
  .cf-cta-section__grid  { grid-template-columns: 1fr; gap: 32px; }
  .cf-hero__grid         { grid-template-columns: 1fr; gap: 40px; }
  .cf-hero__visual       { max-width: 480px; margin: 0 auto; }
}

@media (max-width: 768px) {
  /* Burger visible, nav cachée */
  .cf-burger          { display: flex; }
  .cf-nav__list       { display: none; flex-direction: column; align-items: stretch; }
  .cf-nav__list.is-open { display: flex; position: fixed; top: var(--header-h); left: 0; right: 0; background: var(--cf-blanc); padding: 16px; border-bottom: 1px solid var(--cf-sable-dark); box-shadow: var(--shadow-md); z-index: 999; }
  .cf-nav__list > li > a { padding: 12px 16px; border-radius: 8px; font-size: 14px; }
  /* Cacher le label "Rechercher" sur le bouton */
  .cf-header__search-btn span { display: none; }
  .cf-header__search-btn { padding: 9px 12px; }
  /* Grilles */
  .cf-moods-grid      { grid-template-columns: repeat(2, 1fr); }
  .cf-cards-grid      { grid-template-columns: repeat(2, 1fr); }
  .cf-barmans-grid    { grid-template-columns: repeat(2, 1fr); }
  .cf-stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .cf-footer__grid    { grid-template-columns: 1fr 1fr; gap: 32px; }
  /* Hero */
  .cf-hero { padding: 56px 0; }
  .cf-hero__title { font-size: clamp(28px, 6vw, 38px); }
}

@media (max-width: 480px) {
  .cf-cards-grid      { grid-template-columns: 1fr; }
  .cf-moods-grid      { grid-template-columns: repeat(2, 1fr); }
  .cf-stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .cf-footer__grid    { grid-template-columns: 1fr; }
  .cf-barmans-grid    { grid-template-columns: 1fr; }
}
