/* ============================================
   VistaNova — page Boutique (23 tableaux)
   ============================================ */

main { padding-top: 100px; }

/* ---------- Hero boutique ---------- */
.boutique-hero {
  text-align: center;
  padding: clamp(3rem, 6vw, 5rem) var(--pad-x) clamp(2rem, 4vw, 3rem);
  max-width: 900px;
  margin: 0 auto;
}
.boutique-hero .eyebrow { color: var(--gold); margin-bottom: 1rem; }
.boutique-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.6rem, 7vw, 5.5rem);
  line-height: 1.05;
  margin: 0 0 1.5rem;
  color: var(--cream);
  letter-spacing: 0.02em;
}
.boutique-title em { font-style: italic; color: var(--gold); }
.boutique-lede {
  font-family: var(--serif-2);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--cream);
  opacity: 0.78;
  max-width: 60ch;
  margin: 0 auto 2.5rem;
}
.boutique-meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 3rem);
  padding: 1.4rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.boutique-meta > div {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  align-items: center;
}
.boutique-meta span {
  font-family: var(--serif);
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}
.boutique-meta strong {
  font-family: var(--serif-2);
  font-size: 1rem;
  font-weight: 500;
  color: var(--cream);
}

/* ---------- Filtres ---------- */
.shop-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  padding: 0 var(--pad-x);
  margin: clamp(2rem, 4vw, 3.5rem) auto;
  max-width: var(--max);
}
.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6em 1.2em;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--serif);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.7;
  transition: opacity .25s ease, background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease);
}
.filter-chip .chip-count {
  font-family: var(--serif-2);
  font-style: italic;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--gold);
}
.filter-chip:hover { opacity: 1; border-color: var(--cream); transform: translateY(-2px); }
.filter-chip.is-active {
  background: var(--cream);
  color: var(--green-deep);
  border-color: var(--cream);
  opacity: 1;
}
.filter-chip.is-active .chip-count { color: var(--green-mid); }

/* ---------- Grille produits ---------- */
.shop-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad-x) clamp(4rem, 8vw, 6rem);
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: clamp(1.2rem, 2vw, 2rem);
}
.shop-item {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  cursor: pointer;
  transition: opacity .5s var(--ease), transform .5s var(--ease);
  background: transparent;
}
.shop-item.is-hidden {
  opacity: 0;
  transform: scale(0.95);
  pointer-events: none;
  position: absolute;
  visibility: hidden;
}
.shop-item-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 4px;
  background: var(--green-soft);
}
.shop-item-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-out);
}
.shop-item:hover .shop-item-media img { transform: scale(1.04); }

.shop-ribbon {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.4em 0.9em;
  background: var(--gold);
  color: var(--green-deep);
  font-family: var(--serif);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 999px;
}

.shop-item-body {
  padding: 0 0.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.shop-item-body h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  margin: 0;
  color: var(--cream);
  letter-spacing: 0.02em;
  transition: color .25s ease;
}
.shop-item:hover .shop-item-body h3 { color: var(--gold); }
.shop-cat {
  font-family: var(--serif);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
  margin: 0;
}
.shop-price {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  margin: 0.4rem 0 0;
  font-family: var(--serif);
}
.shop-price .now {
  font-size: 1.15rem;
  color: var(--cream);
  font-weight: 500;
}
.shop-price .was {
  font-size: 0.9rem;
  color: var(--ink-mute);
  text-decoration: line-through;
  opacity: 0.7;
}

.shop-empty {
  text-align: center;
  padding: 4rem var(--pad-x);
  font-family: var(--serif-2);
  font-style: italic;
  color: var(--cream);
  opacity: 0.6;
}

/* ============================================
   MODAL DÉTAIL PRODUIT
   ============================================ */
.product-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(5, 13, 11, 0.85);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 3vw, 2rem);
  opacity: 0;
  transition: opacity .35s ease;
  overflow-y: auto;
}
.product-modal[hidden] { display: none; }
.product-modal.is-open { opacity: 1; }

.modal-inner {
  position: relative;
  max-width: 1200px;
  width: 100%;
  max-height: 92vh;
  background: var(--green-soft);
  border-radius: 8px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6);
  transform: scale(0.95);
  transition: transform .4s var(--ease-out);
}
.product-modal.is-open .modal-inner { transform: scale(1); }

