﻿/* =========================================================
   COOKARIUM — cookarium.css
   Version : 1.0.0
   ========================================================= */

/* ── Variables ─────────────────────────────────────────── */
:root {
  --ck-bg:       #FAFAF8;
  --ck-white:    #ffffff;
  --ck-topbar:   #1a1a1a;
  --ck-dark:     #1a1a1a;
  --ck-orange:   #FF6B35;
  --ck-gold:     #FFB800;
  --ck-teal:     #2EC4B6;
  --ck-muted:    #888888;
  --ck-border:   #e8e8e0;
  --ck-serif:    Georgia, 'Times New Roman', serif;
  --ck-sans:     -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --ck-header-h: 64px;
  --ck-max:      1200px;
  --ck-r:        8px;
  --ck-t:        0.2s ease;
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 17px; }
body {
  font-family: var(--ck-sans);
  background: var(--ck-bg);
  color: var(--ck-dark);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible {
  outline: 2px solid var(--ck-orange);
  outline-offset: 2px;
}
img { max-width: 100%; display: block; height: auto; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ── Container ─────────────────────────────────────────── */
.ck-container {
  max-width: var(--ck-max);
  margin: 0 auto;
  padding: 0 20px;
}
.ck-container--wide { max-width: 100%; padding: 0; }

/* ── Topbar ─────────────────────────────────────────────── */
.ck-topbar {
  background: var(--ck-topbar);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  position: relative;
  z-index: 600;
}
.ck-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 42px;
  gap: 12px;
  overflow: hidden;
}
.ck-topbar-features {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-shrink: 0;
}
.ck-topbar-feature {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  color: rgba(255,255,255,0.9);
}
.ck-topbar-feature svg { width: 14px; height: 14px; flex-shrink: 0; color: var(--ck-gold); }

/* Note étoiles dans la topbar */
.ck-topbar-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  white-space: nowrap;
}
.ck-topbar-stars {
  color: var(--ck-gold);
  font-size: 15px;
  letter-spacing: 1px;
  line-height: 1;
}
.ck-topbar-rating-text {
  font-size: 12.5px;
  color: rgba(255,255,255,0.75);
}
.ck-topbar-rating-text strong { color: #fff; font-weight: 700; }

/* ── Sélecteur de langue — topbar desktop ───────────────── */
.ck-topbar-lang {
  display: flex;
  align-items: center;
  gap: 3px;
  flex-shrink: 0;
  margin-left: 4px;
}
.ck-topbar-lang ul,
.ck-topbar-lang .pll-parent-menu-item {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  gap: 3px !important;
  align-items: center !important;
}
.ck-topbar-lang li { list-style: none !important; }
.ck-topbar-lang a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 18px;
  border-radius: 3px;
  overflow: hidden;
  border: 1.5px solid rgba(255,255,255,0.2);
  transition: border-color 0.2s, opacity 0.2s;
  opacity: 0.6;
}
.ck-topbar-lang a:hover { opacity: 1; border-color: rgba(255,255,255,0.6); }
.ck-topbar-lang .current-lang a { opacity: 1; border-color: var(--ck-gold); }
.ck-topbar-lang img,
.ck-topbar-lang svg { width: 100%; height: 100%; display: block; }
/* Drapeaux SVG inline dans les dropdowns langue */
.ck-lang-compact-btn svg:not(.ck-chevron),
.ck-lang-compact-list a svg,
.ck-custom-select-btn svg:not([viewBox="0 0 24 24"]),
.ck-custom-select-list a svg,
.ck-footer-lang svg { width: 22px; height: 15px; flex-shrink: 0; border-radius: 2px; display: block; }

.ck-topbar-account {
  flex-shrink: 0;
  white-space: nowrap;
}
.ck-topbar-account a {
  color: var(--ck-gold);
  font-weight: 600;
  transition: opacity var(--ck-t);
}
.ck-topbar-account a:hover { opacity: 0.7; }

/* ── Header principal ───────────────────────────────────── */
.ck-header {
  background: var(--ck-white);
  position: sticky;
  top: 0;
  z-index: 500;
  border-bottom: 1px solid var(--ck-border);
  transition: box-shadow var(--ck-t);
}
.ck-header.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.08); }
.ck-header-inner {
  display: flex;
  align-items: center;
  height: var(--ck-header-h);
  gap: 16px;
}
.ck-header-left { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

/* Logo */
.ck-logo-link {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.ck-logo-text {
  font-family: var(--ck-serif);
  font-size: 25px;
  font-weight: 700;
  color: var(--ck-dark);
  letter-spacing: -0.02em;
}
.ck-logo-text span { color: var(--ck-orange); }
.ck-logo-sub {
  font-size: 11px;
  color: var(--ck-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* Hamburger */
.ck-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  border-radius: 4px;
  transition: background var(--ck-t);
}
.ck-hamburger:hover { background: #f0f0ec; }
.ck-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ck-dark);
  border-radius: 2px;
  transition: all var(--ck-t);
}

/* Barre de recherche centrale */
.ck-header-center { flex: 1; }
.ck-search-form {
  display: flex;
  align-items: center;
  background: #f4f4f0;
  border: 1px solid transparent;
  border-radius: 24px;
  padding: 0 16px;
  height: 42px;
  gap: 8px;
  transition: border-color var(--ck-t), background var(--ck-t);
}
.ck-search-form:focus-within {
  background: var(--ck-white);
  border-color: var(--ck-orange);
}
.ck-search-form input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 15px;
  color: var(--ck-dark);
  outline: none;
}
.ck-search-form input::placeholder { color: var(--ck-muted); }
.ck-search-submit {
  background: none;
  border: none;
  padding: 0;
  color: var(--ck-muted);
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: color var(--ck-t);
}
.ck-search-submit:hover { color: var(--ck-orange); }
.ck-search-submit svg { width: 18px; height: 18px; }

/* Icônes droite */
.ck-header-right { display: flex; align-items: center; gap: 4px; flex-shrink: 0; }
.ck-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--ck-dark);
  position: relative;
  transition: background var(--ck-t), color var(--ck-t);
}
.ck-icon-btn:hover { background: #f0f0ec; color: var(--ck-orange); }
.ck-icon-btn svg { width: 22px; height: 22px; }

/* Badge panier */
.ck-cart-count {
  position: absolute;
  top: 2px;
  right: 2px;
  background: var(--ck-orange);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  min-width: 17px;
  height: 17px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  line-height: 1;
}

/* ── Navigation desktop ─────────────────────────────────── */
.ck-nav-wrap {
  background: var(--ck-white);
  border-bottom: 1px solid var(--ck-border);
}
.ck-nav {
  display: flex;
  align-items: center;
  height: 44px;
  gap: 0;
}
.ck-nav > li { position: relative; }
.ck-nav > li > a {
  display: block;
  padding: 0 15px;
  height: 44px;
  line-height: 44px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ck-dark);
  white-space: nowrap;
  transition: color var(--ck-t);
  border-bottom: 2px solid transparent;
}
.ck-nav > li > a:hover,
.ck-nav > li > a.active {
  color: var(--ck-orange);
  border-bottom-color: var(--ck-orange);
}

