/* JIARON default theme ? page-level composition:
   home sections, shop, PDP, cart, checkout, news, static pages. */

/* ============================================================
   Section scaffolding
   ============================================================ */
.jr-section {
  padding-block: var(--jr-section-y);
}

.jr-section--tight {
  padding-block: calc(var(--jr-section-y) * 0.6);
}

.jr-section--flush-top {
  padding-top: 0;
}

.jr-section--tint {
  background: var(--jr-accent-veil);
}

.jr-section--scheme-light {
  background: var(--jr-surface-muted);
  color: var(--jr-ink);
}

.jr-section--scheme-brand {
  background: var(--jr-primary);
  color: var(--jr-on-primary);
}

.jr-section--scheme-dark {
  background: var(--jr-secondary);
  color: var(--jr-on-secondary);
}

.jr-section--scheme-brand :where(.jr-section-title, .jr-section__title, .jr-spotlight__head h2),
.jr-section--scheme-dark :where(.jr-section-title, .jr-section__title, .jr-spotlight__head h2) {
  color: inherit;
}

.jr-section--scheme-brand :where(.jr-section__subtitle, .jr-section__head p),
.jr-section--scheme-dark :where(.jr-section__subtitle, .jr-section__head p) {
  color: color-mix(in srgb, currentColor 78%, transparent);
}

.jr-section--dark {
  background: var(--jr-gray-900);
  color: var(--jr-gray-300);
}

.jr-section--dark :where(h1, h2, h3, h4, h5, h6) {
  color: var(--jr-white);
}

.jr-section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.jr-section__heading {
  min-width: 0;
}

.jr-section__head h2 {
  margin: 0;
  font-size: var(--jr-h3-size);
  line-height: var(--jr-h3-lh);
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.jr-section__sub {
  margin: 0.5rem 0 0;
  color: var(--jr-muted);
  font-size: var(--jr-text-sm);
  line-height: var(--jr-text-sm-lh);
}

.jr-section__icon {
  display: inline-flex;
  color: var(--jr-primary);
}

.jr-section__link {
  font-size: var(--jr-text-sm);
  font-weight: 600;
  text-decoration: none;
  color: var(--jr-primary);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.jr-section__link:hover {
  color: var(--jr-primary-dark);
}

/* ============================================================
   Carousel (CSS scroll-snap; carousel.js only drives arrows + dots)
   ============================================================ */
.jr-carousel {
  position: relative;
}

.jr-carousel__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 1.5rem) / 2);
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.25rem;
}

.jr-carousel__track::-webkit-scrollbar {
  display: none;
}

.jr-carousel__track > * {
  scroll-snap-align: start;
  min-width: 0;
}

@media (min-width: 640px) {
  .jr-carousel__track {
    grid-auto-columns: calc((100% - 3rem) / 3);
  }
}

@media (min-width: 1024px) {
  .jr-carousel__track {
    grid-auto-columns: calc((100% - 4.5rem) / 4);
  }
}

@media (min-width: 1536px) {
  .jr-carousel__track {
    grid-auto-columns: calc((100% - 7.5rem) / 6);
  }
}

.jr-carousel--cats .jr-carousel__track {
  grid-auto-columns: calc((100% - 1.5rem) / 3);
}

@media (min-width: 640px) {
  .jr-carousel--cats .jr-carousel__track {
    grid-auto-columns: calc((100% - 4.5rem) / 4);
  }
}

@media (min-width: 1024px) {
  .jr-carousel--cats .jr-carousel__track {
    grid-auto-columns: calc((100% - 10.5rem) / 8);
  }
}

.jr-carousel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  display: none;
}

@media (min-width: 1024px) {
  .jr-carousel__nav {
    display: inline-flex;
  }
}

.jr-carousel__nav--prev {
  left: -1.25rem;
}

.jr-carousel__nav--next {
  right: -1.25rem;
}

.jr-carousel__nav[disabled] {
  opacity: 0;
  pointer-events: none;
}

.jr-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 1.5rem;
}

.jr-carousel__dot {
  width: 0.5rem;
  height: 0.5rem;
  padding: 0;
  border: 0;
  border-radius: var(--jr-r-pill);
  background: var(--jr-gray-400);
  cursor: pointer;
  transition:
    width var(--jr-dur) var(--jr-ease),
    background var(--jr-dur) var(--jr-ease);
}

.jr-carousel__dot.is-active {
  width: 1.5rem;
  background: var(--jr-primary);
}

/* ============================================================
   Hero
   ============================================================ */
.jr-hero {
  padding-top: 0;
}

.jr-hero--bleed {
  width: 100%;
}

.jr-hero--bleed .jr-carousel {
  position: relative;
}

.jr-hero--bleed .jr-carousel__dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1.25rem;
  margin-top: 0;
  z-index: 3;
}

.jr-hero--bleed .jr-carousel__dot {
  background: rgba(255, 255, 255, 0.45);
}

.jr-hero--bleed .jr-carousel__dot.is-active {
  background: #fff;
}

.jr-hero__slides {
  display: flex;
  flex-flow: row nowrap;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  border-radius: 0;
  width: 100%;
  max-width: 100%;
}

.jr-hero__slides::-webkit-scrollbar {
  display: none;
}

.jr-hero__slide {
  scroll-snap-align: start;
  flex: 0 0 100%;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(22rem, 62vh, 40rem);
  padding: 0;
  border-radius: 0;
  background-color: var(--jr-secondary);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  color: var(--jr-white);
}

.jr-hero__content-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: clamp(2.5rem, 8vw, 4.5rem);
  padding-bottom: clamp(2.5rem, 8vw, 4.5rem);
}

@media (min-width: 768px) {
  .jr-hero__slide {
    min-height: clamp(28rem, 70vh, 44rem);
  }
}

@media (min-width: 1280px) {
  .jr-hero__content-wrap {
    padding-left: max(1.25rem, calc((100vw - var(--jr-wrap-max, 75rem)) / 2 + 1.25rem));
  }
}

