/* ============================================================
   CLOCKY — Thème enfant Paniez
   Global styles, variables, header, footer, typography
   ============================================================ */

/* Fonts loaded via wp_enqueue_style in functions.php (Fjalla One + Fraunces + Inter — single request) */

/* ─── VARIABLES ─── */
:root {
  --cream:        #FAFAF0;
  --cream-warm:   #F4F1E4;
  --paper:        #FFFFFF;
  --green:        #ABD082;
  --green-deep:   #6F9A4D;
  --green-dark:   #46622E;
  --green-ink:    #2C3E1B;
  --orange:       #E58A2E;
  --orange-warm:  #D07020;
  --brown:        #2A1810;
  --brown-soft:   #6B4F40;
  --brown-mute:   #9C8676;
  --gray-line:    rgba(48, 24, 13, 0.10);
  --line:         rgba(48, 24, 13, 0.10);
  --line-soft:    rgba(48, 24, 13, 0.05);

  --display: 'Fraunces', Georgia, serif;
  --serif:   'Fraunces', Georgia, serif;
  --sans:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --logo:    'Fjalla One', sans-serif;

  --radius-xs:  6px;
  --radius-sm:  10px;
  --radius-md:  14px;
  --radius-lg:  20px;
  --radius-xl:  28px;
  --radius-pill:999px;
}

/* ─── RESET / BASE ─── */
*, *::before, *::after { box-sizing: border-box; }

body.clocky-theme {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--brown);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

html { scroll-behavior: smooth; }

/* ─── TYPOGRAPHY (Fraunces) ─── */
.clocky-theme h1,
.clocky-theme h2,
.clocky-theme h3,
.clocky-theme h4 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.08;
  color: var(--brown);
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 80;
}
/* Italiques en vert foncé (style éditorial) */
.clocky-theme h1 em,
.clocky-theme h2 em,
.clocky-theme h3 em {
  font-style: italic;
  color: var(--green-dark);
  font-weight: 400;
}
.clocky-theme h1 em,
.clocky-theme h2 em,
.clocky-theme h3 em,
.ck-shop-title em,
.ck-hero-tagline em,
.ck-hero-tagline-shop em,
.ck-compo-title em,
.ck-brand-name em {
  font-style: italic;
  color: var(--green-deep);
}

/* ─── TOPBAR (bande d'annonce) ─── */
.ck-topbar {
  background: var(--green-ink);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 12.5px;
  letter-spacing: 0.02em;
  padding: 9px 0;
  overflow: hidden;
}
/* Ticker défilant */
.ck-topbar-track {
  display: flex;
  width: max-content;
  animation: ck-ticker 40s linear infinite;
}
.ck-topbar:hover .ck-topbar-track { animation-play-state: paused; }
.ck-topbar-item {
  white-space: nowrap;
  padding-right: 400px;
}
@keyframes ck-ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ck-topbar-track { animation: none; }
}
.ck-topbar-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--green);
  display: inline-block;
  margin-right: 8px;
  vertical-align: middle;
}
.ck-topbar a { color: var(--cream); text-decoration: none; opacity: .8; }
.ck-topbar a:hover { opacity: 1; }
@media (max-width: 700px) { .ck-topbar { padding: 8px 16px; font-size: 11px; } }

/* ─── HEADER ─── */
.clocky-header {
  padding: 18px 48px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  background: rgba(250, 250, 240, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-line);
  position: sticky;
  top: 0;
  z-index: 200;
}
/* Coller SOUS la barre d'admin WordPress (sinon le haut du header est masqué) */
.admin-bar .clocky-header { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar .clocky-header { top: 46px; }
}

.clocky-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.clocky-logo img { height: 38px; width: auto; }

.clocky-logo-text {
  font-family: 'Fjalla One', sans-serif !important;
  font-size: 22px;
  color: var(--green-deep);
  letter-spacing: 0.3px;
}

.clocky-nav {
  display: flex;
  gap: 20px;
  list-style: none;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.clocky-nav a {
  color: var(--brown);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  white-space: nowrap;
  transition: color 0.2s;
}
.clocky-nav a:hover { color: var(--green-dark); }
.clocky-nav a.current-menu-item,
.clocky-nav a.active { color: var(--green-deep); font-weight: 600; }

.clocky-header-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: flex-end;
}

/* ─── BURGER (mobile) ─── */
.ck-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
}
.ck-burger span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 0 auto;
  background: var(--brown);
  border-radius: 2px;
  transition: transform .25s, opacity .2s;
}
.ck-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ck-burger.is-open span:nth-child(2) { opacity: 0; }
.ck-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── MENU MOBILE ─── */
.ck-mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 150;
  background: var(--cream);
  padding: 80px 24px 32px;
  overflow-y: auto;
}
.ck-mobile-menu .ck-mobile-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.ck-mobile-menu .ck-mobile-nav li { border-bottom: 1px solid var(--line-soft); }
.ck-mobile-menu .ck-mobile-nav a {
  display: block;
  padding: 14px 4px;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 500;
  color: var(--brown);
  text-decoration: none;
}
.ck-mobile-menu .ck-mobile-nav a:hover { color: var(--green-dark); }
.ck-mobile-extra {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 16px;
}
.ck-mobile-extra a {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--brown-soft);
  text-decoration: none;
  padding: 4px;
}
body.ck-menu-open { overflow: hidden; }

.clocky-user-link {
  color: var(--brown);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
  transition: background .15s;
}
.clocky-user-link:hover { background: var(--paper); }
.clocky-user-link svg { width: 15px; height: 15px; }