/* Mega-menu */
.ck-mega-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: -16px;
  background: var(--ck-white);
  border: 1px solid var(--ck-border);
  border-radius: 0 0 var(--ck-r) var(--ck-r);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  padding: 20px;
  min-width: 220px;
  z-index: 400;
}
.ck-nav > li:hover .ck-mega-menu { display: block; }
.ck-mega-menu a {
  display: block;
  padding: 8px 12px;
  font-size: 14px;
  border-radius: 4px;
  transition: background var(--ck-t), color var(--ck-t);
}
.ck-mega-menu a:hover { background: #fff5f1; color: var(--ck-orange); }

/* ── Drawer mobile ─────────────────────────────────────── */
.ck-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: min(320px, 85vw);
  height: 100dvh;
  background: var(--ck-white);
  z-index: 700;
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  padding: 16px 0 32px;
  display: flex;
  flex-direction: column;
}
.ck-drawer.open { transform: translateX(0); }
.ck-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px 16px;
  border-bottom: 1px solid var(--ck-border);
  margin-bottom: 8px;
}
.ck-drawer-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background var(--ck-t);
  font-size: 20px;
  color: var(--ck-dark);
}
.ck-drawer-close:hover { background: #f0f0ec; }
.ck-drawer-nav a {
  display: block;
  padding: 13px 20px;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid #f0f0ec;
  transition: color var(--ck-t);
}
.ck-drawer-nav a:hover { color: var(--ck-orange); }
.ck-drawer-search {
  padding: 12px 20px;
  border-bottom: 1px solid var(--ck-border);
}
.ck-drawer-search .ck-search-form {
  width: 100%;
  background: #f5f5f0;
}

/* (drawer-lang moved to ck-drawer-lang-select / ck-custom-select) */

.ck-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 699;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.ck-overlay.active { opacity: 1; pointer-events: all; }

/* ── Hero Slider v2 ─────────────────────────────────────── */
.ck-hero--v2 {
  position: relative;
  width: 100%;
  height: 540px;
  overflow: hidden;
  background: #0f1923;
}
.ck-hero-slides { position: relative; width: 100%; height: 100%; }
.ck-hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  pointer-events: none;
  overflow: hidden;
}
.ck-hero-slide.active  { opacity: 1; transform: translateX(0); pointer-events: all; }
.ck-hero-slide.leaving { opacity: 0; transform: translateX(-30px); }