.jr-hero__slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.25) 45%,
    rgba(0, 0, 0, 0.05) 100%
  );
}

.jr-hero__slide--light {
  color: var(--jr-gray-900);
}

.jr-hero__slide--light::before {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.72) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 100%
  );
}

.jr-hero__content {
  position: relative;
  z-index: 1;
  max-width: 34rem;
}

.jr-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.75rem;
  font-family: var(--jr-font-display);
  font-size: var(--jr-h6-size);
  font-weight: 600;
  color: inherit;
}

.jr-hero__title {
  margin: 0 0 0.75rem;
  color: inherit;
  font-size: var(--jr-h2-size);
  line-height: var(--jr-h2-lh);
  word-break: break-word;
}

.jr-hero__lede {
  margin: 0 0 1.75rem;
  color: inherit;
  opacity: 0.92;
  font-size: var(--jr-text-base);
  max-width: 30rem;
}

.jr-hero__nav {
  position: absolute;
  inset-inline: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 3;
}

.jr-hero__nav > * {
  pointer-events: auto;
}

@media (min-width: 1024px) {
  .jr-hero__nav {
    inset-inline: 1.5rem;
  }
}

/* ============================================================
   Trust / USP strip
   ============================================================ */
.jr-trust {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

@media (min-width: 1280px) {
  .jr-trust {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.jr-trust__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.35rem;
  padding: 1.5rem;
  border: 1px solid var(--jr-line);
  border-radius: var(--jr-r-card);
  background: var(--jr-white);
}

.jr-trust__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  margin-bottom: 0.5rem;
  border-radius: var(--jr-r-pill);
  background: var(--jr-warning-lighter);
  color: var(--jr-ink);
  flex-shrink: 0;
}

.jr-trust__item strong {
  font-family: var(--jr-font-display);
  font-size: var(--jr-h5-size);
  line-height: var(--jr-h5-lh);
  color: var(--jr-ink);
}

.jr-trust__item span {
  font-size: var(--jr-text-sm);
  line-height: var(--jr-text-sm-lh);
  color: var(--jr-muted);
}

/* ============================================================
   Countdown deals
   ============================================================ */
.jr-countdown-panel {
  border-radius: var(--jr-r-panel);
  background: var(--jr-primary-veil);
  padding: clamp(2.5rem, 5vw, 4.5rem) 1.5rem;
  display: grid;
  place-items: center;
}

.jr-countdown-card {
  background: var(--jr-white);
  border-radius: var(--jr-r-panel);
  padding: clamp(2rem, 4vw, 3.75rem);
  text-align: center;
  max-width: 44rem;
}

.jr-countdown {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 2.5rem 0;
}

.jr-countdown__cell {
  flex: 1 1 6rem;
  min-width: 5rem;
  padding: 1.5rem 0.75rem;
  border-radius: var(--jr-r-card);
  text-align: center;
}

.jr-countdown__cell:nth-child(1) {
  background: var(--jr-pop-1);
}
.jr-countdown__cell:nth-child(2) {
  background: var(--jr-pop-2);
}
.jr-countdown__cell:nth-child(3) {
  background: var(--jr-pop-3);
}
.jr-countdown__cell:nth-child(4) {
  background: var(--jr-pop-4);
}

.jr-countdown__label {
  margin: 0;
  font-size: var(--jr-text-sm);
  color: var(--jr-gray-800);
}

.jr-countdown__value {
  margin: 0;
  font-size: var(--jr-h3-size);
  line-height: 1.2;
  color: var(--jr-gray-900);
  font-variant-numeric: tabular-nums;
}

/* ============================================================
   Feature spotlight
   ============================================================ */
.jr-spotlight {
  display: grid;
  gap: 2rem;
  align-items: center;
  padding: clamp(2rem, 4vw, 3.5rem);
  border-radius: var(--jr-r-hero);
  background: var(--jr-gray-100);
}

@media (min-width: 900px) {
  .jr-spotlight {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }

  .jr-spotlight--media-left .jr-spotlight__media {
    order: -1;
  }
}

.jr-spotlight__media img {
  width: 100%;
  border-radius: var(--jr-r-card);
}

/* ============================================================
   Promo banners / grid
   ============================================================ */
.jr-promos {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .jr-promos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .jr-promos {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.jr-promo {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 28rem;
  padding: 1rem;
  border-radius: var(--jr-r-card);
  background-color: var(--jr-gray-200);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  text-decoration: none;
  color: var(--jr-white);
}

.jr-promo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.45), transparent 65%);
  transition: background var(--jr-dur) var(--jr-ease);
}

/* ============================================================
   Brand strip
   ============================================================ */
