:root {
  --rose: #CC8BB9;
  --rose-deep: #A66898;
  --rose-soft: #E8C8DC;
  --rose-mist: #F8E8F1;
  --honey: #1A1A1A;
  --honey-deep: #000000;
  --honey-soft: #D4D4D4;
  --green-soft: #DCE7CC;
  --sage: #B5C5A3;
  --cream: #FFFCF7;
  --ink: #1A1A1A;
  --ink-soft: #4F4F4F;
  --ink-mute: #8A8A8A;
  --line: rgba(42,33,38,0.12);
  --line-soft: rgba(42,33,38,0.06);

  --font-display: "Fraunces", serif;
  --font-body: "General Sans", "Inter", system-ui, sans-serif;
  --font-hand: "Caveat", cursive;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* ============ BANDEAU ANNONCE (above topbar) ============ */
.eden-announce {
  display: block;
  width: 100%;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.005em;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.eden-announce__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 9px 24px;
  line-height: 1.35;
}
a.eden-announce--link {
  color: inherit;
  text-decoration: none;
  transition: filter .15s ease;
}
a.eden-announce--link:hover { filter: brightness(1.08); }
a.eden-announce--link:focus-visible { outline: 2px solid currentColor; outline-offset: -3px; }

/* Focus des champs : supprime le contour noir du navigateur, focus rosé discret partout */
input:not([type=checkbox]):not([type=radio]):not([type=submit]):not([type=button]):not([type=reset]):not([type=file]):not([type=range]):focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--rose);
  box-shadow: 0 0 0 2px rgba(204, 139, 185, .22);
}

/* Image d'avatar custom : remplit son conteneur rond (compte, support, partout) */
.leden-av-img { width: 100%; height: 100%; object-fit: cover; border-radius: inherit; display: block; }
.ls-avatar, .ls-cust-avatar, .ls-msg-avatar, .lsf-msg-avatar, .acc-nav-avatar { overflow: hidden; }