/* Lien Dashboard — réservé au staff (admin / shop_manager) */
.clocky-dash-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 14px;
  border-radius: var(--radius-pill);
  background: var(--green-dark);
  color: #fff;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background .15s;
}
.clocky-dash-link:hover { background: var(--green-deep); color: #fff; }
.ck-mobile-dash {
  color: var(--green-dark) !important;
  font-weight: 700 !important;
}

.clocky-cart-btn {
  background: var(--brown);
  color: var(--cream);
  border: none;
  width: 42px; height: 42px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.2s;
  text-decoration: none;
}
.clocky-cart-btn:hover { transform: scale(1.05); }
.clocky-cart-btn svg { width: 18px; height: 18px; color: var(--cream); }

.clocky-cart-badge {
  position: absolute;
  top: -4px; right: -4px;
  background: var(--orange);
  color: var(--brown);
  font-size: 11px;
  font-weight: 700;
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ─── FOOTER ─── */
.clocky-footer {
  background: var(--green-ink);
  color: var(--cream);
  padding: 56px 48px 24px;
}

.clocky-footer-inner { max-width: 1280px; margin: 0 auto; }

.clocky-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 36px;
}

.clocky-footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.clocky-footer-brand img { height: 36px; width: auto; }
.clocky-footer-brand .name {
  font-family: var(--display);
  font-size: 24px;
  color: var(--green);
  letter-spacing: 0.3px;
}

.clocky-footer-tagline {
  font-size: 14px;
  color: rgba(250, 250, 240, 0.6);
  line-height: 1.6;
  margin-bottom: 20px;
}

.clocky-footer-col h4 {
  font-family: var(--display);
  font-size: 14px;
  color: var(--cream);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.clocky-footer-col ul { list-style: none; margin: 0; padding: 0; }
.clocky-footer-col ul li { margin-bottom: 10px; }
.clocky-footer-col ul a {
  color: rgba(250, 250, 240, 0.6);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.clocky-footer-col ul a:hover { color: var(--green); }

.clocky-footer-bottom {
  border-top: 1px solid rgba(250, 250, 240, 0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(250, 250, 240, 0.4);
}

.clocky-footer-bottom a { color: rgba(250, 250, 240, 0.4); text-decoration: none; }
.clocky-footer-bottom a:hover { color: var(--green); }
.clocky-footer-legal { display: flex; flex-wrap: wrap; gap: 20px; }

/* ─── FOOTER MINIMAL (checkout, login) ─── */
.clocky-footer-min {
  padding: 28px 48px;
  border-top: 1px solid var(--gray-line);
  text-align: center;
  font-size: 13px;
  color: var(--brown-soft);
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 60px;
}
.clocky-footer-min a { color: var(--brown-soft); text-decoration: none; }
.clocky-footer-min a:hover { color: var(--green-dark); }

/* ─── ANIMATIONS ─── */
@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); }
  50%       { transform: translateY(-12px) rotate(var(--r, 0deg)); }
}
@keyframes floaty-sm {
  0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); }
  50%       { transform: translateY(-8px) rotate(var(--r, 0deg)); }
}
@keyframes fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}
@keyframes pop-up {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes fade-in-overlay {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes ck-spin {
  to { transform: rotate(360deg); }
}
@keyframes ck-toast-in {
  from { opacity: 0; transform: translateX(-50%) translateY(16px) scale(0.95); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0)    scale(1); }
}
@keyframes ck-toast-out {
  from { opacity: 1; transform: translateX(-50%) translateY(0)    scale(1); }
  to   { opacity: 0; transform: translateX(-50%) translateY(16px) scale(0.95); }
}

/* ─── TOAST ─── */
.ck-toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(16px) scale(0.95);
  background: var(--brown);
  color: var(--cream);
  padding: 13px 22px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  font-family: var(--sans);
  z-index: 9999;
  pointer-events: none;
  white-space: nowrap;
  box-shadow: 0 8px 28px rgba(42,24,16,.28);
  opacity: 0;
  transition: none;
}
.ck-toast--visible {
  animation: ck-toast-in .22s cubic-bezier(.34,1.56,.64,1) forwards;
}
.ck-toast:not(.ck-toast--visible) {
  animation: ck-toast-out .18s ease forwards;
}

/* ─── ADD-TO-CART BUTTON STATES ─── */
.ck-btn-add {
  transition: background .2s, transform .2s;
}

/* ─── DELIVERY FORM LOADING OVERLAY ─── */
.paniez-form-spinner {
  position: absolute;
  inset: 0;
  background: rgba(250,250,240,.75);
  backdrop-filter: blur(3px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: var(--radius-md);
  z-index: 10;
  animation: fadein .15s ease;
  font-size: 13px;
  color: var(--brown-soft);
  font-family: var(--sans);
}
.paniez-spinner-svg {
  width: 28px;
  height: 28px;
  stroke: var(--green-dark);
  animation: ck-spin .7s linear infinite;
}

/* ─── VEGETABLES DÉCORATIVES ─── */
.ck-veg {
  position: absolute !important;
  pointer-events: none !important;
  filter: drop-shadow(0 16px 30px rgba(48,24,13,0.18));
  transform: rotate(var(--r, 0deg));
  animation: fadein 0.6s ease-out both, floaty 7s ease-in-out 0.6s infinite;
  user-select: none;
  z-index: 1;
  /* width vient du style inline */
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box;
}
.ck-veg img {
  width: 100% !important;
  height: auto !important;
  display: block !important;
  max-width: none !important;
}

/* Force le respect de [hidden] (UA stylesheet est battu par .ck-delivery-item) */
[hidden] { display: none !important; }

/* ─── Page /livraison (paniez-core) — habillage palette Paniez ─── */
.paniez-choose-delivery h1,
.paniez-choose-delivery h2 { font-family: var(--display); }

.paniez-choose-delivery select,
.paniez-choose-delivery input[type="text"],
.paniez-choose-delivery input[type="date"] {
  font-family: var(--sans);
  border: 1px solid var(--gray-line);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  background: white;
  font-size: 14px;
  color: var(--brown);
}
.paniez-choose-delivery select:focus,
.paniez-choose-delivery input:focus {
  outline: 2px solid var(--green-deep);
  outline-offset: 2px;
}

.paniez-choose-delivery button[type="submit"],
.paniez-choose-delivery button[name="paniez_submit"] {
  background: var(--green-deep);
  color: white;
  border: none;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.2px;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  box-shadow: 0 4px 12px rgba(143, 181, 112, 0.3);
}
.paniez-choose-delivery button[type="submit"]:hover,
.paniez-choose-delivery button[name="paniez_submit"]:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

.paniez-week-recap {
  border: 1px solid rgba(143, 181, 112, 0.4) !important;
  background: rgba(245, 245, 225, 0.5) !important;
  border-radius: var(--radius-lg) !important;
}
.paniez-week-recap .button,
.paniez-week-recap input[type="checkbox"] + label { font-family: var(--sans); }

/* ─── DELIVERY STRIP ─── */
.ck-delivery-strip {
  background: var(--cream-warm);
  padding: 16px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  position: relative;
  z-index: 10;
}

.ck-delivery-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--brown-soft);
}
.ck-delivery-item svg { width: 18px; height: 18px; color: var(--green-dark); }
.ck-delivery-item b { color: var(--brown); font-weight: 600; }