.jr-brands {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 768px) {
  .jr-brands {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1280px) {
  .jr-brands {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

.jr-brands img {
  margin-inline: auto;
  max-height: 3rem;
  width: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.6;
  transition:
    filter var(--jr-dur) var(--jr-ease),
    opacity var(--jr-dur) var(--jr-ease);
}

.jr-brands a:hover img {
  filter: none;
  opacity: 1;
}

/* ============================================================
   Newsletter
   ============================================================ */
.jr-newsletter {
  display: grid;
  gap: 2rem;
  align-items: center;
  padding: clamp(2rem, 4vw, 3.5rem);
  border-radius: var(--jr-r-hero);
  background: var(--jr-primary);
  color: var(--jr-on-primary);
}

.jr-newsletter--inherit,
.jr-newsletter--brand {
  background: var(--jr-primary);
  color: var(--jr-on-primary);
}

.jr-newsletter--light {
  background: var(--jr-surface-muted);
  color: var(--jr-ink);
  border: 1px solid var(--jr-line);
}

.jr-newsletter--dark {
  background: var(--jr-secondary);
  color: var(--jr-on-secondary);
}

.jr-newsletter--brand .jr-btn--dark,
.jr-newsletter--dark .jr-btn--dark {
  background: var(--jr-accent);
  color: var(--jr-on-accent);
}

.jr-newsletter--light .jr-btn--dark {
  background: var(--jr-primary);
  color: var(--jr-on-primary);
}

@media (min-width: 900px) {
  .jr-newsletter {
    grid-template-columns: 1fr 1fr;
  }
}

.jr-newsletter :where(h2, h3) {
  color: inherit;
  margin: 0 0 0.5rem;
}

.jr-newsletter__form {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.jr-newsletter__form input {
  flex: 1 1 14rem;
  min-width: 0;
  padding: 0.85rem 1.25rem;
  border: 0;
  border-radius: var(--jr-r-pill);
  background: var(--jr-white);
  color: var(--jr-ink);
}

/* ============================================================
   Category grid (non-carousel fallback)
   ============================================================ */
.jr-cats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .jr-cats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .jr-cats {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
}

/* ============================================================
   Product grid
   ============================================================ */
.jr-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

@media (max-width: 379px) {
  .jr-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (min-width: 768px) {
  .jr-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .jr-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1536px) {
  .jr-grid--wide {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

/* ============================================================
   Quick view (inside a drawer)
   ============================================================ */
.jr-quick {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 768px) {
  .jr-quick {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}

.jr-quick__media {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
}

.jr-quick__title {
  margin: 0 0 0.75rem;
  font-size: var(--jr-h4-size);
  line-height: var(--jr-h4-lh);
}

.jr-quick__desc {
  color: var(--jr-muted);
  font-size: var(--jr-text-sm);
  line-height: var(--jr-text-sm-lh);
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

/* ============================================================
   Shop layout: filter rail + results
   ============================================================ */
.jr-shop {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .jr-shop {
    grid-template-columns: 17rem minmax(0, 1fr);
    gap: 2.5rem;
  }
}

.jr-facets {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1.5rem;
  border: 1px solid var(--jr-line);
  border-radius: var(--jr-r-card);
  background: var(--jr-white);
  box-shadow: var(--jr-z8);
}

@media (min-width: 1024px) {
  .jr-facets {
    position: sticky;
    top: 5.5rem;
  }
}

.jr-facet__title {
  margin: 0 0 0.75rem;
  font-size: var(--jr-text-sm);
  line-height: var(--jr-text-sm-lh);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--jr-ink);
}

.jr-facet__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-height: 15rem;
  overflow-y: auto;
}

.jr-facet__list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  text-decoration: none;
  font-size: var(--jr-text-sm);
  color: var(--jr-muted);
}

.jr-facet__list a:hover,
.jr-facet__list a.is-active {
  color: var(--jr-primary);
}

.jr-facet__list a.is-active {
  font-weight: 600;
}

.jr-facet__count {
  font-size: var(--jr-text-xs);
  color: var(--jr-disabled);
}

.jr-facet__range {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.jr-facet__range-field {
  display: flex;
  flex: 1 1 0;
  min-width: 0;
  flex-direction: column;
  gap: 0.3rem;
  color: var(--jr-muted);
  font-size: var(--jr-text-xs);
  font-weight: 600;
}

.jr-facet__range > span {
  color: var(--jr-disabled);
  padding-top: 1.35rem;
}

.jr-facet__range input,
.jr-facet__select {
  width: 100%;
  min-width: 0;
  min-height: 2.6rem;
  padding: 0.55rem 0.7rem;
  border: 1px solid var(--jr-line);
  border-radius: var(--jr-r-media);
  font-size: var(--jr-text-sm);
  background: var(--jr-white);
  color: var(--jr-ink);
}

.jr-facet__select {
  cursor: pointer;
}

.jr-facet__range input:focus,
.jr-facet__select:focus {
  outline: none;
  border-color: var(--jr-primary);
  box-shadow: 0 0 0 3px var(--jr-primary-tint);
}

.jr-facet__toggles input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  accent-color: var(--jr-primary);
  flex-shrink: 0;
}

.jr-facet__toggles {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: var(--jr-text-sm);
}

.jr-facet__toggles label {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  cursor: pointer;
}

.jr-facet__actions {
  display: flex;
  gap: 0.5rem;
}

.jr-facet__actions .jr-btn {
  flex: 1;
}

/* ============================================================
   Shop toolbar
   ============================================================ */
.jr-shop-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--jr-line);
}

.jr-shop-bar__tools {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
}

.jr-shop-bar__filters {
  display: inline-flex;
}

@media (min-width: 1024px) {
  .jr-shop-bar__filters {
    display: none;
  }

  .jr-facets-sheet__head {
    display: none;
  }

  .jr-facets-backdrop {
    display: none !important;
  }
}

.jr-active-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
}

.jr-chip--removable {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.jr-active-filters__clear {
  font-size: var(--jr-text-sm);
  font-weight: 600;
  color: var(--jr-primary);
  text-decoration: none;
}

.jr-facets-sheet__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.jr-facets-sheet__title {
  margin: 0;
  font-size: var(--jr-h5-size);
}

.jr-facets-sheet__close {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 0;
  border-radius: 999px;
  background: var(--jr-plate);
  color: var(--jr-ink);
  cursor: pointer;
}

@media (max-width: 1023px) {
  .jr-shop__facets {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 80;
    width: min(22rem, 92vw);
    max-height: 100%;
    overflow: auto;
    padding: 1.15rem 1.15rem calc(1.15rem + env(safe-area-inset-bottom));
    background: var(--jr-white);
    box-shadow: -12px 0 32px rgba(20, 28, 37, 0.18);
    transform: translateX(105%);
    transition: transform var(--jr-dur) var(--jr-ease);
  }

  .jr-shop__facets.is-open {
    transform: translateX(0);
  }

  .jr-shop__facets .jr-facets {
    border: 0;
    box-shadow: none;
    padding: 0;
  }

  .jr-facets-backdrop {
    position: fixed;
    inset: 0;
    z-index: 75;
    background: rgba(15, 23, 42, 0.45);
  }

  .jr-facets-backdrop[hidden] {
    display: none !important;
  }

  body.jr-facets-open {
    overflow: hidden;
  }
}

.jr-shop-bar__count {
  margin: 0;
  font-size: var(--jr-text-sm);
  line-height: var(--jr-text-sm-lh);
  color: var(--jr-muted);
}

.jr-shop-bar__count strong {
  color: var(--jr-ink);
}

.jr-sort {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.jr-sort select {
  padding: 0.5rem 0.85rem;
  border: 1px solid var(--jr-line);
  border-radius: var(--jr-r-pill);
  background: var(--jr-white);
  color: var(--jr-ink);
  font-size: var(--jr-text-sm);
  font-weight: 600;
  cursor: pointer;
}

.jr-sort select:focus {
  outline: none;
  border-color: var(--jr-primary);
  box-shadow: 0 0 0 3px var(--jr-primary-tint);
}

/* ============================================================
   Page band + headers (Sellzy breadcrumb / title strip)
   ============================================================ */
.jr-page-band {
  background: var(--jr-gray-200);
  border-bottom: 1px solid var(--jr-line);
  padding-block: clamp(1.75rem, 4vw, 2.75rem);
}

.jr-page-band .jr-crumbs {
  margin-bottom: 1rem;
}

.jr-page-band .jr-page-title {
  margin: 0;
}

.jr-page-band .jr-page-meta {
  margin: 0.5rem 0 0;
}

.jr-page-head {
  padding-block: 2.5rem 0;
}

.jr-page-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 0.65rem;
  font-size: var(--jr-text-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--jr-primary);
}

.jr-page-title {
  margin-bottom: 0.35rem;
  font-family: var(--jr-font-display);
  font-weight: 700;
  font-size: var(--jr-h3-size);
  line-height: var(--jr-h3-lh);
  letter-spacing: var(--jr-tracking-tight);
}

.jr-page-meta {
  color: var(--jr-muted);
  margin-bottom: 1.75rem;
  font-size: var(--jr-text-sm);
  line-height: var(--jr-text-sm-lh);
}

.jr-section--page {
  padding-block: clamp(1.5rem, 4vw, 2.5rem);
}

.jr-section--page.jr-section--flush-top {
  padding-top: clamp(1.25rem, 3vw, 2rem);
}

/* ============================================================
   Product detail
   ============================================================ */
.jr-pdp {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .jr-pdp {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: start;
    gap: 3.5rem;
  }
}

.jr-pdp__media {
  border-radius: var(--jr-r-card);
  background: var(--jr-plate);
  overflow: hidden;
  aspect-ratio: 1;
  position: relative;
}

.jr-pdp__media img,
.jr-pdp__media .jr-pdp__video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6%;
  display: block;
}

.jr-pdp__media .jr-pdp__video {
  padding: 0;
  background: #0b0b0b;
}

.jr-pdp__media .jr-pdp__embed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: #0b0b0b;
}

.jr-pdp__zoom {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.jr-pdp__watch-video {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.95rem;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
}

.jr-pdp__watch-video:hover {
  background: rgba(0, 0, 0, 0.85);
}

.jr-pdp__gallery {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
}

.jr-pdp__thumbs {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 5.5rem;
  gap: 0.75rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  padding-bottom: 0.25rem;
}

.jr-pdp__thumb {
  scroll-snap-align: start;
  aspect-ratio: 1;
  padding: 0;
  border: 1px solid var(--jr-line);
  border-radius: var(--jr-r-media);
  background: var(--jr-plate);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: border-color var(--jr-dur) var(--jr-ease);
}

.jr-pdp__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8%;
}

.jr-pdp__thumb-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: var(--jr-ink-muted);
}

.jr-pdp__thumb-play {
  position: absolute;
  right: 0.25rem;
  bottom: 0.25rem;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.jr-pdp__thumb:hover,
.jr-pdp__thumb.is-active {
  border-color: var(--jr-primary);
}

.jr-pdp__summary {
  min-width: 0;
}

.jr-crumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: var(--jr-text-sm);
  color: var(--jr-muted);
}

.jr-crumbs a {
  text-decoration: none;
}

.jr-crumbs span[aria-current] {
  color: var(--jr-ink);
  font-weight: 600;
}

.jr-stock {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1.25rem;
  font-size: var(--jr-text-sm);
  font-weight: 600;
  color: var(--jr-ink-2);
}

.jr-stock__dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: var(--jr-r-pill);
  flex-shrink: 0;
}

