/* =========================================================
   HONEY LEMON — Child Theme Custom CSS v1.1
   Fond : #FEF6EB · Honey : #F5C842 · Peach : #F0956A
   Coral : #E8745A · Green : #7AAF6E · Dark : #2C1F0E
   ========================================================= */

/* ===== CSS VARIABLES ===== */
:root {
  --hl-honey:  #F5C842;
  --hl-peach:  #F0956A;
  --hl-coral:  #E8745A;
  --hl-green:  #7AAF6E;
  --hl-bg:     #FEF6EB;
  --hl-white:  #FFFDF9;
  --hl-dark:   #2C1F0E;
  --hl-gray:   #8A7A6E;
  --hl-light:  #FDF6EE;
  --hl-r:      16px;
  --hl-shadow: 0 6px 32px rgba(240,149,106,.18);

  /* Bootstrap overrides */
  --bs-body-bg:          #FEF6EB;
  --bs-body-color:       #2C1F0E;
  --bs-primary:          #F0956A;
  --bs-primary-rgb:      240,149,106;
  --bs-link-color:       #E8745A;
  --bs-link-hover-color: #F0956A;
  --bs-border-color:     rgba(240,149,106,.2);
  --bs-border-radius:    1rem;
}

/* ===== GLOBAL ===== */
*,*::before,*::after { box-sizing: border-box; }
body {
  background-color: var(--hl-bg);
  color: var(--hl-dark);
  font-family: 'Nunito','Segoe UI',system-ui,sans-serif;
}
a { color: var(--hl-coral); }
a:hover { color: var(--hl-peach); }

/* Scrollbar */
::-webkit-scrollbar            { width: 6px; }
::-webkit-scrollbar-track      { background: var(--hl-bg); }
::-webkit-scrollbar-thumb      { background: var(--hl-peach); border-radius: 10px; }

/* ===== ALL KEYFRAMES ===== */
@keyframes hl-fadeUp    { from{opacity:0;transform:translateY(32px)}       to{opacity:1;transform:translateY(0)} }
@keyframes hl-fadeIn    { from{opacity:0}                                   to{opacity:1} }
@keyframes hl-float     { 0%,100%{transform:translateY(0)}                  50%{transform:translateY(-14px)} }
@keyframes hl-floatR    { 0%,100%{transform:translateY(0) rotate(6deg)}    50%{transform:translateY(-10px) rotate(6deg)} }
@keyframes hl-spin      { from{transform:rotate(0)}                         to{transform:rotate(360deg)} }
@keyframes hl-pulse     { 0%,100%{transform:scale(1)}                       50%{transform:scale(1.08)} }
@keyframes hl-shimmer   { 0%{background-position:-400px 0}                  100%{background-position:400px 0} }
@keyframes hl-waveBar   { 0%,100%{transform:scaleY(.4)}                     50%{transform:scaleY(1)} }
@keyframes hl-dropIn    { 0%{opacity:0;transform:translateY(-20px) scale(.8)} 100%{opacity:1;transform:translateY(0) scale(1)} }
@keyframes hl-ticker    { 0%{transform:translateX(0)}                        100%{transform:translateX(-50%)} }
@keyframes hl-blink     { 0%,100%{opacity:1}                                 50%{opacity:.3} }
@keyframes hl-popIn     { 0%{transform:scale(0) rotate(-15deg);opacity:0}   80%{transform:scale(1.1) rotate(3deg);opacity:1} 100%{transform:scale(1) rotate(0);opacity:1} }
@keyframes hl-slideLeft { from{transform:translateX(60px);opacity:0}        to{transform:translateX(0);opacity:1} }
@keyframes hl-gradFlow  { 0%,100%{background-position:0% 50%}               50%{background-position:100% 50%} }
@keyframes hl-honeyDrip { 0%{height:0;opacity:0} 60%{opacity:1}             100%{height:28px;opacity:1} }
@keyframes hl-ripple    { 0%{transform:scale(0);opacity:.5}                  100%{transform:scale(4);opacity:0} }
@keyframes hl-countPop  { 0%{transform:scale(1)} 30%{transform:scale(1.55) rotate(-12deg)} 60%{transform:scale(.9)} 100%{transform:scale(1)} }
@keyframes hl-swingIn   { 0%{transform:rotate(-8deg) translateY(-6px);opacity:0} 60%{transform:rotate(4deg) translateY(0);opacity:1} 100%{transform:rotate(0);opacity:1} }
@keyframes hl-pageIn    { from{opacity:0} to{opacity:1} }
@keyframes hl-shine     { 0%{left:-100%} 100%{left:200%} }
@keyframes hl-bubbleIn  { 0%{transform:translateY(12px) scale(.92);opacity:0} 60%{transform:translateY(-4px) scale(1.02);opacity:1} 100%{transform:translateY(0) scale(1);opacity:1} }
@keyframes hl-numberIn  { 0%{transform:translateY(-100%);opacity:0} 100%{transform:translateY(0);opacity:1} }

/* ===================================================================
   SCROLL REVEAL — style lestresorsdeclemence.fr
   fadeUp 0.45s cubic-bezier(.4,0,.2,1) · stagger nth-child x 0.06s
   JS adds .js-fade-in on target elements, then .is-visible on enter
   =================================================================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

.js-fade-in { opacity: 0; transform: translateY(18px); }
.js-fade-in.is-visible {
  animation: fadeUp 0.45s cubic-bezier(.4, 0, .2, 1) forwards;
}

/* Product card stagger */
.products.row .product-miniature.is-visible:nth-child(1),
.featured-products .product-miniature.is-visible:nth-child(1) { animation-delay: 0s; }
.products.row .product-miniature.is-visible:nth-child(2),
.featured-products .product-miniature.is-visible:nth-child(2) { animation-delay: .06s; }
.products.row .product-miniature.is-visible:nth-child(3),
.featured-products .product-miniature.is-visible:nth-child(3) { animation-delay: .12s; }
.products.row .product-miniature.is-visible:nth-child(4),
.featured-products .product-miniature.is-visible:nth-child(4) { animation-delay: .18s; }
.products.row .product-miniature.is-visible:nth-child(5),
.featured-products .product-miniature.is-visible:nth-child(5) { animation-delay: .24s; }
.products.row .product-miniature.is-visible:nth-child(6),
.featured-products .product-miniature.is-visible:nth-child(6) { animation-delay: .30s; }
.products.row .product-miniature.is-visible:nth-child(7),
.featured-products .product-miniature.is-visible:nth-child(7) { animation-delay: .36s; }
.products.row .product-miniature.is-visible:nth-child(8),
.featured-products .product-miniature.is-visible:nth-child(8) { animation-delay: .42s; }