/* ============ TOP BAR ============ */
.topbar {
  background: var(--rose);
  color: #fff;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
}
.topbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 8px 24px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
}
.topbar-flag-group {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  height: 30px;
  padding: 0 12px;
  border-radius: 10px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.28);
  color: #fff;
  transition: background 0.2s;
  font: inherit;
  font-size: 12.5px;
}
.topbar-flag-group:hover { background: rgba(255,255,255,0.32); }
.topbar-flag-group[data-soon] { opacity: 0.6; }
.topbar-flag-group[data-soon]:hover { opacity: 1; }
/* Langue + support masqués UNIQUEMENT sur le checkout (pas sur la home). */
body.woocommerce-checkout .topbar-flag-group, body.woocommerce-checkout .topbar-account-btn { display: none !important; }
.topbar-flag {
  display: inline-flex;
  width: 16px;
  height: 11px;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.08);
  flex-shrink: 0;
}
.topbar-flag span { flex: 1; height: 100%; }
.topbar-flag.fr span:nth-child(1) { background: #002395; }
.topbar-flag.fr span:nth-child(2) { background: #fff; }
.topbar-flag.fr span:nth-child(3) { background: #ED2939; }
.topbar-flag-label {
  font-size: 12.5px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.topbar-left { font-style: italic; opacity: 0.95; }
.topbar-left strong { display: block; font-style: normal; font-weight: 600; margin-bottom: 1px; }
.topbar-center { display: flex; align-items: center; justify-content: center; min-width: 0; flex: 1; }
.topbar-rotator {
  position: relative;
  height: 1.3em;
  min-width: 260px;
  display: inline-flex; align-items: center; justify-content: center;
}
.topbar-msg {
  display: inline-flex; align-items: center; gap: 6px;
  white-space: nowrap;
  color: inherit; text-decoration: none;
  font-size: 13.5px;
  transition: opacity 0.2s;
}
a.topbar-msg { cursor: pointer; }
a.topbar-msg:hover { opacity: 0.8; text-decoration: underline; }
/* Montant restant dans la topbar (message livraison) — pas de gras agressif,
 * juste un poids légèrement appuyé + tabular-nums + souligné fin pour le rendre
 * lisible sans dominer le reste de la phrase. */
.topbar-msg .topbar-amount {
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0;
  padding: 0 1px;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 100% 1.2px;
  background-position: 0 100%;
  background-repeat: no-repeat;
}
.topbar-msg--rot {
  position: absolute;
  inset: 0;
  display: inline-flex; align-items: center; justify-content: center;
  opacity: 0;
  /* --topbar-speed (durée par message) est défini inline en PHP par .topbar-rotator--desktop / --mobile.
   * Default 4s si jamais l'inline n'est pas posé. */
  animation: topbar-rot calc(var(--topbar-count, 4) * var(--topbar-speed, 4s)) ease-in-out infinite;
}
.topbar-msg--rot:nth-child(1) { animation-delay: 0s; }
.topbar-msg--rot:nth-child(2) { animation-delay: calc(1 * var(--topbar-speed, 4s)); }
.topbar-msg--rot:nth-child(3) { animation-delay: calc(2 * var(--topbar-speed, 4s)); }
.topbar-msg--rot:nth-child(4) { animation-delay: calc(3 * var(--topbar-speed, 4s)); }
@keyframes topbar-rot {
  0%   { opacity: 0; transform: translateY(8px); }
  3%   { opacity: 1; transform: translateY(0); }
  22%  { opacity: 1; transform: translateY(0); }
  25%  { opacity: 0; transform: translateY(-8px); }
  100% { opacity: 0; transform: translateY(-8px); }
}
.topbar-rotator--mobile { display: none; }
.topbar-rotator--static .topbar-msg { position: static; opacity: 1; animation: none; }
@media (max-width: 768px) {
  .topbar-rotator--desktop { display: none; }
  .topbar-rotator--mobile { display: inline-flex; }
}
.topbar-sep { opacity: 0.5; }
.topbar-discord {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 12px;
  background: rgba(255,255,255,0.2);
  border-radius: 10px;
  font-weight: 500;
  transition: background 0.2s;
}
.topbar-discord:hover { background: rgba(255,255,255,0.32); }
.topbar-account {
  position: relative;
  display: inline-flex;
  gap: 4px;
  align-items: center;
}
.topbar-socials {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  margin-left: 4px;
}
.topbar-socials a {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.28);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.topbar-socials a svg { width: 16px; height: 16px; }
.topbar-socials a:hover { background: rgba(255,255,255,0.32); }
.topbar-account-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 4px 14px;
  height: 30px;
  border-radius: 10px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.28);
  color: #fff;
  font: inherit;
  font-size: 12.5px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}
.topbar-account-btn svg { width: 15px; height: 15px; }
.topbar-account-btn:hover { background: rgba(255,255,255,0.32); }
.topbar-account-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #fff;
  border: 1px solid var(--rose-soft);
  border-radius: 14px;
  padding: 8px 0;
  min-width: 220px;
  box-shadow: 0 20px 40px -16px rgba(0,0,0,0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  z-index: 100;
}
.topbar-account-wrapper {
  position: relative;
}
.topbar-account-wrapper:hover .topbar-account-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.topbar-account:hover .topbar-account-menu {
  opacity: 0;
  visibility: hidden;
}
.topbar-account-menu a {
  display: block;
  padding: 9px 18px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 500;
  transition: background 0.15s, color 0.15s;
}
.topbar-account-menu a:hover { background: var(--rose-mist); color: var(--rose-deep); }
.topbar-account-menu .topbar-account-sep {
  height: 1px;
  background: var(--rose-soft);
  margin: 6px 14px;
}
.topbar-right {
  display: flex; gap: 22px; align-items: center; justify-content: flex-end;
}
.topbar-right > * {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 500;
}

/* ============ HEADER ============ */
.header {
  background: var(--cream);
  padding: 18px 0 14px;
  position: relative;
  /* z-index > nav pour que le dropdown des résultats de recherche passe AU-DESSUS du menu nav et de ses sous-menus. */
  z-index: 200;
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 8px 24px;
  display: grid;
  /* Cellules latérales égales (160px) pour un centrage parfait de la search */
  grid-template-columns: 160px 1fr 160px;
  gap: 18px;
  align-items: center;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0;
  text-align: left;
  padding: 0;
}
.logo-img {
  width: 140px;
  height: auto;
  display: block;
}
/* Centrage de l'ensemble (search + bouton bien choisir) dans sa cellule du grid.
 * justify-content: center fait que tout est groupé au milieu, max-width sur
 * .search-stack limite la longueur de la search → écart symétrique de chaque côté. */
.search-wrap { display: flex; align-items: center; justify-content: center; gap: 10px; min-width: 0; transform: translateY(6px); }
.search-stack { flex: 0 1 520px; min-width: 0; position: relative; }
.search-stack .search { width: 100%; }
.quiz-trigger {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  /* Plus discret : fond blanc + bordure rose-soft (comme la search), pas de rose plein */
  background: #fff;
  color: var(--rose-deep);
  border: 2px solid var(--rose-soft);
  border-radius: 10px;
  /* Padding aligné précisément pour matcher la hauteur de la search (~42px) :
   * border 2+2 + padding 13+13 + font 12.5 line-height 1 = ~42px. */
  padding: 13px 16px;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
  white-space: nowrap;
}
.quiz-trigger:hover {
  background: var(--rose-mist);
  border-color: var(--rose);
  color: var(--rose-deep);
  transform: translateY(-1px);
}
.quiz-trigger svg { flex-shrink: 0; width: 15px; height: 15px; }
@media (max-width: 900px) {
  .quiz-trigger { padding: 9px 10px; }
  .quiz-trigger-label { display: none; }
}
/* IMPORTANT : sélecteur scopé à FORM.search — sinon ces règles fuient sur
   <body class="search"> (classe ajoutée par WordPress sur les pages de résultats),
   ce qui mettait tout le site en flex + bordure ronde et cassait inputs/boutons. */
form.search {
  display: flex;
  align-items: center;
  background: #fff;
  border: 2px solid var(--rose-soft);
  border-radius: 10px;
  padding: 3px 3px 3px 20px;
  transition: border-color 0.2s;
}
form.search:focus-within { border-color: var(--rose); }
form.search input {
  flex: 1;
  border: none;
  background: none;
  outline: none;
  padding: 8px 0;
  font: inherit;
  color: var(--ink);
  font-size: 13.5px;
  font-weight: 500;
}
form.search input::placeholder { color: var(--ink-mute); font-style: italic; font-weight: 400; }
form.search input::-webkit-search-cancel-button,
form.search input::-webkit-search-decoration { -webkit-appearance: none; appearance: none; display: none; }
form.search input::-ms-clear { display: none; width: 0; height: 0; }
form.search button {
  background: transparent;
  color: var(--rose-deep);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 13.5px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.18s, color 0.18s;
}
form.search button:hover { background: var(--rose-mist); color: var(--rose-deep); }

/* Dropdown AJAX live — résultats produits sous la barre de recherche.
 * Ancré sur .search-stack (sub-container qui ne contient que la form) pour
 * que le pop s'aligne sous la search et pas sous le bouton quiz à droite. */
.eden-search-pop {
  position: absolute; top: calc(100% + 8px); left: 0; right: 0; z-index: 950;
  background: #fff;
  border: 1px solid var(--rose-soft);
  border-radius: 10px;
  box-shadow: 0 24px 48px -24px rgba(166,104,152,0.28), 0 8px 24px -16px rgba(166,104,152,0.12);
  overflow: hidden;
  display: none;
  animation: eden-search-in .2s cubic-bezier(.2,.8,.25,1) both;
}
.eden-search-pop[data-open="1"] { display: block; }
.eden-search-pop__inner {
  padding: 6px;
  max-height: min(70vh, 540px);
  overflow-y: auto;
  /* Scrollbar masquée par défaut, apparaît au survol du dropdown */
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.eden-search-pop__inner::-webkit-scrollbar { width: 0; height: 0; }
.eden-search-pop:hover .eden-search-pop__inner {
  scrollbar-width: thin;
  scrollbar-color: var(--rose-soft) transparent;
}
.eden-search-pop:hover .eden-search-pop__inner::-webkit-scrollbar { width: 6px; }
.eden-search-pop:hover .eden-search-pop__inner::-webkit-scrollbar-thumb { background: var(--rose-soft); border-radius: 99px; }
.eden-search-pop:hover .eden-search-pop__inner::-webkit-scrollbar-thumb:hover { background: var(--rose); }
.eden-search-pop:hover .eden-search-pop__inner::-webkit-scrollbar-track { background: transparent; margin: 18px 0; }
.eden-search-pop:hover .eden-search-pop__inner::-webkit-scrollbar-button { display: none; }
@keyframes eden-search-in { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }
.eden-search__state {
  padding: 22px 18px;
  text-align: center;
  font-size: 13.5px;
  color: var(--ink);
  font-weight: 400;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.eden-search__state strong { color: var(--rose-deep); font-weight: 600; }
.eden-search__state-emoji { font-size: 24px; line-height: 1; }
.eden-search__item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  text-decoration: none; color: var(--ink);
  transition: background 0.15s;
}
.eden-search__item:hover, .eden-search__item.is-active { background: var(--rose-mist); }
.eden-search__thumb {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--rose-soft);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.eden-search__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.eden-search__txt { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 3px; }
.eden-search__title {
  font-size: 13.5px; font-weight: 500; color: var(--ink); line-height: 1.3;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.eden-search__price-row {
  font-size: 14px; color: var(--rose-deep); display: flex; align-items: baseline; gap: 5px; flex-wrap: wrap;
}
.eden-search__price-row .woocommerce-Price-amount,
.eden-search__price-row .eden-search__price { font-weight: 600; color: var(--rose-deep); }
.eden-search__price-row del { color: var(--ink-mute); font-weight: 400; opacity: 0.75; margin-right: 4px; }
.eden-search__price-row ins { background: none; text-decoration: none; }
.eden-search__from {
  font-size: 12.5px; font-weight: 500; color: var(--ink-mute); text-transform: lowercase; letter-spacing: 0.01em;
}
.eden-search__period { font-size: 11px; color: var(--ink-mute); font-weight: 400; }
.eden-search__oos {
  margin-left: auto; flex-shrink: 0;
  font-size: 10.5px; font-weight: 500; padding: 2px 8px; border-radius: 99px;
  background: #f4f0f3; color: var(--ink-mute); letter-spacing: 0.04em; text-transform: uppercase;
}
.eden-search__footer {
  margin-top: 2px; padding: 8px 12px 4px;
  border-top: 1px dashed var(--rose-soft);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  font-size: 12.5px;
}
.eden-search__count { color: var(--ink-mute); }
.eden-search__see-all {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--rose-deep); font-weight: 500; text-decoration: none;
  padding: 6px 12px; border-radius: 10px;
  background: var(--rose-mist); transition: background 0.2s, color 0.2s;
}
.eden-search__see-all:hover { background: var(--rose-soft); color: var(--rose-deepest, var(--rose-deep)); }
@media (max-width: 720px) {
  .eden-search-pop { border-radius: 18px; max-height: 65vh; }
  .eden-search__thumb { width: 42px; height: 42px; border-radius: 10px; }
  .eden-search__title { font-size: 13px; }
  .eden-search__price-row { font-size: 12px; }
}

/* Bouton Discord — variant header (legacy, conservé pour compat) */
.eden-discord {
  display: inline-flex; align-items: center; gap: 8px;
  height: 44px; padding: 0 14px;
  background: var(--rose-mist); color: var(--rose-deep);
  border-radius: 10px;
  font-size: 13px; font-weight: 500; text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.eden-discord:hover { background: #5865F2; color: #fff; transform: translateY(-1px); }
.eden-discord[hidden] { display: none; }
.eden-discord__icon { width: 18px; height: 18px; flex-shrink: 0; }
.eden-discord__txt { line-height: 1; }
.eden-discord__content { display: inline-flex; align-items: center; gap: 6px; line-height: 1; }
.eden-discord__content:empty { display: none; }
.eden-discord__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #43b581;
  box-shadow: 0 0 0 0 rgba(67,181,129,0.55);
  animation: eden-discord-pulse 2s ease-out infinite;
  flex-shrink: 0;
}
.eden-discord__dot[hidden] { display: none; }
@keyframes eden-discord-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(67,181,129,0.55); }
  70%  { box-shadow: 0 0 0 6px rgba(67,181,129,0); }
  100% { box-shadow: 0 0 0 0 rgba(67,181,129,0); }
}

/* Bouton Discord — variant topbar (à côté du sélecteur de langue) */
.topbar-left-group {
  display: inline-flex; align-items: center; gap: 8px; min-width: 0;
}
.eden-discord--topbar {
  height: 30px; padding: 0 12px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.28);
  color: #fff;
  font-size: 12.5px; font-weight: 500;
  gap: 6px;
}
.eden-discord--topbar:hover {
  background: rgba(255,255,255,0.32);
  color: #fff;
  transform: none;
}
.eden-discord--topbar .eden-discord__icon { width: 14px; height: 14px; }
.eden-discord--topbar .eden-discord__dot { width: 6px; height: 6px; }

@media (max-width: 900px) {
  .eden-discord { padding: 0 10px; height: 40px; font-size: 12px; gap: 6px; }
  .eden-discord__icon { width: 16px; height: 16px; }
  .eden-discord__txt { display: none; }
  .eden-discord__count { padding: 2px 6px; font-size: 10.5px; }
  .eden-discord--topbar { height: 28px; padding: 0 10px; font-size: 11.5px; }
  .eden-discord--topbar .eden-discord__icon { width: 12px; height: 12px; }
  .topbar-left-group { gap: 6px; }
  .topbar-flag-group { height: 28px; padding: 0 10px; }
}

.utils {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  transform: translateY(6px);
}
.icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 99px;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--rose-deep);
  position: relative;
  transition: color 0.2s, transform 0.15s;
}
.icon-btn svg { width: 26px; height: 26px; }
.icon-btn:hover { background: transparent; color: var(--rose); transform: translateY(-1px); }
@media (max-width: 720px) {
  .icon-btn { width: 40px; height: 40px; }
  .icon-btn svg { width: 24px; height: 24px; }
}
.icon-btn .badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background: var(--honey);
  color: #fff;
  font-size: 10.5px;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0;
  border-radius: 99px;
  min-width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  border: 2px solid var(--cream);
  /* Ombre douce pour faire ressortir la bulle du fond cream sans agressivité. */
  box-shadow: 0 2px 6px -1px rgba(26,26,26,0.25);
  transition: transform 0.18s cubic-bezier(0.34, 1.6, 0.64, 1);
}
/* Pop quand le compteur change (classe ajoutée par le JS sur ~350ms). */
.icon-btn .badge.is-pop { animation: leden-badge-pop 0.35s cubic-bezier(0.34, 1.6, 0.64, 1); }
.icon-btn .badge[hidden] { display: none !important; }