.jr-stock__dot--in {
  background: var(--jr-success);
}
.jr-stock__dot--low {
  background: var(--jr-warning);
}
.jr-stock__dot--out {
  background: var(--jr-error);
}

.jr-pdp__assurance {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 1.25rem 0 0;
  border-top: 1px solid var(--jr-line);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: var(--jr-text-sm);
  color: var(--jr-muted);
}

.jr-pdp__assurance li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.jr-pdp__assurance .jr-icon {
  color: var(--jr-primary);
}

@media (min-width: 900px) {
  .jr-pdp__summary--sticky {
    position: sticky;
    top: 5rem;
  }
}

.jr-pdp__summary .jr-page-title {
  margin: 0 0 0.75rem;
}

.jr-pdp__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0 0 0.65rem;
  font-size: var(--jr-text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--jr-primary);
}

.jr-pdp__price {
  margin: 1rem 0 1.25rem;
}

.jr-pdp__price .jr-price__now {
  font-family: var(--jr-font-display);
  font-size: var(--jr-h4-size);
}

.jr-pdp__lede {
  color: var(--jr-muted);
  margin: 0.5rem 0 0.75rem;
}

.jr-pdp__variants {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0 1rem;
}

.jr-pdp__variants .is-selected {
  border-color: var(--jr-ink);
  font-weight: 600;
}

.jr-pdp__specs {
  display: grid;
  gap: 0.35rem 1rem;
  margin: 0 0 1.25rem;
  font-size: var(--jr-text-sm);
}

.jr-pdp__specs div {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 0.5rem;
}

.jr-pdp__specs dt {
  color: var(--jr-muted);
  font-weight: 500;
  margin: 0;
}