.ck-btn-outline {
  background: transparent;
  color: var(--green-dark);
  border: 1.5px solid var(--green-deep);
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  font-family: var(--sans);
  text-decoration: none;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.ck-btn-outline:hover { background: var(--green-deep); color: white; }

/* ─── BUTTONS ─── */
.ck-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 16px;
  font-family: var(--sans);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 8px 24px rgba(255,144,32,0.3);
}
.ck-btn-primary:hover {
  background: var(--orange-warm);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(255,144,32,0.4);
  color: white;
}

.ck-btn-primary-lg {
  padding: 22px 44px;
  font-size: 18px;
  box-shadow: 0 12px 32px rgba(255,144,32,0.35);
}

/* ─── MODAL LIVRAISON ─── */
.ck-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(48, 24, 13, 0.55);
  backdrop-filter: blur(6px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: fade-in-overlay 0.3s ease-out;
  overflow-y: auto;
}

.ck-modal-overlay.hidden { display: none; }

.ck-modal {
  background: var(--cream);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 540px;
  max-height: 92vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  animation: pop-up 0.4s cubic-bezier(0.34, 1.4, 0.64, 1);
  box-shadow: 0 30px 80px rgba(48,24,13,0.3);
}

.ck-modal-header {
  padding: 28px 32px 20px;
  border-bottom: 1px solid var(--gray-line);
  background: white;
  position: relative;
}

.ck-modal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--cream);
  border: none;
  width: 36px; height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brown);
  transition: all 0.2s;
}
.ck-modal-close:hover { background: var(--gray-line); transform: rotate(90deg); }
.ck-modal-close svg { width: 16px; height: 16px; }

.ck-modal-eyebrow {
  font-family: var(--display);
  font-size: 12px;
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 8px;
}

.ck-modal-title {
  font-family: var(--display);
  font-size: 28px;
  color: var(--brown);
  letter-spacing: 0.3px;
  line-height: 1.1;
  margin-bottom: 8px;
  padding-right: 40px;
}

.ck-modal-sub {
  font-size: 14px;
  color: var(--brown-soft);
  line-height: 1.5;
}

.ck-modal-body {
  padding: 24px 32px;
  overflow-y: auto;
  flex: 1;
  min-height: 0;
}

.ck-modal-footer {
  padding: 20px 32px;
  border-top: 1px solid var(--gray-line);
  background: white;
}

/* ─── FORM FIELDS ─── */
.ck-field { margin-bottom: 18px; }

.ck-field-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.ck-field-label .req { color: var(--orange); margin-left: 2px; }

.ck-field-input,
.ck-field-select {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--gray-line);
  border-radius: var(--radius-md);
  font-size: 15px;
  font-family: var(--sans);
  color: var(--brown);
  background: white;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}
.ck-field-input:focus,
.ck-field-select:focus {
  outline: none;
  border-color: var(--green-deep);
  box-shadow: 0 0 0 3px rgba(143,181,112,0.15);
}

.ck-field-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235A3A2A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.ck-field-note {
  font-size: 12px;
  color: var(--brown-soft);
  font-style: italic;
  margin-top: 6px;
}

/* ─── TIME SLOTS GRID ─── */
.ck-slots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 8px;
}

.ck-slot {
  border: 1.5px solid var(--gray-line);
  border-radius: var(--radius-md);
  padding: 12px 8px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  background: white;
  font-family: var(--sans);
}
.ck-slot:hover { border-color: var(--green-deep); background: rgba(143,181,112,0.06); }
.ck-slot.selected {
  border-color: var(--green-deep);
  background: rgba(143,181,112,0.12);
}
.ck-slot-time {
  font-weight: 700;
  font-size: 14px;
  color: var(--brown);
  display: block;
}
.ck-slot-label {
  font-size: 11px;
  color: var(--brown-soft);
  display: block;
  margin-top: 2px;
}

/* ─── PAGE HEADER (panier, checkout) ─── */
.ck-page-header {
  max-width: 1280px;
  margin: 32px auto 28px;
  padding: 0 48px;
}

.ck-eyebrow {
  font-family: var(--display);
  font-size: 13px;
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 8px;
}

.ck-page-title {
  font-family: var(--display);
  font-size: clamp(36px, 4vw, 52px);
  color: var(--brown);
  letter-spacing: 0.5px;
  line-height: 1;
}