/* Category card stagger */
.hl-cat-card.is-visible:nth-child(1) { animation-delay: 0s; }
.hl-cat-card.is-visible:nth-child(2) { animation-delay: .06s; }
.hl-cat-card.is-visible:nth-child(3) { animation-delay: .12s; }
.hl-cat-card.is-visible:nth-child(4) { animation-delay: .18s; }
.hl-cat-card.is-visible:nth-child(5) { animation-delay: .24s; }

/* ===== TICKER / ANNOUNCEMENT BAR ===== */
.hl-ticker-wrap {
  background: linear-gradient(90deg, var(--hl-honey), var(--hl-peach), var(--hl-coral), var(--hl-honey));
  background-size: 300% 100%;
  animation: hl-gradFlow 8s ease infinite;
  overflow: hidden;
  padding: .4rem 0;
  position: relative;
  z-index: 300;
}
.hl-ticker-inner {
  display: flex;
  width: max-content;
  animation: hl-ticker 28s linear infinite;
}
.hl-ticker-wrap:hover .hl-ticker-inner { animation-play-state: paused; }
.hl-ticker-item {
  white-space: nowrap;
  padding: 0 2.5rem;
  font-size: .78rem;
  font-weight: 800;
  color: var(--hl-dark);
  letter-spacing: .05em;
}
.hl-ticker-sep { color: rgba(44,31,14,.45); }

/* ===== HEADER ===== */
.header-bottom {
  background: var(--hl-bg) !important;
  box-shadow: 0 2px 20px rgba(240,149,106,.14);
  border-bottom: none !important;
}
/* sticky */
.header { background: var(--hl-bg) !important; }

/* Logo */
.hl-logo-wrap {
  display: flex;
  align-items: center;
  gap: .55rem;
  text-decoration: none !important;
}
.hl-logo-lemon {
  font-size: 2rem;
  display: inline-block;
  animation: hl-float 3s ease-in-out infinite;
  line-height: 1;
}
.hl-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.hl-logo-honey {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--hl-honey);
  letter-spacing: -.01em;
}
.hl-logo-lemon-t {
  font-size: 1.1rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--hl-peach), var(--hl-coral));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Nav */
.header-nav .nav-link,
.header-bottom .nav-link {
  font-weight: 700;
  color: var(--hl-dark) !important;
  border-radius: 30px;
  padding: .45rem .95rem;
  transition: color .2s, background .2s;
  position: relative;
}
.header-nav .nav-link::after,
.header-bottom .nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 2px;
  background: var(--hl-peach);
  border-radius: 2px;
  transition: width .25s;
}
.header-nav .nav-link:hover::after,
.header-bottom .nav-link:hover::after { width: 60%; }
.header-nav .nav-link:hover,
.header-bottom .nav-link:hover { color: var(--hl-peach) !important; }

/* Header icon buttons — pill shape with gradient hover */
.header-block__action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  width: auto;
  height: 44px;
  padding: 0 .75rem;
  gap: .45rem;
  background: var(--hl-white);
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(240,149,106,.12);
  transition: background .2s, transform .25s, box-shadow .25s;
  position: relative;
  text-decoration: none !important;
  border: none;
  cursor: pointer;
}
.header-block__action-btn:hover {
  background: linear-gradient(135deg, rgba(245,200,66,.15), rgba(240,149,106,.12));
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(240,149,106,.26);
}

/* Text label inside header buttons */
.header-block__title {
  font-size: .82rem;
  font-weight: 700;
  color: var(--hl-dark);
  white-space: nowrap;
  line-height: 1;
}

/* Fun gradient icon color (Material Icons fallback) */
.header-block__icon {
  font-size: 1.45rem !important;
  background: linear-gradient(135deg, var(--hl-peach), var(--hl-coral));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: transform .25s;
  line-height: 1;
}
.header-block:hover .header-block__icon { transform: scale(1.15) rotate(-8deg); }

/* SVG icons — let inline gradient attrs handle the stroke color */
.hl-hdr-icon {
  width: 26px; height: 26px;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  transition: transform .25s;
}
.header-block:hover .hl-hdr-icon { transform: scale(1.15) rotate(-8deg); }

/* Cart/account badge */
.header-block__badge {
  background: linear-gradient(135deg, var(--hl-peach), var(--hl-coral)) !important;
  color: #fff !important;
  font-size: .62rem !important;
  font-weight: 900 !important;
  min-width: 18px;
  height: 18px;
  padding: 0 4px !important;
  border-radius: 9px !important;
  border: 2px solid var(--hl-bg) !important;
  animation: hl-pulse 2.5s infinite;
}

/* ===================================================================
   SEARCH SECTION — Geek terminal style
   =================================================================== */
@keyframes hl-tw-blink  { 0%,100%{opacity:1} 49%{opacity:1} 50%,99%{opacity:0} }
@keyframes hl-scan-line { 0%{top:0;opacity:.7} 100%{top:100%;opacity:0} }
@keyframes hl-glow-ring { 0%,100%{box-shadow:0 0 0 0 rgba(240,149,106,0),0 8px 32px rgba(240,149,106,.10)} 50%{box-shadow:0 0 0 5px rgba(240,149,106,.18),0 8px 32px rgba(240,149,106,.22)} }
@keyframes hl-tag-pop   { 0%{transform:scale(1)} 40%{transform:scale(1.15)} 100%{transform:scale(1)} }
@keyframes hl-tag-in    { from{opacity:0;transform:translateY(6px) scale(.9)} to{opacity:1;transform:translateY(0) scale(1)} }

/* Wrapper principal */
.hl-search-section {
  position: relative;
  overflow: hidden;
  padding: 2rem 1.5rem 1.6rem;
  background: linear-gradient(160deg, #FEF6EB 0%, #FDE8D6 100%);
  border-bottom: 2px solid rgba(240,149,106,.2);
}

/* Grille hexagonale en fond */
.hl-search-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(240,149,106,.10) 0%, transparent 55%),
    radial-gradient(circle at 80% 20%, rgba(245,200,66,.10) 0%, transparent 55%),
    repeating-linear-gradient(0deg, transparent, transparent 34px, rgba(240,149,106,.04) 34px, rgba(240,149,106,.04) 35px),
    repeating-linear-gradient(90deg, transparent, transparent 34px, rgba(240,149,106,.04) 34px, rgba(240,149,106,.04) 35px);
  pointer-events: none;
}

.hl-search-inner {
  max-width: 780px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hl-search-inner form {
  width: 100%;
}

/* Label terminal — monospace + prompt */
.hl-search-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  margin-bottom: 1.1rem;
  font-family: 'Courier New', 'Consolas', monospace;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  animation: hl-fadeIn .5s both;
}
.hl-search-label-bracket { color: rgba(240,149,106,.5); }
.hl-search-label-text    { color: var(--hl-coral); }
.hl-search-label-cursor  {
  color: var(--hl-peach);
  animation: hl-tw-blink .9s step-end infinite;
  font-size: 1rem;
}