.jr-pdp__specs dd {
  margin: 0;
}

.jr-pdp__desc {
  color: var(--jr-muted);
  white-space: pre-line;
  margin-bottom: 1.75rem;
}

.jr-pdp__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.jr-pdp__actions .jr-btn {
  flex: 1 1 10rem;
}

.jr-pdp__qty {
  flex: 0 0 auto;
}

.jr-qty__input {
  width: 2.25rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--jr-ink);
  font: inherit;
  font-size: var(--jr-text-sm);
  font-weight: 600;
  text-align: center;
  -moz-appearance: textfield;
}

.jr-qty__input::-webkit-inner-spin-button,
.jr-qty__input::-webkit-outer-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

@media (min-width: 480px) {
  .jr-pdp__actions .jr-btn {
    flex: 0 1 auto;
  }
}

.jr-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.5rem;
  font-size: var(--jr-text-sm);
  color: var(--jr-muted);
  text-decoration: none;
}

.jr-pdp-sticky {
  position: fixed;
  right: 0;
  /* Sit above the mobile bar (bar already includes safe-area padding). */
  bottom: calc(4.25rem + env(safe-area-inset-bottom, 0px));
  left: 0;
  z-index: 45;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem max(var(--jr-space), env(safe-area-inset-right)) 0.7rem max(var(--jr-space), env(safe-area-inset-left));
  border-top: 1px solid var(--jr-line);
  background: color-mix(in srgb, var(--jr-white) 94%, transparent);
  box-shadow: 0 -8px 24px rgba(20, 28, 37, 0.1);
  backdrop-filter: blur(12px);
  transition: transform var(--jr-dur) var(--jr-ease), opacity var(--jr-dur) var(--jr-ease);
}

.jr-pdp-sticky.is-main-atc-visible {
  transform: translateY(calc(100% + 5rem));
  opacity: 0;
  pointer-events: none;
}

.jr-pdp-sticky__details {
  min-width: 0;
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.1rem;
}

.jr-pdp-sticky__details strong {
  overflow: hidden;
  color: var(--jr-ink);
  font-size: var(--jr-text-sm);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.jr-pdp-sticky__details .jr-price {
  font-size: var(--jr-text-xs);
}

.jr-pdp-sticky .jr-btn {
  flex: 0 0 auto;
  white-space: nowrap;
}

.jr-pdp-sticky__qty {
  display: none;
}

@media (min-width: 901px) {
  .jr-pdp-sticky {
    display: none;
  }
}

/* ============================================================
   Panels / cart / checkout
   ============================================================ */
.jr-panel {
  max-width: 36rem;
  margin: 0 auto;
  padding: clamp(1.75rem, 4vw, 2.25rem);
  background: var(--jr-white);
  border: 1px solid var(--jr-line);
  border-radius: var(--jr-r-card);
  box-shadow: var(--jr-z8);
}

.jr-panel--wide {
  max-width: 44rem;
}

.jr-panel--flat {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding-inline: 0;
}

.jr-state-card {
  max-width: 28rem;
  margin: 0 auto;
  padding: clamp(2rem, 6vw, 3rem);
  text-align: center;
  background: var(--jr-white);
  border: 1px solid var(--jr-line);
  border-radius: var(--jr-r-card);
  box-shadow: var(--jr-z8);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.jr-state-card .jr-page-title {
  margin: 0.35rem 0 0;
}

.jr-state-card .jr-btn {
  margin-top: 1rem;
}

.jr-state-card code {
  font-size: var(--jr-text-sm);
  background: var(--jr-gray-100);
  border: 1px solid var(--jr-line);
  padding: 0.15rem 0.4rem;
  border-radius: var(--jr-r-xs);
}

.jr-auth-links {
  margin-top: 1.25rem;
  font-size: var(--jr-text-sm);
  line-height: var(--jr-text-sm-lh);
}

.jr-auth-links p {
  margin: 0.35rem 0 0;
}

.jr-content-card {
  padding: clamp(1.5rem, 4vw, 2rem);
  background: var(--jr-white);
  border: 1px solid var(--jr-line);
  border-radius: var(--jr-r-card);
  box-shadow: var(--jr-z8);
}

.jr-cart-page__head {
  margin-bottom: 0.5rem;
}

.jr-content-card .jr-prose {
  max-width: none;
}

.jr-cart-page .jr-page-meta {
  margin-bottom: 1.5rem;
}

.jr-cart-page .jr-section--page,
section.jr-cart-page {
  padding-block: clamp(1.5rem, 4vw, 2.5rem);
}

.jr-cart-layout {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .jr-cart-layout {
    grid-template-columns: minmax(0, 1fr) 20rem;
    align-items: start;
    gap: 2.5rem;
  }
}

.jr-cart-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.jr-cart-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  background: var(--jr-white);
  border: 1px solid var(--jr-line);
  border-radius: var(--jr-r-card);
  box-shadow: var(--jr-z8);
}

@media (min-width: 560px) {
  .jr-cart-item {
    flex-direction: row;
    align-items: center;
  }
}

.jr-cart-item__media {
  width: 5.5rem;
  height: 5.5rem;
  border-radius: var(--jr-r-media);
  overflow: hidden;
  background: var(--jr-plate);
  flex-shrink: 0;
  display: block;
}

.jr-cart-item__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.jr-cart-item__placeholder {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--jr-plate);
}

.jr-cart-item__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.jr-cart-item__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.jr-cart-item__name {
  font-weight: 600;
  text-decoration: none;
  color: var(--jr-ink);
  line-height: 1.3;
}

.jr-cart-item__name:hover {
  color: var(--jr-primary);
}

.jr-cart-item__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
}

.jr-cart-item__price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.15rem;
}

.jr-cart-item__unit {
  font-size: var(--jr-text-xs);
  color: var(--jr-muted);
}

.jr-cart-item__line {
  font-size: var(--jr-text-base);
  font-weight: 600;
}