/* ─── HOMEPAGE HERO ─── */
.ck-hero-edito {
  position: relative !important;
  min-height: 720px;
  padding: 80px 48px 100px;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden !important;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  box-sizing: border-box;
}

.ck-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 32px;
}
.ck-brand--stacked {
  flex-direction: column;
  gap: 8px;
  position: relative;
}
.ck-brand--stacked::before {
  content: '';
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(171,208,130,0.22) 0%, transparent 72%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.ck-brand-logo {
  height: 260px !important;
  width: auto !important;
  position: relative;
  z-index: 1;
  animation: ck-logo-float 5s ease-in-out 0.3s infinite;
}
.ck-brand--stacked .ck-brand-logo { height: 260px !important; }

@keyframes ck-logo-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

.ck-brand-name {
  font-family: 'Fjalla One', sans-serif !important;
  font-size: clamp(64px, 9vw, 110px);
  font-weight: 400;
  color: var(--green-deep);
  line-height: 1.05;
  letter-spacing: 0.5px;
}
.ck-brand-tld { color: var(--green-deep); opacity: 0.95; }

/* Hero content centré au-dessus des veggies */
.ck-hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

/* Variante compacte pour la boutique */
.ck-hero-edito--shop { min-height: 560px; padding: 60px 48px 80px; }
.ck-hero-edito--shop .ck-brand--stacked .ck-brand-logo { height: 110px; }
.ck-hero-edito--shop .ck-brand-name { font-size: clamp(56px, 7vw, 92px); }
.ck-hero-edito--shop .ck-brand { margin-bottom: 24px; }
.ck-hero-edito--shop .ck-hero-tagline { margin-bottom: 10px; }

/* Bouton primary orange */
.ck-btn-primary--orange {
  background: var(--orange) !important;
  color: var(--brown) !important;
  box-shadow: 0 8px 22px rgba(255,165,0,0.35);
}
.ck-btn-primary--orange:hover {
  background: var(--orange-warm) !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255,144,32,0.45);
}

/* ─── TAMPON "SANS ENGAGEMENT" ─── */
.ck-stamp {
  position: absolute;
  left: calc(50% + 320px); /* bien à droite du bloc texte */
  bottom: 12%;
  width: 200px;
  height: 200px;
  z-index: 6;
  pointer-events: none;
  transform: rotate(-14deg);
  transform-origin: center;
  animation: stamp-pop 0.8s cubic-bezier(.2,1.4,.4,1) 0.4s both;
}
.ck-hero-edito--shop .ck-stamp {
  bottom: 14%;
  left: calc(50% + 290px);
  width: 180px;
  height: 180px;
}

/* Tablette */
@media (max-width: 1100px) {
  .ck-stamp { left: auto; right: 5%; bottom: 6%; width: 160px; height: 160px; }
  .ck-hero-edito--shop .ck-stamp { left: auto; right: 5%; bottom: 6%; width: 150px; height: 150px; }
}
@keyframes stamp-pop {
  from { opacity: 0; transform: rotate(-14deg) scale(0.4); }
  to   { opacity: 1; transform: rotate(-14deg) scale(1); }
}
.ck-stamp-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

@media (max-width: 900px) {
  .ck-stamp { width: 140px; height: 140px; right: 4%; bottom: 8%; }
}

.ck-hero-tagline {
  font-family: var(--sans);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 600;
  color: var(--brown);
  max-width: 720px;
  margin: 0 auto 40px;
  line-height: 1.4;
  text-align: center;
  position: relative;
  z-index: 5;
}
.ck-hero-tagline em {
  font-family: var(--display);
  font-style: normal;
  color: var(--green-dark);
  font-size: 1.15em;
}

/* ─── BOUTIQUE HERO ─── */
.ck-hero-veggies-left,
.ck-hero-veggies-right {
  position: relative !important;
  height: 320px;
  overflow: visible !important;
}

.ck-hero-text { text-align: center; position: relative; z-index: 5; }

.ck-hero-tagline-shop {
  font-family: var(--display);
  font-size: clamp(26px, 2.8vw, 36px);
  font-weight: 400;
  color: var(--brown);
  line-height: 1.2;
  margin-bottom: 12px;
}
.ck-hero-tagline-shop em { font-style: normal; color: var(--green-deep); }

.ck-hero-sub-shop {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--brown-soft);
  max-width: 520px;
  margin: 0 auto;
}

/* ─── FILTER BAR ─── */
.ck-filter-bar {
  max-width: 1280px;
  margin: 0 auto 24px;
  padding: 0 48px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.ck-filter-pill {
  background: white;
  border: 1.5px solid var(--gray-line);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  color: var(--brown-soft);
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
}
.ck-filter-pill:hover,
.ck-filter-pill.active {
  background: var(--green-deep);
  color: white;
  border-color: var(--green-deep);
}

/* ─── COMPO DE LA SEMAINE ─── */
.ck-compo-live {
  max-width: 1280px;
  margin: 60px auto 80px;
  padding: 0 48px;
  text-align: center;
}

.ck-compo-card {
  background: linear-gradient(135deg, var(--cream-warm) 0%, var(--cream) 100%);
  border-radius: 28px;
  padding: 50px 48px;
  position: relative;
  overflow: hidden;
}
.ck-compo-card::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(171,208,130,0.22) 0%, transparent 70%);
  border-radius: 50%;
}
.ck-compo-card::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255,165,0,0.10) 0%, transparent 70%);
  border-radius: 50%;
}

.ck-compo-eyebrow {
  font-family: var(--display);
  font-style: italic;
  color: var(--green-dark);
  font-size: 14px;
  margin-bottom: 10px;
  position: relative;
}