/* Fond décoratif commun */
.ck-hs-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.ck-hs-bg--welcome { background: linear-gradient(135deg, #0f1923 0%, #1c1033 60%, #2a1020 100%); }
.ck-hs-bg--delivery { background: linear-gradient(135deg, #051a15 0%, #0b2e24 50%, #082030 100%); }
.ck-hs-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 50px 50px;
}
.ck-hs-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.35;
}
.ck-hs-blob--1  { width: 400px; height: 400px; background: #FF6B35; top: -100px; right: 15%; }
.ck-hs-blob--2  { width: 300px; height: 300px; background: #FFB800; bottom: -80px; right: 30%; }
.ck-hs-blob--d1 { width: 380px; height: 380px; background: #2EC4B6; top: -80px; right: 10%; }
.ck-hs-blob--d2 { width: 250px; height: 250px; background: #00e5c0; bottom: -60px; left: 30%; opacity: 0.2; }
.ck-hs-blob--p  { width: 350px; height: 350px; background: #FF6B35; bottom: -60px; right: 5%; opacity: 0.25; }

/* Layout interne */
.ck-hs-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  width: 100%;
  max-width: var(--ck-max);
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  gap: 40px;
}

/* Contenu texte */
.ck-hs-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.ck-hs-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,107,53,0.18);
  border: 1px solid rgba(255,107,53,0.4);
  color: #FF6B35;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  width: fit-content;
  margin-bottom: 18px;
  animation: ck-fade-up 0.5s 0.05s both;
}
.ck-hs-label svg { width: 13px; height: 13px; }
.ck-hs-label--teal {
  background: rgba(46,196,182,0.15);
  border-color: rgba(46,196,182,0.4);
  color: #2EC4B6;
}
.ck-hs-title {
  font-family: var(--ck-serif);
  font-size: clamp(26px, 3.2vw, 48px);
  font-weight: 700;
  color: #fff;
  line-height: 1.18;
  margin-bottom: 14px;
  animation: ck-fade-up 0.5s 0.12s both;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ck-hs-sub {
  font-size: clamp(14px, 1.6vw, 17px);
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  margin-bottom: 22px;
  animation: ck-fade-up 0.5s 0.2s both;
}

/* Code promo */
.ck-hs-code-block {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  animation: ck-fade-up 0.5s 0.25s both;
}
.ck-hs-code-label {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}
.ck-hs-code {
  background: rgba(255,255,255,0.08);
  border: 1.5px dashed rgba(255,107,53,0.7);
  color: #fff;
  font-family: 'Courier New', monospace;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.18em;
  padding: 7px 18px;
  border-radius: 8px;
  position: relative;
}
.ck-hs-code::after {
  content: "✓ Copié !";
  display: none;
}

/* Perks livraison */
.ck-hs-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  animation: ck-fade-up 0.5s 0.22s both;
}
.ck-hs-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}
.ck-hs-perks svg {
  width: 18px;
  height: 18px;
  color: #2EC4B6;
  flex-shrink: 0;
}

/* Rating hero */
.ck-hs-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  animation: ck-fade-up 0.5s 0.18s both;
}
.ck-hs-rating .ck-star { font-size: 17px; }
.ck-hs-rating span { font-size: 13px; color: rgba(255,255,255,0.6); font-weight: 500; }

/* Prix produit */
.ck-hs-price {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 26px;
  animation: ck-fade-up 0.5s 0.22s both;
}
.ck-hs-price .woocommerce-Price-amount,
.ck-hs-price .amount { font-size: 34px !important; font-weight: 700 !important; color: #fff !important; }
.ck-hs-price del .amount { font-size: 18px !important; color: rgba(255,255,255,0.4) !important; font-weight: 400 !important; }
.ck-hs-price ins { text-decoration: none !important; }
.ck-hs-sale-badge {
  background: var(--ck-orange);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
}

/* CTA buttons */
.ck-hs-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  animation: ck-fade-up 0.5s 0.3s both;
}
.ck-hs-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  transition: all 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}
.ck-hs-btn svg { width: 16px; height: 16px; transition: transform 0.2s; }
.ck-hs-btn:hover svg { transform: translateX(3px); }
.ck-hs-btn--primary {
  background: var(--ck-orange);
  color: #fff;
  box-shadow: 0 4px 16px rgba(255,107,53,0.45);
}
.ck-hs-btn--primary:hover { background: #e55a25; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(255,107,53,0.5); }
.ck-hs-btn--teal {
  background: #2EC4B6;
  color: #fff;
  box-shadow: 0 4px 16px rgba(46,196,182,0.4);
}
.ck-hs-btn--teal:hover { background: #24a89b; transform: translateY(-2px); }
.ck-hs-btn--ghost {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.2);
}
.ck-hs-btn--ghost:hover { background: rgba(255,255,255,0.15); color: #fff; }

/* Countdown label */
.ck-hs-label-cd {
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  background: rgba(255,255,255,0.15);
  padding: 1px 7px;
  border-radius: 4px;
  font-size: 12px;
}

/* ── Visuel WELCOME ─────────────────────────────────────── */
.ck-hs-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: relative;
}
.ck-hs-visual--welcome {
  flex-direction: column;
  gap: 24px;
}
.ck-hs-badge-big {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #FF6B35, #c94a14);
  box-shadow: 0 0 0 12px rgba(255,107,53,0.12), 0 0 0 28px rgba(255,107,53,0.06), 0 20px 60px rgba(255,107,53,0.4);
  position: relative;
  z-index: 2;
  animation: ck-badge-float 3s ease-in-out infinite;
}
@keyframes ck-badge-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.ck-hs-badge-pct {
  font-family: var(--ck-serif);
  font-size: 52px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}
.ck-hs-badge-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  text-align: center;
  line-height: 1.35;
  gap: 1px;
}
.ck-hs-circles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.ck-hs-circle {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.08);
}
.ck-hs-circle--1 { width: 280px; height: 280px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.ck-hs-circle--2 { width: 360px; height: 360px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.ck-hs-circle--3 { width: 440px; height: 440px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.ck-hs-circle--t1 { width: 300px; height: 300px; top: 50%; left: 50%; transform: translate(-50%, -50%); border-color: rgba(46,196,182,0.1); }
.ck-hs-circle--t2 { width: 420px; height: 420px; top: 50%; left: 50%; transform: translate(-50%, -50%); border-color: rgba(46,196,182,0.06); }
.ck-hs-welcome-icons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 2;
}
.ck-hs-wi {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 9px 14px;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  backdrop-filter: blur(4px);
}
.ck-hs-wi svg { width: 16px; height: 16px; color: #FF6B35; stroke: #FF6B35; flex-shrink: 0; }

/* ── Visuel LIVRAISON ───────────────────────────────────── */
.ck-hs-visual--delivery { flex-direction: column; gap: 20px; }
.ck-hs-truck-wrap { position: relative; z-index: 2; text-align: center; }
.ck-hs-truck-svg { width: 240px; height: auto; filter: drop-shadow(0 10px 30px rgba(46,196,182,0.3)); animation: ck-badge-float 3.5s ease-in-out infinite; }
.ck-hs-delivery-badge {
  display: inline-block;
  background: #2EC4B6;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 7px 20px;
  border-radius: 20px;
  margin-top: 16px;
  box-shadow: 0 4px 16px rgba(46,196,182,0.4);
}
.ck-hs-delivery-stars {
  font-size: 22px;
  color: #FFB800;
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.ck-hs-delivery-stars span { font-size: 13px; color: rgba(255,255,255,0.6); font-weight: 500; }

/* ── Visuel PRODUIT ─────────────────────────────────────── */
.ck-hs-visual--product { position: relative; }
.ck-hs-product-img-wrap {
  position: relative;
  width: 100%;
  max-width: 420px;
  height: 460px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.ck-hs-product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 24px 50px rgba(0,0,0,0.55));
  display: block;
}
.ck-hero-slide--product.active .ck-hs-product-img-wrap img {
  animation: ck-hero-img-in 0.65s 0.1s both;
}
@keyframes ck-hero-img-in {
  from { opacity: 0; transform: translateY(24px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.ck-hs-product-glow {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 80px;
  background: radial-gradient(ellipse, rgba(255,107,53,0.22) 0%, transparent 70%);
  pointer-events: none;
}
.ck-hs-product-sale-tag {
  position: absolute;
  top: 16px;
  right: 0;
  background: var(--ck-orange);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(255,107,53,0.5);
  animation: ck-pulse 2s infinite;
}

/* Flèches hero */
.ck-hero-prev, .ck-hero-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.2s ease;
  z-index: 10;
}
.ck-hero-prev:hover, .ck-hero-next:hover { background: rgba(255,255,255,0.22); border-color: rgba(255,255,255,0.3); }
.ck-hero-prev { left: 20px; }
.ck-hero-next { right: 20px; }
.ck-hero-prev svg, .ck-hero-next svg { width: 20px; height: 20px; }

/* Dots */
.ck-hero-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.ck-hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transition: all 0.25s ease;
  cursor: pointer;
  padding: 0;
}
.ck-hero-dot.active {
  width: 26px;
  border-radius: 4px;
  background: #fff;
}

/* Boutons génériques (garde compat) */
.ck-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 13px 26px;
  border-radius: var(--ck-r);
  font-size: 15px;
  font-weight: 600;
  transition: all var(--ck-t);
  cursor: pointer;
}
.ck-btn-primary {
  background: var(--ck-orange);
  color: #fff;
  box-shadow: 0 4px 12px rgba(255,107,53,0.4);
}
.ck-btn-primary:hover { background: #e55a25; transform: translateY(-1px); }
.ck-btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.5); }
.ck-btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

/* ── Trust strip ────────────────────────────────────────── */
.ck-trust {
  background: var(--ck-white);
  border-bottom: 1px solid var(--ck-border);
  padding: 28px 0;
}
.ck-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.ck-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.ck-trust-icon {
  width: 44px;
  height: 44px;
  background: #fff5f1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ck-trust-icon svg { width: 22px; height: 22px; color: var(--ck-orange); }
.ck-trust-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--ck-dark);
  margin-bottom: 3px;
}
.ck-trust-sub { font-size: 13px; color: var(--ck-muted); }

/* ── Sections génériques ────────────────────────────────── */
.ck-section { padding: 60px 0; }
.ck-section-header {
  text-align: center;
  margin-bottom: 40px;
}
.ck-section-badge {
  display: inline-block;
  background: #fff5f1;
  color: var(--ck-orange);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.ck-section-title {
  font-family: var(--ck-serif);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  color: var(--ck-dark);
  margin-bottom: 8px;
  line-height: 1.2;
}
.ck-section-sub { font-size: 16px; color: var(--ck-muted); }

/* ── Catégories ─────────────────────────────────────────── */
.ck-cats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.ck-cat-card {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--ck-r);
  overflow: hidden;
  display: block;
}
.ck-cat-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.ck-cat-card:hover .ck-cat-card-img { transform: scale(1.05); }
.ck-cat-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.1) 60%);
}
.ck-cat-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
/* Placeholder cat sans image */
.ck-cat-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, #f0f0ec, #e8e8e0);
}
.ck-cat-card-placeholder span { font-size: 48px; }

