:root {
  --ikw-gold: #c9a84c;
  --ikw-gold-hover: #e8c96a;
  --ikw-bg: #0d0d0d;
  --ikw-panel: #111;
  --ikw-panel-2: #171717;
  --ikw-line: #292929;
  --ikw-text: #f4f4f4;
  --ikw-muted: #999;
}

body#product .wishlist-button,
body#product .wishlist-button-product {
  display: none !important;
}

.ik-card,
.ik-rcar__card,
.ik-scar__card {
  position: relative !important;
}

/* ------------------------------------------------------------------
   Cœurs wishlist
   ------------------------------------------------------------------ */
.ik-wishlist-toggle {
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  color: var(--ikw-gold);
  cursor: pointer;
  line-height: 1;
  -webkit-tap-highlight-color: transparent;
  transition: color .16s ease, transform .16s ease, opacity .16s ease;
}

.ik-wishlist-toggle:hover,
.ik-wishlist-toggle:focus-visible {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  color: var(--ikw-gold-hover);
  outline: none;
  transform: scale(1.08);
}

.ik-wishlist-toggle--card {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 8;
  width: 28px;
  height: 28px;
}

.ik-wishlist-heart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 17px;
  height: 17px;
}

.ik-wishlist-heart svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: transparent;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linejoin: round;
  filter: none !important;
  box-shadow: none !important;
  transition: fill .16s ease, stroke .16s ease, transform .16s ease;
}

.ik-wishlist-toggle.is-active {
  color: var(--ikw-gold);
  background: transparent !important;
}

.ik-wishlist-toggle.is-active .ik-wishlist-heart svg {
  fill: var(--ikw-gold);
  stroke: var(--ikw-gold);
  transform: scale(1.03);
}

.ik-wishlist-toggle.is-loading {
  pointer-events: none;
  opacity: .68;
}

.ik-wishlist-toggle.is-loading .ik-wishlist-heart {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(201, 168, 76, .25);
  border-top-color: var(--ikw-gold);
  border-radius: 50%;
  animation: ikw-spin .7s linear infinite;
}

.ik-wishlist-toggle.is-loading .ik-wishlist-heart svg {
  opacity: 0;
}

/* Le hook displayProductActions est placé dans .product-quantity,
   juste après le bouton d'ajout au panier. */
body#product .product-quantity > .ik-wishlist-product-action,
body.page-product .product-quantity > .ik-wishlist-product-action {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  align-self: flex-start;
  margin: 0 0 .5rem 8px !important;
  padding: 0 !important;
}

.ik-wishlist-product-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.ik-wishlist-toggle--product {
  width: 42px;
  height: 44px;
  min-width: 42px;
  min-height: 44px;
  gap: 0;
  padding: 0 !important;
  font-size: 0;
}

.ik-wishlist-toggle--product .ik-wishlist-heart {
  width: 19px;
  height: 19px;
}

.ik-wishlist-toggle--product .ik-wishlist-label {
  display: none !important;
}

.ik-wishlist-toggle--remove {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  width: 28px;
  height: 28px;
}

/* ------------------------------------------------------------------
   Toast
   ------------------------------------------------------------------ */
.ik-wishlist-toast {
  position: fixed;
  top: 82px;
  right: 20px;
  z-index: 100000;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: min(380px, calc(100vw - 28px));
  padding: 12px 16px;
  background: #111;
  border: 1px solid var(--ikw-gold);
  border-radius: 10px;
  color: #fff;
  box-shadow: 0 12px 35px rgba(0, 0, 0, .55);
  font-size: 13px;
  font-weight: 700;
  opacity: 0;
  transform: translateY(-8px) translateX(20px);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}

.ik-wishlist-toast.is-visible {
  opacity: 1;
  transform: translateY(0) translateX(0);
  pointer-events: auto;
}

.ik-wishlist-toast.is-error {
  border-color: #d85d5d;
}

.ik-wishlist-toast a {
  color: var(--ikw-gold) !important;
  text-decoration: underline;
}

/* ------------------------------------------------------------------
   Page wishlist — structure alignée sur la page panier
   ------------------------------------------------------------------ */
body[id*="ikigaiwishlist"] .page-header,
body[id*="ikigaiwishlist"] .breadcrumb {
  display: none !important;
}

body[id*="ikigaiwishlist"] #wrapper,
body[id*="ikigaiwishlist"] #main,
body[id*="ikigaiwishlist"] #content-wrapper,
body[id*="ikigaiwishlist"] #wrapper > .container,
body[id*="ikigaiwishlist"] #wrapper > .container > .row,
body[id*="ikigaiwishlist"] .page-content {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.ik-wishlist-native-page {
  width: 100vw;
  min-height: 60vh;
  margin-left: calc(50% - 50vw);
  padding: 0;
  color: var(--ikw-text);
  font-family: Montserrat, Arial, sans-serif;
  box-sizing: border-box;
  overflow-x: clip;
}

.ik-wishlist-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 260px;
  min-height: 260px;
  margin: 0;
  padding: 0 20px;
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: hidden;
  text-align: center;
  box-sizing: border-box;
}

.ik-wishlist-hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201, 168, 76, .72), transparent);
}

.ik-wishlist-hero .ik-native-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 980px;
  padding: 0 20px;
}

.ik-wishlist-hero .ik-native-kicker {
  display: block;
  margin: 0 0 8px;
  color: var(--ikw-gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.ik-wishlist-hero h1 {
  margin: 0;
  color: #fff !important;
  font-family: gigalypse, Impact, sans-serif;
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.ik-wishlist-hero p {
  max-width: 720px;
  margin: 14px auto 0;
  color: #aaa;
  font-size: 15px;
  line-height: 1.6;
}

.ik-wishlist-graywrapper {
  width: 100%;
  margin: 0;
  padding: 0 40px 48px;
  background: #0d0d0d;
  box-sizing: border-box;
}

.ik-wishlist-shell {
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
  box-sizing: border-box;
}

.ik-wishlist-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  width: 100%;
  min-height: 58px;
  margin: 0;
  padding: 18px 0;
  color: #777;
  font-size: 12px;
  box-sizing: border-box;
}

.ik-wishlist-breadcrumb a,
.ik-wishlist-breadcrumb span {
  color: #888 !important;
  text-decoration: none !important;
}

.ik-wishlist-breadcrumb a:hover {
  color: var(--ikw-gold) !important;
}

.ik-wishlist-breadcrumb a::after {
  content: "›";
  display: inline-block;
  margin: 0 10px;
  color: #444;
}

.ik-wishlist-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 28px;
  align-items: start;
  width: 100%;
  min-width: 0;
}

.ik-wishlist-layout--empty {
  grid-template-columns: minmax(0, 1fr);
}

.ik-wishlist-main,
.ik-wishlist-sidebar {
  min-width: 0;
}

.ik-wishlist-sidebar {
  position: sticky;
  top: 84px;
}

.ik-wishlist-panel,
.ik-wishlist-summary-card {
  width: 100%;
  margin: 0;
  background: var(--ikw-panel) !important;
  border: 1px solid #222 !important;
  border-radius: 12px !important;
  box-shadow: none !important;
  color: #fff;
  overflow: hidden;
  box-sizing: border-box;
}

.ik-wishlist-panel__head,
.ik-wishlist-summary-head {
  padding: 22px 24px;
  background: #111;
  border-bottom: 1px solid #222;
}

.ik-wishlist-panel__head h2,
.ik-wishlist-summary-head h2 {
  margin: 0;
  color: #fff !important;
  font-family: gigalypse, Impact, sans-serif;
  font-size: 28px;
  line-height: 1;
  text-transform: uppercase;
}

.ik-wishlist-panel__head p,
.ik-wishlist-summary-head p {
  margin: 8px 0 0;
  color: var(--ikw-muted);
  font-size: 13px;
  line-height: 1.5;
}

.ik-wishlist-feedback {
  display: none;
  margin: 18px 24px 0;
  padding: 13px 16px;
  background: rgba(201, 168, 76, .12);
  border: 1px solid rgba(201, 168, 76, .42);
  border-radius: 8px;
  color: #e8d28f;
}

.ik-wishlist-feedback.is-visible {
  display: block;
}

.ik-wishlist-feedback.is-error {
  background: rgba(216, 93, 93, .1);
  border-color: rgba(216, 93, 93, .45);
  color: #ffc8c8;
}

.ik-wishlist-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
}