/* Pill (barre de recherche) */
.hl-search-pill {
  display: flex;
  align-items: center;
  width: 100%;           /* occupe toute la largeur de .hl-search-inner */
  min-height: 58px;
  background: var(--hl-white);
  border: 2px solid rgba(240,149,106,.35);
  border-radius: 12px;
  padding: .5rem .5rem .5rem 1.2rem;
  gap: .75rem;
  position: relative;
  overflow: hidden;
  transition: border-color .3s, box-shadow .3s;
  box-shadow: 0 4px 20px rgba(240,149,106,.12), inset 0 0 30px rgba(245,200,66,.03);
  box-sizing: border-box;
}
.hl-search-pill--focus,
.hl-search-pill:focus-within {
  border-color: var(--hl-peach);
  animation: hl-glow-ring 2.2s ease infinite;
}

/* Ligne de scan */
.hl-search-icon-wrap {
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.hl-search-icon {
  font-size: 1.2rem;
  line-height: 1;
  filter: drop-shadow(0 0 6px rgba(240,149,106,.45));
  transition: filter .3s, transform .3s;
}
.hl-search-pill--focus .hl-search-icon,
.hl-search-pill:focus-within .hl-search-icon {
  filter: drop-shadow(0 0 10px rgba(240,149,106,.85));
  transform: scale(1.1);
}
.hl-search-scan-line {
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(240,149,106,.55), transparent);
  top: 0;
  animation: hl-scan-line 1.8s linear infinite;
  pointer-events: none;
}

/* Zone typewriter + input superposés — CSS Grid pour un empilement fiable */
.hl-search-field {
  flex: 1;
  min-width: 0;
  display: grid;
  align-items: center;
  align-self: stretch;
}

/* Overlay typewriter */
.hl-typewriter {
  grid-area: 1 / 1;
  display: flex;
  align-items: center;
  pointer-events: none;
  white-space: nowrap;
  overflow: hidden;
  transition: opacity .2s;
  min-height: 44px;
}
.hl-tw-text {
  font-family: 'Courier New', 'Consolas', monospace;
  font-size: 1rem;
  font-weight: 600;
  color: rgba(44,31,14,.45);
  letter-spacing: .02em;
}
.hl-tw-cursor {
  color: var(--hl-peach);
  font-size: 1.1rem;
  line-height: 1;
  animation: hl-tw-blink .75s step-end infinite;
  margin-left: 1px;
  flex-shrink: 0;
}

/* Input réel — même cellule de grille que le typewriter */
.hl-search-input {
  grid-area: 1 / 1;
  width: 100%;
  min-height: 44px;
  border: none !important;
  background: transparent !important;
  outline: none !important;
  box-shadow: none !important;
  font-family: 'Courier New', 'Consolas', monospace;
  font-size: 1rem;
  font-weight: 600;
  color: var(--hl-dark);
  caret-color: var(--hl-peach);
  padding: 0 !important;
  opacity: 0;
  pointer-events: none;
  transition: opacity .15s;
}
.hl-search-input::placeholder { color: rgba(44,31,14,.3); }
.hl-search-input::-webkit-search-cancel-button { display: none; }

/* Bouton effacer */
.hl-search-clear {
  background: none;
  border: 1px solid rgba(240,149,106,.3);
  border-radius: 50%;
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  font-size: .72rem;
  color: rgba(44,31,14,.4);
  flex-shrink: 0;
  opacity: 0;
  pointer-events: none;
  cursor: pointer;
  transition: opacity .2s, border-color .2s, color .2s;
  padding: 0;
}
.hl-search-clear:hover { border-color: var(--hl-coral); color: var(--hl-coral); }

/* Bouton Rechercher */
.hl-search-submit {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: linear-gradient(135deg, var(--hl-honey) 0%, var(--hl-peach) 100%);
  color: #1A1208;
  border: none;
  border-radius: 8px;
  padding: .65rem 1.5rem;
  font-family: 'Courier New', 'Consolas', monospace;
  font-size: .88rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: .04em;
  transition: transform .2s, box-shadow .2s, filter .2s;
  position: relative;
  overflow: hidden;
}
.hl-search-submit::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.2);
  opacity: 0;
  transition: opacity .2s;
}
.hl-search-submit:hover::after { opacity: 1; }
.hl-search-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(245,200,66,.45), 0 6px 18px rgba(240,149,106,.35);
  filter: brightness(1.08);
}
.hl-search-submit:active { transform: scale(.97); }
.hl-search-submit-label { }
.hl-search-submit-arrow {
  display: inline-block;
  transition: transform .2s;
  font-style: normal;
}
.hl-search-submit:hover .hl-search-submit-arrow { transform: translateX(4px); }

/* Tags tendances */
.hl-search-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .4rem;
  margin-top: .9rem;
  animation: hl-fadeUp .4s .35s both;
}
.hl-search-tags-label {
  font-family: 'Courier New', 'Consolas', monospace;
  font-size: .72rem;
  font-weight: 700;
  color: rgba(44,31,14,.45);
  white-space: nowrap;
  margin-right: .1rem;
}
.hl-tag-prompt { color: var(--hl-peach); }