.modal-close {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: rgba(12, 34, 28, 0.6);
  backdrop-filter: blur(8px);
  color: var(--cream);
  font-family: var(--serif);
  font-size: 1.4rem;
  z-index: 5;
  transition: background .25s ease, border-color .25s ease;
}
.modal-close:hover {
  background: var(--cream);
  color: var(--green-deep);
  border-color: var(--cream);
}

.modal-media {
  position: relative;
  background: var(--green-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}
.modal-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.modal-zoom {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(12, 34, 28, 0.6);
  backdrop-filter: blur(8px);
  color: var(--cream);
  border: 1px solid var(--line-strong);
  transition: background .25s ease;
}
.modal-zoom:hover {
  background: var(--cream);
  color: var(--green-deep);
  border-color: var(--cream);
}

.modal-body {
  padding: clamp(1.6rem, 3vw, 2.6rem);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  overflow-y: auto;
  max-height: 92vh;
}
.modal-cat {
  font-family: var(--serif);
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
}
.modal-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.1;
  margin: 0;
  color: var(--cream);
  letter-spacing: 0.02em;
}
.modal-edition {
  font-family: var(--serif-2);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink-mute);
  margin: 0;
}
.modal-desc {
  font-family: var(--serif-2);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--cream);
  opacity: 0.85;
  margin: 0;
}

.modal-options {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  border-top: 1px solid var(--line);
  padding-top: 1.4rem;
}
.modal-options fieldset {
  border: 0;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.modal-options legend {
  font-family: var(--serif);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.3rem;
  padding: 0;
}
.opt-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.opt-group label { cursor: pointer; }
.opt-group input { position: absolute; opacity: 0; pointer-events: none; }
.opt-group span {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.65em 1.1em;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  font-family: var(--serif);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--cream);
  transition: background .25s ease, border-color .25s ease, color .25s ease;
  min-width: 92px;
  align-items: flex-start;
}
.opt-group span small {
  font-family: var(--serif-2);
  font-style: italic;
  font-size: 0.7rem;
  letter-spacing: 0.02em;
  color: var(--ink-mute);
  text-transform: none;
}
.opt-group input:checked + span {
  background: var(--cream);
  color: var(--green-deep);
  border-color: var(--cream);
}
.opt-group input:checked + span small { color: var(--green-mid); }
.opt-group input:focus-visible + span {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.modal-price-row {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-top: 0.8rem;
  flex-wrap: wrap;
}
.modal-price {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.modal-price .now {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--cream);
  font-weight: 500;
}
.modal-price .was {
  font-family: var(--serif-2);
  font-size: 0.9rem;
  color: var(--ink-mute);
  text-decoration: line-through;
}

#addToCart { flex: 1; min-width: 220px; }

.modal-note {
  font-family: var(--serif-2);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--ink-mute);
  margin: 0;
}

@media (max-width: 800px) {
  .modal-inner {
    grid-template-columns: 1fr;
    max-height: 95vh;
  }
  .modal-media { aspect-ratio: 4/5; min-height: 260px; }
  .modal-body { max-height: none; }
}

/* ============================================
   LIGHTBOX ZOOM PLEIN ÉCRAN
   ============================================ */
.lightbox-zoom {
  position: fixed;
  inset: 0;
  z-index: 250;
  background: rgba(5, 10, 9, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  transition: opacity .3s ease;
}
.lightbox-zoom[hidden] { display: none; }
.lightbox-zoom.is-open { opacity: 1; }
.lightbox-zoom img {
  max-width: 95vw;
  max-height: 92vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 30px 100px rgba(0,0,0,0.7);
}

/* ============================================
   PANIER (drawer latéral)
   ============================================ */
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(420px, 100vw);
  background: var(--green-soft);
  border-left: 1px solid var(--line);
  z-index: 220;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .45s var(--ease);
  box-shadow: -30px 0 80px rgba(0,0,0,0.4);
}
.cart-drawer[hidden] { display: none; }
.cart-drawer.is-open { transform: translateX(0); }

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 13, 11, 0.6);
  z-index: 210;
  opacity: 0;
  transition: opacity .35s ease;
}
.cart-overlay[hidden] { display: none; }
.cart-overlay.is-open { opacity: 1; }

