/* ════════════════════════════════════════════════════════════════
   VIKING BEAUTY — shop.css v1.0
   Design System : Blanc & Rose Beige · Style MK · Luxury Beauty
   ════════════════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600;9..40,700&display=swap');

/* ── TOKENS ── */
:root {
  --bg:       #FFFFFF;
  --bg2:      #FFF8F5;
  --bg3:      #F5ECE8;
  --surface:  #FFFFFF;
  --border:   #EAE0D9;
  --border2:  #F0E6E0;
  --text:     #1C1009;
  --text2:    #5C4A40;
  --muted:    #9E8E84;
  --rose:     #C4887C;
  --rose-l:   #EDD5CF;
  --rose-d:   #A06860;
  --rose-bg:  #FEF6F4;
  --gold:     #B8935A;
  --gold-l:   #E8CFAA;
  --black:    #1C1009;
  --white:    #FFFFFF;
  --wa:       #25D366;
  --danger:   #C0392B;
  --ok:       #27AE60;

  --f-serif: 'Playfair Display', Georgia, serif;
  --f-sans:  'DM Sans', system-ui, sans-serif;

  --shadow-sm: 0 1px 4px rgba(28,16,9,.06);
  --shadow:    0 4px 20px rgba(28,16,9,.08);
  --shadow-lg: 0 12px 40px rgba(28,16,9,.12);
  --shadow-xl: 0 24px 64px rgba(28,16,9,.16);

  --t:  .22s cubic-bezier(.4,0,.2,1);
  --t2: .38s cubic-bezier(.4,0,.2,1);

  --r-sm: 6px;
  --r:    12px;
  --r-lg: 18px;
  --r-xl: 24px;
  --r-full: 999px;

  --max: 1440px;
  --hdr-h: 64px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--f-sans); color: var(--text); background: var(--bg); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img  { display: block; max-width: 100%; }
a    { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

/* ── PAGE FADE ── */
html { animation: pgIn .4s ease both; }
@keyframes pgIn { from { opacity: 0; } to { opacity: 1; } }

/* ══════════════════════════════════════════════
   BANDEAU
══════════════════════════════════════════════ */
/* Bandeau déroulant retiré du site actif */
.sh-band { display: none; }

/* ══════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════ */
.sh-hdr {
  position: sticky; top: 0; z-index: 300;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(28,16,9,.05);
}
.sh-hdr-inner {
  max-width: var(--max); margin: 0 auto;
  padding: 0 2rem;
  height: var(--hdr-h);
  display: flex; align-items: center; gap: 1.5rem;
}
/* Hamburger + brand */
.sh-menu-btn {
  display: flex; align-items: center; gap: .5rem;
  padding: .4rem .3rem;
  color: var(--text);
  transition: color var(--t);
  flex-shrink: 0;
}
.sh-menu-btn:hover { color: var(--rose); }
.sh-menu-btn .hamburger {
  display: flex; flex-direction: column; gap: 5px; width: 22px;
}
.sh-menu-btn .hamburger span {
  height: 1.5px; background: currentColor; border-radius: 2px; transition: all var(--t);
  display: block;
}
.sh-logo {
  font-family: var(--f-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--black);
  letter-spacing: .04em;
  white-space: nowrap;
  flex-shrink: 0;
}
.sh-logo em { font-style: italic; color: var(--rose); }
/* Nav links */
.sh-nav {
  display: flex; align-items: center; gap: 0;
  margin: 0 auto;
}
.sh-nav-link {
  padding: 0 1.1rem;
  height: var(--hdr-h);
  display: flex; align-items: center;
  font-size: .82rem;
  font-weight: 500;
  color: var(--text2);
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: all var(--t);
  position: relative;
  white-space: nowrap;
}
.sh-nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 1.1rem; right: 1.1rem;
  height: 2px; background: var(--rose);
  transform: scaleX(0); transform-origin: center;
  transition: transform var(--t);
}
.sh-nav-link:hover, .sh-nav-link.active { color: var(--black); }
.sh-nav-link:hover::after, .sh-nav-link.active::after { transform: scaleX(1); }
/* Header actions */
.sh-hdr-actions { display: flex; align-items: center; gap: .2rem; margin-left: auto; flex-shrink: 0; }
.sh-icon-btn {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text2); transition: all var(--t);
}
.sh-icon-btn:hover { background: var(--bg2); color: var(--rose); }
.sh-cart-btn {
  display: flex; align-items: center; gap: .42rem;
  padding: .55rem 1.1rem;
  background: var(--black); color: var(--white);
  border-radius: var(--r-full);
  font-size: .82rem; font-weight: 600;
  transition: all var(--t);
  position: relative;
}
.sh-cart-btn:hover { background: var(--rose-d); }
.sh-cart-n {
  background: var(--rose-l); color: var(--rose-d);
  border-radius: 50%; min-width: 18px; height: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: .68rem; font-weight: 800;
}