/* Pas d'outline carré au focus des champs/boutons (le thème gère ses propres focus rose). */
input:focus, input:focus-visible,
textarea:focus, textarea:focus-visible,
select:focus, select:focus-visible,
button:focus, button:focus-visible,
[contenteditable]:focus, [contenteditable]:focus-visible { outline: none !important; }

/* Barre de recherche : aucune ombre */
form.search, form.search:focus-within, form.search input { box-shadow: none !important; }

/* Sélecteur de langue (grisé — en cours de développement) */
.lang-switch { display: inline-flex; align-items: center; gap: 4px; background: none; border: 1px solid var(--rose-soft); border-radius: 99px; padding: 5px 10px; font-family: var(--font-body); font-size: 12.5px; font-weight: 600; letter-spacing: .02em; color: var(--ink-mute); cursor: pointer; opacity: .62; transition: opacity .15s, border-color .15s, color .15s; }
.lang-switch:hover { opacity: 1; border-color: var(--rose); color: var(--rose-deep); }
.lang-switch svg { opacity: .7; }

/* Bulle flottante : panier + retour en haut (bas droite) */
/* Bouton panier flottant masqué sur le checkout (redondant) */
body.woocommerce-checkout .leden-fab__cart, body.woocommerce-order-received .leden-fab__cart { display: none !important; }
.leden-fab { position: fixed; right: 20px; bottom: 20px; z-index: 940; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.leden-fab__btn { width: 52px; height: 52px; border-radius: 99px; border: none; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; position: relative; box-shadow: 0 12px 30px -10px rgba(166,104,152,.55); transition: transform .18s, background .18s; }
.leden-fab__cart { background: var(--rose); color: #fff; }
.leden-fab__cart:hover { background: var(--rose-deep); transform: translateY(-3px); }
.leden-fab__top { width: 46px; height: 46px; background: #fff; color: var(--rose-deep); border: 1px solid var(--rose-soft); box-shadow: 0 8px 22px -10px rgba(166,104,152,.4); }
.leden-fab__top:hover { background: var(--rose-mist); transform: translateY(-3px); }
.leden-fab__top[hidden] { display: none; }
/* Sur le footer (rose), le panier rose se fondrait → on le passe en sombre pour le détacher. */
.leden-fab.is-on-footer .leden-fab__cart { background: #1A1A1A; color: #fff; box-shadow: 0 12px 30px -10px rgba(0,0,0,.5); }
.leden-fab.is-on-footer .leden-fab__cart:hover { background: #000; }
.leden-fab.is-on-footer .leden-fab__count { border-color: #1A1A1A; }
.leden-fab__count { position: absolute; top: -3px; right: -3px; background: var(--honey, #E0A458); color: #fff; font-size: 11px; font-weight: 600; min-width: 19px; height: 19px; border-radius: 99px; display: flex; align-items: center; justify-content: center; padding: 0 5px; border: 2px solid var(--cream); }
.leden-fab__count[hidden] { display: none !important; }
@media (max-width: 720px) { .leden-fab { right: 14px; bottom: 14px; gap: 10px; } .leden-fab__btn { width: 48px; height: 48px; } .leden-fab__top { width: 42px; height: 42px; } }
@keyframes leden-badge-pop {
  0%   { transform: scale(1); }
  45%  { transform: scale(1.35); }
  100% { transform: scale(1); }
}

/* Mini wobble du panier quand des items sont dedans.
 * Joue toutes les 4s, durée ~1.5s. NE respecte PAS prefers-reduced-motion
 * (volontaire — le user veut que ça tourne même quand l'OS demande moins
 * d'animations). On anime uniquement le SVG pour pas désaxer la bulle. */
@keyframes leden-cart-wobble {
  0%, 80%, 100% { transform: rotate(0deg); }
  82%           { transform: rotate(-12deg); }
  86%           { transform: rotate(10deg); }
  90%           { transform: rotate(-6deg); }
  94%           { transform: rotate(4deg); }
  97%           { transform: rotate(-2deg); }
}
.icon-btn.cart-animate.has-items svg {
  display: inline-block;
  animation: leden-cart-wobble 4s ease-in-out infinite;
  transform-origin: 50% 60%;
  will-change: transform;
}

/* ============ NAV ============ */
.nav {
  background: var(--cream);
  padding: 8px 0 0;
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: center;
  gap: 4px;
  flex-wrap: wrap;
}
.nav-item {
  padding: 7px 13px;
  border-radius: 10px;
  font-size: 15.5px;
  font-weight: 500;
  color: var(--ink);
  gap: 8px;
  transition: background 0.18s, color 0.18s;
}
.nav-item:hover { background: var(--rose-mist); color: var(--rose-deep); }
.nav-item.active { background: var(--rose); color: #fff; }
.nav-item.soldes { background: transparent; color: var(--ink); }
.nav-item.soldes:hover { background: var(--rose-mist); color: var(--rose-deep); }

/* ============ BRUSH DIVIDER ============ */
.brush-divider {
  display: block;
  width: 100%;
  height: 36px;
  margin: -1px 0;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 1px 2px rgba(166, 104, 152, 0.08));
}

/* ============ HERO ============ */
.hero {
  position: relative;
  background: 
    radial-gradient(ellipse 80% 60% at 20% 30%, color-mix(in oklab, var(--rose-mist) 60%, transparent) 0%, transparent 100%),
    radial-gradient(ellipse 70% 60% at 85% 70%, color-mix(in oklab, var(--green-soft) 40%, transparent) 0%, transparent 100%),
    linear-gradient(180deg, var(--cream) 0%, color-mix(in oklab, var(--rose-mist) 25%, var(--cream)) 60%, var(--cream) 100%);
  padding: 0;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, color-mix(in oklab, var(--rose) 25%, transparent) 1px, transparent 1.5px);
  background-size: 28px 28px;
  opacity: 0.4;
  pointer-events: none;
}
.hero-deco {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}
.hero-deco-tl { top: 40px; left: 40px; opacity: 0.5; transform: rotate(-15deg); }
.hero-deco-br { bottom: 60px; right: 50px; opacity: 0.45; transform: rotate(160deg); }
.hero-deco-tr { top: 80px; right: 10%; opacity: 0.6; }
.hero-deco-bl { bottom: 90px; left: 8%; opacity: 0.55; }
.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 24px 80px;
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 32px;
  align-items: center;
  min-height: 480px;
  position: relative;
}
.hero-product {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-product-img {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1 / 1.2;
  background: 
    radial-gradient(ellipse at 30% 30%, #fff 0%, transparent 50%),
    linear-gradient(180deg, #fff 0%, #f0eee5 100%);
  border-radius: 18px;
  position: relative;
  box-shadow: 0 24px 48px -20px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  overflow: hidden;
}
.hero-product-img::before {
  content: "MÉLANGE PRAIRIE SAUVAGE";
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.9);
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid var(--line-soft);
}
.hero-product-img::after {
  content: "";
  position: absolute;
  inset: 30% 20%;
  background:
    radial-gradient(circle at 50% 40%, var(--rose-mist) 0%, transparent 50%),
    linear-gradient(135deg, var(--rose-soft) 30%, var(--rose) 100%);
  border-radius: 12px;
}

.hero-text {
  text-align: center;
  position: relative;
}
.hero-eyebrow {
  font-family: var(--font-hand);
  font-size: 28px;
  color: var(--honey-deep);
  margin-bottom: 4px;
  display: inline-block;
  transform: rotate(-2deg);
}
.hero-h1 {
  font-family: var(--font-display);
  font-size: 56px;
  letter-spacing: -0.03em;
  line-height: 0.96;
  font-weight: 500;
  margin: 0 0 8px;
  color: var(--ink);
  text-transform: uppercase;
}
.hero-h1 em {
  display: block;
  font-style: italic;
  font-weight: 400;
  color: var(--rose-deep);
  font-size: 32px;
  text-transform: none;
  letter-spacing: -0.02em;
  margin-top: 4px;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.hero-cta {
  display: inline-block;
  margin-top: 22px;
  background: var(--rose);
  color: #fff;
  padding: 12px 26px;
  border-radius: 14px;
  font-weight: 500;
  font-size: 13.5px;
  letter-spacing: -0.005em;
  transition: transform 0.2s, background 0.2s;
}
.hero-cta:hover { background: var(--rose-deep); transform: translateY(-2px); }
.hero-arrow {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 70px;
  color: var(--ink);
  opacity: 0.6;
}

/* Sparkles around hero text */
.hero-sparkle {
  position: absolute;
  color: var(--honey);
  opacity: 0.85;
}

.hero-rabbit {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-rabbit-img {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 50% 30%, #fff 0%, transparent 40%),
    linear-gradient(180deg, color-mix(in oklab, var(--green-soft) 75%, #fff) 0%, color-mix(in oklab, var(--green-soft) 60%, #fff) 100%);
  position: relative;
  box-shadow: 0 24px 48px -20px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  overflow: hidden;
}
.hero-rabbit-img::after {
  content: "PHOTO LAPIN NAIN — PRAIRIE";
  position: absolute;
  bottom: 22px;
  background: rgba(255,255,255,0.9);
  padding: 3px 8px;
  border-radius: 4px;
}

.hero-floor {
  display: none;
}

/* ============ HERO SLIDER ============ */
.hero-slider {
  max-width: 1280px;
  margin: 0 auto;
  padding: 96px 24px 96px;
  position: relative;
  z-index: 2;
  min-height: 540px;
}
.hero-slide {
  display: none;
  grid-template-columns: 1fr 1.15fr;
  gap: 36px;
  align-items: stretch;
  animation: heroSlideIn 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-slide.active { display: grid; }
@keyframes heroSlideIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-slide-text {
  padding-right: 8px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 12px 8px 12px 0;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  background: #fff;
  border: 1px solid var(--rose-soft);
  border-radius: 99px;
  font-size: 11.5px;
  font-weight: 500;
  color: var(--rose-deep);
  margin-bottom: 16px;
}
.hero-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 99px;
  background: var(--rose);
}
.hero-slide-h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 4.6vw, 62px);
  letter-spacing: -0.032em;
  line-height: 0.96;
  font-weight: 500;
  margin: 0 0 14px;
  color: var(--ink);
}
.hero-slide-h1 em {
  font-style: italic;
  color: var(--rose-deep);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.hero-slide-sub {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 100%;
  margin: 0 0 24px;
}
.hero-slide-ctas { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }

.hero-slide-visual {
  position: relative;
  width: 100%;
  max-width: 540px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  justify-self: end;
  align-self: center;
}
.hero-slide-img,
.hero-slide-img-2 {
  position: relative !important;
  aspect-ratio: 3 / 4 !important;
  width: 100% !important;
  height: auto !important;
  inset: auto !important;
  border-radius: 22px !important;
  background-size: contain !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  box-shadow: 0 24px 48px -22px rgba(0,0,0,0.18);
  transform: none !important;
  border: none !important;
  background-color: #fff;
  margin: 0 !important;
  bottom: auto !important;
  right: auto !important;
}
.hero-slide-img::after,
.hero-slide-img-2::after { display: none; }
.hero-slide-img {
  position: absolute;
  inset: 0;
  border-radius: 28px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 24px;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  box-shadow: 0 30px 60px -28px rgba(204,139,185,0.4);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.hero-slide-img::after {
  display: none;
}
.hero-slide-img.ph-rose-mist {
  background:
    radial-gradient(ellipse at 50% 30%, color-mix(in oklab, var(--rose-mist) 60%, #fff) 0%, transparent 50%),
    linear-gradient(180deg, var(--rose-soft), var(--rose-mist));
}
.hero-slide-img.ph-green-soft {
  background:
    radial-gradient(ellipse at 50% 30%, color-mix(in oklab, var(--green-soft) 50%, #fff) 0%, transparent 50%),
    linear-gradient(180deg, var(--green-soft), color-mix(in oklab, var(--green-soft) 60%, #fff));
}
.hero-slide-img.ph-honey-soft {
  background:
    radial-gradient(ellipse at 50% 30%, color-mix(in oklab, var(--honey-soft) 60%, #fff) 0%, transparent 50%),
    linear-gradient(180deg, var(--honey-soft), color-mix(in oklab, var(--honey-soft) 60%, #fff));
}
.hero-slide-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  background: var(--ink);
  color: var(--cream);
  padding: 7px 16px;
  border-radius: 99px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 13px;
  z-index: 4;
  white-space: nowrap;
}

.hero-arrow-btn {
  position: absolute;
  width: 42px;
  height: 42px;
  border-radius: 99px;
  background: #fff;
  border: 1px solid var(--rose-soft);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 8px 20px -8px rgba(0,0,0,0.12);
  cursor: pointer;
  bottom: 32px;
}
.hero-arrow-btn:hover { background: var(--rose); color: #fff; border-color: var(--rose); }
.hero-arrow-prev { right: 70px; }
.hero-arrow-next { right: 20px; }
.hero-dots {
  position: absolute;
  bottom: 44px;
  left: 24px;
  transform: none;
  display: flex;
  gap: 8px;
  z-index: 4;
}
.hero-dot {
  width: 28px;
  height: 4px;
  border-radius: 99px;
  background: var(--rose-soft);
  transition: background 0.25s, width 0.25s;
  cursor: pointer;
}
.hero-dot.active { background: var(--rose); width: 42px; }


/* ============ MARQUEE ============ */
.marquee {
  background: var(--ink);
  color: var(--cream);
  padding: 11px 0;
  overflow: hidden;
  position: relative;
  margin-top: 0;
  display: block;
}
.marquee::before, .marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--ink) 0%, transparent 100%); }
.marquee::after { right: 0; background: linear-gradient(90deg, transparent 0%, var(--ink) 100%); }
.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 55s linear infinite;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 28px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  color: var(--cream);
  white-space: nowrap;
  letter-spacing: -0.005em;
}
.marquee-item svg { color: var(--rose); flex-shrink: 0; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ SEO BLOC ============ */
.seo-bloc {
  padding: 48px 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.seo-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}
.seo-header { text-align: center; margin-bottom: 28px; }
.seo-intro {
  max-width: 560px;
  margin: 14px auto 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.55;
}
.seo-tabs {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.seo-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1.5px solid var(--rose-soft);
  color: var(--ink-soft);
  padding: 11px 22px;
  border-radius: 99px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
}
.seo-tab:hover { color: var(--rose-deep); border-color: var(--rose); }
.seo-tab.active {
  background: var(--rose);
  border-color: var(--rose);
  color: #fff;
}

.seo-panels { position: relative; }
.seo-panel {
  display: none;
  grid-template-columns: 5fr 7fr;
  gap: 48px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--rose-soft);
  border-radius: 28px;
  padding: 36px 40px;
  animation: seoFade 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.seo-panel.active { display: grid; }
@keyframes seoFade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.seo-panel-visual {
  position: relative;
  aspect-ratio: 4 / 4.5;
  border-radius: 20px;
  overflow: hidden;
}
.seo-panel-img {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 16px;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.seo-panel-img::after {
  content: attr(data-label);
  background: rgba(255,255,255,0.9);
  padding: 3px 8px;
  border-radius: 4px;
}
.seo-panel-img.ph-prairie {
  background:
    radial-gradient(ellipse at 50% 30%, color-mix(in oklab, var(--green-soft) 50%, #fff) 0%, transparent 50%),
    linear-gradient(180deg, var(--green-soft), color-mix(in oklab, var(--green-soft) 60%, #fff));
}
.seo-panel-img.ph-rose {
  background:
    radial-gradient(ellipse at 50% 30%, color-mix(in oklab, var(--rose-mist) 50%, #fff) 0%, transparent 50%),
    linear-gradient(180deg, var(--rose-soft), var(--rose-mist));
}
.seo-panel-img.ph-honey {
  background:
    radial-gradient(ellipse at 50% 30%, color-mix(in oklab, var(--honey-soft) 60%, #fff) 0%, transparent 50%),
    linear-gradient(180deg, var(--honey-soft), color-mix(in oklab, var(--honey-soft) 60%, #fff));
}
.seo-panel-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #fff;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 13px;
  color: var(--rose-deep);
  padding: 6px 12px;
  border-radius: 99px;
  z-index: 2;
}
.seo-panel-text { color: var(--ink); }
.seo-panel-h3 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  color: var(--ink);
}
.seo-panel-text p {
  margin: 0 0 14px;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink-soft);
}
.seo-panel-text p:last-of-type { margin-bottom: 18px; }
.seo-panel-text strong { color: var(--rose-deep); font-weight: 500; }
.seo-panel-cta {
  display: inline-block;
  background: var(--rose);
  color: #fff;
  padding: 12px 22px;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background 0.2s;
}
.seo-panel-cta:hover { background: var(--rose-deep); }

.seo-deco {
  position: absolute;
  bottom: 40px;
  right: 40px;
  width: 100px;
  height: 100px;
  color: var(--rose-soft);
  opacity: 0.6;
  z-index: 1;
}

/* ============ STAT TITLE ============ */
.stat-title {
  text-align: center;
  padding: 56px 24px 32px;
  position: relative;
}
.stat-title-rays {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 380px;
  height: 90px;
  pointer-events: none;
  opacity: 0.7;
}
.stat-title-eyebrow {
  font-family: var(--font-hand);
  font-size: 36px;
  color: var(--rose-deep);
  display: block;
}
.stat-title-main {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-top: 4px;
}
.stat-title-main em {
  font-style: italic;
  color: var(--rose-deep);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

/* ============ UNIVERS MARQUEE ============ */
.univers {
  padding: 0 0 48px;
  position: relative;
  overflow: hidden;
}
.univers-marquee {
  position: relative;
  overflow: hidden;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px 0;
  isolation: isolate;
}
.univers-marquee::before,
.univers-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 3;
  pointer-events: none;
}
.univers-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--cream) 0%, transparent 100%);
}
.univers-marquee::after {
  right: 0;
  background: linear-gradient(90deg, transparent 0%, var(--cream) 100%);
}
.univers-track {
  display: flex;
  gap: 16px;
  animation: universScroll 60s linear infinite;
  width: max-content;
  padding: 8px 0;
}
.univers-track:hover { animation-play-state: paused; }
@keyframes universScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.univers-card {
  position: relative;
  width: 280px;
  height: 360px;
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
  cursor: pointer;
  background: var(--rose-mist);
  box-shadow: 0 12px 28px -16px rgba(0,0,0,0.15);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s;
}
.univers-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -16px rgba(0,0,0,0.2);
}
.univers-card-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.univers-card:hover .univers-card-img { transform: scale(1.05); }
.univers-card-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px 22px 22px;
  text-align: center;
  z-index: 2;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.55) 100%);
}
.univers-card-title {
  font-family: var(--font-display);
  font-size: 24px;
  color: #fff;
  font-weight: 500;
  letter-spacing: -0.018em;
  line-height: 1.05;
  margin-bottom: 12px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}
.univers-card-tag {
  display: inline-block;
  font-family: var(--font-hand);
  font-size: 17px;
  color: var(--rose-mist);
  font-weight: 600;
  transform: rotate(-2deg);
  margin-bottom: 2px;
}
.univers-card-cta {
  display: inline-block;
  background: var(--rose);
  color: #fff;
  padding: 8px 22px;
  border-radius: 12px;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.04em;
  transition: background 0.2s;
}
.univers-card:hover .univers-card-cta { background: var(--rose-deep); }

/* Floating hamster sketch */
.univers-deco {
  position: absolute;
  right: -40px;
  top: 130px;
  width: 130px;
  height: 130px;
  opacity: 0.8;
  z-index: -1;
}

/* ============ FEATURES BAND ============ */
.features {
  background: 
    radial-gradient(ellipse 80% 60% at 20% 30%, color-mix(in oklab, var(--rose-mist) 60%, transparent) 0%, transparent 100%),
    radial-gradient(ellipse 70% 60% at 85% 70%, color-mix(in oklab, var(--green-soft) 40%, transparent) 0%, transparent 100%),
    linear-gradient(180deg, var(--cream) 0%, color-mix(in oklab, var(--rose-mist) 25%, var(--cream)) 60%, var(--cream) 100%);
  color: var(--ink);
  position: relative;
  padding: 48px 0;
  margin: 0;
}
.features::before {
  content: "";
  display: none;
}
.features::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 50px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1280 50' preserveAspectRatio='none'><path d='M0 50 L 1280 50 L 1280 24 C 1180 6, 1080 36, 980 22 C 880 6, 780 36, 680 18 C 580 6, 480 36, 380 18 C 280 6, 180 36, 80 22 C 40 14, 20 18, 0 28 Z' fill='%23FFFCF7'/></svg>");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.features-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature {
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
}
.feature-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}
.feature-text { line-height: 1.2; }
.feature-title { font-size: 17px; font-weight: 600; color: var(--ink); }
.feature-sub { font-size: 13.5px; color: var(--ink-soft); margin-top: 4px; font-weight: 400; }

/* ============ SECTION TITLES (unified — like reviews title) ============ */
.section-title {
  text-align: center;
  padding: 48px 24px 36px;
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
}
.section-title::before,
.section-title::after { content: none; display: none; }
.section-eyebrow {
  font-family: var(--font-hand);
  font-size: 26px;
  color: var(--rose-deep);
  display: block;
  transform: rotate(-1.5deg);
  margin-bottom: 6px;
  font-weight: 600;
  position: relative;
  z-index: 2;
}
.section-h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.022em;
  line-height: 1.15;
  margin: 6px 0 12px;
  position: relative;
  z-index: 2;
}
.section-h2 em {
  font-style: italic;
  color: var(--rose-deep);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.section-sub {
  margin-top: 8px;
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.5;
  font-style: italic;
  position: relative;
  z-index: 2;
  max-width: none;
  white-space: nowrap;
}
.section-rays { display: none; }

.products-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px 48px;
  position: relative;
}
.products-marquee {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.products-marquee::before,
.products-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 3;
  pointer-events: none;
}
.products-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--cream) 0%, transparent 100%);
}
.products-marquee::after {
  right: 0;
  background: linear-gradient(90deg, transparent 0%, var(--cream) 100%);
}
.products-track {
  display: flex;
  gap: 18px;
  animation: productsScroll 70s linear infinite;
  width: max-content;
  padding: 8px 0;
}
.products-track:hover { animation-play-state: paused; }
@keyframes productsScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.products-track .product-card { width: 280px; flex-shrink: 0; }

.products {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.product-card {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s, border-color 0.3s;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 56px -24px rgba(204,139,185,0.32);
  border-color: var(--rose-soft);
}
.product-img-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  background: linear-gradient(180deg, color-mix(in oklab, var(--rose-mist) 30%, #fff) 0%, #fff 100%);
  overflow: hidden;
}
.product-img {
  position: absolute;
  inset: 16px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.product-card:hover .product-img { transform: scale(1.05); }
.product-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
  align-items: flex-start;
}
.badge-stock {
  background: rgba(255,255,255,0.95);
  color: #4a6b27;
  border-radius: 99px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 1px solid var(--green-soft);
  backdrop-filter: blur(4px);
}
.badge-stock-dot {
  width: 6px;
  height: 6px;
  border-radius: 99px;
  background: #6b9333;
}
.badge-new {
  background: none;
  color: var(--rose-deep);
  font-family: var(--font-hand);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transform: rotate(-6deg);
  padding: 0;
  align-self: flex-start;
  text-shadow: 0 2px 4px rgba(255,255,255,0.8);
  line-height: 1;
}
.product-fav {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 99px;
  background: rgba(255,255,255,0.95);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--rose-deep);
  z-index: 2;
  border: 1px solid var(--line-soft);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.product-fav:hover { background: var(--rose); color: #fff; border-color: var(--rose); transform: scale(1.08); }
.product-info {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.product-brand {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 13px;
  color: var(--rose-deep);
  letter-spacing: -0.005em;
  line-height: 1;
}
.product-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.25;
  letter-spacing: -0.008em;
  min-height: 40px;
}
.product-rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--rose);
  font-size: 12px;
  margin-top: -2px;
}
.product-rating-num {
  color: var(--ink);
  font-weight: 600;
  margin-left: 2px;
  font-family: var(--font-body);
}
.product-rating-count {
  color: var(--ink-mute);
  margin-left: 2px;
  font-family: var(--font-body);
  font-weight: 400;
}
.product-bottom {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px dashed var(--rose-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.product-price {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.015em;
  line-height: 1;
}
.product-price-cents { font-size: 16px; font-weight: 500; color: var(--ink); }
.product-price small { font-size: 14px; color: var(--ink-soft); margin-left: 2px; font-weight: 400; }
.product-cta {
  background: var(--rose);
  color: #fff;
  border-radius: 12px;
  padding: 9px 16px;
  font-weight: 500;
  font-size: 12.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
  border: none;
  cursor: pointer;
  letter-spacing: -0.005em;
}
.product-cta:hover { background: var(--rose-deep); transform: translateY(-1px); }
.product-img {
  aspect-ratio: 1 / 1;
  background:
    radial-gradient(ellipse at 50% 30%, #fff 0%, transparent 60%),
    linear-gradient(180deg, var(--rose-mist) 0%, color-mix(in oklab, var(--rose-mist) 50%, var(--cream)) 100%);
  border-radius: 16px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  overflow: hidden;
}
.product-img::before { display: none; }
.product-badges {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 2;
}
.badge-stock {
  background: #fff;
  color: #4a6b27;
  border-radius: 99px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 4px 10px -4px rgba(0,0,0,0.1);
  border: 1px solid var(--green-soft);
}
.badge-new {
  background: var(--honey);
  color: #fff;
  border-radius: 99px;
  padding: 5px 12px;
  font-family: var(--font-hand);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transform: rotate(-8deg);
  align-self: flex-start;
  box-shadow: 0 4px 10px -4px color-mix(in oklab, var(--honey) 70%, transparent);
}
.product-fav {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 99px;
  background: rgba(255,255,255,0.95);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--rose-deep);
  z-index: 2;
  transition: background 0.2s, color 0.2s;
  border: 1px solid var(--line-soft);
  box-shadow: 0 4px 10px -4px rgba(0,0,0,0.1);
}
.product-fav:hover { background: var(--rose); color: #fff; border-color: var(--rose); }
.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.product-brand {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 12.5px;
  color: var(--rose-deep);
  text-transform: none;
  letter-spacing: 0;
}
.product-stars {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: var(--honey);
  font-size: 11.5px;
}
.product-stars-num { color: var(--ink); font-weight: 600; margin-left: 3px; }
.product-name {
  margin-top: 6px;
  font-family: var(--font-display);
  font-size: 15.5px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.25;
  letter-spacing: -0.005em;
  min-height: 38px;
}
.product-bottom {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px dashed var(--rose-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.product-price {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.015em;
  line-height: 1;
}
.product-price small { font-size: 13px; color: var(--ink-soft); margin-left: 2px; font-weight: 400; }
.product-cta {
  background: var(--ink);
  color: #fff;
  border-radius: 12px;
  padding: 9px 14px;
  font-weight: 500;
  font-size: 12.5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.product-cta:hover { background: var(--rose); transform: translateY(-1px); }

/* ============ REVIEWS ============ */
.reviews {
  padding: 48px 0;
  position: relative;
}
.reviews-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.reviews-marquee {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-radius: 0;
}
.reviews-marquee::before,
.reviews-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 3;
  pointer-events: none;
}
.reviews-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--cream) 0%, transparent 100%);
}
.reviews-marquee::after {
  right: 0;
  background: linear-gradient(90deg, transparent 0%, var(--cream) 100%);
}
.reviews-title {
  text-align: center;
  margin-bottom: 32px;
  position: relative;
}
.reviews-title .section-eyebrow {
  font-family: var(--font-hand);
  font-size: 26px;
  color: var(--rose-deep);
  font-weight: 600;
  transform: rotate(-1.5deg);
  display: inline-block;
}
.reviews-title .section-h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.022em;
  margin: 6px 0 12px;
}
.reviews-title .section-h2 em {
  font-style: italic;
  color: var(--rose-deep);
  font-weight: 400;
}
.reviews-title-stars {
  display: inline-flex;
  gap: 4px;
  color: var(--rose);
}
.reviews-grass-l,
.reviews-grass-r {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 80px;
  height: 40px;
  opacity: 0.6;
}
.reviews-grass-l { left: 26%; }
.reviews-grass-r { right: 26%; transform: translateY(-50%) scaleX(-1); }

.reviews-track {
  display: flex;
  gap: 16px;
  animation: reviewScroll 80s linear infinite;
  width: max-content;
}
.reviews-track:hover { animation-play-state: paused; }
.reviews-track .review-card {
  width: 340px;
  flex-shrink: 0;
  min-height: 220px;
}
@keyframes reviewScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.reviews-slide, .reviews-controls, .reviews-dots, .reviews-arrows, .reviews-arrow, .reviews-dot { display: none !important; }
.reviews-score {
  background: #fff;
  border-radius: 18px;
  padding: 22px 18px;
  text-align: center;
  border: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.reviews-score-medal {
  width: 80px;
  height: 80px;
  margin: 0 auto 8px;
}
.reviews-score-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 500;
  color: var(--rose-deep);
  letter-spacing: -0.02em;
  line-height: 1;
}
.reviews-score-num small { font-size: 16px; color: var(--ink-mute); }
.reviews-score-stars {
  display: inline-flex;
  gap: 2px;
  color: var(--honey);
  margin: 6px 0;
}
.reviews-score-count {
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: 4px;
}
.reviews-score-quality {
  font-size: 10.5px;
  color: var(--ink-mute);
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed var(--line);
}

.review-card {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  border: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
}
.review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.review-flag {
  display: inline-flex;
  width: 26px;
  height: 18px;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 0 0 1px var(--line);
}
.review-flag span { flex: 1; }
.review-flag span:nth-child(1) { background: #002395; }
.review-flag span:nth-child(2) { background: #fff; }
.review-flag span:nth-child(3) { background: #ED2939; }
.review-stars { color: var(--honey); display: inline-flex; gap: 2px; }
.reviews-score-stars { color: var(--honey) !important; }
.review-text {
  font-size: 13.5px;
  color: var(--ink);
  line-height: 1.5;
  flex: 1;
}
.review-bottom {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.review-author { display: flex; align-items: center; gap: 8px; }
.review-avatar {
  width: 28px;
  height: 28px;
  border-radius: 99px;
  background: var(--rose-mist);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--rose-deep);
  font-weight: 600;
}
.review-author-info { line-height: 1.2; }
.review-author-name { font-size: 12.5px; font-weight: 600; color: var(--ink); }
.review-author-date { font-size: 10.5px; color: var(--ink-mute); }
.review-verified {
  font-family: var(--font-hand);
  font-size: 14px;
  color: var(--rose-deep);
}

/* ============ ABOUT ============ */
.about {
  padding: 48px 24px;
  position: relative;
  background: var(--cream);
}
.about-inner {
  max-width: 1280px;
  margin: 0 auto;
  background: var(--rose-mist);
  border-radius: 32px;
  padding: 64px 56px;
  position: relative;
  overflow: hidden;
}
.about-inner::before {
  content: "“";
  position: absolute;
  top: 20px;
  left: 36px;
  font-family: var(--font-display);
  font-size: 180px;
  line-height: 1;
  color: var(--rose);
  opacity: 0.25;
  font-style: italic;
}
.about-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.about-portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 18px;
  overflow: hidden;
  background:
    linear-gradient(180deg, color-mix(in oklab, var(--rose-mist) 40%, #fff) 0%, var(--rose-soft) 100%);
  box-shadow: 0 24px 48px -24px rgba(204,139,185,0.4);
}
.about-portrait-tag {
  position: absolute;
  bottom: -10px;
  right: -10px;
  background: var(--rose);
  color: #fff;
  padding: 10px 18px;
  border-radius: 99px;
  font-family: var(--font-hand);
  font-size: 18px;
  transform: rotate(-3deg);
  box-shadow: 0 8px 20px -6px color-mix(in oklab, var(--rose) 60%, transparent);
}
.about-content {}
.about-eyebrow {
  font-family: var(--font-hand);
  font-size: 28px;
  color: var(--rose-deep);
  display: block;
  transform: rotate(-1.5deg);
  margin-bottom: 4px;
  font-weight: 600;
}
.about-h2 {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.025em;
  line-height: 1;
  margin: 0 0 24px;
}
.about-h2 em {
  font-style: italic;
  color: var(--rose-deep);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.about-text {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.7;
  margin: 0 0 14px;
}
.about-text strong {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--rose-deep);
  font-weight: 500;
}
.about-pillars {
  margin: 22px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.about-pillar {
  background: var(--cream);
  border-radius: 14px;
  padding: 14px 16px;
  border: 1px solid color-mix(in oklab, var(--rose-soft) 50%, transparent);
}
.about-pillar-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 26px;
  color: var(--rose-deep);
  line-height: 1;
  margin-bottom: 4px;
}
.about-pillar-label {
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.35;
}
.about-cta {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: #fff;
  padding: 12px 22px;
  border-radius: 14px;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: -0.005em;
  transition: background 0.2s, transform 0.2s;
}
.about-cta:hover { background: var(--rose); transform: translateY(-1px); }
.about-signature {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px dashed var(--rose-soft);
}
.about-signature-avatar {
  width: 42px;
  height: 42px;
  border-radius: 99px;
  background: linear-gradient(180deg, var(--rose-soft), var(--rose-mist));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--rose-deep);
}
.about-signature-info {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.about-signature-name { font-size: 14px; font-weight: 600; color: var(--ink); }
.about-signature-role { font-size: 12px; color: var(--ink-soft); font-style: italic; }

/* ============ BLOG ============ */
.blog {
  padding: 0 0 48px;
}
.blog-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.blog-card {
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.blog-card:hover { transform: translateY(-4px); }
.blog-img {
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  background:
    radial-gradient(ellipse at 50% 50%, color-mix(in oklab, var(--green-soft) 60%, #fff) 0%, var(--green-soft) 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  position: relative;
  overflow: hidden;
}
.blog-img.rose { background: radial-gradient(ellipse at 50% 50%, var(--rose-mist) 0%, var(--rose-soft) 70%); }
.blog-img.honey { background: radial-gradient(ellipse at 50% 50%, var(--honey-soft) 0%, color-mix(in oklab, var(--honey) 40%, #fff) 70%); }
.blog-img.cream { background: radial-gradient(ellipse at 50% 50%, #f7f5ef 0%, #ebe7d8 70%); }
.blog-img::after {
  content: attr(data-label);
  background: rgba(255,255,255,0.85);
  padding: 3px 8px;
  border-radius: 4px;
}
.blog-title {
  margin-top: 16px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: -0.005em;
  line-height: 1.25;
}
.blog-meta {
  margin-top: 10px;
  font-size: 11.5px;
  color: var(--ink-mute);
  display: flex;
  align-items: center;
  gap: 8px;
}
.blog-excerpt {
  margin-top: 10px;
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.55;
}

.dandelion {
  position: absolute;
  bottom: 60px;
  right: 60px;
  width: 80px;
  height: 110px;
  opacity: 0.7;
}

/* ============ FOOTER ============ */
.footer-top-brush {
  display: block;
  width: 100%;
}
.footer {
  background: var(--rose);
  color: #fff;
  padding: 56px 0 32px;
  position: relative;
}
.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr 1.3fr 1.2fr;
  gap: 48px;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.02em;
  margin: 0 0 16px;
  text-transform: uppercase;
  color: #fff;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}
.footer-col li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  opacity: 0.95;
}
.footer-col li svg { flex-shrink: 0; }
.footer-col a {
  font-size: 13.5px;
  opacity: 0.92;
  transition: opacity 0.15s;
}
.footer-col a:hover { opacity: 1; text-decoration: underline; }

.newsletter {
  display: flex;
  background: rgba(255,255,255,0.18);
  border-radius: 99px;
  padding: 4px;
  margin-top: 14px;
  border: 1px solid rgba(255,255,255,0.3);
}
.newsletter input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: #fff;
  padding: 10px 16px;
  font: inherit;
  font-size: 13.5px;
}
.newsletter input::placeholder { color: rgba(255,255,255,0.7); }
.newsletter button {
  background: var(--ink);
  color: #fff;
  border-radius: 99px;
  padding: 9px 20px;
  font-weight: 600;
  font-size: 13px;
}

.socials {
  margin-top: 18px;
  display: flex;
  gap: 10px;
}
.socials a {
  width: 38px;
  height: 38px;
  border-radius: 99px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.socials a:hover { background: rgba(255,255,255,0.35); }

.footer-bottom {
  max-width: 1280px;
  margin: 40px auto 0;
  padding: 24px 24px 0;
  border-top: 1px solid rgba(255,255,255,0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 12px;
}
.footer-bottom-left { opacity: 0.85; }
.footer-bottom-right { display: flex; gap: 18px; }
.footer-bottom-right a { opacity: 0.85; }

/* Brushy edge transitions */
.brush-rose-down {
  display: block;
  height: 50px;
  background:
    radial-gradient(circle at 6% 90%, var(--rose) 6%, transparent 7%),
    radial-gradient(circle at 14% 100%, var(--rose) 15%, transparent 16%),
    radial-gradient(circle at 24% 95%, var(--rose) 10%, transparent 11%),
    radial-gradient(circle at 35% 100%, var(--rose) 14%, transparent 15%),
    radial-gradient(circle at 50% 92%, var(--rose) 12%, transparent 13%),
    radial-gradient(circle at 65% 100%, var(--rose) 15%, transparent 16%),
    radial-gradient(circle at 78% 96%, var(--rose) 10%, transparent 11%),
    radial-gradient(circle at 90% 100%, var(--rose) 14%, transparent 15%),
    linear-gradient(180deg, transparent 0%, transparent 60%, var(--rose) 100%);
  margin-top: -1px;
}

/* ============ CATEGORY SEO DESCRIPTION ============ */
.cat-description {
	max-width: 1280px;
	margin: 28px auto 32px;
	padding: 0 24px 0;
}
.cat-description-inner {
	max-width: none;
	margin: 0;
	background: #fff;
	border: 1px solid var(--rose-soft);
	border-radius: 20px;
	padding: 42px 48px;
	font-size: 15px;
	line-height: 1.7;
	color: var(--ink-soft);
}
.cat-description-inner p { margin: 0 0 18px; }
.cat-description-inner p:last-child { margin-bottom: 0; }
.cat-description-inner strong { color: var(--ink); font-weight: 600; }
.cat-description-inner h2 {
	font-family: var(--font-display);
	font-size: 24px;
	font-weight: 500;
	letter-spacing: -0.018em;
	color: var(--ink);
	margin: 32px 0 14px;
	line-height: 1.25;
}
.cat-description-inner h2:first-child { margin-top: 0; }
.cat-description-inner h2 em { font-style: italic; color: var(--rose-deep); }
.cat-description-inner h3 {
	font-family: var(--font-display);
	font-size: 19px;
	font-weight: 500;
	color: var(--ink);
	margin: 24px 0 10px;
}
.cat-description-inner ul, .cat-description-inner ol {
	padding-left: 22px;
	margin: 0 0 18px;
}
.cat-description-inner li { margin-bottom: 8px; }
.cat-description-inner li::marker { color: var(--rose-deep); }
.cat-description-inner a {
	color: var(--rose-deep);
	border-bottom: 1px solid color-mix(in oklab, var(--rose) 50%, transparent);
	transition: border-color 0.2s, color 0.2s;
}
.cat-description-inner a:hover {
	color: var(--ink);
	border-bottom-color: var(--ink);
}
.cat-description-inner img {
	max-width: 100%;
	height: auto;
	border-radius: 12px;
	margin: 18px 0;
}