.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem 1.4rem;
  border-bottom: 1px solid var(--line);
}
.cart-head h2 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  margin: 0;
  letter-spacing: 0.04em;
  color: var(--cream);
}
.cart-close {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--cream);
  font-family: var(--serif);
  font-size: 1.4rem;
  transition: background .2s ease, border-color .2s ease;
}
.cart-close:hover { background: var(--cream); color: var(--green-deep); border-color: var(--cream); }

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.2rem 1.4rem;
}
.cart-empty {
  text-align: center;
  font-family: var(--serif-2);
  font-style: italic;
  color: var(--ink-mute);
  margin-top: 4rem;
}
.cart-line {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}
.cart-line:last-child { border-bottom: 0; }
.cart-line img {
  width: 80px;
  height: 100px;
  object-fit: cover;
  border-radius: 3px;
}
.cart-line-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.cart-line-info h4 {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
  color: var(--cream);
}
.cart-line-info .opts {
  font-family: var(--serif-2);
  font-style: italic;
  font-size: 0.82rem;
  color: var(--ink-mute);
}
.cart-line-info .qty {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.4rem;
}
.cart-line-info .qty button {
  width: 22px;
  height: 22px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--cream);
  font-size: 0.85rem;
  transition: background .2s ease;
}
.cart-line-info .qty button:hover { background: var(--cream); color: var(--green-deep); }
.cart-line-info .qty span {
  font-family: var(--serif);
  font-size: 0.9rem;
  min-width: 18px;
  text-align: center;
}
.cart-line-price {
  font-family: var(--serif);
  font-size: 0.95rem;
  color: var(--gold);
  white-space: nowrap;
}
.cart-line-remove {
  background: transparent;
  border: 0;
  color: var(--ink-mute);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 0.4rem;
  padding: 0;
  align-self: flex-start;
}
.cart-line-remove:hover { color: var(--gold); }

.cart-foot {
  border-top: 1px solid var(--line);
  padding: 1.2rem 1.4rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.cart-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.cart-total span {
  font-family: var(--serif);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.cart-total strong {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--cream);
  font-weight: 500;
}
.cart-secure {
  font-family: var(--serif-2);
  font-style: italic;
  font-size: 0.78rem;
  color: var(--ink-mute);
  text-align: center;
  margin: 0;
}

/* ============================================
   TOAST CONFIRMATION
   ============================================ */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translate(-50%, 100px);
  z-index: 300;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.6rem;
  background: var(--cream);
  color: var(--green-deep);
  border-radius: 999px;
  font-family: var(--serif);
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  opacity: 0;
  transition: transform .4s var(--ease-out), opacity .35s ease;
}
.toast[hidden] { display: none; }
.toast.is-visible { transform: translate(-50%, 0); opacity: 1; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 540px) {
  .shop-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .shop-item-body h3 { font-size: 1rem; }
  .modal-close { top: 0.8rem; right: 0.8rem; }
  .cart-drawer { width: 100vw; }
  .filter-chip { font-size: 0.7rem; padding: 0.5em 1em; }
}
@media (max-width: 380px) {
  .shop-grid { grid-template-columns: 1fr; }
}

/* ============================================
   v9 — Layout Wix-like (banner + sidebar + toolbar)
   ============================================ */

/* Fil d'Ariane */
.bread {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.2rem var(--pad-x) 0.4rem;
  font-family: var(--serif);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-mid);
}
.bread a { color: var(--green-mid); transition: color .25s ease; }
.bread a:hover { color: var(--gold-deep); }
.bread span[aria-hidden] { margin: 0 0.6rem; color: var(--green-mid); opacity: 0.5; }
.bread .current { color: var(--gold-deep); font-weight: 600; }