.jr-cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  padding: clamp(2.5rem, 8vw, 4rem) 1rem;
  background: var(--jr-white);
  border: 1px dashed var(--jr-line);
  border-radius: var(--jr-r-card);
}

.jr-cart-empty__icon {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: var(--jr-r-pill);
  display: grid;
  place-items: center;
  color: var(--jr-primary);
  background: var(--jr-primary-veil);
  margin-bottom: 0.35rem;
}

.jr-cart-empty__title {
  font-size: var(--jr-h4-size);
  margin: 0;
}

.jr-not-found .jr-search {
  width: min(100%, 34rem);
  margin: 0.5rem auto;
}

.jr-not-found__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.jr-not-found__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1rem;
}

.jr-not-found__links a {
  color: var(--jr-ink-2);
  font-size: var(--jr-text-sm);
  font-weight: 600;
  text-decoration: none;
}

.jr-not-found__links a:hover {
  color: var(--jr-primary);
  text-decoration: underline;
}

.jr-cart-summary {
  padding: 1.5rem;
  background: var(--jr-white);
  border: 1px solid var(--jr-line);
  border-radius: var(--jr-r-card);
  box-shadow: var(--jr-z8);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

@media (min-width: 900px) {
  .jr-cart-summary {
    position: sticky;
    top: 5rem;
  }
}

.jr-cart-summary__title {
  font-size: var(--jr-h5-size);
  margin: 0;
}

.jr-cart-summary__row,
.jr-checkout-summary__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: var(--jr-text-sm);
  color: var(--jr-muted);
}

.jr-cart-summary__note {
  margin: 0;
  font-size: var(--jr-text-xs);
  color: var(--jr-muted);
}

.jr-cart-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.jr-checkout-summary {
  margin-bottom: 1.5rem;
  padding: 1.25rem;
  background: var(--jr-white);
  border: 1px solid var(--jr-line);
  border-radius: var(--jr-r-card);
}

.jr-checkout-summary__total {
  margin-top: 0.5rem;
  padding-top: 0.65rem;
  border-top: 1px solid var(--jr-line);
  color: var(--jr-ink);
  font-weight: 700;
}

.jr-checkout-summary__note {
  margin: 0.5rem 0 0;
  font-size: var(--jr-text-xs);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.jr-checkout {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

.jr-checkout__form {
  max-width: none;
  margin: 0;
}

.jr-checkout__aside {
  padding: 1.25rem;
  border: 1px solid var(--jr-line);
  border-radius: var(--jr-r-card);
  background: var(--jr-white);
  box-shadow: var(--jr-z8);
}

.jr-checkout__title {
  margin: 0 0 1rem;
  font-size: var(--jr-h5-size);
}

.jr-checkout-lines {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.jr-checkout-line {
  display: grid;
  grid-template-columns: 3.5rem minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: center;
}

.jr-checkout-line__media {
  width: 3.5rem;
  height: 3.5rem;
  overflow: hidden;
  border-radius: var(--jr-r-media);
  background: var(--jr-plate);
}

.jr-checkout-line__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.jr-checkout-line__placeholder {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--jr-plate);
}

.jr-checkout-line__body {
  display: grid;
  gap: 0.2rem;
  min-width: 0;
}

.jr-checkout-line__body strong {
  overflow: hidden;
  font-size: var(--jr-text-sm);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.jr-checkout-line__body span,
.jr-checkout-lines__empty {
  margin: 0;
  color: var(--jr-muted);
  font-size: var(--jr-text-xs);
}

.jr-checkout-line__price {
  font-size: var(--jr-text-sm);
  white-space: nowrap;
}

.jr-checkout__aside .jr-checkout-summary {
  margin-bottom: 0;
  padding: 1rem 0 0;
  border: 0;
  border-top: 1px solid var(--jr-line);
  border-radius: 0;
}

@media (min-width: 900px) {
  .jr-checkout {
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 24rem);
    gap: 2rem;
  }

  .jr-checkout__aside {
    position: sticky;
    top: 5rem;
  }
}

@media (max-width: 900px) {
  .jr-pdp-sticky__qty {
    display: inline-flex;
  }
}

/* ============================================================
   News / blog
   ============================================================ */
.jr-news-list {
  display: grid;
  gap: 1.5rem;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .jr-news-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.jr-news-card {
  border: 1px solid var(--jr-line);
  border-radius: var(--jr-r-card);
  background: var(--jr-white);
  overflow: hidden;
  transition:
    border-color var(--jr-dur) var(--jr-ease),
    box-shadow var(--jr-dur) var(--jr-ease);
}

.jr-news-card:hover {
  border-color: var(--jr-primary-line);
  box-shadow: var(--jr-z12);
}

.jr-news-card__media {
  display: block;
  overflow: hidden;
  background: var(--jr-plate);
}

.jr-news-card__media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform var(--jr-dur) var(--jr-ease);
}

.jr-news-card:hover .jr-news-card__media img {
  transform: scale(1.05);
}

.jr-news-card__body {
  padding: 1.25rem;
}

.jr-news-card__meta {
  color: var(--jr-muted);
  font-size: var(--jr-text-xs);
}

.jr-news-card__body h2 {
  margin: 0.35rem 0 0.4rem;
  font-size: var(--jr-h5-size);
  line-height: var(--jr-h5-lh);
}

.jr-news-card__body h2 a {
  color: var(--jr-ink);
  text-decoration: none;
}

.jr-news-card__body h2 a:hover {
  color: var(--jr-primary);
}

.jr-news-detail {
  max-width: 54rem;
  margin-inline: auto;
}

.jr-news-detail__header {
  margin-bottom: 1.5rem;
}

.jr-news-detail__header .jr-page-title {
  margin: 0.35rem 0 0.5rem;
}

.jr-news-detail__cover {
  width: 100%;
  max-height: 26rem;
  object-fit: cover;
  border-radius: var(--jr-r-card);
  margin: 0.6rem 0 1.5rem;
}

.jr-news-detail__excerpt {
  font-size: var(--jr-text-lg);
  line-height: var(--jr-text-lg-lh);
  color: var(--jr-muted);
}

/* ============================================================
   FAQ
   ============================================================ */
.jr-faq {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 44rem;
}

.jr-faq details {
  background: var(--jr-white);
  border: 1px solid var(--jr-line);
  border-radius: var(--jr-r-card);
  padding: 1rem 1.25rem;
  box-shadow: var(--jr-z8);
}

.jr-faq summary {
  font-family: var(--jr-font-display);
  font-weight: 600;
  cursor: pointer;
  color: var(--jr-ink);
}

.jr-faq details[open] summary {
  color: var(--jr-primary);
}

.jr-faq details p {
  margin: 0.75rem 0 0;
  color: var(--jr-muted);
  font-size: var(--jr-text-sm);
  line-height: var(--jr-text-sm-lh);
}

/* ============================================================
   Shopper account
   ============================================================ */
.jr-account {
  max-width: 56rem;
}

.jr-account__head {
  margin-bottom: 1.5rem;
}

.jr-account__grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1rem;
}

@media (min-width: 720px) {
  .jr-account__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.jr-account-card {
  display: block;
  padding: 1.1rem 1.15rem;
  border: 1px solid var(--jr-line);
  border-radius: var(--jr-r-card);
  text-decoration: none;
  background: var(--jr-white);
  transition: border-color var(--jr-dur) var(--jr-ease), box-shadow var(--jr-dur) var(--jr-ease);
}

.jr-account-card:hover {
  border-color: var(--jr-primary-line);
  box-shadow: var(--jr-z12);
}

.jr-account-card h2 {
  margin: 0 0 0.4rem;
  font-size: var(--jr-h5-size);
}

.jr-account-card p {
  margin: 0;
  color: var(--jr-muted);
  font-size: var(--jr-text-sm);
}

.jr-account__actions {
  margin-top: 1.5rem;
}

.jr-account-list {
  max-width: 56rem;
}

.jr-account-list__body {
  display: grid;
  gap: 0.85rem;
}

.jr-account-item {
  border: 1px solid var(--jr-line);
  border-radius: var(--jr-r-card);
  background: var(--jr-white);
  padding: 0.9rem;
  display: flex;
  gap: 0.9rem;
}

.jr-account-item__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.jr-status-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--jr-primary) 12%, white);
  color: var(--jr-secondary);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: capitalize;
}