/* ── Grille produits ────────────────────────────────────── */
.ck-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.ck-section-footer {
  text-align: center;
  margin-top: 36px;
}
.ck-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border: 2px solid var(--ck-dark);
  border-radius: var(--ck-r);
  font-size: 14px;
  font-weight: 600;
  color: var(--ck-dark);
  transition: all var(--ck-t);
}
.ck-btn-ghost:hover { background: var(--ck-dark); color: #fff; }

/* ── Carte produit ─────────────────────────────────────── */
.ck-card {
  background: var(--ck-white);
  border-radius: var(--ck-r);
  border: 1px solid var(--ck-border);
  overflow: hidden;
  transition: transform var(--ck-t), box-shadow var(--ck-t);
}
.ck-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}
.ck-card-image-wrap { display: block; }
.ck-card-image {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  background: #f4f4f0;
}
.ck-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.ck-card:hover .ck-card-image img { transform: scale(1.06); }
.ck-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background var(--ck-t);
}
.ck-card:hover .ck-card-overlay { background: rgba(0,0,0,0.04); }

/* Badges */
.ck-card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 12px;
  line-height: 1.4;
}
.ck-badge-best { background: var(--ck-gold); color: var(--ck-dark); }
.ck-badge-new  { background: var(--ck-teal); color: #fff; }
.ck-badge-promo{ background: var(--ck-orange); color: #fff; }

.ck-card-discount {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--ck-orange);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
}

/* Corps carte */
.ck-card-body { padding: 14px 16px 16px; }
.ck-card-name {
  font-family: var(--ck-serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--ck-dark);
  margin-bottom: 8px;
  line-height: 1.35;
}
.ck-card-name a { color: inherit; }
.ck-card-name a:hover { color: var(--ck-orange); }

.ck-card-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 8px;
}
.ck-stars { display: flex; gap: 1px; }
.ck-star { font-size: 15px; }
.ck-star.full, .ck-star.half { color: var(--ck-gold); }
.ck-star.empty { color: #ddd; }
.ck-rating-val { font-size: 14px; font-weight: 600; }
.ck-rating-cnt { font-size: 13px; color: var(--ck-muted); }

.ck-card-price {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.ck-card-price del { color: var(--ck-muted); font-size: 14px; }
.ck-card-price ins, .ck-card-price strong {
  color: var(--ck-orange);
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
}

.ck-add-to-cart {
  width: 100%;
  background: var(--ck-dark);
  color: #fff;
  padding: 11px 16px;
  border-radius: 6px;
  font-size: 14.5px;
  font-weight: 600;
  transition: all var(--ck-t);
  text-align: center;
}
.ck-add-to-cart:hover { background: var(--ck-orange); }
.ck-add-to-cart.added  { background: var(--ck-teal); }
.ck-add-to-cart:disabled { opacity: 0.6; cursor: wait; }

/* ── USP Section ────────────────────────────────────────── */
.ck-usp { background: #f5f5f0; }
.ck-usp-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.ck-usp-list { display: flex; flex-direction: column; gap: 20px; margin-top: 24px; }
.ck-usp-item { display: flex; gap: 16px; align-items: flex-start; }
.ck-usp-icon {
  width: 48px;
  height: 48px;
  background: var(--ck-white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.ck-usp-icon svg { width: 24px; height: 24px; color: var(--ck-orange); }
.ck-usp-item-title { font-weight: 700; font-size: 16px; margin-bottom: 4px; }
.ck-usp-item-desc  { font-size: 15px; color: var(--ck-muted); }
.ck-usp-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Blog section ───────────────────────────────────────── */
.ck-blog-section {
  background: var(--ck-dark);
  padding: 60px 0;
}
.ck-blog-section .ck-section-badge { background: rgba(255,107,53,0.15); }
.ck-blog-title {
  font-family: var(--ck-serif);
  font-size: clamp(30px, 3.2vw, 44px);
  font-weight: 700;
  color: var(--ck-white);
  margin-bottom: 8px;
}
.ck-blog-title span { color: var(--ck-orange); }
.ck-blog-sub { color: rgba(255,255,255,0.55); font-size: 16px; margin-bottom: 40px; }
.ck-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ck-blog-card {
  background: #222;
  border-radius: var(--ck-r);
  overflow: hidden;
  transition: transform var(--ck-t);
  display: flex;
  flex-direction: column;
}
.ck-blog-card:hover { transform: translateY(-4px); }
.ck-blog-card-img {
  aspect-ratio: 3/2;
  overflow: hidden;
  background: #333;
  position: relative;
}
.ck-blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.ck-blog-card:hover .ck-blog-card-img img { transform: scale(1.06); }
.ck-blog-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}
.ck-blog-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.ck-blog-cat {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ck-orange);
  margin-bottom: 8px;
}
.ck-blog-card-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--ck-white);
  margin-bottom: 10px;
  line-height: 1.35;
  flex: 1;
}
.ck-blog-excerpt { font-size: 14px; color: #aaa; margin-bottom: 16px; line-height: 1.55; }
.ck-blog-read-more {
  font-size: 14px;
  font-weight: 600;
  color: var(--ck-orange);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--ck-t);
}
.ck-blog-read-more:hover { gap: 8px; }

/* ── Pages WooCommerce ──────────────────────────────────── */
.ck-woo-page {
  padding: 40px 0 60px;
  background: var(--ck-bg);
  min-height: 400px;
}
.ck-woo-single {
  padding: 32px 0 60px;
}

/* ── Pages WooCommerce ──────────────────────────────────── */
.ck-woo-page { padding: 40px 0 60px; background: var(--ck-bg); min-height: 400px; }
.ck-woo-single { padding: 32px 0 60px; }

/* ── Footer ─────────────────────────────────────────────── */
.ck-footer {
  background: #0d0d0d;
  color: #aaa;
  padding: 56px 0 0;
}
.ck-footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.ck-footer-logo { margin-bottom: 14px; }
.ck-footer-logo-text {
  font-family: var(--ck-serif);
  font-size: 34px;
  font-weight: 700;
  color: #fff;
}
.ck-footer-logo-text span { color: var(--ck-orange); }
.ck-footer-desc { font-size: 14px; line-height: 1.7; color: #bbb; margin-bottom: 20px; }
.ck-footer-socials { display: flex; gap: 10px; }
.ck-footer-social {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  transition: all var(--ck-t);
}
.ck-footer-social:hover { background: var(--ck-orange); color: #fff; }
.ck-footer-social svg {
  width: 16px;
  height: 16px;
  display: block;
  flex-shrink: 0;
}
.ck-footer-col-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  margin-bottom: 18px;
}
.ck-footer-col a {
  display: block;
  font-size: 14px;
  color: #bbb;
  padding: 5px 0;
  transition: color var(--ck-t);
}
.ck-footer-col a:hover { color: var(--ck-orange); }

/* Footer bottom */
.ck-footer-bottom {
  border-top: 1px solid #2a2a2a;
  padding: 20px 0;
}
.ck-footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.ck-footer-payments { display: flex; gap: 8px; align-items: center; }
.ck-payment-badge {
  background: rgba(255,255,255,0.97);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  padding: 4px 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
  min-height: 34px;
  min-width: 56px;
}
.ck-payment-badge:hover { opacity: 0.85; }
.ck-payment-badge svg { display: block; }

.ck-footer-copy { font-size: 13px; color: #aaa; }

/* Polylang lang switcher — footer */
.ck-footer-lang,
.ck-footer-lang ul,
.ck-footer-lang ul li,
.ck-footer-lang .pll-parent-menu-item {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.ck-footer-lang ul,
.ck-footer-lang .pll-parent-menu-item {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  gap: 6px !important;
  align-items: center !important;
}
.ck-footer-lang li {
  list-style: none !important;
  display: inline-flex !important;
  float: none !important;
}
.ck-footer-lang a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: #888;
  padding: 4px 8px;
  border-radius: 5px;
  border: 1px solid #2e2e2e;
  transition: all 0.2s;
  white-space: nowrap;
}
.ck-footer-lang a:hover { color: var(--ck-orange); border-color: var(--ck-orange); background: rgba(255,107,53,0.08); }
.ck-footer-lang .current-lang a,
.ck-footer-lang li.current-lang a { color: var(--ck-orange); border-color: var(--ck-orange); font-weight: 600; }
.ck-footer-lang img { width: 18px; height: 13px; object-fit: cover; border-radius: 2px; flex-shrink: 0; }

/* ── Animations ─────────────────────────────────────────── */
@keyframes ck-fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes ck-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,107,53,0.4); }
  50%       { box-shadow: 0 0 0 6px rgba(255,107,53,0); }
}