/* Bandeau intro avec photo + carte texte */
.boutique-banner {
  position: relative;
  max-width: var(--max);
  margin: 1rem auto clamp(2rem, 4vw, 3rem);
  padding: 0 var(--pad-x);
}
.boutique-banner-img {
  position: relative;
  width: 100%;
  aspect-ratio: 21 / 7;
  background: url('img/shop/shop-gallery.jpg') center / cover no-repeat,
              url('img/shop/eclats-azur-hd.webp') center / cover no-repeat,
              var(--green-deep);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(12, 34, 28, 0.18);
}
.boutique-banner-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(245, 226, 196, 0.35) 0%, rgba(12, 34, 28, 0.05) 50%, rgba(12, 34, 28, 0.4) 100%);
}
.boutique-banner-card {
  position: absolute;
  top: 50%;
  left: clamp(2rem, 6vw, 5rem);
  transform: translateY(-50%);
  background: rgba(245, 226, 196, 0.92);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(12, 34, 28, 0.12);
  border-radius: 6px;
  padding: clamp(1.4rem, 2.4vw, 2rem);
  max-width: clamp(320px, 45vw, 560px);
  box-shadow: 0 14px 40px rgba(12, 34, 28, 0.22);
}
.boutique-banner-card .eyebrow { color: var(--green-mid); margin-bottom: 0.6rem; }
.boutique-banner-card h1 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  font-weight: 500;
  margin: 0 0 0.6rem;
  color: var(--green-deep);
  letter-spacing: 0.04em;
}
.boutique-banner-card p {
  font-family: var(--serif-2);
  font-size: 0.95rem;
  color: var(--green-deep);
  opacity: 0.8;
  line-height: 1.55;
  margin: 0;
}
.banner-readmore {
  background: none;
  border: 0;
  padding: 0;
  margin-left: 0.3em;
  font-family: var(--serif-2);
  font-style: italic;
  font-size: inherit;
  color: var(--gold-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}
.banner-readmore:hover { color: var(--green-mid); }
.banner-extra { margin-top: 0.8rem; }
.banner-extra p { font-size: 0.92rem; }

@media (max-width: 768px) {
  .boutique-banner-img { aspect-ratio: 16 / 10; }
  .boutique-banner-card { position: relative; top: 0; left: 0; transform: none; max-width: 100%; margin-top: -3rem; backdrop-filter: blur(6px); }
}

/* Layout 2 colonnes : sidebar + grille */
.boutique-layout {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad-x) clamp(3rem, 6vw, 5rem);
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: clamp(1.5rem, 3vw, 2.4rem);
  align-items: start;
}

@media (max-width: 900px) {
  .boutique-layout { grid-template-columns: 1fr; }
}

/* Sidebar filtres */
.shop-sidebar {
  position: sticky;
  top: 100px;
  font-family: var(--serif);
}
.sidebar-toggle {
  display: none;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 1.2rem;
  background: var(--green-deep);
  color: var(--cream);
  border-radius: 6px;
  font-family: var(--serif);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.sidebar-body {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

@media (max-width: 900px) {
  .shop-sidebar { position: relative; top: 0; }
  .sidebar-toggle { display: flex; }
  .sidebar-body { display: none; padding: 1rem; background: rgba(12, 34, 28, 0.05); border-radius: 6px; margin-top: 0.5rem; }
  .shop-sidebar.is-open .sidebar-body { display: flex; }
  .shop-sidebar.is-open .sidebar-toggle { background: var(--green-mid); }
}

/* Filter blocks (collapsibles) */
.filter-block {
  border-bottom: 1px solid rgba(12, 34, 28, 0.12);
  padding: 0.4rem 0;
}
.filter-block summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--serif);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-deep);
  font-weight: 500;
}
.filter-block summary::-webkit-details-marker { display: none; }
.filter-block summary:hover { color: var(--gold-deep); }
.filter-block .caret { transition: transform .25s ease; color: var(--green-mid); }
.filter-block[open] .caret { transform: rotate(180deg); }
.filter-content { padding: 0.4rem 0 0.9rem; display: flex; flex-direction: column; gap: 0.5rem; }

/* Search input */
.search-input {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.8rem;
  background: rgba(12, 34, 28, 0.06);
  border: 1px solid rgba(12, 34, 28, 0.18);
  border-radius: 4px;
  transition: border-color .25s ease, background .25s ease;
}
.search-input:focus-within {
  border-color: var(--gold-deep);
  background: rgba(255, 255, 255, 0.5);
}
.search-input svg { color: var(--green-mid); flex-shrink: 0; }
.search-input input {
  flex: 1;
  background: transparent;
  border: 0;
  font-family: var(--serif-2);
  font-size: 0.9rem;
  color: var(--green-deep);
  letter-spacing: normal;
  text-transform: none;
}
.search-input input:focus { outline: none; }