.ik-wishlist-item {
  position: relative;
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr) minmax(210px, 250px);
  gap: 22px;
  align-items: center;
  min-width: 0;
  padding: 18px 58px 18px 18px;
  background: #151515;
  border: 1px solid #252525;
  border-radius: 10px;
  overflow: hidden;
}

.ik-wishlist-item__image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 130px;
  height: 130px;
  background: #0a0a0a;
  border: 1px solid #222;
  border-radius: 8px;
  overflow: hidden;
}

.ik-wishlist-item__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ik-wishlist-item__placeholder {
  color: var(--ikw-gold);
  font-weight: 900;
}

.ik-wishlist-item__body {
  min-width: 0;
}

.ik-wishlist-item__name {
  color: #fff !important;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
  text-decoration: none !important;
}

.ik-wishlist-item__name:hover {
  color: var(--ikw-gold) !important;
}

.ik-wishlist-item__variant {
  margin: 6px 0 0;
  color: var(--ikw-muted);
  font-size: 13px;
}

.ik-wishlist-item__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.ik-wishlist-item__availability,
.ik-wishlist-item__bundle {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}

.ik-wishlist-item__availability.is-available {
  background: rgba(76, 175, 80, .12);
  color: #93dc97;
}

.ik-wishlist-item__availability.is-unavailable {
  background: rgba(216, 93, 93, .1);
  color: #ffadad;
}

.ik-wishlist-item__bundle {
  background: rgba(201, 168, 76, .12);
  color: var(--ikw-gold);
}

.ik-wishlist-item__purchase {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
}

.ik-wishlist-item__price {
  color: var(--ikw-gold);
  font-size: 21px;
  font-weight: 900;
  text-align: right;
}

.ik-wishlist-item__unit {
  margin-top: -4px;
  color: var(--ikw-muted);
  font-size: 11px;
  text-align: right;
}

.ik-wishlist-summary-body {
  padding: 22px 24px 24px;
}

.ik-wishlist-summary-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid #262626;
  color: #bbb;
  font-size: 14px;
}

.ik-wishlist-summary-line strong {
  color: var(--ikw-gold);
  font-size: 18px;
}

.ik-wishlist-add-all,
.ik-wishlist-add-cart,
.ik-wishlist-empty__link,
.ik-wishlist-continue {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 11px 18px;
  border-radius: 8px;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none !important;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}

.ik-wishlist-add-all,
.ik-wishlist-add-cart,
.ik-wishlist-empty__link {
  background: var(--ikw-gold);
  border: 1px solid var(--ikw-gold);
  color: #0d0d0d !important;
}

.ik-wishlist-add-all {
  width: 100%;
}

.ik-wishlist-add-all:hover,
.ik-wishlist-add-cart:hover,
.ik-wishlist-empty__link:hover {
  background: var(--ikw-gold-hover);
  border-color: var(--ikw-gold-hover);
  color: #0d0d0d !important;
  transform: translateY(-1px);
}

.ik-wishlist-continue {
  width: 100%;
  margin-top: 10px;
  background: #1a1a1a;
  border: 1px solid #333;
  color: #fff !important;
}

.ik-wishlist-continue:hover {
  border-color: var(--ikw-gold);
  color: var(--ikw-gold) !important;
}

.ik-wishlist-add-cart:disabled {
  cursor: not-allowed;
  opacity: .45;
  transform: none;
}

.ik-wishlist-action-spinner {
  display: none;
  width: 15px;
  height: 15px;
  border: 2px solid rgba(13, 13, 13, .25);
  border-top-color: #0d0d0d;
  border-radius: 50%;
  animation: ikw-spin .7s linear infinite;
}

.is-loading > .ik-wishlist-action-spinner {
  display: inline-block;
}

.ik-wishlist-empty {
  margin: 18px;
  padding: 64px 24px;
  background: #151515;
  border: 1px solid #252525;
  border-radius: 10px;
  text-align: center;
}

.ik-wishlist-empty__heart {
  margin-bottom: 12px;
  color: var(--ikw-gold);
  font-size: 68px;
  line-height: 1;
}

.ik-wishlist-empty h2 {
  margin: 0 0 10px;
  color: #fff;
}

.ik-wishlist-empty p {
  margin: 0 0 22px;
  color: var(--ikw-muted);
}

