.jpfv3-shell {
  --jpfv3-ink: rgba(255, 255, 255, 0.94);
  --jpfv3-muted: rgba(255, 243, 230, 0.72);
  --jpfv3-accent: #c86c00;
  --jpfv3-accent-strong: #e89145;
  --jpfv3-paper: #ffffff;
  --jpfv3-paper-soft: #f5efe6;
  --jpfv3-paper-ink: #161616;
  --jpfv3-paper-muted: #4f4f4f;
  --jpfv3-line: rgba(232, 145, 69, 0.22);
  --jpfv3-metal-highlight: #fffdf9;
  --jpfv3-metal-sheen: #f3ede3;
  --jpfv3-metal-shadow: #dfd6ca;
  --jpfv3-metal-border: rgba(67, 69, 73, 0.16);
  --jpfv3-result-metal-surface:
    linear-gradient(138deg, rgba(255, 251, 246, 0.62) 2%, rgba(255, 242, 225, 0.24) 10%, rgba(255, 255, 255, 0) 20%),
    radial-gradient(ellipse 315% 270% at 18% 10%, rgba(255, 251, 244, 0.9) 0%, rgba(255, 241, 222, 0.68) 24%, rgba(255, 212, 162, 0.28) 52%, rgba(255, 255, 255, 0) 100%),
    radial-gradient(circle at 50% 70%, rgba(232, 108, 0, 0.12) 0%, rgba(232, 108, 0, 0.03) 22%, rgba(232, 108, 0, 0) 44%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0.14) 8%, rgba(255, 255, 255, 0) 17%, rgba(232, 108, 0, 0.03) 56%, rgba(90, 47, 11, 0.16) 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.03) 9%, rgba(255, 255, 255, 0) 18%, rgba(90, 47, 11, 0) 82%, rgba(90, 47, 11, 0.08) 100%),
    linear-gradient(180deg, #fef6ef 0%, #fbe7cb 18%, #f7d7aa 58%, #f1c78f 100%);
  --jpfv3-result-metal-border: rgba(102, 59, 19, 0.12);
  --jpfv3-result-metal-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    inset 0 10px 24px rgba(255, 240, 220, 0.2),
    inset 0 -34px 50px rgba(217, 120, 15, 0.14),
    inset 24px 0 40px rgba(217, 120, 15, 0.09),
    inset -24px 0 40px rgba(217, 120, 15, 0.09),
    0 0 0 1px rgba(224, 139, 45, 0.12),
    0 10px 20px rgba(70, 42, 18, 0.14),
    0 22px 42px rgba(52, 30, 12, 0.2),
    0 18px 34px rgba(96, 58, 24, 0.14),
    0 0 30px rgba(56, 34, 15, 0.1);
  --jpfv3-bronze-shadow: rgba(24, 18, 12, 0.24);
  color: var(--jpfv3-ink);
  font-family: inherit;
}

.jpfv3-shell[data-mobile-tabs-open="1"] {
  position: relative;
  z-index: 2147483000;
  isolation: isolate;
}

.fusion-fullwidth.fullwidth-box.jpfv3-mobile-tabs-active,
.jpfv3-shell.jpfv3-mobile-tabs-active {
  position: relative;
  z-index: 2147483000;
  isolation: isolate;
}

.jpfv3-shell *,
.jpfv3-shell *::before,
.jpfv3-shell *::after {
  box-sizing: border-box;
}

.jpfv3-shell button,
.jpfv3-shell input,
.jpfv3-shell select,
.jpfv3-shell textarea {
  font-family: inherit;
}

.jpfv3-shell .jpf-shell__loading-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(14, 9, 6, 0.42);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, visibility 0.18s ease;
  z-index: 20;
}

.jpfv3-shell.jpf-shell--loading .jpf-shell__loading-overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.jpfv3-shell .jpf-shell__loading-panel {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
  padding: 16px 20px;
  border: 1px solid rgba(232, 108, 0, 0.26);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.98) 0%, rgba(241, 230, 216, 0.96) 100%);
  box-shadow: 0 18px 42px rgba(18, 11, 7, 0.24);
  color: #1c1c1c;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}

.jpfv3-shell .jpf-shell__loading-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(232, 108, 0, 0.18);
  border-top-color: #e86c00;
  border-radius: 50%;
  animation: jpfv3-loading-spin 0.8s linear infinite;
}

@keyframes jpfv3-loading-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.jpf-cart-busy-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.12s ease, visibility 0.12s ease;
  z-index: 2147483647;
}

.jpf-cart-busy-overlay.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.jpf-cart-busy-overlay__panel {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 116px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 143, 34, 0.34);
  border-radius: 999px;
  background: rgba(23, 17, 12, 0.88);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
  color: #fff6ed;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1;
}

.jpf-cart-busy-overlay__spinner {
  width: 17px;
  height: 17px;
  border: 2px solid rgba(255, 143, 34, 0.2);
  border-top-color: #ff8f22;
  border-radius: 50%;
  animation: jpfv3-loading-spin 0.68s linear infinite;
}

.jpfv3-shell .jpf-shell__topbar {
  margin: 0 0 0.8rem;
}

.jpfv3-shell .jpf-shell__title {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.2;
  color: var(--jpfv3-ink);
}

.jpfv3-shell .fj-selection-inline {
  margin: 0 0 0.55rem;
}

.jpfv3-shell .fj-selection-segment {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0 0.35rem 0.35rem 0;
  padding: 0.34rem 0.58rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--jpfv3-muted);
  font-size: 0.9rem;
}

.jpfv3-shell .fj-selection-segment--primary {
  color: var(--jpfv3-ink);
}

.jpfv3-shell .fj-selection-label {
  font-weight: 700;
  color: var(--jpfv3-accent-strong);
}

.jpfv3-shell .fj-selection-value {
  font-weight: 650;
}

.jpfv3-shell .fj-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0.75rem 0 1rem;
}