/* Scroll animation */
.ck-anim {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.ck-anim.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Pages intérieures ──────────────────────────────────── */
.ck-page-header {
  background: var(--ck-white);
  padding: 40px 0;
  border-bottom: 1px solid var(--ck-border);
}
.ck-page-title {
  font-family: var(--ck-serif);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
}
.ck-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--ck-muted);
  margin-bottom: 8px;
}
.ck-breadcrumbs a { color: var(--ck-muted); transition: color var(--ck-t); }
.ck-breadcrumbs a:hover { color: var(--ck-orange); }
.ck-breadcrumbs span { color: var(--ck-dark); }

/* 404 */
.ck-404 { padding: 100px 0; text-align: center; }
.ck-404-emoji { font-size: 80px; margin-bottom: 24px; }
.ck-404-title { font-family: var(--ck-serif); font-size: 40px; font-weight: 700; margin-bottom: 12px; }
.ck-404-sub { font-size: 16px; color: var(--ck-muted); margin-bottom: 32px; }

/* Recherche */
.ck-search-results { padding: 48px 0; }
.ck-search-results-title { font-size: 22px; font-weight: 700; margin-bottom: 32px; }
.ck-search-results-title em { color: var(--ck-orange); font-style: normal; }
.ck-no-results { text-align: center; padding: 60px 20px; color: var(--ck-muted); font-size: 16px; }