.ck-compo-title {
  font-family: var(--display);
  font-size: clamp(26px, 2.8vw, 34px);
  font-weight: 400;
  color: var(--brown);
  margin-bottom: 12px;
  position: relative;
}
.ck-compo-title em { font-style: normal; color: var(--green-deep); }

.ck-compo-week {
  font-size: 14px;
  color: var(--brown-soft);
  margin-bottom: 28px;
  font-style: italic;
  position: relative;
}

.ck-compo-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 840px;
  margin: 0 auto 24px;
  position: relative;
}

.ck-compo-pill {
  background: white;
  border: 1px solid rgba(143,181,112,0.25);
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
  color: var(--brown);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ck-compo-note {
  font-size: 12px;
  color: var(--brown-soft);
  font-style: italic;
  max-width: 480px;
  margin: 0 auto;
  position: relative;
}

/* ─── PAGINATION ─── */
.ck-pagination {
  max-width: 1280px;
  margin: 0 auto 60px;
  padding: 0 48px;
  text-align: center;
}
.ck-pagination .page-numbers {
  display: inline-flex;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.ck-pagination .page-numbers li a,
.ck-pagination .page-numbers li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  color: var(--brown-soft);
  transition: all 0.2s;
}
.ck-pagination .page-numbers li a:hover { background: var(--green-deep); color: white; }
.ck-pagination .page-numbers li span.current { background: var(--orange); color: white; }

/* ─── MOBILE ─── */
/* Header : bascule en menu hamburger sous 1100px (évite la nav qui déborde sur 2 lignes) */
@media (max-width: 1100px) {
  .clocky-header {
    padding: 8px 16px;
    grid-template-columns: 1fr auto;
    background: rgb(250, 250, 240);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    box-sizing: border-box;
  }
  .clocky-logo img { height: 28px; }
  /* Header fixe : le burger (42px) + padding 8px + bordure 1px ≈ 59px → réserver 60px */
  body.clocky-theme { padding-top: 60px; }
  .admin-bar .clocky-header { top: 46px; }
  .admin-bar body.clocky-theme { padding-top: 106px; }
  .clocky-nav { display: none; }
  .clocky-header > nav { display: none; }
  .clocky-dash-link { display: none; }
  .ck-burger { display: flex; }
  .ck-mobile-menu:not([hidden]) { display: block; }
  .ck-topbar { display: none; }
/* Lien user : cacher le texte (nom/Connexion), garder seulement l'icône */
  .clocky-user-link .ck-user-name { display: none; }
  .clocky-user-link svg { width: 22px; height: 22px; }
}

@media (max-width: 900px) {
  .ck-delivery-strip { gap: 16px; padding: 14px 20px; }
  .clocky-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .ck-slots-grid { grid-template-columns: repeat(2, 1fr); }
  .ck-brand-logo,
  .ck-brand--stacked .ck-brand-logo { height: 150px !important; }
}

@media (max-width: 500px) {
  .ck-delivery-strip { padding: 10px 16px; gap: 10px; }
  .ck-delivery-item { font-size: 13px; gap: 7px; }
}

@media (max-width: 600px) {
  .clocky-header { padding: 12px 16px; }
  /* Header un peu plus haut ici (padding 12px) → burger 42px + 24px + 1px ≈ 67px */
  body.clocky-theme { padding-top: 68px; }
  .admin-bar body.clocky-theme { padding-top: 114px; }
  .ck-page-header { padding: 0 20px; }
  .clocky-footer { padding: 40px 20px 20px; }
  .clocky-footer-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ─── HERO MOBILE — épuré ─── */
@media (max-width: 700px) {
  .ck-hero-edito {
    min-height: auto;
    padding: 30px 20px 40px;
  }
  .ck-hero-edito--shop {
    min-height: auto;
    padding: 24px 20px 30px;
  }
  /* Cache tous les légumes du hero, garde seulement 4 coins */
  .ck-hero-edito > .ck-veg { display: none !important; }
  .ck-hero-edito > .ck-veg:nth-of-type(1),
  .ck-hero-edito > .ck-veg:nth-of-type(3),
  .ck-hero-edito .ck-hero-veggies-left + * ~ .ck-veg:nth-of-type(1),
  .ck-hero-edito > .ck-veg:nth-of-type(6),
  .ck-hero-edito > .ck-veg:nth-of-type(8) {
    display: block !important;
    width: 55px !important;
    height: auto !important;
    top: auto !important;
    bottom: auto !important;
    right: auto !important;
    left: auto !important;
  }
  .ck-hero-edito > .ck-veg:nth-of-type(1) { top: 8px !important; left: 8px !important; }
  .ck-hero-edito > .ck-veg:nth-of-type(3) { bottom: 8px !important; left: 8px !important; }
  .ck-hero-edito > .ck-veg:nth-of-type(6) { top: 8px !important; right: 8px !important; }
  .ck-hero-edito > .ck-veg:nth-of-type(8) { bottom: 8px !important; right: 8px !important; }

  .ck-hero-content { padding: 0 8px; }
  .ck-brand--stacked { gap: 4px; margin-bottom: 18px; }
  .ck-brand--stacked .ck-brand-logo,
  .ck-hero-edito--shop .ck-brand--stacked .ck-brand-logo { height: 60px; }
  .ck-brand-name { font-size: 48px !important; }
  .ck-hero-edito--shop .ck-brand-name { font-size: 40px !important; }

  .ck-hero-tagline { font-size: 15px; margin-bottom: 16px; }
  .ck-hero-sub-shop { font-size: 13px; }

  /* Le tampon devient inline-flow sous le contenu */
  .ck-stamp,
  .ck-hero-edito--shop .ck-stamp {
    position: relative;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: 100px;
    height: 100px;
    margin: 24px auto 0;
  }
}

/* ─── BREADCRUMBS (global) ─── */
.woocommerce-breadcrumb,
nav.woocommerce-breadcrumb,
.ct-breadcrumbs,
.ct-breadcrumbs a,
.breadcrumb,
.breadcrumb a {
  color: var(--brown-soft) !important;
  font-family: var(--sans) !important;
  font-size: 12px !important;
  text-decoration: none !important;
}
.ct-breadcrumbs a:hover,
.woocommerce-breadcrumb a:hover { color: var(--brown) !important; text-decoration: underline !important; }

/* ═══════════════════════════════════════════════
   PAGE CONTACT
   ═══════════════════════════════════════════════ */

/* Hero */
.ck-contact-hero {
  background: var(--green-dark);
  padding: 80px 24px 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ck-contact-hero-inner {
  max-width: 620px;
  margin: 0 auto;
}
.ck-contact-eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  margin: 0 0 14px;
}
.ck-contact-title {
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  color: var(--cream);
  line-height: 1.15;
  margin: 0 0 18px;
}
.ck-contact-title em {
  font-style: italic;
  color: var(--green);
}
.ck-contact-subtitle {
  font-family: var(--sans);
  font-size: 15px;
  color: rgba(250,250,240,0.65);
  line-height: 1.6;
  margin: 0;
}

/* Body layout */
.ck-contact-body {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  max-width: 1000px;
  margin: 64px auto 80px;
  padding: 0 24px;
  align-items: start;
}

/* Aside infos */
.ck-contact-aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ck-contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--cream-warm);
  border-radius: 14px;
  padding: 18px 20px;
  border: 1px solid var(--gray-line);
}
.ck-contact-info-icon {
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}
.ck-contact-info-card h3 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--brown-mute);
  margin: 0 0 4px;
}
.ck-contact-info-card p {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--brown);
  margin: 0;
  font-weight: 500;
}
.ck-contact-veggies {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.ck-contact-veggies img {
  width: 85px;
  transform: rotate(var(--r, 0deg));
  filter: drop-shadow(0 4px 8px rgba(44,62,27,0.15));
  animation: veggie-float 3s ease-in-out infinite;
  animation-delay: var(--animation-delay, 0s);
}
.ck-contact-veggies img:nth-child(1) { --animation-delay: 0s;   margin-right: -10px; }
.ck-contact-veggies img:nth-child(2) { --animation-delay: 0.2s; z-index: 1; }
.ck-contact-veggies img:nth-child(3) { --animation-delay: 0.4s; margin-left: -10px; }
@keyframes veggie-float {
  0%, 100% { transform: rotate(var(--r, 0deg)) translateY(0); }
  50%       { transform: rotate(var(--r, 0deg)) translateY(-7px); }
}

/* Carte formulaire */
.ck-contact-form-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--gray-line);
  padding: 40px 44px;
  box-shadow: 0 4px 24px rgba(44,62,27,0.07);
}