.jpfv3-shell .fj-btn,
body.single-product button.single_add_to_cart_button.button.alt {
  min-height: 40px;
  padding: 0.62rem 0.95rem;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(180deg, #ff9a28 0%, #e86c00 55%, #8c3a00 100%);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

body.single-product button.single_add_to_cart_button.button.alt:hover,
body.single-product button.single_add_to_cart_button.button.alt:focus-visible,
.jpfv3-shell .fj-btn:hover,
.jpfv3-shell .fj-btn:focus-visible {
  background: linear-gradient(180deg, #ffab43 0%, #e47600 55%, #9c4300 100%);
  color: #fff;
}

.jpfv3-shell .fj-btn[hidden] {
  display: none;
}

.jpfv3-shell .jpf-shell__stage[hidden],
.jpfv3-shell .jpf-shell__results-stage[hidden],
.jpfv3-shell [hidden] {
  display: none !important;
}

.jpfv3-shell .fj-step-title {
  margin: 0 0 0.8rem;
  color: var(--jpfv3-ink);
  font-size: 1.2rem;
  line-height: 1.25;
}

.jpfv3-shell .fitment-scroll {
  display: grid;
  gap: 0.35rem;
  max-height: min(520px, 70vh);
  overflow: auto;
  padding-right: 0.2rem;
}

.jpfv3-shell .fj-item-divider {
  display: block;
}

.jpfv3-shell .fj-link {
  display: block;
  width: 100%;
  padding: 0.78rem 0.9rem;
  border-radius: 8px;
  background: linear-gradient(180deg, #fffdf9 0%, #f8f4ee 36%, #ebe2d8 100%);
  color: var(--jpfv3-paper-ink);
  text-decoration: none;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 6px 16px rgba(24, 18, 12, 0.16);
}

.jpfv3-shell .fj-link:hover,
.jpfv3-shell .fj-link:focus-visible,
.jpfv3-shell .fj-link.fj-selected {
  outline: none;
  color: #d35400;
  transform: translateY(-1px);
}

.jpfv3-shell .jpf-shell__list-empty,
.jpfv3-shell .jpf-shell__empty {
  padding: 1rem;
  border-radius: 8px;
  background: linear-gradient(180deg, #fffdf9 0%, #f8f4ee 36%, #ebe2d8 100%);
  color: var(--jpfv3-paper-ink);
}

.jpfv3-shell .jpf-shell__question-head,
.jpfv3-shell .jpf-shell__result-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.8rem;
  margin: 0 0 0.9rem;
}

.jpfv3-shell .jpf-shell__card-tag {
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
  margin: 0;
  padding: 0.34rem 0.56rem;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 246, 233, 0.98) 0%, rgba(236, 198, 157, 0.88) 100%);
  color: var(--jpfv3-accent);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.jpfv3-shell .jpf-shell__tab-guard-title {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  column-gap: 0.38rem;
  row-gap: 0.08rem;
  max-width: 100%;
  background: linear-gradient(180deg, #fffefb 0%, #f6f1ea 50%, #eae2d8 100%);
  border: 1px solid rgba(67, 69, 73, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 6px 16px rgba(24, 18, 12, 0.16);
  text-transform: none;
  font-size: 1.44rem;
  line-height: 1.14;
}

.jpfv3-shell .jpf-shell__tab-guard-prefix {
  color: #d35400;
  flex: 0 0 auto;
  white-space: nowrap;
}

.jpfv3-shell .jpf-shell__tab-guard-question {
  color: var(--jpfv3-paper-ink);
  min-width: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.jpfv3-shell .jpf-shell__choice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 0.8rem;
}

.jpfv3-shell .jpf-shell__choice-card {
  display: flex;
  min-height: 96px;
  width: 100%;
  max-width: 460px;
  padding: 0.9rem;
  position: relative;
  border: 1px solid rgba(67, 69, 73, 0.16);
  border-radius: 8px;
  background: linear-gradient(180deg, #fffdf9 0%, #f6f1ea 42%, #eae2d8 100%);
  color: var(--jpfv3-paper-ink);
  text-align: left;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(24, 18, 12, 0.18);
  justify-self: center;
}

.jpfv3-shell .jpf-shell__choice-card:hover,
.jpfv3-shell .jpf-shell__choice-card:focus-visible {
  outline: none;
  border-color: rgba(232, 108, 0, 0.55);
  transform: translateY(-1px);
}

.jpfv3-shell .jpf-shell__choice-card:hover .jpf-shell__card-tag,
.jpfv3-shell .jpf-shell__choice-card:focus-visible .jpf-shell__card-tag,
.jpfv3-shell .jpf-shell__choice-card:hover .jpf-shell__choice-title,
.jpfv3-shell .jpf-shell__choice-card:focus-visible .jpf-shell__choice-title {
  color: #d35400;
}

.jpfv3-shell .jpf-shell__choice-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 1.4rem;
  padding-top: 2.9rem;
  width: 100%;
}

.jpfv3-shell .jpf-shell__choice-grid--mixed-media .jpf-shell__choice-card--no-image {
  align-items: center;
  justify-content: center;
}

.jpfv3-shell .jpf-shell__choice-grid--mixed-media .jpf-shell__choice-card--no-image .jpf-shell__choice-body {
  align-items: center;
  justify-content: center;
  gap: 0;
  height: 100%;
  min-height: 100%;
  padding-top: 0;
}

.jpfv3-shell .jpf-shell__choice-card .jpf-shell__card-tag {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  z-index: 1;
  width: auto;
  max-width: calc(100% - 1.8rem);
  padding: 0.42rem 0.7rem;
  border: 1px solid rgba(67, 69, 73, 0.16);
  border-radius: 8px;
  background: linear-gradient(180deg, #fffdf9 0%, #f8f4ee 36%, #ebe2d8 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 6px 16px rgba(24, 18, 12, 0.16);
  color: #d35400;
}

.jpfv3-shell .jpf-shell__choice-media {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.55);
}

.jpfv3-shell .jpf-shell__choice-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.jpfv3-shell .jpf-shell__choice-title {
  color: var(--jpfv3-paper-ink);
  font-size: 1.43rem;
  line-height: 1.25;
  margin-top: auto;
  text-align: center;
}

.jpfv3-shell .jpf-shell__choice-grid--mixed-media .jpf-shell__choice-card--no-image .jpf-shell__choice-title {
  font-size: 1.859rem;
  margin-top: 0;
  width: 100%;
}

.jpfv3-shell .jpf-shell__choice-copy,
.jpfv3-shell .jpf-shell__card-copy,
.jpfv3-shell .jpf-shell__result-panel-copy {
  color: var(--jpfv3-paper-muted);
  font-size: 0.92rem;
  line-height: 1.4;
}

.jpfv3-shell .jpf-shell__results-layout {
  display: grid;
  grid-template-columns: minmax(162px, 234px) minmax(0, 1fr);
  gap: 1rem;
}

.jpfv3-shell .jpf-shell__results-mobile-controls,
.jpfv3-shell .jpf-shell__mobile-tabs-head,
.jpfv3-shell .jpf-shell__mobile-tabs-backdrop {
  display: none;
}

.jpfv3-shell .jpf-shell__mobile-tabs-toggle {
  appearance: none;
  align-items: center;
  display: inline-flex;
  flex-direction: column;
  gap: 0.08rem;
  min-width: 0;
  padding: 0.38rem 1.35rem 0.58rem;
  border: 1px solid rgba(255, 176, 96, 0.3);
  border-radius: 18px 18px 0 0;
  background:
    linear-gradient(145deg, rgba(255, 165, 53, 0.98) 0%, rgba(214, 103, 0, 0.98) 60%, rgba(124, 52, 0, 0.98) 100%);
  box-shadow: 0 14px 28px rgba(24, 18, 12, 0.28);
  color: #fff6ec;
  cursor: pointer;
  line-height: 1.05;
  text-align: center;
}

.jpfv3-shell .jpf-shell__mobile-tabs-toggle-current {
  display: block;
  font-size: 1.13rem;
  font-weight: 800;
  line-height: 1.1;
}

.jpfv3-shell .jpf-shell__mobile-tabs-toggle-hint {
  display: inline-flex;
  align-items: center;
  gap: 0.26rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.1;
  color: #000;
  opacity: 1;
}

.jpfv3-shell .jpf-shell__mobile-tabs-toggle-hint::before,
.jpfv3-shell .jpf-shell__mobile-tabs-toggle-hint::after {
  content: "↑";
  display: inline-block;
  font-size: 0.86em;
  font-weight: 900;
  line-height: 1;
}

.jpfv3-shell .jpf-shell__mobile-tabs-heading {
  display: grid;
  gap: 0.14rem;
}

.jpfv3-shell .jpf-shell__mobile-tabs-kicker {
  color: rgba(22, 22, 22, 0.58);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.jpfv3-shell .jpf-shell__mobile-tabs-title {
  color: #161616;
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.jpfv3-shell .jpf-shell__mobile-tabs-dismiss {
  appearance: none;
  padding: 0.42rem 0.82rem;
  border: 1px solid rgba(102, 59, 19, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: #8c3a00;
  cursor: pointer;
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.jpfv3-shell .jpf-shell__result-tabs {
  display: grid;
  gap: 0.55rem;
}

.jpfv3-shell .jpf-shell__result-tab {
  width: 100%;
  min-height: 46px;
  padding: 0.68rem 0.85rem;
  border: 1px solid rgba(102, 59, 19, 0.22);
  border-radius: 8px;
  background: linear-gradient(180deg, #fffdf9 0%, #f8f4ee 36%, #ebe2d8 100%);
  color: var(--jpfv3-paper-ink);
  text-align: left;
  font-weight: 750;
  cursor: pointer;
}

.jpfv3-shell .jpf-shell__result-tab--active,
.jpfv3-shell .jpf-shell__result-tab:hover,
.jpfv3-shell .jpf-shell__result-tab:focus-visible {
  outline: none;
  color: var(--jpfv3-accent);
  box-shadow: inset 4px 0 0 var(--jpfv3-accent), 0 10px 22px rgba(24, 18, 12, 0.16);
}

.jpfv3-shell .jpf-shell__result-panel {
  padding: 1rem;
  border: 1px solid rgba(102, 59, 19, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.35);
}

.jpfv3-shell .jpf-shell__result-panel-title {
  margin: 0;
  color: var(--jpfv3-paper-ink);
  font-size: 1.1rem;
  line-height: 1.25;
}

.jpfv3-shell .jpf-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.jpfv3-shell .jpf-product-card {
  overflow: hidden;
  border: 1px solid rgba(102, 59, 19, 0.2);
  border-radius: 8px;
  background: #fff;
  color: var(--jpfv3-paper-ink);
  box-shadow: 0 12px 26px rgba(24, 18, 12, 0.14);
}

.jpfv3-shell .jpf-product-card__media {
  display: grid;
  place-items: center;
  min-height: 190px;
  padding: 0.8rem;
  background: #fff;
}

.jpfv3-shell .jpf-product-card__image {
  display: block;
  max-width: 100%;
  max-height: 220px;
  object-fit: contain;
}

.jpfv3-shell .jpf-product-card__placeholder {
  color: var(--jpfv3-paper-muted);
  font-weight: 700;
}

.jpfv3-shell .jpf-product-card__body {
  display: grid;
  gap: 0.55rem;
  padding: 0.9rem;
}

.jpfv3-shell .jpf-product-card__sku {
  color: var(--jpfv3-accent);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.jpfv3-shell .jpf-product-card__title {
  margin: 0;
  font-size: 1rem;
  line-height: 1.25;
}

.jpfv3-shell .jpf-product-card__title a {
  color: var(--jpfv3-paper-ink);
  text-decoration: none;
}

.jpfv3-shell .jpf-product-card__price {
  font-weight: 800;
}

/* Bloc visuel V2: surfaces bronze, cartes metal et actions orange. */
.jpfv3-shell .jpf-shell__workflow-shell {
  position: relative;
  overflow: hidden;
  background: #9b6036;
  border: 0;
  border-radius: 18px;
  box-shadow:
    0 12px 24px rgba(30, 18, 10, 0.16),
    0 24px 44px rgba(30, 18, 10, 0.22);
  isolation: isolate;
  padding: 1rem 0.5rem;
}

.jpfv3-shell .jpf-shell__search-slot {
  display: flex;
  justify-content: center;
  width: min(100%, 560px);
  max-width: 100%;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}

.jpfv3-shell .jpf-shell__workflow-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.52) 0%, rgba(0, 0, 0, 0.24) 12%, rgba(0, 0, 0, 0) 24%) top / 100% 96px no-repeat,
    linear-gradient(0deg, rgba(0, 0, 0, 0.56) 0%, rgba(0, 0, 0, 0.26) 14%, rgba(0, 0, 0, 0) 28%) bottom / 100% 112px no-repeat,
    linear-gradient(90deg, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.18) 12%, rgba(0, 0, 0, 0) 24%) left / 88px 100% no-repeat,
    linear-gradient(270deg, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.18) 12%, rgba(0, 0, 0, 0) 24%) right / 88px 100% no-repeat,
    radial-gradient(circle at top left, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.18) 34%, rgba(0, 0, 0, 0) 64%) top left / 120px 120px no-repeat,
    radial-gradient(circle at top right, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.18) 34%, rgba(0, 0, 0, 0) 64%) top right / 120px 120px no-repeat,
    radial-gradient(circle at bottom left, rgba(0, 0, 0, 0.46) 0%, rgba(0, 0, 0, 0.2) 36%, rgba(0, 0, 0, 0) 66%) bottom left / 140px 140px no-repeat,
    radial-gradient(circle at bottom right, rgba(0, 0, 0, 0.46) 0%, rgba(0, 0, 0, 0.2) 36%, rgba(0, 0, 0, 0) 66%) bottom right / 140px 140px no-repeat;
}

.jpfv3-shell .fj-selection-inline {
  margin: 0 0 12px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  column-gap: 0.55rem;
  row-gap: 0.16rem;
  padding: 9px 18px;
  border: 1px solid var(--jpfv3-result-metal-border);
  border-radius: 14px;
  background: var(--jpfv3-result-metal-surface);
  box-shadow: var(--jpfv3-result-metal-shadow);
  color: var(--jpfv3-paper-ink);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.35;
  position: relative;
  scroll-margin-top: 140px;
  text-transform: uppercase;
}

.jpfv3-shell .fj-selection-inline .fj-selection-segment {
  display: inline-flex;
  align-items: baseline;
  gap: 0.3rem;
  min-width: 0;
  max-width: 100%;
}

.jpfv3-shell .fj-selection-inline .fj-selection-segment,
.jpfv3-shell .fj-selection-inline .fj-selection-label,
.jpfv3-shell .fj-selection-inline .fj-selection-value {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--jpfv3-paper-ink);
  font-size: inherit;
}

.jpfv3-shell .fj-selection-inline .fj-selection-label {
  flex: 0 0 auto;
  font-size: 0.72em;
  white-space: nowrap;
}

.jpfv3-shell .fj-selection-inline .fj-selection-value {
  min-width: 0;
}

.jpfv3-shell .fj-selection-inline .fj-selection-value,
.jpfv3-shell .fj-selection-trail .fj-selection-segment {
  color: #d35400;
}

.jpfv3-shell .fj-sep-inline {
  color: rgba(22, 22, 22, 0.72);
  opacity: 1;
}

.jpfv3-shell .fj-selection-trail {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -2px 0 14px;
}

@media (max-width: 900px) {
  .jpfv3-shell .fj-selection-inline .fj-selection-segment {
    display: flex;
    flex-wrap: wrap;
    row-gap: 0.08rem;
  }

  .jpfv3-shell .fj-selection-inline .fj-selection-value {
    flex: 1 1 100%;
    font-size: 0.79em;
    line-height: 1.14;
  }
}

.jpfv3-shell .fj-actions {
  gap: 10px;
  margin: 0 0 12px;
}

/* Bloc browse YMM: reprend le shell liste/scroll du V2. */
.jpfv3-shell .fitment-scroll {
  gap: 0;
  max-height: 420px;
  overflow-x: hidden;
  overflow-y: auto;
  border-radius: 14px;
  padding: 6px 4px;
  padding-right: 4px;
  background: linear-gradient(180deg, var(--jpfv3-metal-highlight) 0%, #f8f4ee 34%, var(--jpfv3-metal-sheen) 72%, var(--jpfv3-metal-shadow) 100%);
  border: 1px solid var(--jpfv3-metal-border);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92), inset 0 -14px 18px rgba(114, 114, 114, 0.05), 0 14px 24px rgba(22, 22, 22, 0.08);
}

/* Bloc browse YMM: titre d'etape plus massif comme dans le V2. */
.jpfv3-shell .fj-step-title {
  margin: 0 0 0.95rem;
  color: #fff7ec;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.15;
  text-transform: none;
}

.jpfv3-shell .fitment-scroll::-webkit-scrollbar {
  width: 6px;
}

.jpfv3-shell .fitment-scroll::-webkit-scrollbar-track {
  background: transparent;
}

.jpfv3-shell .fitment-scroll::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(200, 108, 0, 0.82) 0%, rgba(114, 114, 114, 0.82) 100%);
  border-radius: 10px;
}

.jpfv3-shell .fitment-scroll > div {
  overflow: hidden;
  border-radius: 12px;
  transition: background 0.15s ease, transform 0.12s ease;
}

.jpfv3-shell .fitment-scroll > div:hover {
  background: linear-gradient(90deg, rgba(232, 145, 69, 0.12) 0%, rgba(255, 255, 255, 0) 78%);
}

.jpfv3-shell .fj-item-divider--with-border {
  border-bottom: 0;
  box-shadow: inset 0 -1px 0 rgba(67, 69, 73, 0.12);
}

.jpfv3-shell .fitment-scroll > div:last-child {
  box-shadow: none;
}

/* Bloc browse YMM: lignes de liste longues, propres et plus proches du V2. */
.jpfv3-shell .fj-link {
  display: block;
  width: 100%;
  padding: 0.92rem 1rem;
  border-radius: 12px;
  background: transparent;
  color: #25272d;
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.12;
  position: relative;
  text-decoration: none;
}

.jpfv3-shell .fj-link:visited {
  color: #25272d;
}

.jpfv3-shell .fj-link:hover,
.jpfv3-shell .fj-link:focus-visible {
  color: #d35400;
  outline: none;
  transform: none;
}

.jpfv3-shell .fj-link.fj-selected {
  background: rgba(232, 108, 0, 0.1);
  color: #25272d;
  outline: 2px solid rgba(232, 108, 0, 0.3);
}

.jpfv3-shell .fj-link.fj-selected::after {
  content: "\2713";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 900;
  color: #d35400;
}

.jpfv3-shell .jpf-shell__question-shell {
  background: var(--jpfv3-result-metal-surface);
  border: 1px solid var(--jpfv3-result-metal-border);
  border-radius: 12px;
  box-shadow: var(--jpfv3-result-metal-shadow);
  color: var(--jpfv3-paper-ink);
  padding: 1rem 0.5rem;
}

.jpfv3-shell .jpf-shell__results-shell {
  background: linear-gradient(180deg, #fffefb 0%, #f6f1ea 50%, #eae2d8 100%);
  border: 1px solid rgba(102, 59, 19, 0.22);
  border-radius: 12px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 16px 34px rgba(24, 18, 12, 0.2);
  color: var(--jpfv3-paper-ink);
  padding: 1rem 0.5rem;
}

.jpfv3-shell .jpfv3-local-question {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

.jpfv3-shell .jpf-shell__result-panel {
  background: var(--jpfv3-result-metal-surface);
  border: 1px solid var(--jpfv3-result-metal-border);
  border-radius: 12px;
  box-shadow: var(--jpfv3-result-metal-shadow);
  padding-inline: 0.5rem;
}

.jpfv3-shell .jpf-shell__card-tag:not(.jpf-shell__tab-guard-title) {
  background: linear-gradient(180deg, rgba(255, 246, 233, 0.98) 0%, rgba(236, 198, 157, 0.88) 100%);
  border-radius: 9px;
  color: #d35400;
}

.jpfv3-shell .jpf-shell__choice-grid {
  gap: 0.9rem;
}

.jpfv3-shell .jpf-shell__result-tabs {
  --jpfv3-result-tab-font-size: 1.28rem;
  display: grid;
  gap: 0.45rem;
}

.jpfv3-shell .jpf-shell__result-tab {
  appearance: none;
  align-items: flex-start;
  min-height: 53px;
  border: 1px solid var(--jpfv3-result-metal-border);
  border-radius: 14px;
  background: var(--jpfv3-result-metal-surface);
  box-shadow: var(--jpfv3-result-metal-shadow);
  color: var(--jpfv3-paper-ink);
  display: flex;
  flex-direction: column;
  font-size: var(--jpfv3-result-tab-font-size);
  font-weight: 700;
  justify-content: flex-start;
  gap: 0.08rem;
  line-height: 1.12;
  overflow: hidden;
  padding: 0.73rem 0.82rem;
  position: relative;
  text-align: left;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.34);
  transition: border-color 140ms ease, box-shadow 140ms ease, color 140ms ease, transform 140ms ease;
}

/* Libelle d'onglet: garde le texte compile intact, mais permet de colorer la position separement. */
.jpfv3-shell .jpf-shell__result-tab-piece,
.jpfv3-shell .jpf-shell__result-tab-position,
.jpfv3-shell .jpf-shell__result-tab-text {
  display: block;
}

.jpfv3-shell .jpf-shell__result-tab-piece + .jpf-shell__result-tab-position {
  margin-inline-start: 0;
  margin-top: 0.02rem;
}

.jpfv3-shell .jpf-shell__result-tab-position {
  color: #d35400;
  font-size: 0.86em;
  font-weight: 800;
  line-height: 1.05;
}

.jpfv3-shell .jpf-shell__result-tab::before {
  content: "";
  position: absolute;
  inset: 8px auto 8px 8px;
  width: 7px;
  border-radius: 999px;
  background: linear-gradient(180deg, #eda55f 0%, #c86c00 100%);
  opacity: 0;
  transform: scaleY(0.82);
  transition: opacity 140ms ease, transform 140ms ease;
}

.jpfv3-shell .jpf-shell__result-tab--active,
.jpfv3-shell .jpf-shell__result-tab:hover,
.jpfv3-shell .jpf-shell__result-tab:focus-visible {
  border-color: rgba(210, 104, 0, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), inset 0 -22px 28px rgba(124, 56, 0, 0.24), inset 18px 0 24px rgba(124, 56, 0, 0.16), inset -18px 0 24px rgba(124, 56, 0, 0.16), 0 14px 24px rgba(24, 18, 12, 0.18), 0 16px 32px rgba(210, 104, 0, 0.24);
  color: #e86c00;
  outline: none;
  transform: translateY(-1px);
}

.jpfv3-shell .jpf-shell__result-tab--active {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.66), inset 4px 0 0 #d35400, inset -4px 0 0 #d35400, inset 0 -22px 28px rgba(124, 56, 0, 0.22), inset 18px 0 24px rgba(124, 56, 0, 0.14), inset -18px 0 24px rgba(124, 56, 0, 0.14), 0 14px 24px rgba(24, 18, 12, 0.18), 0 16px 32px rgba(210, 104, 0, 0.24);
  color: #d35400;
  text-shadow: none;
}

.jpfv3-shell .jpf-shell__result-tab--active::before {
  opacity: 0;
  transform: scaleY(0.82);
}

.jpfv3-shell .jpf-shell__results-shell .jpf-shell__result-panel-title {
  color: #161616;
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1.05;
  margin: 0;
  text-transform: uppercase;
}

/* Titre panneau: meme separation visuelle que l'onglet, avec fallback sur le libelle complet. */
.jpfv3-shell .jpf-shell__result-panel-title-piece,
.jpfv3-shell .jpf-shell__result-panel-title-position,
.jpfv3-shell .jpf-shell__result-panel-title-text {
  display: inline;
}

.jpfv3-shell .jpf-shell__result-panel-title-piece + .jpf-shell__result-panel-title-position {
  margin-inline-start: 0.32rem;
}

.jpfv3-shell .jpf-shell__result-panel-title-position {
  color: #d35400;
}

/* Question locale: harmonise la typo des bulles avec le bandeau Petit check. */
@media (max-width: 900px) {
  .jpfv3-shell .jpf-shell__tab-guard-title {
    column-gap: 0.3rem;
    font-size: 1.3rem;
  }

  .jpfv3-shell .jpf-shell__tab-guard-question {
    flex: 1 1 100%;
    font-size: 0.88em;
    line-height: 1.12;
  }
}

/* Question locale: grossit legerement le texte de reponse pour le rapprocher du V2. */
.jpfv3-shell .jpfv3-local-question .jpf-shell__choice-title {
  font-size: 1.23rem;
  font-weight: 800;
  line-height: 1.2;
}

.jpfv3-shell .jpfv3-local-question .jpf-shell__choice-grid--mixed-media .jpf-shell__choice-card--no-image .jpf-shell__choice-title {
  font-size: 1.599rem;
}

.jpfv3-shell .jpf-product-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.jpfv3-shell .jpf-product-card {
  --jpfv3-product-card-max-width: 408px;
  --jpfv3-product-media-height: clamp(192px, 24vw, 264px);
  display: grid;
  inline-size: min(100%, var(--jpfv3-product-card-max-width));
  justify-self: center;
  overflow: hidden;
  border: 1px solid rgba(67, 69, 73, 0.16);
  border-radius: 18px;
  background: linear-gradient(180deg, #fffefb 0%, #f3ece3 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92), 0 18px 28px rgba(22, 22, 22, 0.08);
  color: var(--jpfv3-paper-ink);
}

.jpfv3-shell .jpf-product-card__media {
  align-items: center;
  min-height: var(--jpfv3-product-media-height);
  padding: 1rem;
  background: #ffffff;
  box-shadow: inset 0 -1px 0 rgba(67, 69, 73, 0.08);
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.jpfv3-shell .jpf-product-card__image {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: var(--jpfv3-product-media-height);
  object-fit: contain;
}

.jpfv3-shell .jpf-product-card__body {
  position: relative;
  display: grid;
  align-content: stretch;
  grid-template-rows: auto 1fr auto auto auto;
  gap: 0.75rem;
  padding: 1rem;
  border-top: 1px solid rgba(255, 149, 43, 0.32);
  background:
    linear-gradient(138deg, rgba(255, 255, 255, 0.2) 4%, rgba(210, 210, 210, 0.1) 18%, rgba(255, 255, 255, 0) 38%),
    radial-gradient(ellipse 190% 120% at 18% 8%, rgba(255, 255, 255, 0.24) 0%, rgba(197, 197, 197, 0.16) 18%, rgba(255, 181, 105, 0.08) 34%, rgba(255, 255, 255, 0) 64%),
    linear-gradient(180deg, rgba(232, 108, 0, 0.12) 0%, rgba(232, 108, 0, 0.05) 12%, rgba(0, 0, 0, 0) 24%),
    linear-gradient(145deg, #474747 0%, #262626 42%, #0f0f0f 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), inset 18px 18px 26px rgba(255, 255, 255, 0.04), inset -22px -24px 30px rgba(0, 0, 0, 0.3), inset 0 -1px 0 rgba(255, 149, 43, 0.1);
}

.jpfv3-shell .jpf-product-card__sku {
  grid-row: 1;
  display: block;
  margin: 0;
  font-size: 1.248rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  color: #ff8f22;
}

.jpfv3-shell .jpf-product-card__position {
  position: absolute;
  top: 1rem;
  right: 1rem;
  max-width: 48%;
  margin: 0;
  color: #ff8f22;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-align: right;
  text-transform: uppercase;
}

.jpfv3-shell .jpf-product-card__title {
  grid-row: 2;
  margin: 0;
  font-size: 1.77rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.02;
  color: #fffefb;
}

.jpfv3-shell .jpf-product-card__brand {
  grid-row: 3;
  margin: -0.2rem 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.15;
  text-transform: uppercase;
}

.jpfv3-shell .jpf-product-card__details {
  grid-row: 4;
  display: grid;
  gap: 0.2rem;
  margin-top: -0.15rem;
}

.jpfv3-shell .jpf-product-card__detail {
  color: #ff8f22;
  font-size: 1.012rem;
  font-weight: 700;
  line-height: 1.25;
}

.jpfv3-shell .jpf-product-card__meta {
  grid-row: 5;
}

.jpfv3-shell .jpf-product-card__purchase {
  grid-row: 6;
}

.jpfv3-shell .jpf-product-card__actions {
  grid-row: 7;
}

.jpfv3-shell .jpf-product-card__title a {
  color: #fffefb;
  display: block;
  font-size: 1.77rem !important;
  font-weight: 800 !important;
  line-height: 1.02 !important;
  text-decoration: none;
}

.jpfv3-shell .jpf-product-card__title a:hover,
.jpfv3-shell .jpf-product-card__title a:focus-visible {
  color: #fffefb;
}

.jpfv3-shell .jpf-product-card__meta,
.jpfv3-shell .jpf-product-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.jpfv3-shell .jpf-product-card__meta {
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.jpfv3-shell .jpf-product-card__stock,
.jpfv3-standalone-cart-feedback .jpf-product-card__stock {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-size: 0.99rem;
  font-weight: 700;
  line-height: 1;
  padding: 0.65rem 0.94rem;
}

.jpfv3-shell .jpf-product-card__delivery,
.jpfv3-standalone-cart-feedback .jpf-product-card__delivery {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  align-self: center;
  justify-content: center;
  margin-left: auto;
  padding-right: 5px;
  color: #fffefb;
  font-size: 0.93rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: right;
}

.jpfv3-shell .jpf-product-card__delivery-line,
.jpfv3-standalone-cart-feedback .jpf-product-card__delivery-line {
  display: block;
  white-space: nowrap;
}

.jpfv3-shell .jpf-product-card__delivery-line--sub,
.jpfv3-standalone-cart-feedback .jpf-product-card__delivery-line--sub {
  margin-top: 0.08rem;
  align-self: center;
}

.jpfv3-shell .jpf-product-card__stock.is-instock,
.jpfv3-standalone-cart-feedback .jpf-product-card__stock.is-instock {
  background: rgba(25, 164, 112, 0.16);
  color: #9bf0cb;
}

.jpfv3-shell .jpf-product-card__stock.is-outofstock,
.jpfv3-standalone-cart-feedback .jpf-product-card__stock.is-outofstock {
  background: rgba(220, 38, 38, 0.26);
  color: #ffb4b4;
}

.jpfv3-shell .jpf-product-card__purchase {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  justify-content: space-between;
}

.jpfv3-shell .jpf-product-card__price {
  color: #ff8f22;
  flex: 1 1 auto;
  font-size: 1.5rem;
  font-weight: 700;
}

.jpfv3-shell .jpf-product-card__price .woocommerce-Price-amount,
.jpfv3-shell .jpf-product-card__price .woocommerce-Price-amount bdi,
.jpfv3-shell .jpf-product-card__price > span {
  color: inherit;
}

.jpfv3-shell .jpf-product-card__price del {
  color: rgba(255, 238, 220, 0.72);
  font-size: 0.7em;
  opacity: 0.8;
}

.jpfv3-shell .jpf-product-card__price ins {
  color: #ff8f22;
  text-decoration: none;
}

.jpfv3-shell .jpf-product-card__quantity,
.jpfv3-standalone-cart-feedback .jpf-product-card__quantity {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
  gap: 0.25rem;
  margin: 0;
  padding: 0.04rem 0.16rem;
  border: 1px solid rgba(223, 145, 42, 0.34);
  border-radius: 16px;
  overflow: visible;
  background: transparent;
  box-shadow: none;
}

.jpfv3-shell .jpf-product-card__quantity-stack,
.jpfv3-standalone-cart-feedback .jpf-product-card__quantity-stack {
  align-items: flex-end;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 0.28rem;
}

.jpfv3-shell .jpf-product-card__qty-button,
.jpfv3-standalone-cart-feedback .jpf-product-card__qty-button {
  appearance: none;
  align-items: center;
  display: inline-flex !important;
  width: 1.4rem;
  min-width: 1.4rem;
  height: 1.72rem;
  min-height: 1.72rem;
  flex: 0 0 1.4rem;
  justify-content: center;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: linear-gradient(180deg, #ff9a1f 0%, #d96a00 100%) !important;
  box-shadow: 0 10px 20px rgba(217, 106, 0, 0.22) !important;
  color: #f8efe5 !important;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
  transition: background-color 160ms ease, color 160ms ease, opacity 160ms ease;
}

.jpfv3-shell .jpf-product-card__qty-button:hover,
.jpfv3-shell .jpf-product-card__qty-button:focus-visible,
.jpfv3-standalone-cart-feedback .jpf-product-card__qty-button:hover,
.jpfv3-standalone-cart-feedback .jpf-product-card__qty-button:focus-visible {
  background: linear-gradient(180deg, #ffab43 0%, #e47600 100%) !important;
  color: #ffffff !important;
}

.jpfv3-shell .jpf-product-card__qty-button:disabled,
.jpfv3-standalone-cart-feedback .jpf-product-card__qty-button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.jpfv3-shell .jpf-product-card__qty-input,
.jpfv3-standalone-cart-feedback .jpf-product-card__qty-input {
  appearance: textfield;
  -moz-appearance: textfield;
  width: 2.8rem;
  min-width: 2.8rem;
  max-width: 2.8rem;
  min-height: 1.72rem;
  flex: 0 0 2.8rem;
  margin: 0;
  padding: 0.15rem 0.2rem !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #fff8ef !important;
  font-size: 1rem;
  font-weight: 800;
  text-align: center;
}

.jpfv3-shell .jpf-product-card__qty-input:focus,
.jpfv3-standalone-cart-feedback .jpf-product-card__qty-input:focus {
  outline: none;
}

.jpfv3-shell .jpf-product-card__qty-input::-webkit-inner-spin-button,
.jpfv3-shell .jpf-product-card__qty-input::-webkit-outer-spin-button,
.jpfv3-standalone-cart-feedback .jpf-product-card__qty-input::-webkit-inner-spin-button,
.jpfv3-standalone-cart-feedback .jpf-product-card__qty-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.jpfv3-shell .jpf-product-card__qty-limit,
.jpfv3-standalone-cart-feedback .jpf-product-card__qty-limit {
  color: #ffd4a8;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.1;
  text-align: right;
}

.jpfv3-shell .jpf-product-card__button.is-disabled,
.jpfv3-standalone-cart-feedback .jpf-product-card__button.is-disabled,
.jpfv3-shell .jpf-product-card__button[aria-disabled="true"],
.jpfv3-standalone-cart-feedback .jpf-product-card__button[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.68;
  pointer-events: none;
}

.jpfv3-shell .jpf-product-card__button.loading,
.jpfv3-standalone-cart-feedback .jpf-product-card__button.loading {
  cursor: default;
}

.jpfv3-shell .jpf-product-card__cart-feedback {
  display: grid;
  flex: 1 1 100%;
  gap: 0.55rem;
  margin-top: 0.1rem;
  padding: 0.72rem 0.82rem;
  border: 1px solid rgba(255, 176, 96, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
  color: #fff2e2;
}

.jpfv3-shell .jpf-product-card__cart-feedback,
.jpf-simple-quick-view__fitment .jpf-product-card__cart-feedback,
.jpfv3-standalone-cart-feedback {
  transform-origin: center top;
  will-change: opacity, transform;
}

.jpfv3-shell .jpf-product-card__cart-feedback.is-closing,
.jpf-simple-quick-view__fitment .jpf-product-card__cart-feedback.is-closing,
.jpfv3-standalone-cart-feedback.is-closing {
  opacity: 0;
  transform: translateY(-6px) scale(0.985);
  transition: opacity 160ms ease, transform 160ms ease;
  pointer-events: none;
}

.jpfv3-shell .jpf-product-card__cart-feedback[data-jpf-feedback-enter="1"],
.jpf-simple-quick-view__fitment .jpf-product-card__cart-feedback[data-jpf-feedback-enter="1"],
.jpfv3-standalone-cart-feedback[data-jpf-feedback-enter="1"] {
  animation: jpfv3-standalone-cart-feedback-in 180ms ease;
}

.jpfv3-shell .jpf-product-card__cart-feedback-message {
  color: #ffb14e;
  font-size: 1.06rem;
  font-weight: 600;
  line-height: 1.35;
}

.jpfv3-shell .jpf-product-card__cart-feedback-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 14px;
}

.jpfv3-shell .jpf-product-card__cart-feedback-remove,
.jpfv3-shell .jpf-product-card__cart-feedback-view {
  appearance: none;
  align-items: center;
  display: inline-flex;
  justify-content: center;
  width: 100%;
  margin: 0;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid rgba(223, 145, 42, 0.28);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  color: #ffb14e;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none !important;
  white-space: nowrap;
}

.jpfv3-shell .jpf-product-card__cart-feedback-remove:hover,
.jpfv3-shell .jpf-product-card__cart-feedback-remove:focus-visible,
.jpfv3-shell .jpf-product-card__cart-feedback-view:hover,
.jpfv3-shell .jpf-product-card__cart-feedback-view:focus-visible {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  text-decoration: none;
}

.jpfv3-shell .jpf-product-card__cart-feedback-remove:disabled {
  cursor: default;
  opacity: 0.55;
  text-decoration: none;
}

.jpfv3-standalone-cart-feedback {
  display: grid;
  gap: 14px;
  margin-top: 0.1rem;
  padding: 18px 18px 16px;
  border: 1px solid rgba(67, 69, 73, 0.16);
  border-radius: 18px;
  background:
    linear-gradient(138deg, rgba(255, 255, 255, 0.2) 4%, rgba(210, 210, 210, 0.1) 18%, rgba(255, 255, 255, 0) 38%),
    radial-gradient(ellipse 190% 120% at 18% 8%, rgba(255, 255, 255, 0.24) 0%, rgba(197, 197, 197, 0.16) 18%, rgba(255, 181, 105, 0.08) 34%, rgba(255, 255, 255, 0) 64%),
    linear-gradient(180deg, rgba(232, 108, 0, 0.12) 0%, rgba(232, 108, 0, 0.05) 12%, rgba(0, 0, 0, 0) 24%),
    linear-gradient(145deg, #474747 0%, #262626 42%, #0f0f0f 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 18px 18px 26px rgba(255, 255, 255, 0.04),
    inset -22px -24px 30px rgba(0, 0, 0, 0.3),
    inset 0 -1px 0 rgba(255, 149, 43, 0.1);
  color: #fff;
  overflow: hidden;
}

.jpfv3-standalone-cart-feedback__header {
  align-items: flex-start;
  display: flex;
  gap: 5px;
  justify-content: flex-start;
}

.jpfv3-standalone-cart-feedback .jpf-product-card__quantity-stack {
  align-items: flex-end;
  margin-left: auto;
}

.jpfv3-standalone-cart-feedback .jpf-product-card__delivery {
  margin-left: 5px;
  padding-right: 0;
}

.jpfv3-standalone-cart-feedback[hidden],
.jpfv3-standalone-cart-feedback [hidden] {
  display: none !important;
}

@keyframes jpfv3-standalone-cart-feedback-in {
  from {
    opacity: 0;
    transform: translateY(-6px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.jpfv3-standalone-cart-feedback .jpf-product-card__cart-feedback {
  display: grid;
  gap: 0.55rem;
  margin-top: 2px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 176, 96, 0.14);
}

.jpfv3-standalone-cart-feedback .jpf-product-card__cart-feedback.is-closing {
  opacity: 0;
  transform: translateY(-6px) scale(0.985);
  transition: opacity 160ms ease, transform 160ms ease;
  pointer-events: none;
}

.jpfv3-standalone-cart-feedback .jpf-product-card__cart-feedback[data-jpf-feedback-enter="1"] {
  animation: jpfv3-standalone-cart-feedback-in 180ms ease;
}

.jpfv3-standalone-cart-feedback .jpf-product-card__cart-feedback-message {
  color: #ffb14e;
  font-size: 1.06rem;
  font-weight: 600;
  line-height: 1.35;
}

.jpfv3-standalone-cart-feedback .jpf-product-card__cart-feedback-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 14px;
}

.jpfv3-standalone-cart-feedback--actions-only .jpf-product-card__cart-feedback-actions {
  grid-template-columns: minmax(0, 1fr);
}

.jpfv3-standalone-cart-feedback .jpf-product-card__cart-feedback-remove,
.jpfv3-standalone-cart-feedback .jpf-product-card__cart-feedback-view {
  appearance: none;
  align-items: center;
  display: inline-flex;
  justify-content: center;
  width: 100%;
  margin: 0;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid rgba(223, 145, 42, 0.28);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  color: #ffb14e;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none !important;
  white-space: nowrap;
}

.jpfv3-standalone-cart-feedback .jpf-product-card__cart-feedback-remove:hover,
.jpfv3-standalone-cart-feedback .jpf-product-card__cart-feedback-remove:focus-visible,
.jpfv3-standalone-cart-feedback .jpf-product-card__cart-feedback-view:hover,
.jpfv3-standalone-cart-feedback .jpf-product-card__cart-feedback-view:focus-visible {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  text-decoration: none;
}

.jpfv3-standalone-cart-feedback .jpf-product-card__cart-feedback-remove:disabled {
  cursor: default;
  opacity: 0.55;
  text-decoration: none;
}

@media (max-width: 640px) {
  .jpfv3-standalone-cart-feedback__header {
    align-items: flex-end;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .jpfv3-standalone-cart-feedback .jpf-product-card__stock {
    align-self: flex-end;
    flex: 0 0 auto;
    max-width: 100%;
    font-size: 0.89rem;
    padding: 0.45rem 0.72rem;
    white-space: nowrap;
  }

  .jpfv3-standalone-cart-feedback .jpf-product-card__quantity-stack {
    margin-left: 0;
  }
}

html.jpfv3-mobile-tabs-open,
body.jpfv3-mobile-tabs-open {
  overflow: hidden;
}

@media (max-width: 780px) {
  .jpfv3-shell .jpf-shell__workflow-shell {
    padding: 0.85rem 0.425rem;
  }

  .jpfv3-shell .jpf-shell__question-shell,
  .jpfv3-shell .jpf-shell__results-shell {
    padding-inline: 0.425rem;
  }

  .jpfv3-shell .jpf-shell__results-shell {
    padding-inline: 0;
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    margin-bottom: 50px;
  }

  .jpfv3-shell .jpf-shell__result-panel {
    padding-inline: 0.425rem;
  }

  .jpfv3-shell .jpf-shell__results-mobile-controls {
    display: flex;
    justify-content: center;
    margin: 0;
    pointer-events: none;
  }

  .jpfv3-shell .jpf-shell__mobile-tabs-toggle {
    position: fixed;
    left: 50%;
    bottom: calc(env(safe-area-inset-bottom) - 0.2rem);
    transform: translate3d(-50%, 0, 0);
    will-change: auto;
    z-index: 1200;
    width: min(calc(100vw - 1.4rem), 280px);
    white-space: normal;
    pointer-events: auto;
  }

  .jpfv3-shell[data-mobile-tabs-docked="1"] .jpf-shell__results-mobile-controls {
    position: absolute;
    left: 0;
    right: 0;
    bottom: calc(env(safe-area-inset-bottom) + 0.15rem);
    z-index: 1200;
  }

  .jpfv3-shell[data-mobile-tabs-docked="1"] .jpf-shell__mobile-tabs-toggle {
    position: static;
    left: auto;
    bottom: auto;
    transform: none;
  }

  .jpfv3-shell .jpf-shell__results-layout {
    display: block;
  }

  .jpfv3-shell .jpf-shell__results-sidebar {
    position: fixed;
    inset: auto 0 0 0;
    z-index: 1202;
    max-height: calc(100dvh - max(0.55rem, env(safe-area-inset-top)));
    overflow: auto;
    overscroll-behavior: contain;
    padding: 0 0.55rem max(0.75rem, env(safe-area-inset-bottom));
    opacity: 0;
    pointer-events: none;
    transform: translateY(100%);
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .jpfv3-shell .jpf-shell__mobile-tabs-head {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
    margin: 0 0 0.55rem;
  }

  .jpfv3-shell .jpf-shell__result-tabs {
    grid-template-columns: 1fr;
    gap: 0.45rem;
    max-height: min(75dvh, 540px);
    overflow: auto;
    padding-right: 0.1rem;
  }

  .jpfv3-shell .jpf-shell__result-tab {
    min-height: 0;
  }

  .jpfv3-shell .jpf-shell__results-content {
    min-width: 0;
  }

  .jpfv3-shell .jpf-shell__mobile-tabs-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1201;
    border: 0;
    padding: 0;
    background: rgba(13, 9, 6, 0.52);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
  }

  .jpfv3-shell[data-mobile-tabs-open="1"] .jpf-shell__mobile-tabs-backdrop {
    display: block;
    opacity: 1;
    pointer-events: auto;
  }

  .jpfv3-shell[data-mobile-tabs-open="1"] .jpf-shell__mobile-tabs-toggle {
    opacity: 0.15;
    pointer-events: none;
  }

  .jpfv3-shell[data-mobile-tabs-open="1"] .jpf-shell__results-sidebar {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .jpfv3-shell[data-mobile-tabs-open="1"] .jpf-shell__result-tabs {
    box-shadow: 0 24px 44px rgba(24, 18, 12, 0.24);
  }

  .jpfv3-shell .jpf-shell__results-sidebar[data-jpfv3-mobile-tabs-sheet] .jpf-shell__result-tabs {
    border-radius: 18px;
    border: 1px solid rgba(102, 59, 19, 0.18);
    background: linear-gradient(180deg, var(--jpfv3-metal-highlight) 0%, #f8f4ee 34%, var(--jpfv3-metal-sheen) 72%, var(--jpfv3-metal-shadow) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92), 0 18px 32px rgba(22, 22, 22, 0.18);
    padding: 0.5rem;
  }

  .jpfv3-shell .jpf-shell__choice-grid {
    grid-template-columns: 1fr;
  }

  .jpfv3-shell .jpf-product-grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 980px) and (orientation: landscape) {
  .jpfv3-shell .jpf-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
