/* AURA TUNISIE STORE — v15 hotfix: panier SVG + sliders auto/nav */
.header-icon svg,
.bottom-nav svg,
.mobile-menu-btn svg,
.mobile-nav-panel svg {
  width: 22px;
  height: 22px;
  display: block;
  stroke: #171717;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.header-icon--cart svg,
.bottom-nav__cart svg {
  width: 24px;
  height: 24px;
  stroke: #171717 !important;
  fill: none !important;
}
.header-icon--cart,
.header-cart {
  position: relative;
  display: inline-grid;
  place-items: center;
  min-width: 42px;
  min-height: 42px;
  border-radius: 999px;
}
.header-icon--cart:hover,
.header-cart:hover {
  background: rgba(201, 161, 74, .10);
}
.header-cart [data-cart-count],
.bottom-nav__cart em {
  position: absolute;
  top: 2px;
  right: 0;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: linear-gradient(135deg,#d7ad34,#f0cf6b);
  color: #171717;
  font: 900 10px/18px Montserrat, Arial, sans-serif;
  text-align: center;
  box-shadow: 0 8px 18px rgba(201,161,74,.25);
}
.bottom-nav__cart em:empty,
.header-cart [data-cart-count]:empty { display: none; }

.product-slider {
  position: relative;
  overflow: hidden;
}
.product-slider__track {
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.product-slider__track::-webkit-scrollbar { display: none; }
.product-slider__item { scroll-snap-align: start; }
.product-slider__track.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}
.slider-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}
.slider-nav {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(201,161,74,.28);
  background: rgba(255,255,255,.90);
  color: #171717;
  box-shadow: 0 12px 30px rgba(0,0,0,.06);
  display: inline-grid;
  place-items: center;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  transition: transform .25s cubic-bezier(.19,1,.22,1), box-shadow .25s ease, background .25s ease;
}
.slider-nav:hover,
.slider-nav:focus-visible {
  transform: translateY(-2px);
  background: linear-gradient(135deg,#d6aa32,#f0cf6b);
  box-shadow: 0 18px 36px rgba(201,161,74,.20);
  outline: none;
}
.product-card__image,
.product-card__media,
.product-card img {
  object-fit: cover;
}
@media (max-width: 768px){
  .slider-nav {
    width: 38px;
    height: 38px;
    font-size: 22px;
  }
  .header-cart [data-cart-count] {
    right: -2px;
    top: 0;
  }
}