/* Catégories chips dans sidebar */
.cat-list { gap: 0.35rem; }
.cat-chip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5em 0.8em;
  background: transparent;
  border: 1px solid rgba(12, 34, 28, 0.15);
  border-radius: 999px;
  font-family: var(--serif);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-deep);
  cursor: pointer;
  transition: background .25s ease, border-color .25s ease, color .25s ease;
}
.cat-chip span {
  font-family: var(--serif-2);
  font-style: italic;
  text-transform: none;
  font-size: 0.78rem;
  color: var(--green-mid);
  margin-left: 0.6em;
}
.cat-chip:hover { background: rgba(12, 34, 28, 0.06); border-color: var(--green-deep); }
.cat-chip.is-active {
  background: var(--green-deep);
  color: var(--cream);
  border-color: var(--green-deep);
}
.cat-chip.is-active span { color: var(--gold-light); }

/* Price range slider double */
.price-range { padding: 0.6rem 0.4rem 0.2rem; }
.price-track {
  position: relative;
  height: 26px;
}
.price-track::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 4px;
  background: rgba(12, 34, 28, 0.18);
  border-radius: 999px;
  transform: translateY(-50%);
}
.price-fill {
  position: absolute;
  top: 50%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold));
  border-radius: 999px;
  transform: translateY(-50%);
  pointer-events: none;
}
.price-track input[type="range"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 26px;
  background: transparent;
  pointer-events: none;
  -webkit-appearance: none;
  appearance: none;
}
.price-track input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  border: 2px solid var(--cream);
  box-shadow: 0 2px 6px rgba(12, 34, 28, 0.3);
  cursor: pointer;
  pointer-events: auto;
}
.price-track input[type="range"]::-moz-range-thumb {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border: 2px solid var(--cream);
  cursor: pointer;
  pointer-events: auto;
}
.price-values {
  display: flex;
  justify-content: space-between;
  margin-top: 0.6rem;
  font-family: var(--serif);
  font-size: 0.82rem;
  color: var(--green-deep);
  font-weight: 600;
}

/* Checkboxes Taille / Tirage */
.check {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 0;
  cursor: pointer;
  font-family: var(--serif-2);
  font-size: 0.92rem;
  color: var(--green-deep);
}
.check input { position: absolute; opacity: 0; pointer-events: none; }
.check span {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  position: relative;
  padding-left: 1.5rem;
  transition: color .2s ease;
}
.check span::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 16px; height: 16px;
  border: 1.5px solid rgba(12, 34, 28, 0.3);
  border-radius: 3px;
  transition: background .2s ease, border-color .2s ease;
}
.check span::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-65%) rotate(45deg) scale(0);
  width: 5px; height: 9px;
  border-right: 2px solid var(--cream);
  border-bottom: 2px solid var(--cream);
  transition: transform .2s var(--ease-out);
}
.check:hover span::before { border-color: var(--green-deep); }
.check input:checked + span { color: var(--gold-deep); font-weight: 600; }
.check input:checked + span::before {
  background: var(--green-deep);
  border-color: var(--green-deep);
}
.check input:checked + span::after { transform: translateY(-65%) rotate(45deg) scale(1); }

/* Reset filtres */
.filter-reset {
  margin-top: 0.6rem;
  padding: 0.6em 1em;
  background: transparent;
  border: 1px solid rgba(12, 34, 28, 0.2);
  border-radius: 999px;
  font-family: var(--serif);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-mid);
  cursor: pointer;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.filter-reset:hover { background: var(--green-deep); color: var(--cream); border-color: var(--green-deep); }