.hl-search-tag {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  background: rgba(240,149,106,.08);
  border: 1px solid rgba(240,149,106,.28);
  color: var(--hl-coral);
  font-family: 'Courier New', 'Consolas', monospace;
  font-size: .74rem;
  font-weight: 700;
  padding: .25rem .7rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background .18s, border-color .18s, color .18s, transform .15s, box-shadow .18s;
  animation: hl-tag-in .35s both;
}
.hl-search-tag:nth-child(2) { animation-delay: .04s; }
.hl-search-tag:nth-child(3) { animation-delay: .08s; }
.hl-search-tag:nth-child(4) { animation-delay: .12s; }
.hl-search-tag:nth-child(5) { animation-delay: .16s; }
.hl-search-tag:nth-child(6) { animation-delay: .20s; }
.hl-search-tag:nth-child(7) { animation-delay: .24s; }
.hl-search-tag:hover {
  background: var(--hl-peach);
  border-color: var(--hl-peach);
  color: var(--hl-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(240,149,106,.3);
}
.hl-search-tag--active {
  background: linear-gradient(135deg, var(--hl-peach), var(--hl-coral)) !important;
  border-color: var(--hl-coral) !important;
  color: var(--hl-white) !important;
  animation: hl-tag-pop .28s ease !important;
}

/* Fix Bootstrap bg-transparent/border-0 on signin dropdown button */
.hl-hdr-btn.header-block__action-btn {
  background: var(--hl-white) !important;
  border: none !important;
  border-radius: 14px !important;
}
.hl-hdr-btn.header-block__action-btn:hover,
.hl-hdr-btn.header-block__action-btn:focus {
  background: linear-gradient(135deg, rgba(245,200,66,.15), rgba(240,149,106,.12)) !important;
}

/* ===== MINI CART POPUP ===== */
.hl-minicart {
  position: fixed;
  top: 5rem;
  right: -380px;
  width: 340px;
  max-width: calc(100vw - 2rem);
  background: var(--hl-white);
  border-radius: 1.5rem;
  box-shadow: 0 24px 64px rgba(44,31,14,.18), 0 4px 16px rgba(240,149,106,.15);
  z-index: 10000;
  transition: right .4s cubic-bezier(.34,1.3,.64,1);
  overflow: hidden;
  pointer-events: none;
}
.hl-minicart--open {
  right: 1.5rem;
  pointer-events: auto;
}
.hl-minicart-inner { padding: 0; }

/* Header bar */
.hl-minicart-head {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .85rem 1.25rem;
  background: linear-gradient(135deg, var(--hl-honey), var(--hl-peach));
  color: var(--hl-dark);
}
.hl-minicart-check {
  width: 26px; height: 26px;
  background: var(--hl-white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem;
  font-weight: 900;
  color: var(--hl-green);
  flex-shrink: 0;
}
.hl-minicart-msg {
  flex: 1;
  font-size: .92rem;
  font-weight: 800;
  color: var(--hl-dark);
}
.hl-minicart-close {
  background: none; border: none; cursor: pointer;
  font-size: 1rem; color: var(--hl-dark); opacity: .6;
  padding: .2rem; line-height: 1;
  transition: opacity .2s;
  flex-shrink: 0;
}
.hl-minicart-close:hover { opacity: 1; }

/* Product row */
.hl-minicart-product {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(240,149,106,.12);
}
.hl-minicart-img-wrap {
  width: 70px; height: 70px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  background: var(--hl-bg);
}
.hl-minicart-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.hl-minicart-info { flex: 1; min-width: 0; }
.hl-minicart-name {
  font-size: .88rem;
  font-weight: 700;
  color: var(--hl-dark);
  margin: 0 0 .25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hl-minicart-price {
  font-size: .95rem;
  font-weight: 900;
  color: var(--hl-coral);
  margin: 0;
}

/* Footer */
.hl-minicart-footer {
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
}
.hl-minicart-total {
  font-size: .8rem;
  color: var(--hl-gray);
  margin: 0;
}
.hl-minicart-total strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--hl-dark);
}
.hl-minicart-btn {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  background: linear-gradient(135deg, var(--hl-peach), var(--hl-coral));
  color: #fff !important;
  border-radius: 30px;
  padding: .55rem 1.25rem;
  font-size: .84rem;
  font-weight: 800;
  text-decoration: none !important;
  white-space: nowrap;
  transition: transform .2s, box-shadow .2s;
}
.hl-minicart-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,116,90,.4);
}

@media (max-width: 480px) {
  .hl-minicart { top: 4.5rem; right: -100vw; width: calc(100vw - 2rem); }
  .hl-minicart--open { right: 1rem; }
}

/* Header shadow on scroll */
.hl-header--scrolled {
  box-shadow: 0 4px 28px rgba(240,149,106,.2) !important;
}
.hl-header--scrolled .header-bottom { padding: .1rem 0 !important; }

/* PS searchbar module (header) */
.ps-searchbar .form-control,
.ps-searchbar input[type="text"] {
  border: 2px solid transparent;
  border-radius: 30px;
  background: rgba(240,149,106,.08);
  transition: border-color .3s, box-shadow .3s;
}
.ps-searchbar .form-control:focus,
.ps-searchbar input[type="text"]:focus {
  border-color: var(--hl-peach);
  box-shadow: 0 0 0 4px rgba(240,149,106,.15);
  background: var(--hl-white);
}

/* ===== CATEGORY GRID ===== */
.hl-cats-section {
  padding: 3rem 1.5rem 1rem;
}
.hl-sec-header {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.75rem;
}
.hl-sec-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--hl-dark);
  white-space: nowrap;
}
.hl-sec-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--hl-honey), transparent);
  border-radius: 2px;
}
.hl-sec-link {
  font-size: .82rem;
  font-weight: 700;
  color: var(--hl-peach);
  white-space: nowrap;
  text-decoration: none;
  transition: color .2s;
}
.hl-sec-link:hover { color: var(--hl-coral); text-decoration: underline; }

.hl-cats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.hl-cat-card {
  background: var(--hl-white);
  border-radius: 20px;
  padding: 1.75rem 1rem 1.25rem;
  text-align: center;
  cursor: pointer;
  transition: transform .28s, box-shadow .28s, border-color .28s;
  border: 2px solid transparent;
  text-decoration: none !important;
  color: var(--hl-dark) !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .45rem;
  position: relative;
  overflow: hidden;
}
.hl-cat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245,200,66,.08), rgba(240,149,106,.08));
  opacity: 0;
  transition: opacity .3s;
}
.hl-cat-card:hover::before { opacity: 1; }
.hl-cat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--hl-shadow);
  border-color: var(--hl-honey);
}
.hl-cat-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--hl-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  transition: transform .3s;
  animation: hl-float 4s ease-in-out infinite;
}
.hl-cat-card:nth-child(2) .hl-cat-icon { animation-delay: .3s; }
.hl-cat-card:nth-child(3) .hl-cat-icon { animation-delay: .6s; }
.hl-cat-card:nth-child(4) .hl-cat-icon { animation-delay: .9s; }
.hl-cat-card:nth-child(5) .hl-cat-icon { animation-delay: 1.2s; }
.hl-cat-card:hover .hl-cat-icon { transform: scale(1.14) rotate(-6deg); animation-play-state: paused; }
.hl-cat-name { font-size: 1rem; font-weight: 800; margin: 0; }
.hl-cat-sub  { font-size: .75rem; color: var(--hl-gray); }

/* ===== SLIDER — ps_imageslider ===== */
.ps-imageslider {
  position: relative;
  overflow: hidden;
}
.ps-imageslider .carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(44,31,14,.22);
  border: none;
  transition: all .35s;
  margin: 0 4px;
}
.ps-imageslider .carousel-indicators .active {
  background: var(--hl-peach);
  width: 28px;
  border-radius: 10px;
}
.ps-imageslider .carousel-control-prev,
.ps-imageslider .carousel-control-next {
  width: 44px; height: 44px;
  background: var(--hl-white);
  border-radius: 50%;
  top: 50%; bottom: auto;
  transform: translateY(-50%);
  box-shadow: var(--hl-shadow);
  opacity: 1;
  z-index: 20;
  transition: background .22s, transform .22s, box-shadow .22s;
}
.ps-imageslider .carousel-control-prev { left: 1rem; }
.ps-imageslider .carousel-control-next { right: 1rem; }
.ps-imageslider .carousel-control-prev:hover,
.ps-imageslider .carousel-control-next:hover {
  background: var(--hl-peach);
  transform: translateY(-50%) scale(1.12);
  box-shadow: 0 8px 28px rgba(240,149,106,.4);
}
.ps-imageslider .carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23E8745A'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
  filter: none;
}
.ps-imageslider .carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23E8745A'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  filter: none;
}
.ps-imageslider .carousel-control-prev:hover .carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
  filter: none;
}
.ps-imageslider .carousel-control-next:hover .carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  filter: none;
}