/* ══════════════════════════════════════════════
   MÉGA-MENU LATÉRAL (style MK)
══════════════════════════════════════════════ */
.sh-menu-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.45);
  z-index: 400; opacity: 0; pointer-events: none;
  transition: opacity var(--t2);
}
.sh-menu-overlay.open { opacity: 1; pointer-events: auto; }
.sh-sidebar {
  position: fixed; top: 0; left: 0; bottom: 0;
  width: 360px; background: var(--white); z-index: 401;
  transform: translateX(-100%); transition: transform var(--t2);
  display: flex; flex-direction: column;
  overflow: hidden;
}
.sh-sidebar.open { transform: translateX(0); }
.sh-sidebar-top {
  padding: 1.4rem 1.6rem;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  flex-shrink: 0;
}
.sh-sidebar-brand { font-family: var(--f-serif); font-size: 1.15rem; font-weight: 600; }
.sh-sidebar-brand em { font-style: italic; color: var(--rose); }
.sh-sidebar-close {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bg2); display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: 1.2rem; transition: all var(--t);
}
.sh-sidebar-close:hover { background: var(--rose-bg); color: var(--rose); }
.sh-sidebar-body { flex: 1; overflow-y: auto; padding: 1.4rem 0; }
/* Univers & sous-catégories */
.sh-univ { margin-bottom: 1.8rem; }
.sh-univ-hdr {
  padding: .55rem 1.6rem;
  font-size: .68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .16em;
  color: var(--muted);
  display: flex; align-items: center; gap: .6rem;
}
.sh-univ-hdr::after { content: ''; flex: 1; height: 1px; background: var(--border2); }
.sh-univ-all {
  display: flex; align-items: center; justify-content: space-between;
  padding: .62rem 1.6rem; font-size: .9rem; font-weight: 600;
  color: var(--text); transition: all var(--t);
  border-left: 3px solid transparent;
}
.sh-univ-all:hover { background: var(--bg2); border-left-color: var(--rose); color: var(--rose); }
.sh-cat-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: .55rem 1.6rem .55rem 2.2rem;
  font-size: .87rem; color: var(--text2);
  transition: all var(--t); border-left: 3px solid transparent;
  cursor: pointer; width: 100%; text-align: left;
  background: none;
}
.sh-cat-link:hover, .sh-cat-link.active {
  background: var(--rose-bg); color: var(--rose-d);
  border-left-color: var(--rose);
}
.sh-cat-link .sh-cat-n {
  font-size: .72rem; color: var(--muted);
  background: var(--bg3); padding: .15rem .52rem;
  border-radius: var(--r-full); font-weight: 600;
}
/* Sidebar footer */
.sh-sidebar-foot {
  padding: 1.2rem 1.6rem; border-top: 1px solid var(--border);
  flex-shrink: 0;
}
.sh-sidebar-foot-links { display: flex; gap: 1rem; flex-wrap: wrap; }
.sh-sidebar-foot-links a { font-size: .82rem; color: var(--muted); transition: color var(--t); }
.sh-sidebar-foot-links a:hover { color: var(--rose); }

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.sh-hero {
  position: relative; overflow: hidden;
  background: var(--bg3);
  min-height: 88vh; display: flex; align-items: center;
}
.sh-hero-slides { position: absolute; inset: 0; overflow: hidden; contain: layout paint; }
.sh-hero-img {
  position: absolute; inset: 0; object-fit: cover;
  width: 100%; height: 100%;
  object-position: center top;
  opacity: 0;
  transition: opacity .65s ease;
  will-change: opacity;
}
.sh-hero-img.is-active {
  opacity: 1;
}

/* Flèches de navigation minimalistes */
.sh-hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 46px; height: 46px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.12); color: #fff;
  border: 1px solid rgba(255,255,255,.35);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  cursor: pointer; transition: background var(--t), border-color var(--t), transform var(--t);
}
.sh-hero-arrow:hover { background: rgba(255,255,255,.24); border-color: #fff; }
.sh-hero-arrow.prev { left: 1.4rem; }
.sh-hero-arrow.next { right: 1.4rem; }
.sh-hero-arrow.prev:hover { transform: translateY(-50%) translateX(-2px); }
.sh-hero-arrow.next:hover { transform: translateY(-50%) translateX(2px); }

/* Points indicateurs */
.sh-hero-dots {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; gap: .55rem;
}
.sh-hero-dot {
  width: 9px; height: 9px; border-radius: 50%; cursor: pointer; padding: 0;
  background: rgba(255,255,255,.45); border: none; transition: all var(--t);
}
.sh-hero-dot.is-active { background: #fff; width: 26px; border-radius: 999px; }
@media (prefers-reduced-motion: reduce) {
  .sh-hero-img, .sh-hero-img.is-active { animation: none; transition: opacity .4s ease; transform: none; }
}
.sh-hero-overlay { display: none; }
.sh-hero-content {
  position: relative; z-index: 1;
  max-width: min(760px, calc(100vw - 8rem));
  margin: 0 auto;
  padding: 2.1rem 2.4rem 2.2rem;
  border-radius: 32px;
  background: linear-gradient(90deg, rgba(8,5,3,.64) 0%, rgba(8,5,3,.30) 58%, rgba(8,5,3,0) 100%);
  box-shadow: 0 18px 42px rgba(0,0,0,.12);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  color: var(--white);
}
.sh-hero-eyebrow {
  font-size: .7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .22em; color: var(--gold-l);
  margin-bottom: 1.2rem; display: flex; align-items: center; gap: .7rem;
}
.sh-hero-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--gold-l); }
.sh-hero h1 {
  font-family: var(--f-serif);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 500; line-height: 1.06;
  letter-spacing: -.01em;
  max-width: 640px; margin-bottom: 1.5rem;
  text-shadow: 0 3px 18px rgba(0,0,0,.35);
}
.sh-hero h1 em { font-style: italic; color: var(--rose-l); }
.sh-hero p { font-size: 1.05rem; color: rgba(255,255,255,.94); max-width: 460px; line-height: 1.75; margin-bottom: 2.2rem; text-shadow: 0 2px 10px rgba(0,0,0,.28); }
.sh-hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.sh-btn-primary {
  padding: 1.04rem 2.4rem; background: #c93c3c; color: var(--white);
  border-radius: var(--r-full); font-weight: 700; font-size: 1.35rem;
  transition: all var(--t); box-shadow: var(--shadow);
  display: inline-flex; align-items: center; gap: .5rem;
}
.sh-btn-primary:hover { background: #a93131; color: var(--white); transform: translateY(-2px); }

/* ── Contour lumineux rouge en mouvement (attire l'attention) ── */
@property --vb-glow-angle { syntax: '<angle>'; inherits: false; initial-value: 0deg; }
.sh-btn-glow {
  position: relative; z-index: 0; overflow: visible;
  animation: vbGlowPulse 1.7s ease-in-out infinite;
}
/* Anneau lumineux qui tourne autour du bouton */
.sh-btn-glow::before {
  content: ''; position: absolute; inset: -3px; border-radius: 999px; padding: 3px;
  background: conic-gradient(from var(--vb-glow-angle),
              transparent 0deg, #ff1e1e 35deg, #ff5a5a 60deg, #ff1e1e 85deg, transparent 120deg, transparent 360deg);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  animation: vbGlowSpin 2.2s linear infinite;
  pointer-events: none; z-index: 2;
}
@keyframes vbGlowSpin { to { --vb-glow-angle: 360deg; } }
@keyframes vbGlowPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,30,30,.55), var(--shadow); }
  50%      { box-shadow: 0 0 22px 5px rgba(255,30,30,.9), var(--shadow); }
}
/* Repli pour navigateurs sans @property : un halo pulsé reste visible */
@supports not (background: conic-gradient(from var(--vb-glow-angle), red, blue)) {
  .sh-btn-glow::before { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .sh-btn-glow { animation: none; }
  .sh-btn-glow::before { animation: none; background: conic-gradient(#ff1e1e, #ff5a5a, #ff1e1e); }
}
.sh-btn-secondary {
  padding: .88rem 2rem; background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,.5); border-radius: var(--r-full);
  font-weight: 600; font-size: .9rem; transition: all var(--t);
  display: inline-flex; align-items: center; gap: .5rem;
}
.sh-btn-secondary:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.8); }