/* Styles WPForms overrides */
.ck-contact-form-card .wpforms-form .wpforms-field-label {
  font-family: var(--sans) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: var(--brown) !important;
  letter-spacing: 0.3px !important;
  margin-bottom: 6px !important;
}
.ck-contact-form-card .wpforms-form input[type="text"],
.ck-contact-form-card .wpforms-form input[type="email"],
.ck-contact-form-card .wpforms-form textarea {
  border: 1.5px solid var(--gray-line) !important;
  border-radius: 10px !important;
  padding: 12px 14px !important;
  font-family: var(--sans) !important;
  font-size: 14px !important;
  color: var(--brown) !important;
  background: var(--cream) !important;
  transition: border-color .2s !important;
  box-shadow: none !important;
}
.ck-contact-form-card .wpforms-form input[type="text"]:focus,
.ck-contact-form-card .wpforms-form input[type="email"]:focus,
.ck-contact-form-card .wpforms-form textarea:focus {
  border-color: var(--green-deep) !important;
  outline: none !important;
  background: #fff !important;
}
.ck-contact-form-card .wpforms-form textarea {
  min-height: 130px !important;
  resize: vertical !important;
}
.ck-contact-form-card .wpforms-form .wpforms-submit {
  background: var(--green-dark) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 50px !important;
  padding: 14px 36px !important;
  font-family: var(--sans) !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  transition: background .2s, transform .15s !important;
  letter-spacing: 0.3px !important;
}
.ck-contact-form-card .wpforms-form .wpforms-submit:hover {
  background: var(--green-deep) !important;
  transform: translateY(-1px) !important;
}