/* Slide figure */
.hl-slide-figure {
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-bottom: 0;
  position: relative;
}
.hl-slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hl-slide-gradient {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Bubble decorations */
.hl-slide-bubble {
  position: absolute;
  border-radius: 50%;
  opacity: .22;
  pointer-events: none;
}
.hl-bubble-1 {
  width: 220px; height: 220px;
  background: var(--hl-honey);
  top: -50px; right: 18%;
  animation: hl-float 4s ease-in-out infinite;
}
.hl-bubble-2 {
  width: 120px; height: 120px;
  background: var(--hl-peach);
  bottom: 10px; left: 8%;
  animation: hl-float 3.2s ease-in-out infinite .6s;
}
.hl-bubble-3 {
  width: 80px; height: 80px;
  background: var(--hl-coral);
  top: 30%; right: 5%;
  animation: hl-floatR 3.8s ease-in-out infinite 1s;
}

/* Caption */
.hl-slide-caption {
  position: relative;
  z-index: 2;
  max-width: 520px;
  text-align: left;
  margin-left: 5%;
  padding: 2rem 2.5rem;
  background: rgba(255,253,249,.86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 1.5rem;
  box-shadow: 0 8px 40px rgba(240,149,106,.18);
}
/* Override Bootstrap's absolute positioning for carousel-caption */
.ps-imageslider .carousel-caption.hl-slide-caption {
  position: relative !important;
  right: auto !important;
  bottom: auto !important;
  left: 5% !important;
  top: auto !important;
  padding-bottom: 2rem;
}
.hl-slide-tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--hl-white);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .06em;
  padding: .28rem .9rem;
  border-radius: 30px;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
  margin-bottom: .8rem;
  animation: hl-dropIn .5s .2s both;
}
.hl-slide-title {
  font-size: 2.4rem !important;
  font-weight: 900 !important;
  line-height: 1.12 !important;
  color: var(--hl-dark) !important;
  margin-bottom: .75rem !important;
  animation: hl-fadeUp .6s .3s both;
}
.hl-slide-title em { font-style: normal; color: var(--hl-peach); }
.hl-slide-desc {
  font-size: .92rem;
  color: var(--hl-gray);
  line-height: 1.65;
  margin-bottom: 1.25rem;
  animation: hl-fadeUp .6s .4s both;
}
.hl-slide-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: linear-gradient(135deg, var(--hl-peach), var(--hl-coral)) !important;
  color: #fff !important;
  border-radius: 30px !important;
  font-weight: 800 !important;
  font-size: .88rem !important;
  padding: .72rem 1.75rem !important;
  border: none !important;
  transition: transform .2s, box-shadow .2s;
  animation: hl-fadeUp .6s .5s both;
  text-decoration: none !important;
}
.hl-slide-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(232,116,90,.35);
  color: #fff !important;
}

/* Honey drip */
.hl-drip {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  display: flex;
  justify-content: space-around;
  pointer-events: none;
  z-index: 5;
}
.hl-drip-drop {
  width: 14px;
  background: linear-gradient(to bottom, var(--hl-honey), #E8A020);
  border-radius: 0 0 50% 50%;
  animation: hl-honeyDrip 1.5s ease-out both;
  transform-origin: top;
}
.hl-drip-drop:nth-child(2) { animation-delay: .3s; }
.hl-drip-drop:nth-child(3) { animation-delay: .6s; }
.hl-drip-drop:nth-child(4) { animation-delay: .2s; }
.hl-drip-drop:nth-child(5) { animation-delay: .8s; }
.hl-drip-drop:nth-child(6) { animation-delay: .4s; }
.hl-drip-drop:nth-child(7) { animation-delay: .7s; }

/* ===== PRODUCT CARDS ===== */
.product-miniature,
.product-miniature .card {
  background: var(--hl-white) !important;
  border: none !important;
  border-radius: 20px !important;
  box-shadow: 0 4px 20px rgba(44,31,14,.07) !important;
  overflow: hidden;
  transition: transform .28s, box-shadow .28s !important;
}
.product-miniature:hover,
.product-miniature:hover .card {
  transform: translateY(-6px) !important;
  box-shadow: 0 20px 48px rgba(240,149,106,.22) !important;
}
.product-miniature .thumbnail-container,
.product-miniature .card-img-top {
  background: var(--hl-bg);
  overflow: hidden;
  transition: transform .4s;
}
.product-miniature:hover .thumbnail-container,
.product-miniature:hover .card-img-top { transform: scale(1.04); }

.product-miniature .product-title a,
.product-miniature h3 a {
  font-weight: 700;
  font-size: .9rem;
  color: var(--hl-dark);
  line-height: 1.35;
  transition: color .2s;
}
.product-miniature .product-title a:hover { color: var(--hl-peach); }

.product-miniature .price {
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--hl-dark);
}
.product-miniature .regular-price { color: var(--hl-gray); }

/* Badges */
.product-miniature .discount-percentage,
.product-miniature .discount-amount,
.product-flag.discount {
  background: var(--hl-coral) !important;
  color: #fff !important;
  font-weight: 800;
  font-size: .65rem;
  border-radius: 30px;
  padding: .22rem .6rem;
  animation: hl-pulse 2.5s infinite;
}
.product-miniature .new,
.product-flag.new {
  background: var(--hl-green) !important;
  color: #fff !important;
  font-weight: 800;
  font-size: .65rem;
  border-radius: 30px;
  padding: .22rem .6rem;
  animation: hl-popIn .5s both;
}

/* Add to cart */
.product-miniature .add-to-cart,
.product-miniature .btn-add-to-cart,
.add-to-cart {
  background: linear-gradient(135deg, var(--hl-peach), var(--hl-coral)) !important;
  color: #fff !important;
  border: none !important;
  border-radius: .75rem !important;
  font-weight: 800 !important;
  font-size: .82rem !important;
  padding: .45rem .95rem !important;
  transition: transform .2s, box-shadow .2s !important;
}
.product-miniature .add-to-cart:hover,
.add-to-cart:hover {
  transform: scale(1.06) !important;
  box-shadow: 0 4px 14px rgba(232,116,90,.4) !important;
}