@keyframes ikw-spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 1180px) {
  .ik-wishlist-graywrapper {
    padding-right: 24px;
    padding-left: 24px;
  }

  .ik-wishlist-layout {
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 22px;
  }

  .ik-wishlist-item {
    grid-template-columns: 110px minmax(0, 1fr);
  }

  .ik-wishlist-item__image {
    width: 110px;
    height: 110px;
  }

  .ik-wishlist-item__purchase {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .ik-wishlist-item__price,
  .ik-wishlist-item__unit {
    text-align: left;
  }
}

@media (max-width: 991px) {
  .ik-wishlist-layout {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .ik-wishlist-main,
  .ik-wishlist-sidebar {
    width: 100%;
  }

  .ik-wishlist-sidebar {
    position: static;
    top: auto;
  }
}

@media (max-width: 575px) {
  body#product .product-quantity > .ik-wishlist-product-action,
  body.page-product .product-quantity > .ik-wishlist-product-action {
    margin-left: 6px !important;
  }

  .ik-wishlist-toggle--product {
    width: 38px;
    min-width: 38px;
  }

  .ik-wishlist-graywrapper {
    padding-right: 12px;
    padding-bottom: 28px;
    padding-left: 12px;
  }

  .ik-wishlist-hero {
    height: 220px;
    min-height: 220px;
  }

  .ik-wishlist-hero h1 {
    font-size: clamp(38px, 14vw, 56px);
  }

  .ik-wishlist-breadcrumb {
    min-height: 50px;
    padding: 14px 0;
  }

  .ik-wishlist-panel__head,
  .ik-wishlist-summary-head {
    padding: 20px 16px;
  }

  .ik-wishlist-list {
    padding: 12px;
  }

  .ik-wishlist-item {
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 13px;
    padding: 14px 48px 14px 14px;
  }

  .ik-wishlist-item__image {
    width: 84px;
    height: 84px;
  }

  .ik-wishlist-item__name {
    font-size: 15px;
  }

  .ik-wishlist-item__purchase {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .ik-wishlist-item__price {
    font-size: 19px;
  }

  .ik-wishlist-add-cart {
    width: 100%;
  }

  .ik-wishlist-summary-body {
    padding: 18px 16px 20px;
  }

  .ik-wishlist-toggle--card {
    top: 7px;
    right: 7px;
    width: 28px;
    height: 28px;
  }

  .ik-wishlist-toast {
    top: 72px;
    right: 10px;
    left: 10px;
    max-width: none;
  }
}

/* Fallback injecté par JS si le hook produit du thème n'est pas exécuté. */
.ik-wishlist-product-action--fallback {
  display: inline-flex;
  width: auto;
  margin: 0 0 .5rem 8px !important;
}

/* IKIGAI_WISHLIST_TOOLTIP_STOCK_STYLE_V1
   Tooltip du cœur aligné sur celui des pastilles de stock recentproducts. */
.ik-wishlist-toggle {
  overflow: visible !important;
}

.ik-wishlist-toggle[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  right: 0;
  bottom: calc(100% + 8px);
  z-index: 100;
  display: block;
  width: max-content;
  max-width: min(240px, calc(100vw - 24px));
  padding: 4px 8px;
  background: #111;
  border: 0;
  border-radius: 6px;
  color: #fff;
  font-family: "montserrat", Arial, sans-serif;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: .3px;
  text-align: left;
  text-transform: none;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease, visibility 0s linear .2s;
}

.ik-wishlist-toggle[data-tooltip]:hover::after,
.ik-wishlist-toggle[data-tooltip]:focus-visible::after {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity .2s ease, transform .2s ease, visibility 0s;
}

@media (max-width: 420px) {
  .ik-wishlist-toggle[data-tooltip]::after {
    white-space: normal;
  }
}


/* Le bouton fiche produit est le seul cœur non positionné en absolu. */
.ik-wishlist-toggle--product {
  position: relative !important;
}

/* IKIGAI_WISHLIST_TOOLTIP_CAROUSEL_SMOOTH_V2
   Dans les carrousels, le tooltip s'ouvre vers le bas afin de rester dans
   la vignette et ne plus être coupé par le viewport horizontal. */
.ik-wishlist-toggle[data-tooltip]::after {
  visibility: visible !important;
  opacity: 0;
  transform: translateY(5px) scale(.97);
  transform-origin: right bottom;
  will-change: opacity, transform;
  transition:
    opacity .26s cubic-bezier(.22, .61, .36, 1),
    transform .26s cubic-bezier(.22, .61, .36, 1) !important;
}

.ik-wishlist-toggle[data-tooltip]:hover::after,
.ik-wishlist-toggle[data-tooltip]:focus-visible::after {
  visibility: visible !important;
  opacity: 1;
  transform: translateY(0) scale(1);
  transition:
    opacity .26s cubic-bezier(.22, .61, .36, 1),
    transform .26s cubic-bezier(.22, .61, .36, 1) !important;
}

.ik-rcar__card .ik-wishlist-toggle--card[data-tooltip]::after,
.ik-scar__card .ik-wishlist-toggle--card[data-tooltip]::after {
  top: calc(100% + 7px);
  right: 0;
  bottom: auto;
  transform-origin: right top;
  transform: translateY(-5px) scale(.97);
}

.ik-rcar__card .ik-wishlist-toggle--card[data-tooltip]:hover::after,
.ik-rcar__card .ik-wishlist-toggle--card[data-tooltip]:focus-visible::after,
.ik-scar__card .ik-wishlist-toggle--card[data-tooltip]:hover::after,
.ik-scar__card .ik-wishlist-toggle--card[data-tooltip]:focus-visible::after {
  transform: translateY(0) scale(1);
}


/* IKIGAI_WISHLIST_CARD_BOTTOM_LEFT_V1
   Le cœur des vignettes est aligné visuellement avec la pastille de stock :
   pastille à droite, cœur à gauche, sur la même ligne de base. */
.ik-wishlist-toggle--card {
  top: auto !important;
  right: auto !important;
  bottom: 3px !important;
  left: 3px !important;
}

/* Tooltip aligné à gauche du cœur et ouvert vers le haut, comme la pastille
   de stock située à droite. L'opacité et le déplacement restent progressifs. */
.ik-wishlist-toggle--card[data-tooltip]::after,
.ik-rcar__card .ik-wishlist-toggle--card[data-tooltip]::after,
.ik-scar__card .ik-wishlist-toggle--card[data-tooltip]::after {
  top: auto !important;
  right: auto !important;
  bottom: calc(100% + 7px) !important;
  left: 0 !important;
  transform-origin: left bottom !important;
  opacity: 0 !important;
  visibility: visible !important;
  transform: translateY(5px) scale(.97) !important;
  transition:
    opacity .26s cubic-bezier(.22, .61, .36, 1),
    transform .26s cubic-bezier(.22, .61, .36, 1) !important;
}

.ik-wishlist-toggle--card[data-tooltip]:hover::after,
.ik-wishlist-toggle--card[data-tooltip]:focus-visible::after,
.ik-rcar__card .ik-wishlist-toggle--card[data-tooltip]:hover::after,
.ik-rcar__card .ik-wishlist-toggle--card[data-tooltip]:focus-visible::after,
.ik-scar__card .ik-wishlist-toggle--card[data-tooltip]:hover::after,
.ik-scar__card .ik-wishlist-toggle--card[data-tooltip]:focus-visible::after {
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important;
}

/* IKIGAI_WISHLIST_107_STOCK_AND_TOOLTIP */

/* Tooltip du cœur : mêmes dimensions et typographie que la pastille de stock. */
.ik-wishlist-toggle[data-tooltip]::after,
.ik-rcar__card .ik-wishlist-toggle--card[data-tooltip]::after,
.ik-scar__card .ik-wishlist-toggle--card[data-tooltip]::after {
  content: attr(data-tooltip) !important;
  position: absolute !important;
  top: auto !important;
  right: auto !important;
  bottom: calc(100% + 8px) !important;
  left: 0 !important;
  z-index: 100 !important;
  display: block !important;
  width: max-content !important;
  max-width: min(240px, calc(100vw - 24px)) !important;
  padding: 4px 8px !important;
  background: #111 !important;
  border: 0 !important;
  border-radius: 6px !important;
  color: #fff !important;
  font-family: "montserrat", Arial, sans-serif !important;
  font-size: 10px !important;
  font-weight: 600 !important;
  line-height: 1.35 !important;
  letter-spacing: .3px !important;
  text-align: left !important;
  text-transform: none !important;
  white-space: nowrap !important;
  opacity: 0 !important;
  visibility: visible !important;
  transform: translateY(4px) !important;
  transform-origin: left bottom !important;
  pointer-events: none !important;
  will-change: opacity, transform !important;
  transition: opacity .2s ease, transform .2s ease !important;
}

.ik-wishlist-toggle[data-tooltip]:hover::after,
.ik-wishlist-toggle[data-tooltip]:focus-visible::after,
.ik-rcar__card .ik-wishlist-toggle--card[data-tooltip]:hover::after,
.ik-rcar__card .ik-wishlist-toggle--card[data-tooltip]:focus-visible::after,
.ik-scar__card .ik-wishlist-toggle--card[data-tooltip]:hover::after,
.ik-scar__card .ik-wishlist-toggle--card[data-tooltip]:focus-visible::after {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
}

/* Sur la fiche produit, le tooltip reste calé à droite du bouton. */
.ik-wishlist-toggle--product[data-tooltip]::after {
  right: 0 !important;
  left: auto !important;
  transform-origin: right bottom !important;
}

@media (max-width: 420px) {
  .ik-wishlist-toggle[data-tooltip]::after {
    white-space: normal !important;
  }
}

/* Même composant de disponibilité que sur les fiches produit recentproducts. */
.ik-wishlist-item__stock.ikigai-stock-indicator {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  margin: 16px 0 4px !important;
}

.ik-wishlist-item__stock .ikigai-stock {
  display: flex !important;
  align-items: flex-start !important;
  gap: 10px !important;
  min-width: 200px !important;
  flex: 1 1 auto !important;
  padding: 10px 16px !important;
  border: 1px solid transparent !important;
  border-radius: 10px !important;
  box-sizing: border-box !important;
}

.ik-wishlist-item__stock .ikigai-stock__icon {
  flex: 0 0 auto !important;
  line-height: 1.3 !important;
}

.ik-wishlist-item__stock .ikigai-stock__info {
  min-width: 0 !important;
}

.ik-wishlist-item__stock .ikigai-stock__label {
  display: block !important;
  font-family: "montserrat", Arial, sans-serif !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
}

.ik-wishlist-item__stock .ikigai-stock__sub {
  display: block !important;
  font-family: "montserrat", Arial, sans-serif !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  line-height: 1.35 !important;
  opacity: .85 !important;
}

.ik-wishlist-item__stock .ikigai-stock--instock {
  background: rgba(34, 197, 94, .08) !important;
  border-color: rgba(34, 197, 94, .25) !important;
}

.ik-wishlist-item__stock .ikigai-stock--instock .ikigai-stock__label {
  color: #4ade80 !important;
}

.ik-wishlist-item__stock .ikigai-stock--instock .ikigai-stock__sub {
  color: #86efac !important;
}

.ik-wishlist-item__stock .ikigai-stock--supplier {
  background: rgba(251, 191, 36, .08) !important;
  border-color: rgba(251, 191, 36, .25) !important;
}

.ik-wishlist-item__stock .ikigai-stock--supplier .ikigai-stock__label {
  color: #fbbf24 !important;
}

.ik-wishlist-item__stock .ikigai-stock--supplier .ikigai-stock__sub {
  color: #fcd34d !important;
}

.ik-wishlist-item__stock .ikigai-stock--outofstock {
  background: rgba(248, 113, 113, .08) !important;
  border-color: rgba(248, 113, 113, .25) !important;
}

.ik-wishlist-item__stock .ikigai-stock--outofstock .ikigai-stock__label {
  color: #f87171 !important;
}

.ik-wishlist-item__stock .ikigai-stock--outofstock .ikigai-stock__sub {
  color: #fca5a5 !important;
}

@media (max-width: 768px) {
  .ik-wishlist-item__stock.ikigai-stock-indicator {
    flex-direction: column !important;
    gap: 8px !important;
  }

  .ik-wishlist-item__stock .ikigai-stock {
    width: 100% !important;
    min-width: 0 !important;
  }
}


/* IKIGAI_WISHLIST_108_SPACING_TOOLTIP_AND_PAGE_LAYOUT */

/* Le cœur et son tooltip doivent toujours passer au-dessus des kickers. */
.ik-wishlist-toggle--card {
  z-index: 240 !important;
}

.ik-wishlist-toggle--card:hover,
.ik-wishlist-toggle--card:focus-visible {
  transform: none !important;
}

.ik-wishlist-toggle--card[data-tooltip]::after,
.ik-rcar__card .ik-wishlist-toggle--card[data-tooltip]::after,
.ik-scar__card .ik-wishlist-toggle--card[data-tooltip]::after {
  z-index: 260 !important;
  padding: 4px 8px !important;
  border-radius: 6px !important;
  font-family: "montserrat", Arial, sans-serif !important;
  font-size: 10px !important;
  font-weight: 600 !important;
  line-height: 1.35 !important;
  letter-spacing: .3px !important;
  white-space: nowrap !important;
  transform: translateY(4px) scale(1) !important;
  transform-origin: left bottom !important;
}

.ik-wishlist-toggle--card[data-tooltip]:hover::after,
.ik-wishlist-toggle--card[data-tooltip]:focus-visible::after,
.ik-rcar__card .ik-wishlist-toggle--card[data-tooltip]:hover::after,
.ik-rcar__card .ik-wishlist-toggle--card[data-tooltip]:focus-visible::after,
.ik-scar__card .ik-wishlist-toggle--card[data-tooltip]:hover::after,
.ik-scar__card .ik-wishlist-toggle--card[data-tooltip]:focus-visible::after {
  transform: translateY(0) scale(1) !important;
}

/* Un peu d'air entre le fil d'Ariane et les deux panneaux. */
.ik-wishlist-breadcrumb {
  margin-bottom: 18px !important;
}

/* Disponibilité plus compacte dans la page wishlist. */
.ik-wishlist-item__stock.ikigai-stock-indicator {
  gap: 6px !important;
  margin: 10px 0 2px !important;
}

.ik-wishlist-item__stock .ikigai-stock {
  gap: 7px !important;
  min-width: 0 !important;
  padding: 7px 10px !important;
  border-radius: 8px !important;
}

.ik-wishlist-item__stock .ikigai-stock__icon {
  font-size: 12px !important;
  line-height: 1.25 !important;
}

.ik-wishlist-item__stock .ikigai-stock__label {
  font-size: 11.5px !important;
  line-height: 1.3 !important;
}

.ik-wishlist-item__stock .ikigai-stock__sub {
  font-size: 10px !important;
  line-height: 1.3 !important;
}

/* Prix et action alignés sur le bord droit de chaque ligne produit. */
@media (min-width: 576px) {
  .ik-wishlist-item__purchase {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-end !important;
    justify-content: center !important;
    gap: 8px !important;
  }

  .ik-wishlist-item__price,
  .ik-wishlist-item__unit {
    width: 100% !important;
    text-align: right !important;
  }

  .ik-wishlist-add-cart {
    width: auto !important;
    min-width: 190px !important;
    max-width: 100% !important;
    align-self: flex-end !important;
  }
}

@media (max-width: 575px) {
  .ik-wishlist-breadcrumb {
    margin-bottom: 12px !important;
  }
}

/* IKIGAI_WISHLIST_PRODUCT_MOBILE_FIT_V109 */
/* Le cœur reste dans la ligne quantité / panier sans élargir la fiche mobile. */
@media (max-width: 767px) {
  body#product .product-actions,
  body#product .product-add-to-cart,
  body#product .product-add-to-cart .product-quantity,
  body.page-product .product-actions,
  body.page-product .product-add-to-cart,
  body.page-product .product-add-to-cart .product-quantity {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }

  body#product .product-add-to-cart .product-quantity,
  body.page-product .product-add-to-cart .product-quantity {
    display: grid !important;
    grid-template-columns: 80px minmax(0, 1fr) 40px !important;
    gap: 8px !important;
    align-items: start !important;
    overflow: visible !important;
  }

  body#product .product-add-to-cart .product-quantity > .qty,
  body.page-product .product-add-to-cart .product-quantity > .qty {
    width: 80px !important;
    max-width: 80px !important;
    min-width: 0 !important;
    margin: 0 !important;
  }

  body#product .product-add-to-cart .product-quantity > .qty .input-group,
  body#product .product-add-to-cart .product-quantity > .qty input,
  body.page-product .product-add-to-cart .product-quantity > .qty .input-group,
  body.page-product .product-add-to-cart .product-quantity > .qty input {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }

  body#product .product-add-to-cart .product-quantity > .add,
  body.page-product .product-add-to-cart .product-quantity > .add {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
  }

  body#product .product-add-to-cart .product-quantity > .add .add-to-cart,
  body.page-product .product-add-to-cart .product-quantity > .add .add-to-cart {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    min-height: 44px !important;
    padding-left: 9px !important;
    padding-right: 9px !important;
    font-size: 12px !important;
    white-space: nowrap !important;
    box-sizing: border-box !important;
  }

  body#product .product-quantity > .ik-wishlist-product-action,
  body.page-product .product-quantity > .ik-wishlist-product-action {
    display: flex !important;
    grid-column: 3 !important;
    width: 40px !important;
    max-width: 40px !important;
    min-width: 40px !important;
    height: 44px !important;
    margin: 0 !important;
    padding: 0 !important;
    align-self: start !important;
    justify-self: end !important;
    box-sizing: border-box !important;
  }

  body#product .ik-wishlist-toggle--product,
  body.page-product .ik-wishlist-toggle--product {
    width: 40px !important;
    max-width: 40px !important;
    min-width: 40px !important;
    height: 44px !important;
    min-height: 44px !important;
    margin: 0 !important;
    box-sizing: border-box !important;
  }
}

@media (max-width: 380px) {
  body#product .product-add-to-cart .product-quantity,
  body.page-product .product-add-to-cart .product-quantity {
    grid-template-columns: 72px minmax(0, 1fr) 38px !important;
    gap: 6px !important;
  }

  body#product .product-add-to-cart .product-quantity > .qty,
  body.page-product .product-add-to-cart .product-quantity > .qty {
    width: 72px !important;
    max-width: 72px !important;
  }

  body#product .product-quantity > .ik-wishlist-product-action,
  body.page-product .product-quantity > .ik-wishlist-product-action,
  body#product .ik-wishlist-toggle--product,
  body.page-product .ik-wishlist-toggle--product {
    width: 38px !important;
    max-width: 38px !important;
    min-width: 38px !important;
  }

  body#product .product-add-to-cart .product-quantity > .add .add-to-cart,
  body.page-product .product-add-to-cart .product-quantity > .add .add-to-cart {
    padding-left: 6px !important;
    padding-right: 6px !important;
    font-size: 11px !important;
  }
}

/* IKIGAI_WISHLIST_PRODUCT_MOBILE_FIT_V110 */
/* Ligne mobile stable : quantité, bouton panier et cœur occupent chacun
   une colonne explicite et ne peuvent plus se superposer. */
@media (max-width: 767px) {
  body#product .product-add-to-cart .product-quantity,
  body.page-product .product-add-to-cart .product-quantity {
    display: grid !important;
    grid-template-columns: 92px minmax(0, 1fr) 38px !important;
    grid-template-rows: 44px !important;
    gap: 6px !important;
    align-items: stretch !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    box-sizing: border-box !important;
  }

  body#product .product-add-to-cart .product-quantity > .qty,
  body.page-product .product-add-to-cart .product-quantity > .qty {
    grid-column: 1 !important;
    grid-row: 1 !important;
    width: 92px !important;
    max-width: 92px !important;
    min-width: 0 !important;
    height: 44px !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
    position: relative !important;
    box-sizing: border-box !important;
  }

  body#product .product-add-to-cart .product-quantity > .qty .input-group,
  body#product .product-add-to-cart .product-quantity > .qty .bootstrap-touchspin,
  body#product .product-add-to-cart .product-quantity > .qty input,
  body.page-product .product-add-to-cart .product-quantity > .qty .input-group,
  body.page-product .product-add-to-cart .product-quantity > .qty .bootstrap-touchspin,
  body.page-product .product-add-to-cart .product-quantity > .qty input {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    height: 44px !important;
    margin: 0 !important;
    box-sizing: border-box !important;
  }

  body#product .product-add-to-cart .product-quantity > .add,
  body.page-product .product-add-to-cart .product-quantity > .add {
    grid-column: 2 !important;
    grid-row: 1 !important;
    display: block !important;
    width: auto !important;
    max-width: 100% !important;
    min-width: 0 !important;
    height: 44px !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
    position: relative !important;
    box-sizing: border-box !important;
  }

  body#product .product-add-to-cart .product-quantity > .add .add-to-cart,
  body.page-product .product-add-to-cart .product-quantity > .add .add-to-cart {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    height: 44px !important;
    min-height: 44px !important;
    margin: 0 !important;
    padding: 0 8px !important;
    font-size: 11px !important;
    line-height: 1.1 !important;
    letter-spacing: 0 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    box-sizing: border-box !important;
  }

  body#product .product-quantity > .ik-wishlist-product-action,
  body.page-product .product-quantity > .ik-wishlist-product-action {
    grid-column: 3 !important;
    grid-row: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 38px !important;
    max-width: 38px !important;
    min-width: 38px !important;
    height: 44px !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
    position: relative !important;
    align-self: stretch !important;
    justify-self: stretch !important;
    box-sizing: border-box !important;
  }

  body#product .ik-wishlist-toggle--product,
  body.page-product .ik-wishlist-toggle--product {
    width: 38px !important;
    max-width: 38px !important;
    min-width: 38px !important;
    height: 44px !important;
    min-height: 44px !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
  }
}

@media (max-width: 380px) {
  body#product .product-add-to-cart .product-quantity,
  body.page-product .product-add-to-cart .product-quantity {
    grid-template-columns: 88px minmax(0, 1fr) 36px !important;
    gap: 4px !important;
  }

  body#product .product-add-to-cart .product-quantity > .qty,
  body.page-product .product-add-to-cart .product-quantity > .qty {
    width: 88px !important;
    max-width: 88px !important;
  }

  body#product .product-quantity > .ik-wishlist-product-action,
  body.page-product .product-quantity > .ik-wishlist-product-action,
  body#product .ik-wishlist-toggle--product,
  body.page-product .ik-wishlist-toggle--product {
    width: 36px !important;
    max-width: 36px !important;
    min-width: 36px !important;
  }

  body#product .product-add-to-cart .product-quantity > .add .add-to-cart,
  body.page-product .product-add-to-cart .product-quantity > .add .add-to-cart {
    padding-left: 5px !important;
    padding-right: 5px !important;
    font-size: 10.5px !important;
  }
}

/* IKIGAI_WISHLIST_PRODUCT_MOBILE_FIT_V111 */
/* Neutralise la largeur interne du TouchSpin, qui débordait de la
   première colonne et passait sous le bouton Ajouter au panier. */
@media (max-width: 767px) {
  body#product .product-add-to-cart .product-quantity.ik-wishlist-purchase-layout,
  body.page-product .product-add-to-cart .product-quantity.ik-wishlist-purchase-layout {
    display: grid !important;
    grid-template-columns: 86px minmax(0, 1fr) 38px !important;
    grid-template-rows: minmax(44px, auto) !important;
    gap: 6px !important;
    align-items: stretch !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
    box-sizing: border-box !important;
  }

  body#product .ik-wishlist-purchase-layout > .qty,
  body.page-product .ik-wishlist-purchase-layout > .qty {
    grid-column: 1 !important;
    grid-row: 1 !important;
    display: block !important;
    width: 86px !important;
    max-width: 86px !important;
    min-width: 0 !important;
    height: 44px !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
  }

  body#product .ik-wishlist-purchase-layout > .qty .bootstrap-touchspin,
  body#product .ik-wishlist-purchase-layout > .qty .input-group,
  body.page-product .ik-wishlist-purchase-layout > .qty .bootstrap-touchspin,
  body.page-product .ik-wishlist-purchase-layout > .qty .input-group {
    display: flex !important;
    align-items: stretch !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    height: 44px !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
  }

  body#product .ik-wishlist-purchase-layout > .qty input,
  body#product .ik-wishlist-purchase-layout > .qty input.form-control,
  body.page-product .ik-wishlist-purchase-layout > .qty input,
  body.page-product .ik-wishlist-purchase-layout > .qty input.form-control {
    flex: 1 1 0 !important;
    width: 0 !important;
    max-width: none !important;
    min-width: 0 !important;
    height: 44px !important;
    margin: 0 !important;
    padding-left: 6px !important;
    padding-right: 6px !important;
    border-radius: 8px 0 0 8px !important;
    box-sizing: border-box !important;
  }

  body#product .ik-wishlist-purchase-layout > .qty .input-group-btn-vertical,
  body.page-product .ik-wishlist-purchase-layout > .qty .input-group-btn-vertical {
    position: static !important;
    display: flex !important;
    flex: 0 0 28px !important;
    flex-direction: column !important;
    width: 28px !important;
    max-width: 28px !important;
    min-width: 28px !important;
    height: 44px !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: none !important;
    box-sizing: border-box !important;
  }

  body#product .ik-wishlist-purchase-layout > .qty .input-group-btn-vertical .btn,
  body.page-product .ik-wishlist-purchase-layout > .qty .input-group-btn-vertical .btn {
    position: static !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 28px !important;
    max-width: 28px !important;
    min-width: 28px !important;
    height: 22px !important;
    min-height: 22px !important;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 0 !important;
    line-height: 1 !important;
    transform: none !important;
    box-sizing: border-box !important;
  }

  body#product .ik-wishlist-purchase-layout > .add,
  body.page-product .ik-wishlist-purchase-layout > .add {
    grid-column: 2 !important;
    grid-row: 1 !important;
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
  }

  body#product .ik-wishlist-purchase-layout > .add .add-to-cart,
  body.page-product .ik-wishlist-purchase-layout > .add .add-to-cart {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 5px !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    height: 44px !important;
    min-height: 44px !important;
    margin: 0 !important;
    padding: 0 7px !important;
    font-size: 11px !important;
    line-height: 1.1 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    box-sizing: border-box !important;
  }

  body#product .ik-wishlist-purchase-layout > .ik-wishlist-product-action,
  body.page-product .ik-wishlist-purchase-layout > .ik-wishlist-product-action {
    grid-column: 3 !important;
    grid-row: 1 !important;
    display: flex !important;
    width: 38px !important;
    max-width: 38px !important;
    min-width: 38px !important;
    height: 44px !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
    position: relative !important;
    overflow: visible !important;
    box-sizing: border-box !important;
  }

  body#product .ik-wishlist-purchase-layout .ik-wishlist-toggle--product,
  body.page-product .ik-wishlist-purchase-layout .ik-wishlist-toggle--product {
    width: 38px !important;
    max-width: 38px !important;
    min-width: 38px !important;
    height: 44px !important;
    min-height: 44px !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
  }
}

@media (max-width: 420px) {
  body#product .product-add-to-cart .product-quantity.ik-wishlist-purchase-layout,
  body.page-product .product-add-to-cart .product-quantity.ik-wishlist-purchase-layout {
    grid-template-columns: 78px minmax(0, 1fr) 36px !important;
    gap: 4px !important;
  }

  body#product .ik-wishlist-purchase-layout > .qty,
  body.page-product .ik-wishlist-purchase-layout > .qty {
    width: 78px !important;
    max-width: 78px !important;
  }

  body#product .ik-wishlist-purchase-layout > .add .add-to-cart,
  body.page-product .ik-wishlist-purchase-layout > .add .add-to-cart {
    padding-left: 5px !important;
    padding-right: 5px !important;
    font-size: 10px !important;
  }

  body#product .ik-wishlist-purchase-layout > .add .add-to-cart .material-icons,
  body.page-product .ik-wishlist-purchase-layout > .add .add-to-cart .material-icons {
    display: none !important;
  }

  body#product .ik-wishlist-purchase-layout > .ik-wishlist-product-action,
  body.page-product .ik-wishlist-purchase-layout > .ik-wishlist-product-action,
  body#product .ik-wishlist-purchase-layout .ik-wishlist-toggle--product,
  body.page-product .ik-wishlist-purchase-layout .ik-wishlist-toggle--product {
    width: 36px !important;
    max-width: 36px !important;
    min-width: 36px !important;
  }
}

/* IKIGAI_WISHLIST_PRODUCT_MOBILE_FIT_V112 */
/*
 * Le TouchSpin réel mesure plus que le seul champ numérique : il faut
 * réserver la largeur du champ + la colonne des boutons +/−. Ces règles
 * sont placées en dernier afin de neutraliser les anciennes tentatives.
 */
@media (max-width: 767px) {
  body#product .product-add-to-cart .product-quantity.ik-wishlist-purchase-layout,
  body.page-product .product-add-to-cart .product-quantity.ik-wishlist-purchase-layout {
    display: grid !important;
    grid-template-columns: 112px minmax(0, 1fr) 38px !important;
    grid-template-rows: 44px !important;
    column-gap: 8px !important;
    row-gap: 0 !important;
    align-items: stretch !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    box-sizing: border-box !important;
  }

  body#product .ik-wishlist-purchase-layout > .qty,
  body.page-product .ik-wishlist-purchase-layout > .qty {
    grid-column: 1 !important;
    grid-row: 1 !important;
    position: relative !important;
    z-index: 3 !important;
    display: block !important;
    width: 112px !important;
    max-width: 112px !important;
    min-width: 112px !important;
    height: 44px !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
    overflow: visible !important;
    box-sizing: border-box !important;
  }

  body#product .ik-wishlist-purchase-layout > .qty .bootstrap-touchspin,
  body#product .ik-wishlist-purchase-layout > .qty .input-group.bootstrap-touchspin,
  body.page-product .ik-wishlist-purchase-layout > .qty .bootstrap-touchspin,
  body.page-product .ik-wishlist-purchase-layout > .qty .input-group.bootstrap-touchspin {
    position: relative !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 32px !important;
    grid-template-rows: 44px !important;
    width: 112px !important;
    max-width: 112px !important;
    min-width: 112px !important;
    height: 44px !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
    overflow: hidden !important;
    border-radius: 8px !important;
    box-sizing: border-box !important;
  }

  body#product .ik-wishlist-purchase-layout > .qty input,
  body#product .ik-wishlist-purchase-layout > .qty input.form-control,
  body#product .ik-wishlist-purchase-layout > .qty input.input-group,
  body.page-product .ik-wishlist-purchase-layout > .qty input,
  body.page-product .ik-wishlist-purchase-layout > .qty input.form-control,
  body.page-product .ik-wishlist-purchase-layout > .qty input.input-group {
    grid-column: 1 !important;
    grid-row: 1 !important;
    align-self: stretch !important;
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    height: 44px !important;
    margin: 0 !important;
    padding: 0 8px !important;
    float: none !important;
    border-radius: 8px 0 0 8px !important;
    box-sizing: border-box !important;
  }

  body#product .ik-wishlist-purchase-layout > .qty .input-group-btn-vertical,
  body.page-product .ik-wishlist-purchase-layout > .qty .input-group-btn-vertical {
    grid-column: 2 !important;
    grid-row: 1 !important;
    position: static !important;
    z-index: 4 !important;
    display: grid !important;
    grid-template-rows: 22px 22px !important;
    width: 32px !important;
    max-width: 32px !important;
    min-width: 32px !important;
    height: 44px !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
    transform: none !important;
    box-sizing: border-box !important;
  }

  body#product .ik-wishlist-purchase-layout > .qty .input-group-btn-vertical .btn,
  body.page-product .ik-wishlist-purchase-layout > .qty .input-group-btn-vertical .btn {
    position: static !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 32px !important;
    max-width: 32px !important;
    min-width: 32px !important;
    height: 22px !important;
    min-height: 22px !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
    border-radius: 0 !important;
    line-height: 1 !important;
    transform: none !important;
    box-sizing: border-box !important;
  }

  body#product .ik-wishlist-purchase-layout > .qty .input-group-btn-vertical .btn i,
  body.page-product .ik-wishlist-purchase-layout > .qty .input-group-btn-vertical .btn i {
    position: static !important;
    inset: auto !important;
    margin: 0 !important;
    transform: none !important;
  }

  body#product .ik-wishlist-purchase-layout > .add,
  body.page-product .ik-wishlist-purchase-layout > .add {
    grid-column: 2 !important;
    grid-row: 1 !important;
    position: relative !important;
    z-index: 1 !important;
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    height: 44px !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
  }

  body#product .ik-wishlist-purchase-layout > .add .add-to-cart,
  body.page-product .ik-wishlist-purchase-layout > .add .add-to-cart {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 4px !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    height: 44px !important;
    min-height: 44px !important;
    margin: 0 !important;
    padding: 0 7px !important;
    font-size: 11px !important;
    line-height: 1.05 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    box-sizing: border-box !important;
  }

  body#product .ik-wishlist-purchase-layout > .ik-wishlist-product-action,
  body.page-product .ik-wishlist-purchase-layout > .ik-wishlist-product-action {
    grid-column: 3 !important;
    grid-row: 1 !important;
    position: relative !important;
    z-index: 2 !important;
    display: flex !important;
    width: 38px !important;
    max-width: 38px !important;
    min-width: 38px !important;
    height: 44px !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
    overflow: visible !important;
    box-sizing: border-box !important;
  }

  body#product .ik-wishlist-purchase-layout .ik-wishlist-toggle--product,
  body.page-product .ik-wishlist-purchase-layout .ik-wishlist-toggle--product {
    width: 38px !important;
    max-width: 38px !important;
    min-width: 38px !important;
    height: 44px !important;
    min-height: 44px !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
  }
}

@media (max-width: 420px) {
  body#product .product-add-to-cart .product-quantity.ik-wishlist-purchase-layout,
  body.page-product .product-add-to-cart .product-quantity.ik-wishlist-purchase-layout {
    grid-template-columns: 100px minmax(0, 1fr) 36px !important;
    column-gap: 5px !important;
  }

  body#product .ik-wishlist-purchase-layout > .qty,
  body.page-product .ik-wishlist-purchase-layout > .qty,
  body#product .ik-wishlist-purchase-layout > .qty .bootstrap-touchspin,
  body#product .ik-wishlist-purchase-layout > .qty .input-group.bootstrap-touchspin,
  body.page-product .ik-wishlist-purchase-layout > .qty .bootstrap-touchspin,
  body.page-product .ik-wishlist-purchase-layout > .qty .input-group.bootstrap-touchspin {
    width: 100px !important;
    max-width: 100px !important;
    min-width: 100px !important;
  }

  body#product .ik-wishlist-purchase-layout > .add .add-to-cart,
  body.page-product .ik-wishlist-purchase-layout > .add .add-to-cart {
    padding-left: 5px !important;
    padding-right: 5px !important;
    font-size: 10px !important;
  }

  body#product .ik-wishlist-purchase-layout > .add .add-to-cart .material-icons,
  body.page-product .ik-wishlist-purchase-layout > .add .add-to-cart .material-icons {
    display: none !important;
  }

  body#product .ik-wishlist-purchase-layout > .ik-wishlist-product-action,
  body.page-product .ik-wishlist-purchase-layout > .ik-wishlist-product-action,
  body#product .ik-wishlist-purchase-layout .ik-wishlist-toggle--product,
  body.page-product .ik-wishlist-purchase-layout .ik-wishlist-toggle--product {
    width: 36px !important;
    max-width: 36px !important;
    min-width: 36px !important;
  }
}

/* IKIGAI_WISHLIST_PRODUCT_MOBILE_STEPPER_FIX_V113 */
/*
 * Le sélecteur visible sur la fiche n'est pas le TouchSpin natif :
 * recentproducts crée #ik-qty-stepper puis masque #quantity_wanted.
 * Les anciennes règles wishlist réaffichaient l'input natif et ne
 * réservaient pas toute la largeur du stepper personnalisé.
 */
@media (max-width: 767px) {
  body#product .product-add-to-cart .product-quantity.ik-wishlist-purchase-layout,
  body.page-product .product-add-to-cart .product-quantity.ik-wishlist-purchase-layout {
    display: grid !important;
    grid-template-columns: 114px minmax(0, 1fr) 38px !important;
    grid-template-rows: 44px !important;
    gap: 6px !important;
    align-items: stretch !important;

    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;

    margin: 0 !important;
    padding: 0 !important;

    overflow: visible !important;
    box-sizing: border-box !important;
  }

  /* Colonne quantité */
  body#product .ik-wishlist-purchase-layout > .qty,
  body.page-product .ik-wishlist-purchase-layout > .qty {
    grid-column: 1 !important;
    grid-row: 1 !important;

    display: flex !important;
    align-items: stretch !important;

    width: 114px !important;
    max-width: 114px !important;
    min-width: 114px !important;
    height: 44px !important;

    margin: 0 !important;
    padding: 0 !important;
    float: none !important;

    overflow: visible !important;
    box-sizing: border-box !important;
  }

  /* L'input natif doit rester fonctionnel mais invisible. */
  body#product .ik-wishlist-purchase-layout #quantity_wanted,
  body.page-product .ik-wishlist-purchase-layout #quantity_wanted {
    display: none !important;
    position: absolute !important;

    width: 1px !important;
    height: 1px !important;

    margin: 0 !important;
    padding: 0 !important;

    opacity: 0 !important;
    pointer-events: none !important;
    overflow: hidden !important;
  }

  /*
   * Stepper personnalisé :
   * 36px − | 42px quantité | 36px +
   */
  body#product .ik-wishlist-purchase-layout #ik-qty-stepper,
  body.page-product .ik-wishlist-purchase-layout #ik-qty-stepper {
    display: grid !important;
    grid-template-columns: 36px 42px 36px !important;
    align-items: stretch !important;

    flex: 0 0 114px !important;
    width: 114px !important;
    max-width: 114px !important;
    min-width: 114px !important;
    height: 44px !important;

    margin: 0 !important;
    padding: 0 !important;

    gap: 0 !important;
    overflow: hidden !important;
    border-radius: 10px !important;
    box-sizing: border-box !important;
  }

  body#product .ik-wishlist-purchase-layout #ik-qty-stepper > button,
  body.page-product .ik-wishlist-purchase-layout #ik-qty-stepper > button {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: 36px !important;
    max-width: 36px !important;
    min-width: 36px !important;
    height: 44px !important;
    min-height: 44px !important;

    margin: 0 !important;
    padding: 0 !important;

    border-radius: 0 !important;
    box-sizing: border-box !important;
  }

  body#product .ik-wishlist-purchase-layout #ik-qty-num,
  body.page-product .ik-wishlist-purchase-layout #ik-qty-num {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: 42px !important;
    max-width: 42px !important;
    min-width: 42px !important;
    height: 44px !important;
    min-height: 44px !important;

    margin: 0 !important;
    padding: 0 !important;

    box-sizing: border-box !important;
  }

  /* Colonne Ajouter au panier */
  body#product .ik-wishlist-purchase-layout > .add,
  body.page-product .ik-wishlist-purchase-layout > .add {
    grid-column: 2 !important;
    grid-row: 1 !important;

    position: relative !important;
    z-index: 1 !important;

    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    height: 44px !important;

    margin: 0 !important;
    padding: 0 !important;
    float: none !important;

    overflow: hidden !important;
    box-sizing: border-box !important;
  }

  body#product .ik-wishlist-purchase-layout > .add .add-to-cart,
  body.page-product .ik-wishlist-purchase-layout > .add .add-to-cart {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    gap: 5px !important;

    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    height: 44px !important;
    min-height: 44px !important;

    margin: 0 !important;
    padding: 0 8px !important;

    font-size: 11px !important;
    line-height: 1 !important;
    white-space: nowrap !important;

    overflow: hidden !important;
    text-overflow: ellipsis !important;
    box-sizing: border-box !important;
  }

  /* Colonne cœur */
  body#product .ik-wishlist-purchase-layout > .ik-wishlist-product-action,
  body.page-product .ik-wishlist-purchase-layout > .ik-wishlist-product-action {
    grid-column: 3 !important;
    grid-row: 1 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: 38px !important;
    max-width: 38px !important;
    min-width: 38px !important;
    height: 44px !important;

    margin: 0 !important;
    padding: 0 !important;
    float: none !important;

    overflow: visible !important;
    box-sizing: border-box !important;
  }

  body#product .ik-wishlist-purchase-layout .ik-wishlist-toggle--product,
  body.page-product .ik-wishlist-purchase-layout .ik-wishlist-toggle--product {
    width: 38px !important;
    max-width: 38px !important;
    min-width: 38px !important;
    height: 44px !important;
    min-height: 44px !important;

    margin: 0 !important;
    padding: 0 !important;

    box-sizing: border-box !important;
  }
}