/* Blog single / archive */
.ck-post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ck-post-card { background: var(--ck-white); border-radius: var(--ck-r); overflow: hidden; border: 1px solid var(--ck-border); }
.ck-post-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.ck-post-thumbnail { aspect-ratio: 3/2; overflow: hidden; background: #f4f4f0; }
.ck-post-thumbnail img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.ck-post-card:hover .ck-post-thumbnail img { transform: scale(1.04); }
.ck-post-body { padding: 20px; }
.ck-post-meta { font-size: 12px; color: var(--ck-muted); margin-bottom: 8px; }
.ck-post-title { font-size: 17px; font-weight: 700; margin-bottom: 8px; line-height: 1.35; }
.ck-post-title a:hover { color: var(--ck-orange); }
.ck-post-excerpt { font-size: 13px; color: var(--ck-muted); line-height: 1.55; margin-bottom: 14px; }
.ck-post-link { font-size: 13px; font-weight: 600; color: var(--ck-orange); }

/* Article single */
.ck-single-post { padding: 48px 0; }
.ck-single-post-inner { max-width: 760px; margin: 0 auto; }
.ck-single-post-title { font-family: var(--ck-serif); font-size: clamp(26px, 3vw, 40px); font-weight: 700; margin-bottom: 16px; }
.ck-single-post-meta { font-size: 13px; color: var(--ck-muted); margin-bottom: 32px; }
.ck-single-post-content { line-height: 1.8; }
.ck-single-post-content h2, .ck-single-post-content h3 { font-family: var(--ck-serif); margin: 28px 0 12px; }
.ck-single-post-content p { margin-bottom: 16px; }
.ck-single-post-content img { border-radius: var(--ck-r); margin: 24px auto; }

/* ── Pagination ──────────────────────────────────────────── */
.ck-pagination { margin-top: 48px; display: flex; justify-content: center; }
.ck-pagination ul { display: flex; gap: 6px; align-items: center; }
.ck-pagination a,
.ck-pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--ck-r);
  font-size: 14px;
  font-weight: 600;
  border: 1px solid var(--ck-border);
  transition: all var(--ck-t);
}
.ck-pagination a:hover { border-color: var(--ck-orange); color: var(--ck-orange); }
.ck-pagination .current { background: var(--ck-orange); color: #fff; border-color: var(--ck-orange); }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .ck-products-grid    { grid-template-columns: repeat(2, 1fr); }
  .ck-blog-grid        { grid-template-columns: repeat(2, 1fr); }
  .ck-trust-grid       { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .ck-usp-inner        { grid-template-columns: 1fr; gap: 32px; }
  .ck-usp-visual       { display: none; }
  .ck-footer-grid      { grid-template-columns: repeat(2, 1fr); }
  .ck-nav-wrap         { display: none; }
  .ck-hamburger        { display: flex !important; }
  /* Masquer le sélecteur topbar sur tablette/mobile */
  .ck-topbar-lang      { display: none; }
}

@media (min-width: 1025px) {
  .ck-hamburger        { display: none; }
  /* Masquer le dropdown compact sur desktop */
  .ck-lang-compact     { display: none !important; }
}

/* ── Contact page ───────────────────────────────────────── */
.ck-contact-section { padding: 60px 0 80px; }
.ck-contact-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 40px;
  align-items: start;
}

/* Info panel */
.ck-contact-info-inner {
  background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
  border-radius: 16px;
  padding: 40px 32px;
  color: #fff;
  position: sticky;
  top: 90px;
}
.ck-contact-info-title {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  font-family: var(--ck-serif);
}
.ck-contact-info-desc {
  font-size: 14px;
  line-height: 1.7;
  color: #bbb;
  margin-bottom: 36px;
}
.ck-contact-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.ck-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.ck-contact-item-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255,107,53,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FF6B35;
}
.ck-contact-item-icon svg {
  width: 20px;
  height: 20px;
}
.ck-contact-item-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 2px;
}
.ck-contact-item-text strong {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.ck-contact-item-text span {
  font-size: 14px;
  color: #bbb;
}

/* Form card */
.ck-contact-form-card {
  background: #fff;
  border-radius: 16px;
  padding: 48px 48px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.07);
}
.ck-contact-form-content > p:first-child {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 28px;
}

/* CF7 inside the card */
.ck-contact-form-card .wpcf7-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #555;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.ck-contact-form-card .wpcf7-form p {
  margin-bottom: 20px;
}
.ck-contact-form-card .wpcf7-form p:last-child {
  margin-bottom: 0;
  margin-top: 8px;
}
.ck-contact-form-card .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.ck-contact-form-card .wpcf7-form input[type="text"],
.ck-contact-form-card .wpcf7-form input[type="email"],
.ck-contact-form-card .wpcf7-form input[type="tel"],
.ck-contact-form-card .wpcf7 input[type="text"],
.ck-contact-form-card .wpcf7 input[type="email"] {
  width: 100% !important;
  height: 52px !important;
  padding: 0 18px !important;
  border: 1.5px solid #e8e8e0 !important;
  border-radius: 10px !important;
  font-size: 15px !important;
  font-family: inherit !important;
  color: #1a1a1a !important;
  background: #fafafa !important;
  transition: border-color 0.2s, box-shadow 0.2s !important;
  box-sizing: border-box !important;
}
.ck-contact-form-card .wpcf7-form textarea,
.ck-contact-form-card .wpcf7 textarea {
  width: 100% !important;
  min-height: 150px !important;
  padding: 14px 18px !important;
  border: 1.5px solid #e8e8e0 !important;
  border-radius: 10px !important;
  font-size: 15px !important;
  font-family: inherit !important;
  color: #1a1a1a !important;
  background: #fafafa !important;
  transition: border-color 0.2s, box-shadow 0.2s !important;
  box-sizing: border-box !important;
  resize: vertical;
}
.ck-contact-form-card .wpcf7-form input:focus,
.ck-contact-form-card .wpcf7-form textarea:focus,
.ck-contact-form-card .wpcf7 input:focus,
.ck-contact-form-card .wpcf7 textarea:focus {
  border-color: #FF6B35 !important;
  background: #fff !important;
  outline: none !important;
  box-shadow: 0 0 0 4px rgba(255,107,53,0.1) !important;
}
.ck-contact-form-card .wpcf7-form input[type="submit"],
.ck-contact-form-card .wpcf7-submit,
.ck-contact-form-card .wpcf7 input[type="submit"] {
  background: #FF6B35 !important;
  color: #fff !important;
  border: none !important;
  padding: 16px 48px !important;
  border-radius: 10px !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  font-family: inherit !important;
  cursor: pointer !important;
  transition: background 0.2s, box-shadow 0.2s !important;
  box-shadow: 0 4px 16px rgba(255,107,53,0.35) !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
}
.ck-contact-form-card .wpcf7-form input[type="submit"]:hover,
.ck-contact-form-card .wpcf7-submit:hover,
.ck-contact-form-card .wpcf7 input[type="submit"]:hover {
  background: #e55a25 !important;
  box-shadow: 0 6px 20px rgba(255,107,53,0.45) !important;
}
/* Error / success messages */
.ck-contact-form-card .wpcf7-not-valid-tip {
  color: #e53e3e;
  font-size: 12px;
  margin-top: 4px;
  display: block;
}
.ck-contact-form-card .wpcf7-response-output {
  margin-top: 20px !important;
  padding: 14px 18px !important;
  border-radius: 10px !important;
  font-size: 14px !important;
  border: none !important;
}
.ck-contact-form-card .wpcf7-mail-sent-ok {
  background: #f0fff4;
  color: #276749;
}
.ck-contact-form-card .wpcf7-validation-errors,
.ck-contact-form-card .wpcf7-mail-sent-ng {
  background: #fff5f5;
  color: #c53030;
}