/* ══════════════════════════════════════════════
   UNIVERS CARDS
══════════════════════════════════════════════ */
.sh-section { padding: 4rem 2rem; }
.sh-section-inner { max-width: var(--max); margin: 0 auto; }
.sh-section-title {
  font-family: var(--f-serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400; letter-spacing: -.01em;
  margin-bottom: .5rem;
}
.sh-section-title em { font-style: italic; color: var(--rose); }
.sh-section-sub { font-size: .92rem; color: var(--muted); margin-bottom: 2.5rem; }
.sh-univers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.sh-univ-card {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 3/4; cursor: pointer;
  transition: all var(--t2);
  text-decoration: none;
  display: block;
}
.sh-univ-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.sh-univ-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s cubic-bezier(.4,0,.2,1);
}
.sh-univ-card:hover img { transform: scale(1.04); }
.sh-univ-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,16,9,.75) 0%, rgba(28,16,9,.15) 55%, transparent 100%);
}
.sh-univ-card-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 2rem 1.8rem; color: var(--white);
}
.sh-univ-card-tag {
  font-size: .66rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .18em; color: var(--gold-l); margin-bottom: .5rem;
}
.sh-univ-card-title {
  font-family: var(--f-serif); font-size: 1.7rem; font-weight: 500;
  line-height: 1.2; margin-bottom: .5rem;
}
.sh-univ-card-n { font-size: .82rem; color: rgba(255,255,255,.72); }
.sh-univ-card-arrow {
  margin-top: 1rem; width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--t);
}
.sh-univ-card:hover .sh-univ-card-arrow { background: rgba(255,255,255,.25); transform: translateX(4px); }

/* ══════════════════════════════════════════════
   PRODUCT CARD
══════════════════════════════════════════════ */
.sh-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}
.sh-card {
  background: var(--white); border-radius: var(--r-lg);
  overflow: hidden; display: flex; flex-direction: column;
  border: 1px solid var(--border2);
  transition: all var(--t2);
  cursor: pointer;
}
.sh-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--rose-l); }
.sh-card-img {
  position: relative; aspect-ratio: 1; overflow: hidden;
  background: var(--bg2);
}
.sh-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .55s cubic-bezier(.4,0,.2,1);
}
.sh-card:hover .sh-card-img img { transform: scale(1.06); }
.sh-card-badge {
  position: absolute; top: .75rem; left: .75rem;
  background: var(--black); color: var(--white);
  font-size: .64rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; padding: .22rem .62rem; border-radius: var(--r-full);
}
.sh-card-badge.new { background: var(--rose); }
.sh-card-badge.pop { background: var(--gold); color: var(--black); }
.sh-card-quick {
  position: absolute; bottom: .75rem; left: .75rem; right: .75rem;
  background: var(--white); color: var(--black);
  padding: .62rem; border-radius: var(--r-sm);
  font-weight: 700; font-size: .8rem; text-align: center;
  transform: translateY(12px); opacity: 0;
  transition: all var(--t); border: none; cursor: pointer;
}
.sh-card:hover .sh-card-quick { transform: translateY(0); opacity: 1; }
.sh-card-quick:hover { background: var(--rose); color: var(--white); }
.sh-card-body { padding: 1.1rem; display: flex; flex-direction: column; gap: .3rem; flex: 1; }
.sh-card-brand { font-size: .66rem; text-transform: uppercase; letter-spacing: .14em; color: var(--rose); font-weight: 700; }
.sh-card-name {
  font-family: var(--f-serif); font-size: .95rem; font-weight: 500;
  line-height: 1.35; color: var(--text);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.sh-card-desc { font-size: .78rem; color: var(--muted); line-height: 1.5; }
.sh-card-price {
  margin-top: auto; padding-top: .6rem;
  font-family: var(--f-serif); font-size: 1rem; font-weight: 600; color: var(--rose);
}
.sh-card-actions { display: flex; gap: .5rem; margin-top: .65rem; }
.sh-card-actions .btn-voir {
  flex: 1; padding: .58rem .8rem; background: var(--bg3);
  border-radius: var(--r-full); font-size: .78rem; font-weight: 600; text-align: center;
  color: var(--text2); transition: all var(--t); border: none; cursor: pointer;
}
.sh-card-actions .btn-voir:hover { background: var(--rose-l); color: var(--rose-d); }
.sh-card-actions .btn-add {
  flex: 1; padding: .58rem .8rem; background: var(--black); color: var(--white);
  border-radius: var(--r-full); font-size: .78rem; font-weight: 600; text-align: center;
  transition: all var(--t); border: none; cursor: pointer;
}
.sh-card-actions .btn-add:hover { background: var(--rose-d); }

/* ══════════════════════════════════════════════
   CATALOGUE LAYOUT
══════════════════════════════════════════════ */
.sh-catalogue-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  max-width: var(--max); margin: 0 auto;
  padding: 2rem 2rem 4rem;
}
/* LEFT PANEL */
.sh-left-panel {
  position: sticky; top: calc(var(--hdr-h) + 1rem);
  height: calc(100vh - var(--hdr-h) - 2rem);
  overflow-y: auto; scrollbar-width: thin;
  border-right: 1px solid var(--border2);
  padding-right: 1.5rem;
}
.sh-left-panel::-webkit-scrollbar { width: 3px; }
.sh-left-panel::-webkit-scrollbar-thumb { background: var(--rose-l); border-radius: 3px; }
.sh-left-title { font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .18em; color: var(--muted); margin-bottom: 1.4rem; }
/* Facets */
.sh-facet { margin-bottom: 1.8rem; }
.sh-facet-hdr {
  display: flex; align-items: center; justify-content: space-between;
  padding: .5rem 0; cursor: pointer; border-bottom: 1px solid var(--border);
  margin-bottom: .8rem;
}
.sh-facet-hdr span { font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.sh-facet-hdr svg { width: 14px; height: 14px; color: var(--muted); transition: transform var(--t); }
.sh-facet.open .sh-facet-hdr svg { transform: rotate(180deg); }
.sh-facet-body { display: none; }
.sh-facet.open .sh-facet-body { display: block; }
.sh-facet-opt {
  display: flex; align-items: center; gap: .6rem;
  padding: .42rem 0; cursor: pointer; transition: all var(--t);
}
.sh-facet-opt input[type="checkbox"] { display: none; }
.sh-facet-chk {
  width: 16px; height: 16px; border-radius: 3px;
  border: 1.5px solid var(--border); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--t); background: var(--white);
}
.sh-facet-opt.checked .sh-facet-chk { background: var(--black); border-color: var(--black); }
.sh-facet-opt.checked .sh-facet-chk::after { content: '✓'; color: var(--white); font-size: .65rem; font-weight: 800; }
.sh-facet-lbl { font-size: .85rem; color: var(--text2); transition: color var(--t); }
.sh-facet-opt:hover .sh-facet-lbl { color: var(--rose); }
.sh-facet-n { font-size: .74rem; color: var(--muted); margin-left: auto; }
/* Price range */
.sh-price-range { margin-top: .5rem; }
.sh-price-track {
  height: 3px; background: var(--border); border-radius: 2px;
  position: relative; margin: .8rem 0;
}
.sh-price-fill { position: absolute; height: 100%; background: var(--black); border-radius: 2px; }
/* RIGHT PANEL */
.sh-right-panel {}
.sh-results-bar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.5rem; padding-bottom: 1rem;
  border-bottom: 1px solid var(--border2);
  gap: 1rem; flex-wrap: wrap;
}
.sh-results-info { font-size: .85rem; color: var(--muted); font-weight: 500; }
.sh-results-info strong { color: var(--text); font-weight: 700; }
.sh-active-filters { display: flex; gap: .4rem; flex-wrap: wrap; }
.sh-filter-tag {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--bg3); color: var(--text2);
  padding: .3rem .7rem; border-radius: var(--r-full);
  font-size: .75rem; font-weight: 600; border: none; cursor: pointer;
  transition: all var(--t);
}
.sh-filter-tag:hover { background: var(--rose-l); color: var(--rose-d); }
.sh-sort-sel {
  padding: .52rem 2.2rem .52rem 1rem;
  border: 1px solid var(--border); border-radius: var(--r-full);
  font-size: .82rem; color: var(--text2);
  background: var(--white);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' viewBox='0 0 24 24'%3E%3Cpath stroke='%239E8E84' stroke-width='2' stroke-linecap='round' d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .7rem center;
  cursor: pointer; transition: all var(--t);
}
.sh-sort-sel:focus { outline: none; border-color: var(--rose); }
/* Breadcrumb */
.sh-breadcrumb {
  display: flex; align-items: center; gap: .5rem;
  font-size: .78rem; color: var(--muted); margin-bottom: 1.5rem; flex-wrap: wrap;
}
.sh-breadcrumb a { color: var(--muted); transition: color var(--t); }
.sh-breadcrumb a:hover { color: var(--rose); }
.sh-breadcrumb span { color: var(--text); font-weight: 500; }
.sh-breadcrumb .sep { color: var(--border); }