.jr-return-request {
  margin-top: 1.25rem;
  max-width: 56rem;
}

.jr-return-request .jr-checkout__title {
  margin-bottom: 0.35rem;
}

.jr-success {
  margin: 0 0 0.85rem;
  padding: 0.65rem 0.85rem;
  border-radius: var(--jr-r-sm);
  background: var(--jr-success-lighter);
  color: var(--jr-success-dark);
  font-size: var(--jr-text-sm);
}

.jr-wishlist-guest {
  margin: 0 0 1rem;
}

.jr-skeleton {
  color: var(--jr-muted);
}


.jr-account-item__media {
  width: 5rem;
  height: 5rem;
  border-radius: var(--jr-r-media);
  overflow: hidden;
  background: var(--jr-plate);
  flex-shrink: 0;
}

.jr-account-item__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.jr-account-item__body {
  min-width: 0;
}

.jr-account-item__title {
  margin: 0;
  font-size: var(--jr-text-base);
  font-weight: 700;
  color: var(--jr-ink);
  text-decoration: none;
}

.jr-account-item__meta {
  margin: 0.3rem 0 0;
  color: var(--jr-muted);
  font-size: var(--jr-text-sm);
}

.jr-account-item__actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.7rem;
}

.jr-account-empty {
  margin: 0;
  color: var(--jr-muted);
  padding: 1rem;
  border: 1px dashed var(--jr-line);
  border-radius: var(--jr-r-card);
}

.jr-profile {
  display: grid;
  gap: 1.75rem;
}

.jr-profile__section {
  padding-top: 0.25rem;
  border-top: 1px solid var(--jr-line);
}

.jr-profile__section:first-child {
  border-top: 0;
  padding-top: 0;
}

.jr-profile__section h2 {
  font-size: 1.05rem;
  margin: 0 0 0.85rem;
}

.jr-profile__subhead {
  font-size: 0.95rem;
  margin: 1rem 0 0.75rem;
}

.jr-profile__avatar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.jr-profile__avatar img {
  width: 4rem;
  height: 4rem;
  object-fit: cover;
  border-radius: 999px;
  border: 1px solid var(--jr-line);
}

.jr-ok {
  color: var(--jr-success, #15803d);
  margin: 0 0 0.75rem;
}

.jr-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.5rem 0 1rem;
  font-size: 0.9rem;
}

/* ============================================================
   Sellzy homepage additions ? limited tabs, spotlight cards,
   tall promos, promo grid, CTA band
   ============================================================ */
.jr-section-title {
  margin: 0;
  font-family: var(--jr-font-display);
  font-size: var(--jr-h3-size);
  line-height: var(--jr-h3-lh);
  font-weight: 700;
}

.jr-spotlight__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.jr-limited__panel {
  border-radius: var(--jr-r-hero);
  background: var(--jr-surface-2);
  padding: clamp(1.25rem, 3vw, 2rem);
}