/* Responsive */
@media (max-width: 820px) {
  .ck-contact-body {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .ck-contact-aside {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .ck-contact-info-card { flex: 1 1 calc(50% - 8px); }
  .ck-contact-veggies { display: none; }
  .ck-contact-form-card { padding: 28px 24px; }
  .ck-contact-hero .ck-veg { display: none !important; }
}

/* ═══════════════════════════════════════════════
   PAGE QUI SOMMES-NOUS (À propos)
   ═══════════════════════════════════════════════ */
.ck-about-hero {
  position: relative;
  overflow: hidden;
  background: var(--green-dark);
  padding: 84px 24px 74px;
  text-align: center;
}
.ck-about-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
}
.ck-about-eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  margin: 0 0 14px;
}
.ck-about-eyebrow--dark { color: var(--green-deep); }
.ck-about-title {
  font-family: var(--serif);
  font-size: clamp(34px, 5.5vw, 56px);
  font-weight: 900;
  color: var(--cream);
  line-height: 1.1;
  margin: 0 0 20px;
}
.ck-about-title em { font-style: italic; color: var(--green); }
.ck-about-intro {
  font-family: var(--sans);
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(250,250,240,0.78);
  line-height: 1.6;
  margin: 0;
}
.ck-about-intro strong { color: #fff; font-weight: 600; }

/* Corps */
.ck-about-body {
  max-width: 860px;
  margin: 0 auto;
  padding: 64px 24px 80px;
  display: flex;
  flex-direction: column;
  gap: 56px;
}
.ck-about-h2 {
  font-family: var(--serif);
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 900;
  color: var(--brown);
  line-height: 1.2;
  margin: 8px 0 18px;
}
.ck-about-h2 em { font-style: italic; color: var(--green-deep); }
.ck-about-block p,
.ck-about-split-text p {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.75;
  color: var(--brown-soft);
  margin: 0 0 14px;
}
.ck-about-block p:last-child,
.ck-about-split-text p:last-child { margin-bottom: 0; }
.ck-about-block strong,
.ck-about-split-text strong { color: var(--brown); font-weight: 600; }

/* Section texte + image */
.ck-about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.ck-about-split-media img {
  width: 100%;
  height: 100%;
  max-height: 340px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(44,62,27,0.14);
}

/* CTA bas de page */
.ck-about-cta {
  text-align: center;
  padding-top: 8px;
}
.ck-about-cta-text {
  font-family: var(--serif);
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 700;
  color: var(--brown);
  margin: 0 0 22px;
}
.ck-about-cta-text em { font-style: italic; color: var(--green-deep); }

@media (max-width: 760px) {
  .ck-about-split { grid-template-columns: 1fr; gap: 24px; }
  .ck-about-split-media { order: -1; }
  .ck-about-body { gap: 44px; padding: 48px 20px 64px; }
  .ck-about-hero .ck-veg { display: none !important; }
}

/* ═══════════════════════════════════════════════
   PAGE 404
   ═══════════════════════════════════════════════ */
.ck-404 {
  position: relative;
  overflow: hidden;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  background: var(--cream);
}
.ck-404-inner {
  position: relative;
  z-index: 2;
  max-width: 600px;
  text-align: center;
}
.ck-404-code {
  font-family: var(--serif);
  font-size: clamp(90px, 18vw, 160px);
  font-weight: 900;
  line-height: 0.9;
  color: var(--green-deep);
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.ck-404-title {
  font-family: var(--serif);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 900;
  color: var(--brown);
  line-height: 1.15;
  margin: 0 0 16px;
}
.ck-404-title em { font-style: italic; color: var(--orange-warm); }
.ck-404-text {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--brown-soft);
  max-width: 460px;
  margin: 0 auto 28px;
}
.ck-404-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.ck-404-search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--paper);
  border: 1.5px solid var(--gray-line);
  border-radius: var(--radius-pill);
  padding: 6px 6px 6px 16px;
  max-width: 420px;
  margin: 0 auto;
  transition: border-color .2s;
}
.ck-404-search:focus-within { border-color: var(--green-deep); }
.ck-404-search svg { width: 18px; height: 18px; color: var(--brown-mute); flex-shrink: 0; }
.ck-404-search input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--brown);
  outline: none;
  min-width: 0;
}
.ck-404-search button {
  background: var(--green-dark);
  color: #fff;
  border: none;
  border-radius: var(--radius-pill);
  padding: 10px 18px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s;
}
.ck-404-search button:hover { background: var(--green-deep); }

@media (max-width: 560px) {
  .ck-404-search button { padding: 10px 14px; }
  .ck-404 .ck-veg { display: none !important; }
}

/* ═══════════════════════════════════════════════
   PAGE COMMENT ÇA MARCHE
   ═══════════════════════════════════════════════ */