/* Wishlist */
.wishlist-button-add button,
.btn-wishlist {
  background: var(--hl-white) !important;
  border-radius: 50% !important;
  box-shadow: 0 2px 8px rgba(0,0,0,.1) !important;
  transition: transform .2s !important;
}
.wishlist-button-add button:hover { transform: scale(1.2) !important; }

/* Stars */
.star-content .star-on,
.productcomments-star-full { color: var(--hl-honey) !important; }

/* ===== BUTTONS ===== */
.btn-primary, .btn.btn-primary {
  background: linear-gradient(135deg, var(--hl-peach), var(--hl-coral)) !important;
  border: none !important;
  border-radius: 30px !important;
  font-weight: 700 !important;
  color: #fff !important;
  padding: .7rem 1.8rem !important;
  transition: transform .2s, box-shadow .2s !important;
  position: relative;
  overflow: hidden;
}
.btn-primary::after, .btn.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.15);
  opacity: 0;
  transition: opacity .2s;
}
.btn-primary:hover::after { opacity: 1; }
.btn-primary:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 10px 28px rgba(232,116,90,.35) !important;
  color: #fff !important;
}
.btn-secondary, .btn.btn-secondary {
  background: linear-gradient(135deg, var(--hl-honey), #E8B020) !important;
  border: none !important;
  border-radius: 30px !important;
  font-weight: 700 !important;
  color: var(--hl-dark) !important;
}
.btn-outline-primary {
  border: 2px solid var(--hl-dark) !important;
  color: var(--hl-dark) !important;
  background: transparent !important;
  border-radius: 30px !important;
  font-weight: 700 !important;
}
.btn-outline-primary:hover {
  background: var(--hl-dark) !important;
  color: var(--hl-white) !important;
}

/* ===== REASSURANCE STRIP ===== */
.hl-reassurance-strip {
  background: linear-gradient(90deg, var(--hl-honey), var(--hl-peach), var(--hl-coral));
  background-size: 200% 200%;
  animation: hl-gradFlow 6s ease infinite;
}
.hl-reassurance-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.75rem 1.5rem;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1rem;
}
.hl-rea-item { display: flex; align-items: center; gap: .75rem; color: var(--hl-dark); }
.hl-rea-icon { font-size: 1.8rem; animation: hl-pulse 3s infinite; }
.hl-rea-item:nth-child(2) .hl-rea-icon { animation-delay: .5s; }
.hl-rea-item:nth-child(3) .hl-rea-icon { animation-delay: 1s; }
.hl-rea-item:nth-child(4) .hl-rea-icon { animation-delay: 1.5s; }
.hl-rea-text h4 { font-size: .85rem; font-weight: 800; margin: 0; }
.hl-rea-text p  { font-size: .72rem; opacity: .75; margin: 0; }

/* Blockreassurance module */
.blockreassurance .col {
  background: transparent !important;
  border: none !important;
  text-align: center;
}
.blockreassurance .block-icon { color: var(--hl-dark); }