.jr-limited__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.jr-limited__heading {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.jr-limited__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  width: fit-content;
  color: var(--jr-primary-darker);
  font-size: var(--jr-text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.jr-limited__eyebrow .jr-icon {
  color: var(--jr-primary);
}

.jr-limited__timer {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0.9rem;
  border-radius: var(--jr-r-pill);
  background: var(--jr-white);
  box-shadow: var(--jr-z8);
}

.jr-limited__timer-icon {
  flex-shrink: 0;
  color: var(--jr-primary);
}

.jr-limited__timer-unit {
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
  color: var(--jr-ink);
}

.jr-limited__timer-unit + .jr-limited__timer-unit {
  padding-left: 0.6rem;
  border-left: 1px solid var(--jr-line);
}

.jr-limited__timer-unit span {
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  font-size: var(--jr-text-base);
}

.jr-limited__timer-unit b {
  font-weight: 600;
  font-size: var(--jr-text-xs);
  color: var(--jr-muted);
}

.jr-tabs__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.jr-tabs__tab {
  border: 1px solid var(--jr-line);
  background: var(--jr-white);
  color: var(--jr-ink);
  padding: 0.55rem 1.1rem;
  border-radius: var(--jr-r-pill);
  font-weight: 600;
  font-size: var(--jr-text-sm);
  cursor: pointer;
  transition: background var(--jr-dur-fast) var(--jr-ease), color var(--jr-dur-fast) var(--jr-ease), border-color var(--jr-dur-fast) var(--jr-ease), box-shadow var(--jr-dur-fast) var(--jr-ease);
}

.jr-tabs__tab.is-active,
.jr-tabs__tab:hover {
  border-color: var(--jr-primary);
  background: var(--jr-primary);
  color: var(--jr-on-primary);
  box-shadow: var(--jr-shadow-primary);
}

.jr-tabs__panel[hidden] {
  display: none;
}

.jr-limited__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 3rem 1rem;
  border: 1px dashed var(--jr-line);
  border-radius: var(--jr-r-card);
  color: var(--jr-muted);
  text-align: center;
}

.jr-limited__empty .jr-icon {
  color: var(--jr-gray-400);
}

.jr-limited__empty p {
  margin: 0;
}

.jr-product-grid--dense {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

@media (min-width: 768px) {
  .jr-product-grid--dense {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .jr-product-grid--dense {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.jr-spotlight-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .jr-spotlight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .jr-spotlight-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.jr-spotlight-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--jr-line);
  border-radius: var(--jr-r-card);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  background: var(--jr-white);
  transition: border-color var(--jr-dur) var(--jr-ease);
}

@media (min-width: 900px) {
  .jr-spotlight-card {
    flex-direction: row;
  }
}

.jr-spotlight-card:hover {
  border-color: var(--jr-primary);
}

.jr-spotlight-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: var(--jr-plate);
  min-height: 8rem;
}

@media (min-width: 900px) {
  .jr-spotlight-card__media {
    width: 11rem;
    flex-shrink: 0;
    border-right: 1px solid var(--jr-line);
  }
}

.jr-spotlight-card__media img {
  max-width: 100%;
  max-height: 7rem;
  object-fit: contain;
}

.jr-spotlight-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1.25rem 1.35rem;
  flex: 1;
}

.jr-spotlight-card__name {
  font-weight: 600;
  font-size: var(--jr-text-base);
}

.jr-spotlight-card__price {
  display: flex;
  gap: 0.65rem;
  align-items: baseline;
}

.jr-spotlight-card__price s {
  color: var(--jr-disabled);
}

.jr-promo__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 1rem;
  border-radius: var(--jr-r-card);
  background: var(--jr-pop-1);
  text-align: center;
  color: var(--jr-gray-900);
}

.jr-promo--yellow .jr-promo__panel { background: var(--jr-pop-2); }
.jr-promo--pink .jr-promo__panel { background: var(--jr-pop-3); }
.jr-promo--teal .jr-promo__panel { background: var(--jr-pop-4); }
.jr-promo--blue .jr-promo__panel { background: var(--jr-pop-5); }
.jr-promo--orange .jr-promo__panel { background: var(--jr-pop-6); }

.jr-promo__panel h3 {
  margin: 0.5rem 0;
  font-size: var(--jr-h5-size);
  color: inherit;
}

.jr-promo__panel p {
  margin: 0 0 1rem;
  font-size: var(--jr-text-sm);
}

.jr-promo__badge {
  display: inline-block;
  padding: 0.2rem 0.75rem;
  border-radius: var(--jr-r-pill);
  background: var(--jr-warning-light);
  font-size: var(--jr-text-sm);
  font-weight: 600;
}

.jr-promo-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .jr-promo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.jr-promo-tile {
  position: relative;
  min-height: 22rem;
  border-radius: var(--jr-r-hero);
  background: var(--jr-gray-800) center / cover no-repeat;
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  overflow: hidden;
  color: #fff;
}

.jr-promo-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.55), transparent 60%);
}

.jr-promo-tile__content {
  position: relative;
  z-index: 1;
}

.jr-promo-tile h3 {
  margin: 0.5rem 0;
  color: #fff;
}

.jr-promo-tile p {
  margin: 0 0 1rem;
  color: rgba(255,255,255,0.88);
}

.jr-cta-band {
  border-radius: var(--jr-r-hero);
  background: var(--jr-primary) center / cover no-repeat;
  padding: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--jr-on-primary);
  text-align: center;
}

.jr-cta-band--inherit,
.jr-cta-band--brand {
  background-color: var(--jr-primary);
  color: var(--jr-on-primary);
}

.jr-cta-band--light {
  background-color: var(--jr-surface-muted);
  color: var(--jr-ink);
  border: 1px solid var(--jr-line);
}

.jr-cta-band--dark {
  background-color: var(--jr-secondary);
  color: var(--jr-on-secondary);
}

.jr-cta-band h2 {
  margin: 0 0 0.75rem;
  color: inherit;
  font-size: var(--jr-h2-size);
}

.jr-cta-band p {
  margin: 0 0 1.5rem;
  opacity: 0.9;
}

.jr-brands__item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.jr-countdown-panel {
  background-size: cover;
  background-position: center;
}

.jr-pdp__zoom {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.jr-pdp__zoom img {
  display: block;
  width: 100%;
}

.jr-lightbox {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background: rgba(15, 23, 42, 0.82);
}

.jr-lightbox[hidden] {
  display: none !important;
}

.jr-lightbox img {
  max-width: min(92vw, 56rem);
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--jr-r-sm);
  background: var(--jr-card);
}

.jr-lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--jr-ink);
  cursor: pointer;
}