/* Toolbar (compteur + tri) */
.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0 0 1.2rem;
  border-bottom: 1px solid rgba(12, 34, 28, 0.12);
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.shop-count {
  font-family: var(--serif);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--green-mid);
}
.shop-count strong { color: var(--green-deep); font-weight: 600; }
.shop-sort { display: flex; align-items: center; gap: 0.6rem; }
.shop-sort label {
  font-family: var(--serif);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-mid);
}
.shop-sort select {
  padding: 0.5rem 2rem 0.5rem 0.8rem;
  background: transparent;
  border: 1px solid rgba(12, 34, 28, 0.25);
  border-radius: 4px;
  font-family: var(--serif-2);
  font-size: 0.92rem;
  color: var(--green-deep);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230c221c' stroke-width='1.6'><path d='M6 9l6 6 6-6' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0.6rem center;
  transition: border-color .25s ease;
}
.shop-sort select:hover, .shop-sort select:focus { border-color: var(--gold-deep); outline: none; }

/* Réinit ancienne barre de chips horizontale (cachée maintenant) */
body.page-boutique .shop-filters { display: none; }

/* Empty state amélioré */
.shop-empty {
  text-align: center;
  padding: 3rem var(--pad-x);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.shop-empty p {
  font-family: var(--serif-2);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--green-mid);
  margin: 0;
}
.shop-empty .btn-pill {
  border-color: var(--green-deep);
  color: var(--green-deep);
}
.shop-empty .btn-pill::before { background: var(--green-deep); }
.shop-empty .btn-pill:hover { color: var(--cream); }

/* ---------- Boutons favoris + quick-add sur cards ---------- */
body.page-boutique .shop-item { position: relative; }
body.page-boutique .shop-fav {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 3;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(245, 226, 196, 0.85);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(12, 34, 28, 0.12);
  color: var(--green-mid);
  cursor: pointer;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity .3s ease, transform .3s var(--ease-out), color .25s ease, background .25s ease;
}
body.page-boutique .shop-item:hover .shop-fav,
body.page-boutique .shop-fav.is-active {
  opacity: 1;
  transform: translateY(0);
}
body.page-boutique .shop-fav:hover {
  background: var(--cream);
  color: var(--gold-deep);
}
body.page-boutique .shop-fav.is-active {
  background: var(--gold);
  color: var(--green-deep);
  border-color: var(--gold);
}
body.page-boutique .shop-fav svg { fill: none; transition: fill .25s ease; }
body.page-boutique .shop-fav.is-active svg { fill: currentColor; }

body.page-boutique .shop-quick {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 90px;
  z-index: 3;
  padding: 0.7em 1em;
  background: var(--cream);
  color: var(--green-deep);
  border: 0;
  border-radius: 999px;
  font-family: var(--serif);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .35s ease, transform .35s var(--ease-out), background .25s ease;
  box-shadow: 0 8px 20px rgba(12, 34, 28, 0.3);
}
body.page-boutique .shop-item:hover .shop-quick {
  opacity: 1;
  transform: translateY(0);
}
body.page-boutique .shop-quick:hover {
  background: var(--gold);
}

/* Animation fade-in des items quand visibles */
.shop-item.is-visible {
  animation: shopItemIn 0.6s var(--ease-out) forwards;
}
@keyframes shopItemIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================
   v10 — Retour layout original + fond doré conservé
   Annule l'expérimentation v9 sidebar/banner
   ============================================ */

/* Cache les éléments v9 inutilisés */
body.page-boutique .bread,
body.page-boutique .boutique-banner,
body.page-boutique .shop-sidebar,
body.page-boutique .boutique-layout > .shop-main > .shop-toolbar { display: none !important; }
body.page-boutique .boutique-layout {
  display: block !important;
  grid-template-columns: none !important;
}