/* ===== NEWSLETTER ===== */
.ps-emailsubscription .block-contact,
.hl-newsletter-block {
  background: var(--hl-dark) !important;
  border-radius: 1.5rem;
  padding: 3.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.ps-emailsubscription .block-contact::before {
  content: '🍋';
  position: absolute;
  top: -1rem; left: 3rem;
  font-size: 5rem;
  opacity: .1;
  animation: hl-spin 20s linear infinite;
}
.ps-emailsubscription .block-contact::after {
  content: '🍯';
  position: absolute;
  bottom: -1rem; right: 3rem;
  font-size: 5rem;
  opacity: .1;
  animation: hl-spin 15s linear infinite reverse;
}
.ps-emailsubscription h2,
.ps-emailsubscription .h2 { color: var(--hl-white) !important; font-weight: 900 !important; }
.ps-emailsubscription h2 em { color: var(--hl-honey); font-style: normal; }
.ps-emailsubscription p { color: rgba(255,255,255,.6) !important; }
.ps-emailsubscription .input-group input {
  background: rgba(255,255,255,.1) !important;
  border: 1.5px solid rgba(255,255,255,.2) !important;
  color: #fff !important;
  border-radius: 30px !important;
  padding: .75rem 1.4rem !important;
}
.ps-emailsubscription .input-group input::placeholder { color: rgba(255,255,255,.4); }
.ps-emailsubscription .input-group input:focus {
  border-color: var(--hl-honey) !important;
  box-shadow: none !important;
}
.ps-emailsubscription .btn {
  background: linear-gradient(135deg, var(--hl-honey), #E8B020) !important;
  color: var(--hl-dark) !important;
  border-radius: 30px !important;
  font-weight: 800 !important;
  border: none !important;
}

/* ===== PROMO BANNER ===== */
.hl-promo-banner {
  border-radius: 1.5rem;
  overflow: hidden;
}
.hl-promo-inner {
  background: linear-gradient(135deg, #FFF5D6, #FDDDB0, #FFE8DC);
  background-size: 200% 200%;
  animation: hl-gradFlow 5s ease infinite;
  padding: 3rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
}
.hl-promo-inner::before {
  content: '✨';
  position: absolute;
  top: 1rem; right: 8rem;
  font-size: 2.5rem;
  animation: hl-float 2.8s infinite .3s;
  pointer-events: none;
}
.hl-promo-inner::after {
  content: '🍀';
  position: absolute;
  bottom: 1rem; left: 40%;
  font-size: 1.8rem;
  animation: hl-floatR 3.2s infinite;
  pointer-events: none;
}
.hl-promo-emojis { font-size: 4rem; display: flex; gap: .5rem; flex-shrink: 0; }
.hl-promo-emojis span:nth-child(1) { animation: hl-float 3s infinite; }
.hl-promo-emojis span:nth-child(2) { animation: hl-float 3s .5s infinite; }
.hl-promo-text h3 { font-size: 1.8rem; font-weight: 900; color: var(--hl-dark); margin-bottom: .4rem; }
.hl-promo-text h3 em { font-style: normal; color: var(--hl-coral); }
.hl-promo-text p { color: var(--hl-gray); font-size: .92rem; }

/* ===== FOOTER ===== */
.footer__main {
  background: #1C1208 !important;
  color: rgba(255,255,255,.5) !important;
}
.footer__main a { color: rgba(255,255,255,.5); transition: color .2s; }
.footer__main a:hover { color: var(--hl-honey); }
.footer__before {
  background: linear-gradient(90deg, var(--hl-honey), var(--hl-peach), var(--hl-coral));
  background-size: 200% 200%;
  animation: hl-gradFlow 6s ease infinite;
}
.copyright { color: rgba(255,255,255,.3) !important; font-size: .78rem; }

/* Footer logo animation */
.footer .logo { animation: hl-float 4s ease-in-out infinite; }

/* ===== FORMS ===== */
.form-control:focus {
  border-color: var(--hl-peach) !important;
  box-shadow: 0 0 0 4px rgba(240,149,106,.15) !important;
}
.form-select:focus {
  border-color: var(--hl-peach) !important;
  box-shadow: 0 0 0 4px rgba(240,149,106,.15) !important;
}

/* ===== BREADCRUMB ===== */
.breadcrumb-item a { color: var(--hl-peach); }
.breadcrumb-item.active { color: var(--hl-gray); }

/* ===== PAGINATION ===== */
.pagination .page-link {
  color: var(--hl-dark);
  border-color: rgba(240,149,106,.3);
  border-radius: .5rem;
  font-weight: 700;
  transition: background .2s, color .2s;
}
.pagination .page-item.active .page-link {
  background: linear-gradient(135deg, var(--hl-peach), var(--hl-coral));
  border-color: var(--hl-peach);
  color: #fff;
}
.pagination .page-link:hover { background: var(--hl-bg); color: var(--hl-peach); }

/* ===== PRODUCT PAGE ===== */
.product-cover img,
.product-images-large img { border-radius: 1.25rem; }
.product-prices .current-price { font-size: 1.7rem; font-weight: 900; color: var(--hl-dark); }
.product-add-to-cart .add-to-cart { padding: .85rem 2.5rem !important; font-size: 1rem !important; }

/* ===== ALERTS ===== */
.alert-success { background: rgba(122,175,110,.15); border-color: var(--hl-green); color: #3a6b34; }
.alert-danger  { background: rgba(232,116,90,.12);  border-color: var(--hl-coral); color: #8b2f1a; }

/* ===== CART ===== */
.cart-summary { background: var(--hl-white); border-radius: 1.25rem; box-shadow: var(--hl-shadow); }

/* ===== BACK TO TOP ===== */
.back-to-top {
  background: linear-gradient(135deg, var(--hl-peach), var(--hl-coral)) !important;
  border-radius: 50% !important;
  color: #fff !important;
  box-shadow: var(--hl-shadow) !important;
}
.hl-back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--hl-honey), var(--hl-peach));
  border: none;
  border-radius: 14px;
  color: var(--hl-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(240,149,106,.35);
  opacity: 0;
  transform: translateY(20px) scale(.9);
  transition: opacity .3s, transform .3s;
  pointer-events: none;
}
.hl-back-to-top.hl-btt--visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.hl-back-to-top:hover {
  transform: translateY(-4px) scale(1.07);
  box-shadow: 0 10px 30px rgba(240,149,106,.5);
}
.hl-back-to-top svg { width: 20px; height: 20px; pointer-events: none; }

/* ===== FLOATING CART ===== */
.hl-float-cart {
  position: fixed;
  bottom: 6.5rem;
  right: 2rem;
  z-index: 999;
}
.hl-float-cart-btn {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--hl-peach), var(--hl-coral));
  border: none;
  border-radius: 16px;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(232,116,90,.42);
  transition: transform .25s, box-shadow .25s;
  position: relative;
  text-decoration: none !important;
}
.hl-float-cart-btn:hover {
  transform: translateY(-4px) scale(1.06) rotate(-5deg);
  box-shadow: 0 14px 36px rgba(232,116,90,.55);
  color: #fff !important;
}
.hl-float-cart-btn svg { width: 26px; height: 26px; pointer-events: none; }
.hl-float-cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--hl-honey);
  color: var(--hl-dark);
  font-size: .65rem;
  font-weight: 900;
  min-width: 20px;
  height: 20px;
  border-radius: 10px;
  padding: 0 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2.5px solid var(--hl-bg);
  font-family: 'Nunito', sans-serif;
  line-height: 1;
}
@keyframes hl-cart-bounce {
  0%,100% { transform: translateY(0) scale(1) rotate(0); }
  25%      { transform: translateY(-8px) scale(1.2) rotate(-10deg); }
  50%      { transform: translateY(-4px) scale(1.08) rotate(5deg); }
  75%      { transform: translateY(-6px) scale(1.12) rotate(-4deg); }
}
.hl-float-cart-btn.hl-bounce {
  animation: hl-cart-bounce .55s cubic-bezier(.36,.07,.19,.97);
}

/* ===== FLYING ADD-TO-CART ===== */
.hl-fly-clone {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  will-change: left, top, width, height, opacity;
  box-shadow: 0 6px 20px rgba(240,149,106,.45);
  background: var(--hl-peach);
  border: 3px solid #fff;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

/* ===== HOMEPAGE SECTION TITLES (from modules) ===== */
#featured-products .section-title,
#new-products .section-title,
#best-sellers .section-title {
  font-size: 1.5rem;
  font-weight: 900;
  padding-bottom: .75rem;
  border-bottom: 2px solid;
  border-image: linear-gradient(90deg, var(--hl-honey), transparent) 1;
  margin-bottom: 1.5rem;
}
.page-content--home .section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--hl-honey), var(--hl-peach));
  border-radius: 2px;
  margin-top: .4rem;
}

/* ps_banner */
.ps_banner img { border-radius: 1.5rem; }