/* Écrans très étroits */
@media (max-width: 390px) {
  body#product .product-add-to-cart .product-quantity.ik-wishlist-purchase-layout,
  body.page-product .product-add-to-cart .product-quantity.ik-wishlist-purchase-layout {
    grid-template-columns: 104px minmax(0, 1fr) 34px !important;
    gap: 4px !important;
  }

  body#product .ik-wishlist-purchase-layout > .qty,
  body.page-product .ik-wishlist-purchase-layout > .qty,
  body#product .ik-wishlist-purchase-layout #ik-qty-stepper,
  body.page-product .ik-wishlist-purchase-layout #ik-qty-stepper {
    flex-basis: 104px !important;
    width: 104px !important;
    max-width: 104px !important;
    min-width: 104px !important;
  }

  body#product .ik-wishlist-purchase-layout #ik-qty-stepper,
  body.page-product .ik-wishlist-purchase-layout #ik-qty-stepper {
    grid-template-columns: 32px 40px 32px !important;
  }

  body#product .ik-wishlist-purchase-layout #ik-qty-stepper > button,
  body.page-product .ik-wishlist-purchase-layout #ik-qty-stepper > button {
    width: 32px !important;
    max-width: 32px !important;
    min-width: 32px !important;
  }

  body#product .ik-wishlist-purchase-layout #ik-qty-num,
  body.page-product .ik-wishlist-purchase-layout #ik-qty-num {
    width: 40px !important;
    max-width: 40px !important;
    min-width: 40px !important;
  }

  body#product .ik-wishlist-purchase-layout > .add .add-to-cart,
  body.page-product .ik-wishlist-purchase-layout > .add .add-to-cart {
    padding-left: 5px !important;
    padding-right: 5px !important;
    font-size: 10px !important;
  }

  body#product .ik-wishlist-purchase-layout > .add .add-to-cart .material-icons,
  body.page-product .ik-wishlist-purchase-layout > .add .add-to-cart .material-icons {
    display: none !important;
  }

  body#product .ik-wishlist-purchase-layout > .ik-wishlist-product-action,
  body.page-product .ik-wishlist-purchase-layout > .ik-wishlist-product-action,
  body#product .ik-wishlist-purchase-layout .ik-wishlist-toggle--product,
  body.page-product .ik-wishlist-purchase-layout .ik-wishlist-toggle--product {
    width: 34px !important;
    max-width: 34px !important;
    min-width: 34px !important;
  }
}