/* ══════════════════════════════════════════════
   PAGE PRODUIT
══════════════════════════════════════════════ */
.sh-product-wrap { max-width: var(--max); margin: 0 auto; padding: 2.5rem 2rem 5rem; }
.sh-product-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.sh-product-media { position: sticky; top: calc(var(--hdr-h) + 1.5rem); }
.sh-product-main-img {
  width: 100%; aspect-ratio: 1; object-fit: cover;
  border-radius: var(--r-xl); background: var(--bg2);
}
.sh-product-thumbs { display: flex; gap: .7rem; margin-top: .8rem; flex-wrap: wrap; }
.sh-thumb {
  width: 68px; height: 68px; border-radius: var(--r);
  overflow: hidden; cursor: pointer; border: 2px solid transparent;
  transition: all var(--t); flex-shrink: 0;
}
.sh-thumb:hover, .sh-thumb.active { border-color: var(--rose); }
.sh-thumb img { width: 100%; height: 100%; object-fit: cover; }
/* Product info */
.sh-product-info {}
.sh-prod-brand { font-size: .72rem; text-transform: uppercase; letter-spacing: .16em; color: var(--rose); font-weight: 700; margin-bottom: .5rem; }
.sh-prod-name {
  font-family: var(--f-serif);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 400; line-height: 1.15;
  letter-spacing: -.01em; margin-bottom: .6rem;
}
.sh-prod-tags { display: flex; gap: .4rem; flex-wrap: wrap; margin-bottom: 1.2rem; }
.sh-prod-tag {
  background: var(--bg3); color: var(--text2);
  padding: .28rem .72rem; border-radius: var(--r-full);
  font-size: .74rem; font-weight: 600; border: 1px solid var(--border2);
}
.sh-prod-price {
  font-family: var(--f-serif); font-size: 1.8rem; font-weight: 500;
  color: var(--rose); margin-bottom: .5rem;
}
.sh-prod-price small { font-size: .9rem; color: var(--muted); font-family: var(--f-sans); font-weight: 400; }
.sh-prod-auth { display: inline-flex; align-items: center; gap: .4rem; background: #f0faf4; color: var(--ok); padding: .3rem .75rem; border-radius: var(--r-full); font-size: .74rem; font-weight: 700; margin-bottom: 1.4rem; border: 1px solid #c8ead4; }
/* Add to cart */
.sh-prod-actions { display: flex; gap: .75rem; margin-bottom: 1.4rem; flex-wrap: wrap; }
.sh-prod-cart-btn {
  flex: 1; min-width: 160px; padding: .95rem 1.5rem;
  background: var(--black); color: var(--white);
  border-radius: var(--r-full); font-weight: 700; font-size: .92rem;
  transition: all var(--t); display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  border: none; cursor: pointer;
}
.sh-prod-cart-btn:hover { background: var(--rose-d); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(160,104,96,.35); }
.sh-prod-wa-btn {
  flex: 1; min-width: 160px; padding: .95rem 1.5rem;
  background: var(--wa); color: var(--white);
  border-radius: var(--r-full); font-weight: 700; font-size: .92rem;
  transition: all var(--t); display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  text-decoration: none;
}
.sh-prod-wa-btn:hover { background: #1da851; transform: translateY(-1px); }
/* Description longue */
.sh-prod-desc-long { font-size: .9rem; line-height: 1.8; color: var(--text2); margin-bottom: 1.4rem; }
/* Bénéfices */
.sh-prod-benefs { margin-bottom: 1.4rem; }
.sh-prod-benefs-title { font-size: .75rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 700; color: var(--muted); margin-bottom: .65rem; }
.sh-prod-benef { display: flex; align-items: flex-start; gap: .6rem; font-size: .87rem; color: var(--text2); margin-bottom: .45rem; }
.sh-prod-benef::before { content: '✓'; color: var(--ok); font-weight: 800; flex-shrink: 0; }
/* Fiche technique */
.sh-fiche { background: var(--bg2); border-radius: var(--r-lg); padding: 1.2rem; margin-bottom: 1.4rem; }
.sh-fiche-title { font-size: .75rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 700; color: var(--muted); margin-bottom: .8rem; }
.sh-fiche-row { display: flex; padding: .48rem 0; border-bottom: 1px solid var(--border2); font-size: .86rem; }
.sh-fiche-row:last-child { border: none; }
.sh-fiche-lbl { font-weight: 600; color: var(--text2); min-width: 130px; flex-shrink: 0; }
.sh-fiche-val { color: var(--muted); }
/* Mode d'emploi */
.sh-mode-emploi { background: var(--rose-bg); border: 1px solid var(--rose-l); border-radius: var(--r-lg); padding: 1.2rem; }
.sh-mode-emploi-title { font-size: .75rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 700; color: var(--rose-d); margin-bottom: .6rem; }
.sh-mode-emploi p { font-size: .87rem; color: var(--text2); line-height: 1.7; }

/* ══════════════════════════════════════════════
   CART DRAWER
══════════════════════════════════════════════ */
.sh-cart-ov {
  position: fixed; inset: 0; background: rgba(0,0,0,.45);
  z-index: 500; opacity: 0; pointer-events: none;
  transition: opacity var(--t2);
}
.sh-cart-ov.open { opacity: 1; pointer-events: auto; }
.sh-cart-dr {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 100%; max-width: 460px;
  background: var(--white); z-index: 501;
  transform: translateX(100%); transition: transform var(--t2);
  display: flex; flex-direction: column;
  box-shadow: -12px 0 40px rgba(0,0,0,.12);
}
.sh-cart-dr.open { transform: translateX(0); }
.sh-cart-hdr {
  padding: 1.3rem 1.6rem; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  flex-shrink: 0;
}
.sh-cart-hdr h3 { font-family: var(--f-serif); font-size: 1.2rem; font-weight: 500; }
.sh-cart-x {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--bg2); display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; color: var(--muted); transition: all var(--t);
}
.sh-cart-x:hover { background: var(--rose-bg); color: var(--rose); }
.sh-cart-body { flex: 1; overflow-y: auto; padding: 1rem 1.6rem; }
.sh-cart-empty { text-align: center; padding: 3rem 2rem; color: var(--muted); }
.sh-cart-empty-icon { font-size: 3rem; margin-bottom: 1rem; opacity: .5; }
.sh-cart-item { display: flex; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--border2); }
.sh-cart-item-img { width: 72px; height: 72px; border-radius: var(--r); overflow: hidden; flex-shrink: 0; background: var(--bg2); }
.sh-cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.sh-cart-item-info { flex: 1; min-width: 0; }
.sh-cart-item-name { font-size: .86rem; font-weight: 600; color: var(--text); line-height: 1.3; margin-bottom: .2rem; }
.sh-cart-item-price { font-size: .82rem; color: var(--rose); font-weight: 700; }
.sh-cart-item-ctrl { display: flex; align-items: center; gap: .5rem; margin-top: .5rem; }
.sh-qty-btn {
  width: 26px; height: 26px; border-radius: 50%; background: var(--bg3);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; font-weight: 700; transition: all var(--t); border: none; cursor: pointer;
}
.sh-qty-btn:hover { background: var(--rose-l); color: var(--rose-d); }
.sh-qty-val { font-size: .88rem; font-weight: 700; min-width: 22px; text-align: center; }
.sh-item-del { margin-left: auto; color: var(--danger); font-size: 1.1rem; opacity: .7; cursor: pointer; transition: opacity var(--t); background: none; border: none; }
.sh-item-del:hover { opacity: 1; }
.sh-cart-foot { padding: 1.3rem 1.6rem; border-top: 1px solid var(--border); flex-shrink: 0; }
.sh-cart-total { display: flex; justify-content: space-between; margin-bottom: 1rem; }
.sh-cart-total-lbl { font-size: .9rem; color: var(--muted); }
.sh-cart-total-val { font-family: var(--f-serif); font-size: 1.2rem; font-weight: 500; }
.sh-cart-wa-btn {
  width: 100%; padding: 1rem; background: var(--wa); color: var(--white);
  border-radius: var(--r-full); font-weight: 700; font-size: .95rem;
  display: flex; align-items: center; justify-content: center; gap: .6rem;
  transition: all var(--t); border: none; cursor: pointer;
}
.sh-cart-wa-btn:hover { background: #1da851; transform: translateY(-1px); }
.sh-cart-wa-btn:disabled { opacity: .45; cursor: not-allowed; transform: none; }

/* ══════════════════════════════════════════════
   ASSISTANT IA
══════════════════════════════════════════════ */
.sh-inai-bubble {
  position: fixed; bottom: 2rem; left: 2rem; z-index: 90;
  background: var(--white);
  color: var(--text); border-radius: 999px; padding: .6rem .95rem .6rem .6rem;
  display: flex; align-items: center; gap: .55rem;
  box-shadow: 0 12px 34px rgba(28,16,9,.14); border: 1px solid var(--border); cursor: pointer;
  font-family: var(--f-sans); transition: box-shadow var(--t), border-color var(--t); max-width: 230px;
  animation: shBubbleFloat 3.6s ease-in-out infinite;
}
@keyframes shBubbleFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25%      { transform: translateY(-5px) rotate(-1.2deg); }
  50%      { transform: translateY(-7px) rotate(0deg); }
  75%      { transform: translateY(-5px) rotate(1.2deg); }
}
.sh-inai-bubble:hover { animation: none; transform: translateY(-3px) scale(1.03); box-shadow: 0 18px 46px rgba(196,136,124,.30); border-color: var(--rose-l); }
.sh-inai-bubble .sh-inai-av { animation: shAvPulse 3.6s ease-in-out infinite; }
@keyframes shAvPulse { 0%,100% { box-shadow: 0 0 0 0 rgba(196,136,124,.45); } 70% { box-shadow: 0 0 0 9px rgba(196,136,124,0); } }
@media (prefers-reduced-motion: reduce) { .sh-inai-bubble, .sh-inai-bubble .sh-inai-av { animation: none; } }
.sh-inai-av {
  width: 40px; height: 40px; border-radius: 50%; position: relative;
  background: linear-gradient(135deg, var(--rose), var(--rose-d)); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.sh-inai-name { font-size: .82rem; font-weight: 800; color: var(--text); white-space: nowrap; line-height: 1.05; letter-spacing: .01em; }
.sh-inai-status { font-size: .62rem; color: #1f9d57; font-weight: 700; display: flex; align-items: center; gap: .26rem; margin-top: .14rem; white-space: nowrap; }
.sh-inai-dot { width: 7px; height: 7px; background: #25d366; border-radius: 50%; animation: shPulse 2s ease-in-out infinite; }
.sh-inai-online { position: absolute; bottom: -1px; right: -1px; width: 12px; height: 12px; border-radius: 50%; background: #25d366; border: 2px solid #fff; animation: shPulse 2s ease-in-out infinite; }
.sh-online-dot { position: absolute; bottom: -2px; right: -2px; width: 13px; height: 13px; border-radius: 50%; background: #25d366; border: 2.5px solid #fff; box-shadow: 0 1px 3px rgba(0,0,0,.12); animation: shPulse 2s ease-in-out infinite; }
@keyframes shPulse { 0%,100%{opacity:1}50%{opacity:.35} }
.sh-inai-modal {
  position: fixed; inset: 0; background: rgba(0,0,0,.26);
  z-index: 600; display: none; align-items: flex-end; justify-content: flex-start;
  padding: 1rem 1rem 5.25rem 1rem;
}
.sh-inai-modal.open { display: flex; }
.sh-inai-box {
  background: var(--white); border-radius: 24px; overflow: hidden;
  width: min(380px, 100%); box-shadow: 0 24px 64px rgba(0,0,0,.22);
  transform: translateY(10px) scale(.98);
  opacity: 0;
  animation: shExpertPop .24s cubic-bezier(.2,.8,.2,1) forwards;
}
@keyframes shExpertPop { to { transform: translateY(0) scale(1); opacity: 1; } }
.sh-inai-hdr {
  background: linear-gradient(135deg, var(--black) 0%, #3d2510 100%);
  padding: .95rem 1.15rem; display: flex; align-items: center; gap: .75rem;
}
.sh-inai-hdr-av {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.15); border: 2px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.sh-inai-hdr-name { font-size: .9rem; font-weight: 700; color: var(--white); }
.sh-inai-hdr-sub { font-size: .67rem; color: rgba(255,255,255,.72); display: flex; align-items: center; gap: .28rem; margin-top: .08rem; }
.sh-inai-close { margin-left: auto; background: rgba(255,255,255,.15); border: none; color: var(--white); width: 28px; height: 28px; border-radius: 50%; cursor: pointer; font-size: 1.05rem; display: flex; align-items: center; justify-content: center; transition: all var(--t); }
.sh-inai-close:hover { background: rgba(255,255,255,.3); }
.sh-expert-choice { position: relative; padding: 1.3rem 1.15rem 1.15rem; background: linear-gradient(180deg,#fff,#fbf6f1); }
.sh-expert-close { position:absolute; top:.7rem; right:.7rem; width:28px; height:28px; border-radius:50%; background:#fff; border:1px solid var(--border); box-shadow: var(--shadow-sm); font-size:1rem; color:var(--muted); cursor:pointer; transition: all var(--t); }
.sh-expert-close:hover { color:var(--rose-d); border-color:var(--rose-l); }
.sh-expert-title { font-family: var(--f-serif); font-size: clamp(.92rem,3.4vw,1.08rem); line-height:1.2; margin: 0 2rem 1rem 0; color: var(--text); white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.sh-expert-grid { display:grid; grid-template-columns:1fr; gap:.65rem; }
.sh-expert-card { display:grid; grid-template-columns:44px 1fr; gap:.75rem; text-align:left; padding:.9rem .85rem; border-radius:18px; border:1px solid var(--border); background:#fff; box-shadow: var(--shadow-sm); transition: transform var(--t), border-color var(--t), box-shadow var(--t); align-items:center; cursor:pointer; overflow:hidden; }
.sh-expert-card:hover { transform: translateY(-2px); border-color: var(--rose-l); box-shadow: 0 16px 34px rgba(28,16,9,.10); }
.sh-expert-icon { width:44px; height:44px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.15rem; font-weight:800; flex-shrink:0; position:relative; }
.sh-expert-icon.chat { background:#eaf7ef; color:#25d366; }
.sh-expert-icon.ai { background:linear-gradient(135deg,var(--rose),var(--rose-d)); color:#fff; }
.sh-expert-card-title { font-size:.72rem; font-weight:800; line-height:1.32; color:var(--text); letter-spacing:-.01em; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.sh-expert-card-sub { font-size:.64rem; color:var(--muted); line-height:1.3; margin-top:.22rem; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.sh-expert-chat-wrap { padding:0; }
.sh-chat-area { height: 255px; overflow-y: auto; padding: .8rem .85rem; background: #FFF8F5; scroll-behavior: smooth; }
@keyframes shMsgIn { from { opacity: 0; transform: translateY(6px) } to { opacity: 1; transform: translateY(0) } }
.sh-msg-bot, .sh-msg-user { display: flex; gap: .5rem; align-items: flex-start; margin-bottom: .7rem; animation: shMsgIn .25s ease; }
.sh-msg-user { flex-direction: row-reverse; }
.sh-msg-av {
  width: 29px; height: 29px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: .62rem; font-weight: 800;
}
.sh-msg-bot .sh-msg-av { background: linear-gradient(135deg, var(--rose), var(--rose-d)); color: var(--white); }
.sh-msg-user .sh-msg-av { background: var(--black); color: var(--white); }
.sh-msg-bot .sh-bubble { background: var(--white); border-radius: 4px 14px 14px 14px; border: 1px solid var(--border2); box-shadow: 0 2px 8px rgba(0,0,0,.05); }
.sh-msg-user .sh-bubble { background: linear-gradient(135deg, #3d2510, var(--black)); color: var(--white); border-radius: 14px 4px 14px 14px; }
.sh-bubble { padding: .68rem .92rem; max-width: 82%; font-size: .84rem; line-height: 1.52; }
.sh-inai-sugs { padding: .6rem 1rem; background: var(--white); border-top: 1px solid var(--border); display: flex; flex-wrap: wrap; gap: .34rem; }
.sh-inai-sug {
  background: var(--bg3); padding: .32rem .78rem; border-radius: var(--r-full);
  font-size: .75rem; cursor: pointer; border: none; font-family: inherit;
  color: var(--text2); transition: all var(--t); font-weight: 500;
}
.sh-inai-sug:hover { background: var(--rose-l); color: var(--rose-d); }
.sh-inai-sug.yes { background: #e8f8ee; color: #1a7a3e; border: 1.5px solid #a8d8b8; }
.sh-inai-sug.yes:hover { background: #1a7a3e; color: var(--white); }
.sh-inai-sug.no { background: #fdf0f0; color: var(--danger); border: 1.5px solid #f0b8b8; }
.sh-inai-sug.no:hover { background: var(--danger); color: var(--white); }
.sh-inai-input-row { padding: .72rem 1rem; background: var(--white); display: flex; gap: .42rem; border-top: 1px solid var(--border); }
.sh-inai-input {
  flex: 1; padding: .62rem 1rem; border: 1.5px solid var(--border);
  border-radius: var(--r-full); font-size: .86rem; outline: none;
  transition: all var(--t); background: var(--bg2); font-family: var(--f-sans);
}
.sh-inai-input:focus { border-color: var(--rose); background: var(--white); box-shadow: 0 0 0 3px var(--rose-l); }
.sh-inai-send {
  width: 37px; height: 37px; border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--rose-d));
  color: var(--white); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: all var(--t); box-shadow: 0 4px 12px rgba(196,136,124,.35);
}
.sh-inai-send:hover { transform: scale(1.08); }

/* ══════════════════════════════════════════════
   WA FLOAT
══════════════════════════════════════════════ */
.sh-wa-wrap { position: fixed; bottom: 2rem; right: 2rem; z-index: 90; display: none; flex-direction: column; align-items: center; gap: .4rem; }
.sh-wa-label { background: rgba(28,16,9,.82); color: var(--white); font-size: .69rem; font-weight: 600; padding: .26rem .68rem; border-radius: var(--r-full); white-space: nowrap; backdrop-filter: blur(8px); animation: shWaL 3s ease-in-out infinite; }
@keyframes shWaL { 0%,100%{opacity:1}50%{opacity:.72} }
.sh-wa-btn { width: 54px; height: 54px; background: var(--wa); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(37,211,102,.45); animation: shWaP 2.5s ease-in-out infinite; transition: transform var(--t); text-decoration: none; }
.sh-wa-btn:hover { transform: scale(1.1); }
@keyframes shWaP { 0%,100%{box-shadow:0 8px 24px rgba(37,211,102,.45)}50%{box-shadow:0 8px 36px rgba(37,211,102,.7)} }

/* ══════════════════════════════════════════════
   SEARCH BAR
══════════════════════════════════════════════ */
.sh-search-overlay { position: fixed; inset: 0; background: rgba(255,248,245,.96); z-index: 450; display: none; align-items: flex-start; justify-content: center; padding-top: 5rem; backdrop-filter: blur(12px); }
.sh-search-overlay.open { display: flex; }
.sh-search-box { width: 100%; max-width: 680px; padding: 0 2rem; }
.sh-search-input {
  width: 100%; font-family: var(--f-serif); font-size: 2rem; font-weight: 400;
  border: none; border-bottom: 2px solid var(--border); outline: none;
  padding: .5rem 0; background: transparent; color: var(--text);
}
.sh-search-input::placeholder { color: var(--rose-l); }
.sh-search-close { position: absolute; top: 1.5rem; right: 2rem; font-size: 1.5rem; color: var(--muted); cursor: pointer; transition: color var(--t); }
.sh-search-close:hover { color: var(--rose); }

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.sh-footer { background: var(--black); color: rgba(255,255,255,.75); margin-top: 5rem; }
.sh-footer-top { max-width: var(--max); margin: 0 auto; padding: 4rem 2rem 3rem; display: grid; grid-template-columns: 2.5fr 1fr 1fr 1fr; gap: 3rem; }
.sh-footer-brand-name { font-family: var(--f-serif); font-size: 1.4rem; font-weight: 400; color: var(--white); margin-bottom: .8rem; }
.sh-footer-brand-name em { font-style: italic; color: var(--rose-l); }
.sh-footer-desc { font-size: .85rem; color: rgba(255,255,255,.55); line-height: 1.75; max-width: 320px; margin-bottom: 1.4rem; }
.sh-footer-socials { display: flex; gap: .6rem; }
.sh-footer-social { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.7); transition: all var(--t); text-decoration: none; font-size: .72rem; font-weight: 700; overflow:hidden; }
.sh-footer-social img { width: 18px; height: 18px; display: block; }
.sh-footer-social:hover { background: var(--rose); color: var(--white); }
.sh-footer-h4 { font-size: .7rem; text-transform: uppercase; letter-spacing: .16em; font-weight: 700; color: rgba(255,255,255,.38); margin-bottom: 1.1rem; }
.sh-footer-ul { display: flex; flex-direction: column; gap: .55rem; }
.sh-footer-ul li { font-size: .86rem; color: rgba(255,255,255,.6); }
.sh-footer-ul a { color: rgba(255,255,255,.6); transition: color var(--t); }
.sh-footer-ul a:hover { color: var(--rose-l); }
.sh-footer-ul a[href*="wa.me"] svg { stroke: #25d366 !important; opacity: 1 !important; }
.sh-footer-bottom { border-top: 1px solid rgba(255,255,255,.08); }
.sh-footer-bottom-inner { max-width: var(--max); margin: 0 auto; padding: 1.2rem 2rem; display: flex; align-items: center; justify-content: space-between; font-size: .78rem; color: rgba(255,255,255,.35); flex-wrap: wrap; gap: 1rem; }
.sh-footer-bottom a { color: rgba(255,255,255,.48); transition: color var(--t); }
.sh-footer-bottom a:hover { color: var(--rose-l); }

/* ══════════════════════════════════════════════
   SCROLL TOP
══════════════════════════════════════════════ */
.sh-scroll-top { position: fixed; left: 50%; bottom: 1.15rem; transform: translateX(-50%); width: 48px; height: 48px; border-radius: 50%; background: rgba(0,0,0,.86); color: var(--white); border: none; cursor: pointer; display: none; align-items: center; justify-content: center; box-shadow: 0 14px 30px rgba(0,0,0,.22); z-index: 89; transition: all var(--t); }
.sh-scroll-top:hover { background: var(--rose); }

/* ══════════════════════════════════════════════
   UTILITIES
══════════════════════════════════════════════ */
.sh-tag { display: inline-block; background: var(--bg3); color: var(--text2); padding: .28rem .72rem; border-radius: var(--r-full); font-size: .74rem; font-weight: 600; border: 1px solid var(--border2); }
.sh-tag.rose { background: var(--rose-bg); color: var(--rose-d); border-color: var(--rose-l); }
.empty-state { text-align: center; padding: 5rem 2rem; color: var(--muted); }
.empty-state-icon { font-size: 3.5rem; margin-bottom: 1rem; opacity: .4; }
.empty-state h3 { font-family: var(--f-serif); font-size: 1.4rem; font-weight: 400; margin-bottom: .6rem; color: var(--text2); }
.sh-toast { position: fixed; bottom: 1.5rem; left: 50%; transform: translateX(-50%) translateY(100px); background: var(--black); color: var(--white); padding: .72rem 1.5rem; border-radius: var(--r-full); font-size: .875rem; font-weight: 600; z-index: 9999; transition: transform .3s ease, opacity .3s ease; opacity: 0; pointer-events: none; box-shadow: var(--shadow-lg); white-space: nowrap; }
.sh-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.sh-back-fab { position: fixed; top: 1rem; left: 1rem; z-index: 260; width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.9); border: 1px solid var(--border); box-shadow: var(--shadow); color: var(--text); font-size: 1.2rem; display: flex; align-items: center; justify-content: center; transition: all var(--t); }
.sh-back-fab:hover { transform: translateY(-1px); background: #fff; }

/* ══════════════════════════════════════════════
   SKELETON
══════════════════════════════════════════════ */
.skeleton { background: linear-gradient(90deg, var(--bg2) 25%, var(--border) 50%, var(--bg2) 75%); background-size: 200% 100%; animation: shSkel 1.5s infinite; border-radius: var(--r); }
@keyframes shSkel { from{background-position:200% 0} to{background-position:-200% 0} }

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .sh-univers-grid { grid-template-columns: 1fr 1fr; }
  .sh-univers-grid .sh-univ-card:last-child { grid-column: 1 / -1; aspect-ratio: 16/7; }
  .sh-product-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .sh-product-media { position: static; }
  .sh-footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 860px) {
  .sh-hdr-inner { padding: 0 1.2rem; }
  .sh-nav { display: none; }
  .sh-catalogue-layout { grid-template-columns: 1fr; padding: 1.2rem 1rem 3rem; }
  .sh-left-panel { display: none; }
  .sh-hero { min-height: 70vh; }
  .sh-hero-content {
    max-width: calc(100vw - 2.4rem);
    padding: 1.35rem 1.2rem 1.4rem;
    border-radius: 24px;
  }
  .sh-section { padding: 3rem 1.2rem; }
  .sh-products-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .sh-footer-top { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.2rem 2rem; }
  .sh-inai-bubble { max-width: 56px; border-radius: 50%; padding: .5rem; overflow: hidden; }
  .sh-inai-name, .sh-inai-status { display: none; }
  .sh-btn-primary { font-size: 1.02rem; padding: .92rem 1.35rem; }
  .sh-wa-wrap { right: 1rem; bottom: 1rem; gap: .3rem; }
  .sh-wa-label { display: none; }
  .sh-wa-btn { width: 48px; height: 48px; }
}
@media (max-width: 540px) {
  .sh-hero h1 { font-size: 2.15rem; }
  .sh-hero p { font-size: .98rem; line-height: 1.65; }
  .sh-products-grid { grid-template-columns: repeat(2, 1fr); gap: .7rem; }
  .sh-univers-grid { grid-template-columns: 1fr; }
  .sh-univers-grid .sh-univ-card:last-child { grid-column: auto; aspect-ratio: 3/4; }
  .sh-prod-actions { flex-direction: column; }
  .sh-wa-wrap { bottom: .85rem; right: .85rem; }
  .sh-inai-modal { align-items: center; justify-content: center; padding: .8rem; }
  .sh-inai-box { width: min(100%, 380px); }
}
@media (max-width: 420px) {
  .sh-hdr-inner { padding: 0 .85rem; }
  .sh-hero { min-height: 62vh; }
  .sh-hero-content {
    max-width: calc(100vw - 1.4rem);
    padding: 1.1rem 1rem 1.1rem;
    border-radius: 20px;
  }
  .sh-hero h1 { font-size: 1.9rem; line-height: 1.08; }
  .sh-hero p { font-size: .93rem; line-height: 1.55; }
  .sh-products-grid { grid-template-columns: 1fr; gap: .75rem; }
  .sh-product-card { border-radius: 18px; }
  .sh-product-card .sh-prod-img { aspect-ratio: 1 / 1; }
  .sh-product-info { padding: .9rem .85rem 1rem; }
  .sh-product-title { font-size: .92rem; line-height: 1.35; }
  .sh-product-price { font-size: .98rem; }
  .sh-prod-actions { gap: .55rem; }
  .sh-prod-actions .sh-btn, .sh-prod-actions button { width: 100%; }
  .sh-cart-item { gap: .7rem; padding: .85rem 0; }
  .sh-cart-item-img { width: 60px; height: 60px; border-radius: 14px; }
  .sh-cart-item-info, .sh-cart-item-title, .sh-cart-item-meta { min-width: 0; overflow-wrap: anywhere; word-break: break-word; }
  .sh-cart-item-price { font-size: .95rem; }
  .sh-cart-foot .sh-btn { width: 100%; }
  .sh-chat-area { height: 230px; }
  .sh-expert-card { grid-template-columns: 36px 1fr; padding: .8rem .75rem; gap: .6rem; }
  .sh-expert-card-title { font-size: .7rem; }
  .sh-expert-card-sub { font-size: .62rem; }
  .sh-wa-wrap { right: .75rem; bottom: .75rem; }
}
@media (max-width: 360px) {
  .sh-hero h1 { font-size: 1.65rem; }
  .sh-hero p { font-size: .9rem; }
  .sh-products-grid { grid-template-columns: 1fr; gap: .65rem; }
  .sh-section { padding: 2.4rem .85rem; }
  .sh-cart-body { padding: .9rem 1rem; }
  .sh-cart-foot { padding: 1rem; }
  .sh-btn-primary { font-size: .98rem; padding: .88rem 1.15rem; }
  .sh-wa-btn { width: 44px; height: 44px; }
}