/* Responsive contact */
@media (max-width: 1024px) {
  .ck-contact-layout { grid-template-columns: 1fr; }
  .ck-contact-info-inner { position: static; }
  .ck-contact-form-card { padding: 36px 32px; }
}
@media (max-width: 600px) {
  .ck-contact-form-card { padding: 28px 20px; }
  .ck-contact-section { padding: 40px 0 60px; }
}

@media (max-width: 767px) {
  /* Hero v2 — mobile : repositionnement des slides pour éviter l'effondrement */
  .ck-hero--v2          { height: auto; }
  .ck-hero-slides       { height: auto; }
  .ck-hero-slide        { position: relative; inset: auto; display: none; opacity: 1; transform: none; transition: none; pointer-events: auto; overflow: hidden; }
  .ck-hero-slide.active { display: flex; }
  .ck-hero-slide.leaving{ display: none; }
  .ck-hs-inner          { grid-template-columns: 1fr; padding: 30px 20px 20px; gap: 20px; height: auto; }
  .ck-hs-content        { order: 1; }
  .ck-hs-visual         { order: 2; height: auto; }
  /* Slide WELCOME : badge + icônes côte à côte */
  .ck-hs-visual--welcome { flex-direction: row; justify-content: center; align-items: center; gap: 16px; padding-bottom: 8px; }
  .ck-hs-badge-big      { width: 110px; height: 110px; flex-shrink: 0; }
  .ck-hs-badge-pct      { font-size: 34px; }
  .ck-hs-badge-text     { font-size: 10px; }
  .ck-hs-circles        { display: none; }
  .ck-hs-welcome-icons  { gap: 7px; flex: 1; min-width: 0; }
  .ck-hs-wi             { font-size: 11px; padding: 6px 10px; }
  /* Slide LIVRAISON */
  .ck-hs-visual--delivery { gap: 12px; padding-bottom: 16px; }
  .ck-hs-truck-svg      { width: 140px; }
  .ck-hs-delivery-badge { font-size: 13px; padding: 5px 14px; }
  /* Slide PRODUIT */
  .ck-hs-visual--product { justify-content: center; }
  .ck-hs-product-img-wrap { max-width: 220px; height: 200px; }
  /* Code promo */
  .ck-hs-code-block     { gap: 8px; flex-wrap: wrap; }
  .ck-hs-code           { font-size: 16px; letter-spacing: 0.12em; padding: 6px 14px; }
  /* CTA buttons */
  .ck-hs-btn            { padding: 11px 18px; font-size: 14px; }
  /* Flèches hero */
  .ck-hero-prev         { left: 8px; width: 36px; height: 36px; }
  .ck-hero-next         { right: 8px; width: 36px; height: 36px; }
  .ck-hero-prev svg, .ck-hero-next svg { width: 16px; height: 16px; }
  /* Grids */
  .ck-cats-grid         { grid-template-columns: repeat(2, 1fr); }
  .ck-post-grid         { grid-template-columns: 1fr; }
  /* Topbar : 3 features pleine largeur, sans rating, sans scroll */
  .ck-topbar-inner      { height: auto; min-height: 34px; padding: 5px 0; overflow: hidden; justify-content: center; }
  .ck-topbar-features   { flex: 1; gap: 0; justify-content: space-around; }
  .ck-topbar-feature    { font-size: 10.5px; gap: 4px; padding: 2px 4px; }
  .ck-topbar-feature svg { width: 11px; height: 11px; }
  .ck-topbar-rating     { display: none; }
  /* Header */
  .ck-header-center     { display: none; }
  .ck-header-left       { flex-shrink: 1; min-width: 0; }
  .ck-logo-link         { padding-right: 4px; }
  .ck-logo-sub          { display: none; }
  .ck-logo-text         { font-size: 20px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .ck-header-right      { gap: 2px; flex-shrink: 0; overflow: visible; }
  .ck-icon-btn          { width: 36px; height: 36px; }
  .ck-icon-btn svg      { width: 20px; height: 20px; }
}

@media (max-width: 480px) {
  .ck-trust-grid        { grid-template-columns: 1fr; }
  .ck-footer-grid       { grid-template-columns: 1fr; }
  .ck-blog-grid         { grid-template-columns: 1fr; }
  .ck-hs-badge-big      { width: 90px; height: 90px; }
  .ck-hs-badge-pct      { font-size: 28px; }
  .ck-hs-truck-svg      { width: 110px; }
  .ck-footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  /* Drapeaux sur une seule ligne en mobile — scroll horizontal si nécessaire */
  .ck-footer-lang { width: 100%; }
  .ck-footer-lang ul,
  .ck-footer-lang .pll-parent-menu-item {
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    gap: 4px !important;
  }
  .ck-footer-lang ul::-webkit-scrollbar { display: none; }
  .ck-footer-lang a { padding: 3px 6px !important; flex-shrink: 0 !important; }
  .ck-footer-lang svg { width: 20px !important; height: 13px !important; }
  .ck-products-grid     { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .ck-topbar-feature    { font-size: 10px; }
  .ck-topbar-feature svg { display: none; }
}

/* ── Sélecteur de langue compact (mobile/tablette header) ── */
.ck-lang-compact {
  position: relative;
  display: flex;
  align-items: center;
}
.ck-lang-compact-btn {
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 4px 6px;
  border-radius: 6px;
  background: none;
  border: 1px solid var(--ck-border);
  cursor: pointer;
  height: 32px;
  transition: background 0.2s, border-color 0.2s;
}
.ck-lang-compact-btn:hover { background: #f0f0ec; border-color: #ccc; }
.ck-lang-compact-btn img { display: block; border-radius: 2px; flex-shrink: 0; }
.ck-lang-compact-btn .ck-chevron {
  width: 12px;
  height: 12px;
  color: var(--ck-muted);
  transition: transform 0.2s;
  flex-shrink: 0;
}
.ck-lang-compact.open .ck-chevron { transform: rotate(180deg); }

.ck-lang-compact-list {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: #fff;
  border: 1px solid var(--ck-border);
  border-radius: var(--ck-r);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  list-style: none !important;
  padding: 6px 0 !important;
  margin: 0 !important;
  min-width: 160px;
  z-index: 800;
  display: none;
}
.ck-lang-compact.open .ck-lang-compact-list { display: block; }
.ck-lang-compact-list li { list-style: none !important; }
.ck-lang-compact-list a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  font-size: 14px;
  color: var(--ck-dark);
  transition: background 0.15s;
  white-space: nowrap;
}
.ck-lang-compact-list a:hover { background: #f5f5f0; color: var(--ck-orange); }
.ck-lang-compact-list [aria-selected="true"] a { color: var(--ck-orange); font-weight: 600; }
.ck-lang-compact-list img { border-radius: 2px; flex-shrink: 0; }

/* ── Sélecteur de langue dans le drawer mobile ──────────── */
.ck-drawer-lang-select {
  padding: 12px 20px 4px;
  border-bottom: 1px solid #f0f0ec;
  margin-bottom: 4px;
}
.ck-custom-select {
  position: relative;
}
.ck-custom-select-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 10px 14px;
  background: #f5f5f0;
  border: 1px solid var(--ck-border);
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: var(--ck-dark);
  transition: background 0.2s;
}
.ck-custom-select-btn:hover { background: #ebebeb; }
.ck-custom-select-btn img { border-radius: 2px; flex-shrink: 0; }
.ck-custom-select-btn span { flex: 1; text-align: left; }
.ck-custom-select-btn svg {
  width: 16px;
  height: 16px;
  color: var(--ck-muted);
  transition: transform 0.2s;
  flex-shrink: 0;
}
.ck-custom-select.open .ck-custom-select-btn svg { transform: rotate(180deg); }

.ck-custom-select-list {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid var(--ck-border);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  list-style: none !important;
  padding: 6px 0 !important;
  margin: 0 !important;
  z-index: 900;
  display: none;
  max-height: 260px;
  overflow-y: auto;
}
.ck-custom-select.open .ck-custom-select-list { display: block; }
.ck-custom-select-list li { list-style: none !important; }
.ck-custom-select-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  font-size: 14px;
  color: var(--ck-dark);
  transition: background 0.15s;
}
.ck-custom-select-list a:hover { background: #f5f5f0; color: var(--ck-orange); }
.ck-custom-select-list [aria-selected="true"] a { color: var(--ck-orange); font-weight: 600; }
.ck-custom-select-list img { border-radius: 2px; flex-shrink: 0; }

/* ── Catégories gradient (placeholder sans image WP) ────── */
.ck-cat-grad {
  width: 100%;
  aspect-ratio: 1 !important;
  height: auto !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ck-cat-grad svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ── USP visual redesign ─────────────────────────────────── */
.ck-usp-visual-inner {
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ck-usp-visual-img {
  width: 100%;
  max-width: 440px;
  height: auto;
  display: block;
  border-radius: 20px;
  object-fit: contain;
}

/* ── Section SEO éditoriale ─────────────────────────────── */
.ck-seo-section {
  background: var(--ck-white);
  padding: 72px 0;
  border-top: 1px solid var(--ck-border);
}
.ck-seo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 40px;
}
.ck-seo-item {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--ck-border);
}
.ck-seo-item:nth-child(n+4) { border-bottom: none; }
.ck-seo-item h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ck-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--ck-dark);
  margin-bottom: 14px;
}
.ck-seo-item p {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 14px;
}
.ck-seo-item strong { color: var(--ck-dark); }
.ck-seo-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ck-orange);
  transition: gap 0.2s;
}
.ck-seo-link:hover { gap: 8px; }
.ck-seo-inline {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(85,85,85,0.4);
  text-underline-offset: 2px;
  transition: text-decoration-color 0.2s;
}
.ck-seo-inline:hover { text-decoration-color: rgba(85,85,85,0.8); }
.ck-seo-inline strong { color: inherit; }

/* ── Hero — décoration SVG (remplace l'emoji) ───────────── */
.ck-hero-deco {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  width: 200px;
  height: 200px;
  pointer-events: none;
  opacity: 0.5;
}
.ck-hero-deco svg { width: 100%; height: 100%; }

/* ── Blog placeholder gradient ──────────────────────────── */
.ck-blog-card-placeholder {
  width: 100%;
  height: 100%;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
}
.ck-blog-card-placeholder svg { width: 80px; height: 80px; }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .ck-seo-grid { grid-template-columns: repeat(2, 1fr); }
  .ck-seo-item:nth-child(n+4) { border-bottom: 1px solid var(--ck-border); }
  .ck-seo-item:nth-child(5), .ck-seo-item:nth-child(6) { border-bottom: none; }
}

@media (max-width: 640px) {
  .ck-seo-grid { grid-template-columns: 1fr; }
  .ck-seo-item { border-bottom: 1px solid var(--ck-border) !important; }
  .ck-seo-item:last-child { border-bottom: none !important; }
}

@media print {
  .ck-topbar, .ck-header, .ck-nav-wrap, .ck-footer, .ck-hero-prev, .ck-hero-next { display: none !important; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