/* Hero boutique adapté au fond doré */
body.page-boutique .boutique-hero {
  text-align: center;
  padding: clamp(2.5rem, 5vw, 4rem) var(--pad-x) clamp(1.5rem, 3vw, 2.5rem);
  max-width: 900px;
  margin: 0 auto;
}
body.page-boutique .boutique-hero .eyebrow { color: var(--green-mid); }
body.page-boutique .boutique-title {
  color: var(--green-deep);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
}
body.page-boutique .boutique-title em {
  background: linear-gradient(110deg, var(--gold-deep) 0%, var(--gold) 50%, var(--gold-deep) 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: goldShimmer 6s ease-in-out infinite;
}
body.page-boutique .boutique-lede { color: var(--green-mid); opacity: 0.9; }
body.page-boutique .boutique-meta {
  border-color: rgba(12, 34, 28, 0.15);
}
body.page-boutique .boutique-meta span { color: var(--green-mid); }
body.page-boutique .boutique-meta strong { color: var(--green-deep); }

/* Chips horizontaux sur fond doré */
body.page-boutique .shop-filters {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  padding: 0 var(--pad-x);
  margin: 1.2rem auto 1.6rem;
  max-width: var(--max);
}
body.page-boutique .cat-chip {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6em 1.2em;
  background: transparent;
  border: 1px solid rgba(12, 34, 28, 0.2);
  border-radius: 999px;
  font-family: var(--serif);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-deep);
  opacity: 0.78;
  cursor: pointer;
  transition: opacity .25s ease, background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease);
}
body.page-boutique .cat-chip span {
  font-family: var(--serif-2);
  font-style: italic;
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--green-mid);
  margin-left: 0.4em;
}
body.page-boutique .cat-chip:hover {
  opacity: 1;
  border-color: var(--green-deep);
  background: rgba(12, 34, 28, 0.05);
  transform: translateY(-2px);
}
body.page-boutique .cat-chip.is-active {
  background: var(--green-deep);
  color: var(--cream);
  border-color: var(--green-deep);
  opacity: 1;
}
body.page-boutique .cat-chip.is-active span { color: var(--gold-light); }

/* Toolbar compacte (count + search + sort) */
.shop-toolbar-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  max-width: var(--max);
  margin: 0 auto 1.8rem;
  padding: 1rem var(--pad-x);
  border-top: 1px solid rgba(12, 34, 28, 0.12);
  border-bottom: 1px solid rgba(12, 34, 28, 0.12);
}
.shop-toolbar-row .shop-count {
  font-family: var(--serif);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--green-mid);
  margin-right: auto;
}
.shop-toolbar-row .shop-count strong { color: var(--green-deep); font-weight: 600; }
.shop-toolbar-row .search-input {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.9rem;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(12, 34, 28, 0.2);
  border-radius: 999px;
  width: clamp(180px, 28vw, 280px);
  transition: border-color .25s ease, background .25s ease;
}
.shop-toolbar-row .search-input:focus-within {
  border-color: var(--gold-deep);
  background: rgba(255, 255, 255, 0.8);
}
.shop-toolbar-row .search-input svg { color: var(--green-mid); flex-shrink: 0; }
.shop-toolbar-row .search-input input {
  flex: 1;
  background: transparent;
  border: 0;
  outline: 0;
  font-family: var(--serif-2);
  font-size: 0.92rem;
  color: var(--green-deep);
}
.shop-toolbar-row .shop-sort {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.shop-toolbar-row .shop-sort label {
  font-family: var(--serif);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-mid);
}
.shop-toolbar-row .shop-sort select {
  padding: 0.5rem 1.8rem 0.5rem 0.8rem;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(12, 34, 28, 0.2);
  border-radius: 999px;
  font-family: var(--serif-2);
  font-size: 0.88rem;
  color: var(--green-deep);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230c221c' stroke-width='1.6'><path d='M6 9l6 6 6-6' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0.6rem center;
  background-size: 12px;
  transition: border-color .25s ease;
}
.shop-toolbar-row .shop-sort select:hover,
.shop-toolbar-row .shop-sort select:focus { border-color: var(--gold-deep); outline: none; }

/* Empty state amélioré sur fond clair */
body.page-boutique .shop-empty {
  text-align: center;
  padding: 3rem var(--pad-x);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
body.page-boutique .shop-empty p {
  font-family: var(--serif-2);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--green-mid);
  margin: 0;
}
body.page-boutique .shop-empty .btn-pill {
  border-color: var(--green-deep);
  color: var(--green-deep);
  padding: 0.7em 1.6em;
}
body.page-boutique .shop-empty .btn-pill::before { background: var(--green-deep); }
body.page-boutique .shop-empty .btn-pill:hover { color: var(--cream); }

@media (max-width: 700px) {
  .shop-toolbar-row { gap: 0.6rem; }
  .shop-toolbar-row .shop-count { width: 100%; margin-right: 0; }
  .shop-toolbar-row .search-input { flex: 1; width: auto; }
  .shop-toolbar-row .shop-sort { width: 100%; justify-content: flex-end; }
}