.ck-hiw-body {
  max-width: 960px;
  margin: 0 auto;
  padding: 64px 24px 80px;
}
.ck-hiw-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.ck-hiw-step {
  background: var(--paper);
  border: 1px solid var(--gray-line);
  border-radius: 20px;
  padding: 28px 28px 30px;
  box-shadow: 0 4px 20px rgba(44,62,27,0.05);
  transition: transform .15s, box-shadow .15s;
}
.ck-hiw-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(44,62,27,0.09);
}
.ck-hiw-step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.ck-hiw-num {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 900;
  color: #fff;
  background: var(--green-dark);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.ck-hiw-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(229,138,46,0.12);
  color: var(--orange-warm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.ck-hiw-icon svg { width: 24px; height: 24px; }
.ck-hiw-title {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 800;
  color: var(--brown);
  line-height: 1.25;
  margin: 0 0 10px;
}
.ck-hiw-text {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.65;
  color: var(--brown-soft);
  margin: 0;
}
.ck-hiw-text strong { color: var(--brown); font-weight: 600; }

.ck-hiw-cta {
  text-align: center;
  margin-top: 52px;
}
.ck-hiw-cta-text {
  font-family: var(--serif);
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 700;
  color: var(--brown);
  margin: 0 0 22px;
}
.ck-hiw-cta-text em { font-style: italic; color: var(--green-deep); }

@media (max-width: 700px) {
  .ck-hiw-grid { grid-template-columns: 1fr; gap: 16px; }
  .ck-hiw-body { padding: 48px 20px 64px; }
}

/* ═══════════════════════════════════════════════
   PAGES TEXTE / LÉGALES
   ═══════════════════════════════════════════════ */
.ck-legal-hero {
  background: var(--cream-warm);
  border-bottom: 1px solid var(--gray-line);
  padding: 56px 24px 44px;
}
.ck-legal-hero-inner {
  max-width: 760px;
  margin: 0 auto;
}
.ck-legal-title {
  font-family: var(--serif);
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 900;
  color: var(--brown);
  line-height: 1.15;
  margin: 6px 0 0;
}
.ck-legal-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}
.ck-legal-content {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.75;
  color: var(--brown-soft);
}
.ck-legal-content h1,
.ck-legal-content h2,
.ck-legal-content h3,
.ck-legal-content h4 {
  font-family: var(--serif);
  color: var(--brown);
  line-height: 1.25;
  margin: 36px 0 14px;
}
.ck-legal-content h2 { font-size: 26px; font-weight: 900; }
.ck-legal-content h3 { font-size: 20px; font-weight: 800; }
.ck-legal-content h4 { font-size: 17px; font-weight: 700; }
.ck-legal-content p { margin: 0 0 16px; }
.ck-legal-content ul,
.ck-legal-content ol { margin: 0 0 16px; padding-left: 22px; }
.ck-legal-content li { margin-bottom: 8px; }
.ck-legal-content strong { color: var(--brown); font-weight: 600; }
.ck-legal-content a {
  color: var(--green-deep);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.ck-legal-content a:hover { color: var(--green-dark); }
.ck-legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 20px;
  font-size: 14px;
}
.ck-legal-content th,
.ck-legal-content td {
  border: 1px solid var(--gray-line);
  padding: 10px 12px;
  text-align: left;
}
.ck-legal-content th { background: var(--cream-warm); color: var(--brown); font-weight: 700; }
.ck-legal-content hr { border: none; border-top: 1px solid var(--gray-line); margin: 28px 0; }

@media (max-width: 600px) {
  .ck-legal-hero { padding: 40px 20px 32px; }
  .ck-legal-body { padding: 36px 20px 60px; }
}

/* ═══════════════════════════════════════════════
   PAGE FAQ
   ═══════════════════════════════════════════════ */
.ck-faq-body {
  max-width: 960px;
  margin: 0 auto;
  padding: 64px 24px 80px;
}

/* Heading partagé */
.ck-faq-h2 {
  font-family: var(--serif);
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 400;
  color: var(--brown);
  margin: 0 0 36px;
  text-align: center;
  line-height: 1.15;
}
.ck-faq-h2 em { font-style: italic; color: var(--green-deep); }

/* ── Accordion ── */
.ck-faq-section {
  max-width: 760px;
  margin: 0 auto 72px;
}
.ck-faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ck-faq-item {
  background: var(--paper);
  border: 1px solid var(--gray-line);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(44,62,27,0.04);
  transition: box-shadow .2s;
}
.ck-faq-item[open] {
  border-color: rgba(111,154,77,0.4);
  box-shadow: 0 6px 28px rgba(44,62,27,0.08);
}
.ck-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  font-family: var(--sans);
  font-size: 15.5px;
  font-weight: 600;
  color: var(--brown);
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: color .15s;
}
.ck-faq-q::-webkit-details-marker { display: none; }
.ck-faq-item[open] > .ck-faq-q {
  color: var(--green-dark);
  border-bottom: 1px solid var(--gray-line);
}
.ck-faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--green-deep);
  transition: transform .25s ease;
}
.ck-faq-item[open] .ck-faq-chevron { transform: rotate(180deg); }
.ck-faq-a { padding: 20px 22px 24px; }
.ck-faq-a p {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.72;
  color: var(--brown-soft);
  margin: 0 0 12px;
}
.ck-faq-a p:last-child { margin-bottom: 0; }
.ck-faq-a strong { color: var(--brown); font-weight: 600; }
.ck-faq-a a { color: var(--green-deep); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.ck-faq-a a:hover { color: var(--green-dark); }

/* ── Saisons ── */
.ck-faq-seasons {
  border-top: 1px solid var(--gray-line);
  padding-top: 64px;
  margin-bottom: 64px;
}
.ck-faq-seasons-head { text-align: center; margin-bottom: 40px; }
.ck-faq-seasons-intro {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--brown-mute);
  max-width: 520px;
  margin: -18px auto 0;
  line-height: 1.65;
}
.ck-seasons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: start;
}
.ck-season-card {
  background: var(--paper);
  border: 1px solid var(--gray-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(44,62,27,0.05);
}
.ck-season-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 22px 16px 18px;
  text-align: center;
}
.ck-season-head--spring  { background: rgba(171,208,130,0.28); }
.ck-season-head--summer  { background: rgba(229,138,46,0.18); }
.ck-season-head--autumn  { background: rgba(208,112,32,0.20); }
.ck-season-head--winter  { background: rgba(107,79,64,0.11); }
.ck-season-icon { font-size: 26px; line-height: 1; }
.ck-season-name {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--brown);
  margin: 0;
  line-height: 1.2;
}
.ck-season-body { padding: 16px 16px 18px; }
.ck-season-cat {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--green-dark);
  margin: 14px 0 5px;
}
.ck-season-cat:first-child { margin-top: 0; }
.ck-season-list { list-style: none; padding: 0; margin: 0; }
.ck-season-list li {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--brown-soft);
  line-height: 1.5;
  padding: 4px 0 4px 14px;
  position: relative;
  border-bottom: 1px solid var(--line-soft);
}
.ck-season-list li:last-child { border-bottom: none; }
.ck-season-list li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--green-deep);
}

/* ── Responsive FAQ ── */
@media (max-width: 900px) {
  .ck-seasons-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .ck-faq-body { padding: 44px 20px 60px; }
  .ck-faq-section { margin-bottom: 48px; }
  .ck-faq-seasons { padding-top: 44px; margin-bottom: 44px; }
  .ck-seasons-grid { grid-template-columns: 1fr; gap: 12px; }
  .ck-season-head {
    flex-direction: row;
    justify-content: flex-start;
    padding: 14px 18px;
    gap: 12px;
  }
  .ck-season-icon { font-size: 20px; }
  .ck-season-name { font-size: 16px; }
}