/* ===== FLOATING CART BUBBLE ===== */
.hl-cart-bubble {
  position: absolute;
  bottom: calc(100% + 1rem);
  right: 0;
  width: 300px;
  background: var(--hl-white);
  border-radius: 1.25rem;
  box-shadow: 0 20px 56px rgba(44,31,14,.18), 0 4px 16px rgba(240,149,106,.15);
  z-index: 1001;
  opacity: 0;
  transform: translateY(10px) scale(.96);
  pointer-events: none;
  transition: opacity .28s cubic-bezier(.34,1.3,.64,1), transform .28s cubic-bezier(.34,1.3,.64,1);
  transform-origin: bottom right;
  /* pas de overflow:hidden — il cliperait la flèche et les coins arrondis du head */
}
/* Flèche CSS triangle pointant vers le bas */
.hl-cart-bubble::before {
  content: '';
  position: absolute;
  bottom: -10px;
  right: 20px;
  border: 10px solid transparent;
  border-top: 10px solid var(--hl-white);
  border-bottom: 0;
  filter: drop-shadow(0 2px 2px rgba(44,31,14,.08));
  pointer-events: none;
}
.hl-cart-bubble--open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  animation: hl-bubbleIn .3s cubic-bezier(.34,1.3,.64,1) both;
}
.hl-cart-bubble-head {
  background: linear-gradient(135deg, var(--hl-honey), var(--hl-peach));
  padding: .8rem 1.1rem;
  display: flex;
  align-items: center;
  gap: .6rem;
  border-radius: 1.25rem 1.25rem 0 0;
  overflow: hidden;
}
.hl-cart-bubble-head-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}
.hl-cart-bubble-count {
  font-size: .88rem;
  font-weight: 800;
  color: var(--hl-dark);
  margin: 0;
  flex: 1;
}
.hl-cart-bubble-body {
  padding: .75rem 1.1rem .25rem;
  max-height: 210px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--hl-peach) transparent;
}
.hl-cart-bubble-body::-webkit-scrollbar { width: 4px; }
.hl-cart-bubble-body::-webkit-scrollbar-thumb { background: var(--hl-peach); border-radius: 4px; }
.hl-cart-bubble-empty {
  font-size: .82rem;
  color: var(--hl-gray);
  text-align: center;
  padding: .5rem 0 .75rem;
}
.hl-cart-bubble-item {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .5rem 0;
  border-bottom: 1px solid rgba(240,149,106,.1);
}
.hl-cart-bubble-item:last-child { border-bottom: none; }
.hl-cart-bubble-img {
  width: 48px; height: 48px;
  border-radius: 10px;
  object-fit: cover;
  background: var(--hl-bg);
  flex-shrink: 0;
}
.hl-cart-bubble-img-placeholder {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: var(--hl-bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.hl-cart-bubble-info { flex: 1; min-width: 0; }
.hl-cart-bubble-name {
  font-size: .78rem;
  font-weight: 700;
  color: var(--hl-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0 0 .18rem;
}
.hl-cart-bubble-meta {
  display: flex;
  align-items: center;
  gap: .4rem;
}
.hl-cart-bubble-qty {
  font-size: .72rem;
  font-weight: 700;
  background: rgba(240,149,106,.12);
  color: var(--hl-coral);
  border-radius: 30px;
  padding: .05rem .42rem;
}
.hl-cart-bubble-price {
  font-size: .82rem;
  font-weight: 900;
  color: var(--hl-coral);
  margin: 0;
}
.hl-cart-bubble-total-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .55rem 1.1rem .65rem;
  border-top: 1px solid rgba(240,149,106,.12);
  background: rgba(240,149,106,.04);
}
.hl-cart-bubble-total-label {
  font-size: .76rem;
  font-weight: 700;
  color: var(--hl-gray);
}
.hl-cart-bubble-total-val {
  font-size: .92rem;
  font-weight: 900;
  color: var(--hl-dark);
}
.hl-cart-bubble-footer {
  padding: .6rem 1.1rem .875rem;
  border-radius: 0 0 1.25rem 1.25rem;
  overflow: hidden;
}
.hl-cart-bubble-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  background: linear-gradient(135deg, var(--hl-peach), var(--hl-coral));
  color: #fff !important;
  border-radius: 30px;
  padding: .58rem 1.25rem;
  font-size: .84rem;
  font-weight: 800;
  text-decoration: none !important;
  transition: transform .2s, box-shadow .2s;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.hl-cart-bubble-cta::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: rgba(255,255,255,.18);
  transform: skewX(-20deg);
  animation: hl-shine 2.4s ease 1.2s both;
}
.hl-cart-bubble-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,116,90,.42);
  color: #fff !important;
}

/* ===== RIPPLE EFFECT ===== */
.hl-ripple-host {
  position: relative;
  overflow: hidden;
}
.hl-ripple-wave {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  pointer-events: none;
  transform: scale(0);
  animation: hl-ripple .55s linear forwards;
}

/* ===== HOVER SHINE ON PRODUCT CARDS ===== */
.product-miniature .card,
.hl-cat-card {
  overflow: hidden;
}
.product-miniature .card::after {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 60%;
  height: 100%;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,.28) 50%, transparent 60%);
  transform: skewX(-15deg);
  pointer-events: none;
  opacity: 0;
  transition: opacity .2s;
}
.product-miniature:hover .card::after {
  opacity: 1;
  animation: hl-shine .55s ease both;
}

/* ===== BADGE COUNT ANIMATION ===== */
.hl-float-cart-count.hl-count-pop {
  animation: hl-countPop .4s cubic-bezier(.36,.07,.19,.97) both;
}

/* Page entrance — opacity only, no transform (transform sur body casse position:fixed) */
body {
  animation: hl-pageIn .3s ease both;
}

/* Section titles — animated underline bar */
.hl-sec-title::after {
  content: '';
  display: block;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--hl-honey), var(--hl-peach));
  border-radius: 2px;
  margin-top: .35rem;
  transition: width .6s cubic-bezier(.4,0,.2,1);
}
.hl-sec-header.is-visible .hl-sec-title::after { width: 80px; }

/* Product cards — subtle entrance on category pages too */
.hl-cat-card { animation: none; }
.hl-cat-card.is-visible {
  animation: fadeUp 0.45s cubic-bezier(.4,0,.2,1) forwards;
}

/* Floating cart button pulse when count > 0 */
.hl-float-cart-btn.hl-cart-has-items {
  box-shadow: 0 6px 24px rgba(232,116,90,.42), 0 0 0 0 rgba(240,149,106,.5);
  animation: hl-cart-ping 2.5s ease 3s forwards;
}
@keyframes hl-cart-ping {
  0%   { box-shadow: 0 6px 24px rgba(232,116,90,.42), 0 0 0 0 rgba(240,149,106,.5); }
  50%  { box-shadow: 0 6px 24px rgba(232,116,90,.42), 0 0 0 12px rgba(240,149,106,0); }
  100% { box-shadow: 0 6px 24px rgba(232,116,90,.42); }
}

/* ===== LOADING SKELETON SHIMMER ===== */
.hl-skeleton {
  background: linear-gradient(90deg, var(--hl-bg) 25%, var(--hl-light) 50%, var(--hl-bg) 75%);
  background-size: 400px 100%;
  animation: hl-shimmer 1.4s infinite;
  border-radius: .75rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hl-cats-grid { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 768px) {
  .hl-cats-grid  { grid-template-columns: repeat(3,1fr); }
  .hl-reassurance-inner { grid-template-columns: repeat(2,1fr); }
  .hl-promo-inner { flex-direction: column; text-align: center; }
  .hl-promo-emojis { justify-content: center; }
  .hl-slide-figure { min-height: 280px; }
  .hl-slide-title { font-size: 1.5rem !important; }
  .ps-imageslider .carousel-caption.hl-slide-caption {
    margin: 1rem;
    max-width: calc(100% - 2rem);
    padding: 1.25rem 1.5rem;
  }
}
@media (max-width: 480px) {
  .hl-cats-grid { grid-template-columns: repeat(2,1fr); }
  .hl-search-submit { padding: .5rem .9rem; font-size: .8rem; }
  .hl-back-to-top  { bottom: 1rem; right: 1rem; }
  .hl-float-cart   { bottom: 5rem; right: 1rem; }
  .hl-cart-bubble  { width: calc(100vw - 4rem); right: 0; }
}
